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.
This commit is contained in:
Ash 2023-04-08 19:59:38 -07:00 committed by Yuan Fu
parent 143d7c5eff
commit 30901d08bc
No known key found for this signature in database
GPG Key ID: 56E19BC57664A442

View File

@ -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