diff options
| author | Bastien Guerry <bzg@altern.org> | 2012-12-31 08:24:04 (GMT) |
|---|---|---|
| committer | Bastien Guerry <bzg@altern.org> | 2012-12-31 08:29:18 (GMT) |
| commit | aa80e441dc828358b18698ff1df3f8c757495894 (patch) | |
| tree | 152866a8843734656f9ace6cac2ded5eb4eaf65f | |
| parent | 8897a53ff414a85eadc9d7e94ea1f248278b47e6 (diff) | |
| download | org-mode-aa80e441dc828358b18698ff1df3f8c757495894.zip org-mode-aa80e441dc828358b18698ff1df3f8c757495894.tar.gz | |
org.el (org-indent-line): Fix table formulas indenting
* org.el (org-indent-line): Fix table formulas indenting.
| -rw-r--r-- | lisp/org.el | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lisp/org.el b/lisp/org.el index b06b0ac..a307ca6 100644 --- a/lisp/org.el +++ b/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. |
