From a3576543f5476c4ff617a31a419ffee59461aebb Mon Sep 17 00:00:00 2001 From: Bastien Guerry Date: Fri, 4 Sep 2020 10:03:48 +0200 Subject: [PATCH] org.el: Fix `org-display-outline-path' * lisp/org.el (org-display-outline-path): Always remove faces when setting the outline path to display. See --- lisp/org.el | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/lisp/org.el b/lisp/org.el index 5b35d8a0a..f37c92ec5 100644 --- a/lisp/org.el +++ b/lisp/org.el @@ -9199,13 +9199,14 @@ If JUST-RETURN-STRING is non-nil, return a string, don't display a message." (when (looking-at org-complex-heading-regexp) (list (match-string 4))))))) (setq res - (org-format-outline-path - path - (1- (frame-width)) - (and file bfn (concat (file-name-nondirectory bfn) separator)) - separator)) + (org-no-properties + (org-format-outline-path + path + (1- (frame-width)) + (and file bfn (concat (file-name-nondirectory bfn) separator)) + separator))) (if just-return-string - (org-no-properties res) + res (org-unlogged-message "%s" res)))) (defvar org-refile-history nil