From 30901d08bc4ea81b0fbd624084be1ffb066a89fa Mon Sep 17 00:00:00 2001 From: Ash Date: Sat, 8 Apr 2023 19:59:38 -0700 Subject: [PATCH] Fix eldoc-box-body rendering in Customize At least on my build (28.2), defining the face with :background unspecified makes Customize only show the raw lisp expression. Setting it to ((t . nil)) makes it work. * eldoc-box.el (eldoc-box-body): Change face definition to nil. --- eldoc-box.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eldoc-box.el b/eldoc-box.el index 77dac26..09fdbf9 100644 --- a/eldoc-box.el +++ b/eldoc-box.el @@ -81,7 +81,7 @@ (((background light)) . (:background "black"))) "The border color used in childframe.") -(defface eldoc-box-body '((t . (:background unspecified))) +(defface eldoc-box-body '((t . nil)) "Body face used in documentation childframe.") (defcustom eldoc-box-only-multi-line nil