]> git.eshelyaron.com Git - emacs.git/commitdiff
(explicit-csh-args, explicit-bash-args): Add comment
authorKim F. Storm <storm@cua.dk>
Mon, 9 Oct 2006 09:04:23 +0000 (09:04 +0000)
committerKim F. Storm <storm@cua.dk>
Mon, 9 Oct 2006 09:04:23 +0000 (09:04 +0000)
about implicit use.

lisp/shell.el

index d4791821b5bd5a2424942af83d81b0ee80220c13..316ba0ab2443c90d11a6d1d78291375793e6f5f3 100644 (file)
@@ -272,6 +272,8 @@ This is effective only if directory tracking is enabled."
   :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 @@ Value is a list of strings, which may be nil."
   :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.