diff options
author | Stefan Kangas <stefan@marxist.se> | 2021-02-13 05:18:55 +0100 |
---|---|---|
committer | Stefan Kangas <stefan@marxist.se> | 2021-02-13 07:17:20 +0100 |
commit | b4b9ecdfe366c64a7b95c4fd295b583c3f3c7aa9 (patch) | |
tree | 65360c882a1620a73585172bfbc6941a1f80bb72 /lisp/progmodes/modula2.el | |
parent | ca0842347e5437bcaeeded4a7fd55e0e48ed4bad (diff) | |
download | emacs-b4b9ecdfe366c64a7b95c4fd295b583c3f3c7aa9.tar.gz emacs-b4b9ecdfe366c64a7b95c4fd295b583c3f3c7aa9.tar.bz2 emacs-b4b9ecdfe366c64a7b95c4fd295b583c3f3c7aa9.zip |
Remove redundant :group args in progmodes/*.el
* lisp/progmodes/bug-reference.el:
* lisp/progmodes/cfengine.el:
* lisp/progmodes/cmacexp.el:
* lisp/progmodes/cpp.el:
* lisp/progmodes/cwarn.el:
* lisp/progmodes/dcl-mode.el:
* lisp/progmodes/executable.el:
* lisp/progmodes/flymake.el:
* lisp/progmodes/gud.el:
* lisp/progmodes/hideshow.el:
* lisp/progmodes/icon.el:
* lisp/progmodes/inf-lisp.el:
* lisp/progmodes/js.el:
* lisp/progmodes/ld-script.el:
* lisp/progmodes/make-mode.el:
* lisp/progmodes/modula2.el:
* lisp/progmodes/pascal.el:
* lisp/progmodes/perl-mode.el:
* lisp/progmodes/prog-mode.el:
* lisp/progmodes/simula.el:
* lisp/progmodes/xscheme.el: Remove redundant :group args.
Diffstat (limited to 'lisp/progmodes/modula2.el')
-rw-r--r-- | lisp/progmodes/modula2.el | 15 |
1 files changed, 5 insertions, 10 deletions
diff --git a/lisp/progmodes/modula2.el b/lisp/progmodes/modula2.el index a77a4e2b216..536d3be0056 100644 --- a/lisp/progmodes/modula2.el +++ b/lisp/progmodes/modula2.el @@ -51,23 +51,19 @@ (defcustom m2-compile-command "m2c" "Command to compile Modula-2 programs." - :type 'string - :group 'modula2) + :type 'string) (defcustom m2-link-command "m2l" "Command to link Modula-2 programs." - :type 'string - :group 'modula2) + :type 'string) (defcustom m2-link-name nil "Name of the Modula-2 executable." - :type '(choice (const nil) string) - :group 'modula2) + :type '(choice (const nil) string)) (defcustom m2-end-comment-column 75 "Column for aligning the end of a comment, in Modula-2." - :type 'integer - :group 'modula2) + :type 'integer) ;;; Added by TEP (defvar m2-mode-map @@ -105,8 +101,7 @@ (defcustom m2-indent 5 "This variable gives the indentation in Modula-2 mode." - :type 'integer - :group 'modula2) + :type 'integer) (put 'm2-indent 'safe-local-variable (lambda (v) (or (null v) (integerp v)))) |