Mercurial > emacs
changeset 73305:2b23d84b802a
(explicit-csh-args, explicit-bash-args): Add comment
about implicit use.
author | Kim F. Storm <storm@cua.dk> |
---|---|
date | Mon, 09 Oct 2006 09:04:23 +0000 |
parents | 0f59271c551d |
children | f9d85be1a1de |
files | lisp/shell.el |
diffstat | 1 files changed, 4 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/shell.el Mon Oct 09 09:04:13 2006 +0000 +++ b/lisp/shell.el Mon Oct 09 09:04:23 2006 +0000 @@ -272,6 +272,8 @@ :type '(choice (const :tag "None" nil) file) :group 'shell) +;; Note: There are no explicit references to the variable `explicit-csh-args'. +;; It is used implicitly by M-x shell when the shell is `csh'. (defcustom explicit-csh-args (if (eq system-type 'hpux) ;; -T persuades HP's csh not to think it is smarter @@ -283,6 +285,8 @@ :type '(repeat (string :tag "Argument")) :group 'shell) +;; Note: There are no explicit references to the variable `explicit-bash-args'. +;; It is used implicitly by M-x shell when the interactive shell is `bash'. (defcustom explicit-bash-args ;; Tell bash not to use readline, except for bash 1.x which doesn't grook --noediting. ;; Bash 1.x has -nolineediting, but process-send-eof cannot terminate bash if we use it.