Remove redundant :groups args missed in last commit

* lisp/emacs-lisp/cl-indent.el (lisp-lambda-list-keyword-alignment)
(lisp-lambda-list-keyword-parameter-indentation)
(lisp-lambda-list-keyword-parameter-alignment)
(lisp-indent-backquote-substitution-mode): Remove redundant :group args.
This commit is contained in:
Stefan Kangas 2020-05-03 16:21:51 +02:00
parent d55b3b5966
commit 5f516dc944

View file

@ -103,16 +103,14 @@ If non-nil, alignment is done with the first keyword
&key key1 key2) &key key1 key2)
#|...|#)" #|...|#)"
:version "24.1" :version "24.1"
:type 'boolean :type 'boolean)
:group 'lisp-indent)
(defcustom lisp-lambda-list-keyword-parameter-indentation 2 (defcustom lisp-lambda-list-keyword-parameter-indentation 2
"Indentation of lambda list keyword parameters. "Indentation of lambda list keyword parameters.
See `lisp-lambda-list-keyword-parameter-alignment' See `lisp-lambda-list-keyword-parameter-alignment'
for more information." for more information."
:version "24.1" :version "24.1"
:type 'integer :type 'integer)
:group 'lisp-indent)
(defcustom lisp-lambda-list-keyword-parameter-alignment nil (defcustom lisp-lambda-list-keyword-parameter-alignment nil
"Whether to vertically align lambda-list keyword parameters together. "Whether to vertically align lambda-list keyword parameters together.
@ -131,8 +129,7 @@ If non-nil, alignment is done with the first parameter
key3 key4) key3 key4)
#|...|#)" #|...|#)"
:version "24.1" :version "24.1"
:type 'boolean :type 'boolean)
:group 'lisp-indent)
(defcustom lisp-indent-backquote-substitution-mode t (defcustom lisp-indent-backquote-substitution-mode t
"How to indent substitutions in backquotes. "How to indent substitutions in backquotes.
@ -144,8 +141,7 @@ In any case, do not backtrack beyond a backquote substitution.
Until Emacs 25.1, the nil behavior was hard-wired." Until Emacs 25.1, the nil behavior was hard-wired."
:version "25.1" :version "25.1"
:type '(choice (const corrected) (const nil) (const t)) :type '(choice (const corrected) (const nil) (const t)))
:group 'lisp-indent)
(defvar lisp-indent-defun-method '(4 &lambda &body) (defvar lisp-indent-defun-method '(4 &lambda &body)