From af300bd5b0b77086c5b4589f823dcb783e1e7c56 Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Thu, 25 Jul 2013 18:57:59 +0200 Subject: [PATCH] Fix indentation after a list * lisp/org.el (org-indent-line): Fix indentation after a list. --- lisp/org.el | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/lisp/org.el b/lisp/org.el index 4de2beb3d..c28f3b997 100644 --- a/lisp/org.el +++ b/lisp/org.el @@ -21974,12 +21974,9 @@ hierarchy of headlines by UP levels before marking the subtree." (beginning-of-line 0)) (cond ;; There was a list item above. - ((save-excursion - (and (ignore-errors (goto-char (org-in-item-p))) - (goto-char - (org-list-get-top-point (org-list-struct))))) - (looking-at org-list-full-item-re) - (setq column (length (match-string 0)))) + ((ignore-errors (goto-char (org-in-item-p))) + (goto-char (org-list-get-top-point (org-list-struct))) + (setq column (org-get-indentation))) ;; There was an heading above. ((looking-at "\\*+[ \t]+") (if (not org-adapt-indentation) -- 2.11.4.GIT