aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/progmodes/executable.el
diff options
context:
space:
mode:
authorChong Yidong2012-04-09 21:05:48 +0800
committerChong Yidong2012-04-09 21:05:48 +0800
commitfb7ada5f94a71d73bf6cfad5cc87fe7fb26125a5 (patch)
treeeba43d1fa2427a77f1f6b1468838426b33ea5973 /lisp/progmodes/executable.el
parenta18ecafa99e7e7c3caa35ed68dd8a7b9b5d2b8e3 (diff)
downloademacs-fb7ada5f94a71d73bf6cfad5cc87fe7fb26125a5.tar.gz
emacs-fb7ada5f94a71d73bf6cfad5cc87fe7fb26125a5.zip
Remove * characters from the front of variable docstrings.
Diffstat (limited to 'lisp/progmodes/executable.el')
-rw-r--r--lisp/progmodes/executable.el14
1 files changed, 7 insertions, 7 deletions
diff --git a/lisp/progmodes/executable.el b/lisp/progmodes/executable.el
index c44f1d73501..e5142571972 100644
--- a/lisp/progmodes/executable.el
+++ b/lisp/progmodes/executable.el
@@ -57,7 +57,7 @@
57;; This used to default to `other', but that doesn't seem to have any 57;; This used to default to `other', but that doesn't seem to have any
58;; significance. fx 2000-02-11. 58;; significance. fx 2000-02-11.
59(defcustom executable-insert t ; 'other 59(defcustom executable-insert t ; 'other
60 "*Non-nil means offer to add a magic number to a file. 60 "Non-nil means offer to add a magic number to a file.
61This takes effect when you switch to certain major modes, 61This takes effect when you switch to certain major modes,
62including Shell-script mode (`sh-mode'). 62including Shell-script mode (`sh-mode').
63When you type \\[executable-set-magic], it always offers to add or 63When you type \\[executable-set-magic], it always offers to add or
@@ -70,7 +70,7 @@ update the magic number."
70 70
71 71
72(defcustom executable-query 'function 72(defcustom executable-query 'function
73 "*If non-nil, ask user before changing an existing magic number. 73 "If non-nil, ask user before changing an existing magic number.
74When this is `function', only ask when called non-interactively." 74When this is `function', only ask when called non-interactively."
75 :type '(choice (const :tag "Don't Ask" nil) 75 :type '(choice (const :tag "Don't Ask" nil)
76 (const :tag "Ask when non-interactive" function) 76 (const :tag "Ask when non-interactive" function)
@@ -79,19 +79,19 @@ When this is `function', only ask when called non-interactively."
79 79
80 80
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\\)$" 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\\)$"
82 "*On files with this kind of name no magic is inserted or changed." 82 "On files with this kind of name no magic is inserted or changed."
83 :type 'regexp 83 :type 'regexp
84 :group 'executable) 84 :group 'executable)
85 85
86 86
87(defcustom executable-prefix "#! " 87(defcustom executable-prefix "#! "
88 "*Interpreter magic number prefix inserted when there was no magic number." 88 "Interpreter magic number prefix inserted when there was no magic number."
89 :type 'string 89 :type 'string
90 :group 'executable) 90 :group 'executable)
91 91
92 92
93(defcustom executable-chmod 73 93(defcustom executable-chmod 73
94 "*After saving, if the file is not executable, set this mode. 94 "After saving, if the file is not executable, set this mode.
95This mode passed to `set-file-modes' is taken absolutely when negative, or 95This mode passed to `set-file-modes' is taken absolutely when negative, or
96relative to the files existing modes. Do nothing if this is nil. 96relative to the files existing modes. Do nothing if this is nil.
97Typical values are 73 (+x) or -493 (rwxr-xr-x)." 97Typical values are 73 (+x) or -493 (rwxr-xr-x)."
@@ -103,7 +103,7 @@ Typical values are 73 (+x) or -493 (rwxr-xr-x)."
103(defvar executable-command nil) 103(defvar executable-command nil)
104 104
105(defcustom executable-self-display "tail" 105(defcustom executable-self-display "tail"
106 "*Command you use with argument `+2' to make text files self-display. 106 "Command you use with argument `+2' to make text files self-display.
107Note that the like of `more' doesn't work too well under Emacs \\[shell]." 107Note that the like of `more' doesn't work too well under Emacs \\[shell]."
108 :type 'string 108 :type 'string
109 :group 'executable) 109 :group 'executable)
@@ -111,7 +111,7 @@ Note that the like of `more' doesn't work too well under Emacs \\[shell]."
111 111
112(defvar executable-font-lock-keywords 112(defvar executable-font-lock-keywords
113 '(("\\`#!.*/\\([^ \t\n]+\\)" 1 font-lock-keyword-face t)) 113 '(("\\`#!.*/\\([^ \t\n]+\\)" 1 font-lock-keyword-face t))
114 "*Rules for highlighting executable scripts' magic number. 114 "Rules for highlighting executable scripts' magic number.
115This can be included in `font-lock-keywords' by modes that call `executable'.") 115This can be included in `font-lock-keywords' by modes that call `executable'.")
116 116
117 117