aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman1994-03-02 22:02:56 +0000
committerRichard M. Stallman1994-03-02 22:02:56 +0000
commit56eb10608f4b60b1d96c6e83498ea128ffa857e8 (patch)
tree4f1d3c89474f121f6f5c3648c476a53a84571aa8
parent3f4b7c360217e4b589d315d5ddf523377ef41412 (diff)
downloademacs-56eb10608f4b60b1d96c6e83498ea128ffa857e8.tar.gz
emacs-56eb10608f4b60b1d96c6e83498ea128ffa857e8.zip
(shell-delimiter-argument-list): Now has chars, not strings.
-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