0
0
Fork 1
mirror of https://git.savannah.gnu.org/git/emacs/org-mode.git synced 2024-08-22 08:48:30 +00:00

org-indent: Handle indentation change with headline manual insertion

* lisp/org-indent.el (org-indent-refresh-maybe): Check for new
  headlines from the beginning of the line to be sure to catch
  any newly inserted headline there.
This commit is contained in:
Nicolas Goaziou 2012-01-09 18:47:22 +01:00
parent 313b70e139
commit 87a228cd6b

View file

@ -412,6 +412,7 @@ This function is meant to be called by `after-change-functions'."
(if (or org-indent-modified-headline-flag
(save-excursion
(goto-char beg)
(beginning-of-line)
(re-search-forward org-outline-regexp-bol end t)))
(let ((end (save-excursion
(goto-char end)