diff options
Diffstat (limited to 'lisp/progmodes/cwarn.el')
-rw-r--r-- | lisp/progmodes/cwarn.el | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/lisp/progmodes/cwarn.el b/lisp/progmodes/cwarn.el index 042030da396..63b344bea16 100644 --- a/lisp/progmodes/cwarn.el +++ b/lisp/progmodes/cwarn.el @@ -128,8 +128,7 @@ on one of three forms: See variable `cwarn-font-lock-feature-keywords-alist' for available features." - :type '(repeat sexp) - :group 'cwarn) + :type '(repeat sexp)) (defcustom cwarn-font-lock-feature-keywords-alist '((assign . cwarn-font-lock-assignment-keywords) @@ -142,15 +141,13 @@ keyword list." :type '(alist :key-type (choice (const assign) (const semicolon) (const reference)) - :value-type (sexp :tag "Value")) - :group 'cwarn) + :value-type (sexp :tag "Value"))) (defcustom cwarn-verbose t "When nil, CWarn mode will not generate any messages. Currently, messages are generated when the mode is activated and deactivated." - :group 'cwarn :type 'boolean) (defcustom cwarn-mode-text " CWarn" @@ -158,13 +155,11 @@ deactivated." \(When the string is not empty, make sure that it has a leading space.)" :tag "CWarn mode text" ; To separate it from `global-...' - :group 'cwarn :type 'string) (defcustom cwarn-load-hook nil "Functions to run when CWarn mode is first loaded." :tag "Load Hook" - :group 'cwarn :type 'hook) (make-obsolete-variable 'cwarn-load-hook "use `with-eval-after-load' instead." "28.1") |