aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKim F. Storm2006-10-09 09:04:23 +0000
committerKim F. Storm2006-10-09 09:04:23 +0000
commit400b0022fb83f90c04f89fe6dca85c3560c5b5bb (patch)
tree84a1fcfbc9ff1068f62f96355c6b32c36d1feb9b
parentb000ea17bf17931dd25a897f3f58f50027ab5488 (diff)
downloademacs-400b0022fb83f90c04f89fe6dca85c3560c5b5bb.tar.gz
emacs-400b0022fb83f90c04f89fe6dca85c3560c5b5bb.zip
(explicit-csh-args, explicit-bash-args): Add comment
about implicit use.
-rw-r--r--lisp/shell.el4
1 files changed, 4 insertions, 0 deletions
diff --git a/lisp/shell.el b/lisp/shell.el
index d4791821b5b..316ba0ab244 100644
--- a/lisp/shell.el
+++ b/lisp/shell.el
@@ -272,6 +272,8 @@ This is effective only if directory tracking is enabled."
272 :type '(choice (const :tag "None" nil) file) 272 :type '(choice (const :tag "None" nil) file)
273 :group 'shell) 273 :group 'shell)
274 274
275;; Note: There are no explicit references to the variable `explicit-csh-args'.
276;; It is used implicitly by M-x shell when the shell is `csh'.
275(defcustom explicit-csh-args 277(defcustom explicit-csh-args
276 (if (eq system-type 'hpux) 278 (if (eq system-type 'hpux)
277 ;; -T persuades HP's csh not to think it is smarter 279 ;; -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."
283 :type '(repeat (string :tag "Argument")) 285 :type '(repeat (string :tag "Argument"))
284 :group 'shell) 286 :group 'shell)
285 287
288;; Note: There are no explicit references to the variable `explicit-bash-args'.
289;; It is used implicitly by M-x shell when the interactive shell is `bash'.
286(defcustom explicit-bash-args 290(defcustom explicit-bash-args
287 ;; Tell bash not to use readline, except for bash 1.x which doesn't grook --noediting. 291 ;; Tell bash not to use readline, except for bash 1.x which doesn't grook --noediting.
288 ;; Bash 1.x has -nolineediting, but process-send-eof cannot terminate bash if we use it. 292 ;; Bash 1.x has -nolineediting, but process-send-eof cannot terminate bash if we use it.