emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[nongnu] elpa/spell-fu a2a0e3b786 60/86: Cleanup: remove redundant group


From: ELPA Syncer
Subject: [nongnu] elpa/spell-fu a2a0e3b786 60/86: Cleanup: remove redundant group properties
Date: Thu, 7 Jul 2022 12:03:43 -0400 (EDT)

branch: elpa/spell-fu
commit a2a0e3b786d774997f9e1571c3feceacc268989f
Author: Campbell Barton <ideasman42@gmail.com>
Commit: Campbell Barton <ideasman42@gmail.com>

    Cleanup: remove redundant group properties
---
 spell-fu.el | 9 ++-------
 1 file changed, 2 insertions(+), 7 deletions(-)

diff --git a/spell-fu.el b/spell-fu.el
index 1a13921953..bb8a845cbe 100644
--- a/spell-fu.el
+++ b/spell-fu.el
@@ -71,19 +71,16 @@
 
 (defcustom spell-fu-directory (locate-user-emacs-file "spell-fu" 
".emacs-spell-fu")
   "The directory to store undo data."
-  :group 'spell-fu
   :type 'string)
 
 (defcustom spell-fu-idle-delay 0.25
   "Idle time to wait before highlighting.
 Set to 0.0 to highlight immediately (as part of syntax highlighting)."
-  :group 'spell-fu
   :type 'float)
 
 (defcustom spell-fu-ignore-modes nil
   "List of major-modes to exclude when `spell-fu' has been enabled globally."
-  :type '(repeat symbol)
-  :group 'spell-fu)
+  :type '(repeat symbol))
 
 (defvar-local global-spell-fu-ignore-buffer nil
   "When non-nil, the global mode will not be enabled for this buffer.
@@ -96,8 +93,7 @@ check this buffer.")
   '
   ((((supports :underline (:style wave))) :underline (:style wave :color 
"red"))
     (t :underline t :inherit error))
-  "Face for incorrect spelling."
-  :group 'spell-fu)
+  "Face for incorrect spelling.")
 
 ;; See '-' as a word boundary \b, so 'full-screen' is detected as two words.
 (defvar-local spell-fu-syntax-table
@@ -1205,7 +1201,6 @@ Return t when the word is removed."
 ;;;###autoload
 (define-minor-mode spell-fu-mode
   "Toggle variable `spell-fu-mode' in the current buffer."
-  :group 'spell-fu
   :global nil
 
   (cond



reply via email to

[Prev in Thread] Current Thread [Next in Thread]