]> git.eshelyaron.com Git - emacs.git/commitdiff
(explicit-bash-args): New user option.
authorAndreas Schwab <schwab@suse.de>
Fri, 28 Jun 2002 18:50:36 +0000 (18:50 +0000)
committerAndreas Schwab <schwab@suse.de>
Fri, 28 Jun 2002 18:50:36 +0000 (18:50 +0000)
lisp/ChangeLog
lisp/shell.el

index 19935796c8ded17593a3d5c304a07ea9e2281287..1e0466f6f8055808312daa08d1b6cc7102ffb72e 100644 (file)
@@ -1,3 +1,7 @@
+2002-06-28  Andreas Schwab  <schwab@suse.de>
+
+       * shell.el (explicit-bash-args): New user option.
+
 2002-06-28  Kim F. Storm  <storm@cua.dk>
 
        * ido.el: New file.
index ec52a2f3624cbb5004f78fb18bca6c563eb67bfa..5008a773f30dc47fc7d4da59cfe5a95c6c4e5545 100644 (file)
@@ -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).