branch: elpa/doc-show-inline
commit bd132bceb567ff7527a7ce20ce796ce0cd39b852
Author: Campbell Barton <[email protected]>
Commit: Campbell Barton <[email protected]>

    Fix: specify custom group for defface
    
    Without specifying the group explicitly,
    this face won't appear in any custom group.
---
 doc-show-inline.el | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/doc-show-inline.el b/doc-show-inline.el
index d8bc32b44b1..9ffd70eb94d 100644
--- a/doc-show-inline.el
+++ b/doc-show-inline.el
@@ -94,7 +94,8 @@ does not have a user defined background color."
 (defface doc-show-inline-face (list (list t :extend t))
   "Background for overlays.
 Note that the `background' is initialized using
-`doc-show-inline-face-background-highlight' unless it's customized.")
+`doc-show-inline-face-background-highlight' unless it's customized."
+  :group 'doc-show-inline)
 
 ;; TODO, document and make public.
 (defvar doc-show-inline-mode-defaults

Reply via email to