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

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