aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/shell.el
diff options
context:
space:
mode:
Diffstat (limited to 'lisp/shell.el')
-rw-r--r--lisp/shell.el7
1 files changed, 3 insertions, 4 deletions
diff --git a/lisp/shell.el b/lisp/shell.el
index aa08f990490..45107e67f67 100644
--- a/lisp/shell.el
+++ b/lisp/shell.el
@@ -153,11 +153,10 @@ on lines which don't start with a prompt.
153 153
154This is a fine thing to set in your `.emacs' file.") 154This is a fine thing to set in your `.emacs' file.")
155 155
156(defvar shell-delimiter-argument-list '("|" "&" "<" ">" "(" ")" ";") 156(defvar shell-delimiter-argument-list '(?\| ?& ?< ?> ?\( ?\) ?\;)
157 "List of characters to recognise as separate arguments. 157 "List of characters to recognise as separate arguments.
158Defaults to \(\"|\" \"&\" \"\(\" \")\" \";\"), which works pretty well. 158This variable is used to initialize `comint-delimiter-argument-list' in the
159This variable is used to initialise `comint-delimiter-argument-list' in the 159shell buffer. The default is (?\\| ?& ?< ?> ?\\( ?\\) ?\\;).
160shell buffer.
161 160
162This is a fine thing to set in your `.emacs' file.") 161This is a fine thing to set in your `.emacs' file.")
163 162