lisp/org.el: Fix bug about inserting a heading before the first headline
* lisp/org.el (org-insert-heading): Fix bug when inserting a heading before the first headline. Reported-by: Gustavo Barros <gusbrs.2016@gmail.com> Link: https://orgmode.org/list/875z73br32.fsf@gmail.com/
This commit is contained in:
parent
45ca597f96
commit
fb30301888
|
@ -6947,6 +6947,7 @@ unconditionally."
|
|||
(when (equal arg '(16)) (org-up-heading-safe))
|
||||
(org-end-of-subtree)))
|
||||
(unless (bolp) (insert "\n"))
|
||||
(unless level (backward-char))
|
||||
(unless (and blank? (org-previous-line-empty-p))
|
||||
(org-N-empty-lines-before-current (if blank? 1 0)))
|
||||
(insert stars " ")
|
||||
|
|
Loading…
Reference in New Issue