浏览代码

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 年之前
父节点
当前提交
d35c95a358
共有 1 个文件被更改,包括 1 次插入0 次删除
  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))