# HG changeset patch # User Kim F. Storm # Date 1160384663 0 # Node ID 2b23d84b802a9aee476fccdf1e29237d67f04ec0 # Parent 0f59271c551d2b2cceaf12c38738b5fd1825e1cc (explicit-csh-args, explicit-bash-args): Add comment about implicit use. diff -r 0f59271c551d -r 2b23d84b802a lisp/shell.el --- 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.