From d5821a91ba721de9aaf0b508a9bfb71cbfabe50f Mon Sep 17 00:00:00 2001 From: Carsten Dominik Date: Thu, 8 Oct 2009 08:46:10 +0200 Subject: [PATCH] Fix indentation issue with planning line Reported by Matt Lundin --- lisp/org.el | 1 + 1 file changed, 1 insertion(+) diff --git a/lisp/org.el b/lisp/org.el index f577a06b5..c964191a0 100644 --- a/lisp/org.el +++ b/lisp/org.el @@ -10269,6 +10269,7 @@ be removed." (skip-chars-backward " ") (if (looking-at " +") (replace-match "")))) (goto-char (point-max)) + (and org-adapt-indentation (bolp) (org-indent-to-column col)) (when what (insert (if (not (or (bolp) (eq (char-before) ?\ ))) " " "") -- 2.11.4.GIT