소스 검색

org.el (org-indent-line): Fix table formulas indenting

* org.el (org-indent-line): Fix table formulas indenting.
Bastien Guerry 12 년 전
부모
커밋
aa80e441dc
1개의 변경된 파일1개의 추가작업 그리고 0개의 파일을 삭제
  1. 1 0
      lisp/org.el

+ 1 - 0
lisp/org.el

@@ -20792,6 +20792,7 @@ hierarchy of headlines by UP levels before marking the subtree."
        (t
 	(beginning-of-line 0)
 	(while (and (not (bobp))
+		    (not (looking-at org-table-line-regexp))
 		    (not (looking-at org-drawer-regexp))
 		    ;; When point started in an inline task, do not move
 		    ;; above task starting line.