From f0902bf185242a62d3f6b7f1b0dc18908c951e6f Mon Sep 17 00:00:00 2001 From: Nicholas Vollmer Date: Tue, 6 Oct 2020 01:30:09 -0400 Subject: [PATCH] org.el (org-display-outline-path): Fix invalid face reference error * lisp/org.el (org-display-outline-path): Use an anonymous face when adding default :height to outline path. --- lisp/org.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/org.el b/lisp/org.el index 9450308f8..a464eb5cc 100644 --- a/lisp/org.el +++ b/lisp/org.el @@ -8048,7 +8048,7 @@ If JUST-RETURN-STRING is non-nil, return a string, don't display a message." (and file bfn (concat (file-name-nondirectory bfn) separator)) separator)) (add-face-text-property 0 (length res) - `((t :height ,(face-attribute 'default :height))) + `(:height ,(face-attribute 'default :height)) nil res) (if just-return-string res