# HG changeset patch # User Andreas Schwab # Date 1025290221 0 # Node ID 58a34a457ab8ea3884f9a0a08c648996616ed7ab # Parent fb621b18f76e0406b2f20b92bcd34010c066fb24 (explicit-bash-args): New user option. diff -r fb621b18f76e -r 58a34a457ab8 lisp/shell.el --- 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).