summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBastien Guerry <bzg@altern.org>2012-12-31 09:24:04 +0100
committerBastien Guerry <bzg@altern.org>2012-12-31 09:29:18 +0100
commitaa80e441dc828358b18698ff1df3f8c757495894 (patch)
tree152866a8843734656f9ace6cac2ded5eb4eaf65f
parent8897a53ff414a85eadc9d7e94ea1f248278b47e6 (diff)
downloadorg-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.el1
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.