From d35c95a358738101faab5bb8707ab275293a69e9 Mon Sep 17 00:00:00 2001 From: Bastien Guerry Date: Fri, 28 Sep 2012 08:07:42 +0200 Subject: [PATCH] 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. --- lisp/org.el | 1 + 1 file changed, 1 insertion(+) diff --git a/lisp/org.el b/lisp/org.el index ab7b43bfa..de86e0231 100644 --- a/lisp/org.el +++ b/lisp/org.el @@ -10862,6 +10862,7 @@ the default is \"/\"." (total (1+ (length prefix)))) (setq maxwidth (max maxwidth 10)) (concat prefix + (if prefix (or separator "/")) (mapconcat (lambda (h) (setq n (1+ n))