comparison lisp/progmodes/sh-script.el @ 8121:cf243e9e63f8

(sh-chmod-argument): Change default.
author Richard M. Stallman <rms@gnu.org>
date Sat, 02 Jul 1994 16:55:54 +0000
parents ec8291e58762
children bbf6304598d9
comparison
equal deleted inserted replaced
8120:74f972cffd3a 8121:cf243e9e63f8
163 The regexp must match the whole output, and must contain a \\(something\\) 163 The regexp must match the whole output, and must contain a \\(something\\)
164 construct which matches the actual executable.") 164 construct which matches the actual executable.")
165 165
166 166
167 167
168 (defvar sh-chmod-argument "755" 168 (defvar sh-chmod-argument "+x"
169 "*After saving, if the file is not executable, set this mode. 169 "*After saving, if the file is not executable, set this mode.
170 The mode can be absolute \"511\" or relative \"u+x\". Do nothing if this is nil.") 170 The mode can be absolute, such as \"777\", or relative, such as \"+x\".
171 Do nothing if this is nil.")
171 172
172 173
173 (defvar sh-shell-path (or (getenv "SHELL") "/bin/sh") 174 (defvar sh-shell-path (or (getenv "SHELL") "/bin/sh")
174 "*The executable of the shell being programmed.") 175 "*The executable of the shell being programmed.")
175 176