comparison lisp/shell.el @ 46073:58a34a457ab8

(explicit-bash-args): New user option.
author Andreas Schwab <schwab@suse.de>
date Fri, 28 Jun 2002 18:50:21 +0000
parents dc0eece6818b
children bd315b9fa3f0
comparison
equal deleted inserted replaced
46072:fb621b18f76e 46073:58a34a457ab8
269 ;; -T persuades HP's csh not to think it is smarter 269 ;; -T persuades HP's csh not to think it is smarter
270 ;; than us about what terminal modes to use. 270 ;; than us about what terminal modes to use.
271 '("-i" "-T") 271 '("-i" "-T")
272 '("-i")) 272 '("-i"))
273 "*Args passed to inferior shell by M-x shell, if the shell is csh. 273 "*Args passed to inferior shell by M-x shell, if the shell is csh.
274 Value is a list of strings, which may be nil."
275 :type '(repeat (string :tag "Argument"))
276 :group 'shell)
277
278 (defcustom explicit-bash-args
279 ;; Tell bash not to use readline.
280 '("--noediting" "-i")
281 "*Args passed to inferior shell by M-x shell, if the shell is bash.
274 Value is a list of strings, which may be nil." 282 Value is a list of strings, which may be nil."
275 :type '(repeat (string :tag "Argument")) 283 :type '(repeat (string :tag "Argument"))
276 :group 'shell) 284 :group 'shell)
277 285
278 (defcustom shell-input-autoexpand 'history 286 (defcustom shell-input-autoexpand 'history