From d1d0c30e656cae2fa31d811850d40703cb7ce63d Mon Sep 17 00:00:00 2001 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 594c9a6e7..bb0958033 100644 --- a/lisp/org-faces.el +++ b/lisp/org-faces.el @@ -108,7 +108,7 @@ color of the frame." "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)