Browse Source

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.
Bastien Guerry 12 years ago
parent
commit
d35c95a358
1 changed files with 1 additions and 0 deletions
  1. 1 0
      lisp/org.el

+ 1 - 0
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))