From fb30301888dcc567dac13ea266098e6b4f32f3a7 Mon Sep 17 00:00:00 2001 From: Bastien Guerry Date: Sat, 1 May 2021 17:59:20 +0200 Subject: [PATCH] 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 Link: https://orgmode.org/list/875z73br32.fsf@gmail.com/ --- lisp/org.el | 1 + 1 file changed, 1 insertion(+) diff --git a/lisp/org.el b/lisp/org.el index 28628bd55..d81ec98d2 100644 --- a/lisp/org.el +++ b/lisp/org.el @@ -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 " ")