diff options
| author | Richard M. Stallman | 1994-03-02 22:02:56 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1994-03-02 22:02:56 +0000 |
| commit | 56eb10608f4b60b1d96c6e83498ea128ffa857e8 (patch) | |
| tree | 4f1d3c89474f121f6f5c3648c476a53a84571aa8 | |
| parent | 3f4b7c360217e4b589d315d5ddf523377ef41412 (diff) | |
| download | emacs-56eb10608f4b60b1d96c6e83498ea128ffa857e8.tar.gz emacs-56eb10608f4b60b1d96c6e83498ea128ffa857e8.zip | |
(shell-delimiter-argument-list): Now has chars, not strings.
| -rw-r--r-- | lisp/shell.el | 7 |
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 | ||
| 154 | This is a fine thing to set in your `.emacs' file.") | 154 | This 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. |
| 158 | Defaults to \(\"|\" \"&\" \"\(\" \")\" \";\"), which works pretty well. | 158 | This variable is used to initialize `comint-delimiter-argument-list' in the |
| 159 | This variable is used to initialise `comint-delimiter-argument-list' in the | 159 | shell buffer. The default is (?\\| ?& ?< ?> ?\\( ?\\) ?\\;). |
| 160 | shell buffer. | ||
| 161 | 160 | ||
| 162 | This is a fine thing to set in your `.emacs' file.") | 161 | This is a fine thing to set in your `.emacs' file.") |
| 163 | 162 | ||