branch: elpa/spell-fu
commit 6c7cdc971d232096ae22c9bdbdcf21cfcdaeb755
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.
---
 spell-fu.el | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/spell-fu.el b/spell-fu.el
index beaea562fe2..33466b739bf 100644
--- a/spell-fu.el
+++ b/spell-fu.el
@@ -136,7 +136,8 @@ use `spell-fu-dictionary-add'.")
 (defface spell-fu-incorrect-face
   '((((supports :underline (:style wave))) :underline (:style wave :color 
"red"))
     (t :underline t :inherit error))
-  "Face for incorrect spelling.")
+  "Face for incorrect spelling."
+  :group 'spell-fu)
 
 ;; See '-' as a word boundary \b, so 'full-screen' is detected as two words.
 (defvar-local spell-fu-syntax-table

Reply via email to