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:
parent
5ba6bd859a
commit
d35c95a358
|
@ -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))
|
||||||
|
|
Loading…
Reference in New Issue