changeset 46073:58a34a457ab8

(explicit-bash-args): New user option.
author Andreas Schwab <schwab@suse.de>
date Fri, 28 Jun 2002 18:50:21 +0000
parents fb621b18f76e
children 9bdcd2b36fbd
files lisp/shell.el
diffstat 1 files changed, 8 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/shell.el	Fri Jun 28 14:57:08 2002 +0000
+++ b/lisp/shell.el	Fri Jun 28 18:50:21 2002 +0000
@@ -275,6 +275,14 @@
   :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).