From d8884183469b2a215c69d6dfd1e7d516eca72e4c 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 | 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