diff options
Diffstat (limited to 'lisp/shell.el')
| -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 | ||