diff --git a/lisp/org-indent.el b/lisp/org-indent.el index 4a86f9ceb..10c96179b 100644 --- a/lisp/org-indent.el +++ b/lisp/org-indent.el @@ -301,9 +301,8 @@ have `org-warning' face." (wrap (org-add-props (concat line - (make-string level (if heading ?* ?\s)) - (if heading " " - (make-string (+ indentation (min level 1)) ?\s))) + (if heading (concat (make-string level ?*) " ") + (make-string indentation ?\s))) nil 'face 'org-indent))) ;; Add properties down to the next line to indent empty lines. (add-text-properties (line-beginning-position) (line-beginning-position 2)