From 52594ea5d3e1fa5c110304fb22147713d1226198 Mon Sep 17 00:00:00 2001 Message-ID: <52594ea5d3e1fa5c110304fb22147713d1226198.1689431152.git.yantar92@posteo.net> From: Ihor Radchenko Date: Sat, 15 Jul 2023 17:20:54 +0300 Subject: [PATCH] org-property-value: Define face as non-nil * lisp/org-faces.el (org-property-value): Set default value to inherit from `font-lock-string-face' instead of using invalid face value of nil. Reported-by: Mauro Aranda Link: https://orgmode.org/list/41956a5a-44c2-c1ea-e1e5-d018a8656e48@gmail.com --- lisp/org-faces.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/org-faces.el b/lisp/org-faces.el index b3f8e419c..436552cb2 100644 --- a/lisp/org-faces.el +++ b/lisp/org-faces.el @@ -108,7 +108,7 @@ (defface org-drawer ;Copied from `font-lock-function-name-face' "Face used for drawers." :group 'org-faces) -(defface org-property-value nil +(defface org-property-value '((t :inherit default)) "Face used for the value of a property." :group 'org-faces) -- 2.41.0