diff options
| author | Stefan Kangas | 2021-02-13 05:18:55 +0100 |
|---|---|---|
| committer | Stefan Kangas | 2021-02-13 07:17:20 +0100 |
| commit | b4b9ecdfe366c64a7b95c4fd295b583c3f3c7aa9 (patch) | |
| tree | 65360c882a1620a73585172bfbc6941a1f80bb72 /lisp/progmodes/executable.el | |
| parent | ca0842347e5437bcaeeded4a7fd55e0e48ed4bad (diff) | |
| download | emacs-b4b9ecdfe366c64a7b95c4fd295b583c3f3c7aa9.tar.gz 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/executable.el')
| -rw-r--r-- | lisp/progmodes/executable.el | 21 |
1 files changed, 7 insertions, 14 deletions
diff --git a/lisp/progmodes/executable.el b/lisp/progmodes/executable.el index fa5724a3800..b1cd3303c5b 100644 --- a/lisp/progmodes/executable.el +++ b/lisp/progmodes/executable.el | |||
| @@ -65,8 +65,7 @@ update the magic number." | |||
| 65 | ;;; :type '(choice (const :tag "off" nil) | 65 | ;;; :type '(choice (const :tag "off" nil) |
| 66 | ;;; (const :tag "on" t) | 66 | ;;; (const :tag "on" t) |
| 67 | ;;; symbol) | 67 | ;;; symbol) |
| 68 | :type 'boolean | 68 | :type 'boolean) |
| 69 | :group 'executable) | ||
| 70 | 69 | ||
| 71 | 70 | ||
| 72 | (defcustom executable-query 'function | 71 | (defcustom executable-query 'function |
| @@ -74,21 +73,18 @@ update the magic number." | |||
| 74 | When this is `function', only ask when called non-interactively." | 73 | When this is `function', only ask when called non-interactively." |
| 75 | :type '(choice (const :tag "Don't Ask" nil) | 74 | :type '(choice (const :tag "Don't Ask" nil) |
| 76 | (const :tag "Ask when non-interactive" function) | 75 | (const :tag "Ask when non-interactive" function) |
| 77 | (other :tag "Ask" t)) | 76 | (other :tag "Ask" t))) |
| 78 | :group 'executable) | ||
| 79 | 77 | ||
| 80 | 78 | ||
| 81 | (defcustom executable-magicless-file-regexp "/[Mm]akefile$\\|/\\.\\(z?profile\\|bash_profile\\|z?login\\|bash_login\\|z?logout\\|bash_logout\\|.+shrc\\|esrc\\|rcrc\\|[kz]shenv\\)$" | 79 | (defcustom executable-magicless-file-regexp "/[Mm]akefile$\\|/\\.\\(z?profile\\|bash_profile\\|z?login\\|bash_login\\|z?logout\\|bash_logout\\|.+shrc\\|esrc\\|rcrc\\|[kz]shenv\\)$" |
| 82 | "On files with this kind of name no magic is inserted or changed." | 80 | "On files with this kind of name no magic is inserted or changed." |
| 83 | :type 'regexp | 81 | :type 'regexp) |
| 84 | :group 'executable) | ||
| 85 | 82 | ||
| 86 | (defcustom executable-prefix "#!" | 83 | (defcustom executable-prefix "#!" |
| 87 | "Interpreter magic number prefix inserted when there was no magic number. | 84 | "Interpreter magic number prefix inserted when there was no magic number. |
| 88 | Use of `executable-prefix-env' is preferable to this option." | 85 | Use of `executable-prefix-env' is preferable to this option." |
| 89 | :version "26.1" ; deprecated | 86 | :version "26.1" ; deprecated |
| 90 | :type 'string | 87 | :type 'string) |
| 91 | :group 'executable) | ||
| 92 | 88 | ||
| 93 | (defcustom executable-prefix-env nil | 89 | (defcustom executable-prefix-env nil |
| 94 | "If non-nil, use \"/usr/bin/env\" in interpreter magic number. | 90 | "If non-nil, use \"/usr/bin/env\" in interpreter magic number. |
| @@ -96,8 +92,7 @@ If this variable is non-nil, the interpreter magic number inserted | |||
| 96 | by `executable-set-magic' will be \"#!/usr/bin/env INTERPRETER\", | 92 | by `executable-set-magic' will be \"#!/usr/bin/env INTERPRETER\", |
| 97 | otherwise it will be \"#!/path/to/INTERPRETER\"." | 93 | otherwise it will be \"#!/path/to/INTERPRETER\"." |
| 98 | :version "26.1" | 94 | :version "26.1" |
| 99 | :type 'boolean | 95 | :type 'boolean) |
| 100 | :group 'executable) | ||
| 101 | 96 | ||
| 102 | (defcustom executable-chmod 73 | 97 | (defcustom executable-chmod 73 |
| 103 | "After saving, if the file is not executable, set this mode. | 98 | "After saving, if the file is not executable, set this mode. |
| @@ -105,8 +100,7 @@ This mode passed to `set-file-modes' is taken absolutely when negative, or | |||
| 105 | relative to the files existing modes. Do nothing if this is nil. | 100 | relative to the files existing modes. Do nothing if this is nil. |
| 106 | Typical values are 73 (+x) or -493 (rwxr-xr-x)." | 101 | Typical values are 73 (+x) or -493 (rwxr-xr-x)." |
| 107 | :type '(choice integer | 102 | :type '(choice integer |
| 108 | (const nil)) | 103 | (const nil))) |
| 109 | :group 'executable) | ||
| 110 | 104 | ||
| 111 | 105 | ||
| 112 | (defvar executable-command nil) | 106 | (defvar executable-command nil) |
| @@ -114,8 +108,7 @@ Typical values are 73 (+x) or -493 (rwxr-xr-x)." | |||
| 114 | (defcustom executable-self-display "tail" | 108 | (defcustom executable-self-display "tail" |
| 115 | "Command you use with argument `-n+2' to make text files self-display. | 109 | "Command you use with argument `-n+2' to make text files self-display. |
| 116 | Note that the like of `more' doesn't work too well under Emacs \\[shell]." | 110 | Note that the like of `more' doesn't work too well under Emacs \\[shell]." |
| 117 | :type 'string | 111 | :type 'string) |
| 118 | :group 'executable) | ||
| 119 | 112 | ||
| 120 | (make-obsolete-variable 'executable-self-display nil "25.1" 'set) | 113 | (make-obsolete-variable 'executable-self-display nil "25.1" 'set) |
| 121 | 114 | ||