From: Andreas Schwab Date: Fri, 28 Jun 2002 18:50:36 +0000 (+0000) Subject: (explicit-bash-args): New user option. X-Git-Tag: ttn-vms-21-2-B4~14397 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=6674676b2244d50c1747ac053f5e9a6edcbb4bd7;p=emacs.git (explicit-bash-args): New user option. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 19935796c8d..1e0466f6f80 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,7 @@ +2002-06-28 Andreas Schwab + + * shell.el (explicit-bash-args): New user option. + 2002-06-28 Kim F. Storm * ido.el: New file. diff --git a/lisp/shell.el b/lisp/shell.el index ec52a2f3624..5008a773f30 100644 --- a/lisp/shell.el +++ b/lisp/shell.el @@ -275,6 +275,14 @@ Value is a list of strings, which may be nil." :type '(repeat (string :tag "Argument")) :group 'shell) +(defcustom explicit-bash-args + ;; Tell bash not to use readline. + '("--noediting" "-i") + "*Args passed to inferior shell by M-x shell, if the shell is bash. +Value is a list of strings, which may be nil." + :type '(repeat (string :tag "Argument")) + :group 'shell) + (defcustom shell-input-autoexpand 'history "*If non-nil, expand input command history references on completion. This mirrors the optional behavior of tcsh (its autoexpand and histlit).