]> git.eshelyaron.com Git - emacs.git/commitdiff
(shell-delimiter-argument-list): Now has chars, not strings.
authorRichard M. Stallman <rms@gnu.org>
Wed, 2 Mar 1994 22:02:56 +0000 (22:02 +0000)
committerRichard M. Stallman <rms@gnu.org>
Wed, 2 Mar 1994 22:02:56 +0000 (22:02 +0000)
lisp/shell.el

index aa08f990490887dacf9bd48d10791d5ada7e150d..45107e67f67357a1cc15bfa08641cef457961523 100644 (file)
@@ -153,11 +153,10 @@ on lines which don't start with a prompt.
 
 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.")