From aa80e441dc828358b18698ff1df3f8c757495894 Mon Sep 17 00:00:00 2001 From: Bastien Guerry Date: Mon, 31 Dec 2012 09:24:04 +0100 Subject: [PATCH] org.el (org-indent-line): Fix table formulas indenting * org.el (org-indent-line): Fix table formulas indenting. --- lisp/org.el | 1 + 1 file changed, 1 insertion(+) diff --git a/lisp/org.el b/lisp/org.el index b06b0ac2a..a307ca62a 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. -- 2.11.4.GIT