Mercurial > emacs
diff lisp/shell.el @ 6155:2b445a954b0b
(shell-delimiter-argument-list): Now has chars, not strings.
| author | Richard M. Stallman <rms@gnu.org> |
|---|---|
| date | Wed, 02 Mar 1994 22:02:56 +0000 |
| parents | 34d9a0aa80d1 |
| children | 84df7a6f6240 |
line wrap: on
line diff
--- a/lisp/shell.el Wed Mar 02 22:00:24 1994 +0000 +++ b/lisp/shell.el Wed Mar 02 22:02:56 1994 +0000 @@ -153,11 +153,10 @@ This is a fine thing to set in your `.emacs' file.") -(defvar shell-delimiter-argument-list '("|" "&" "<" ">" "(" ")" ";") +(defvar shell-delimiter-argument-list '(?\| ?& ?< ?> ?\( ?\) ?\;) "List of characters to recognise as separate arguments. -Defaults to \(\"|\" \"&\" \"\(\" \")\" \";\"), which works pretty well. -This variable is used to initialise `comint-delimiter-argument-list' in the -shell buffer. +This variable is used to initialize `comint-delimiter-argument-list' in the +shell buffer. The default is (?\\| ?& ?< ?> ?\\( ?\\) ?\\;). This is a fine thing to set in your `.emacs' file.")
