0
0
Fork 1
mirror of https://git.savannah.gnu.org/git/emacs/org-mode.git synced 2024-09-22 13:10:42 +00:00

org.el (org-format-outline-path): Fix bug: add the separator string after the prefix

* org.el (org-format-outline-path): Fix bug: add the separator
string after the prefix.
This commit is contained in:
Bastien Guerry 2012-09-28 08:07:42 +02:00
parent 5ba6bd859a
commit d35c95a358

View file

@ -10862,6 +10862,7 @@ the default is \"/\"."
(total (1+ (length prefix)))) (total (1+ (length prefix))))
(setq maxwidth (max maxwidth 10)) (setq maxwidth (max maxwidth 10))
(concat prefix (concat prefix
(if prefix (or separator "/"))
(mapconcat (mapconcat
(lambda (h) (lambda (h)
(setq n (1+ n)) (setq n (1+ n))