From: Richard M. Stallman Date: Wed, 2 Mar 1994 22:02:56 +0000 (+0000) Subject: (shell-delimiter-argument-list): Now has chars, not strings. X-Git-Tag: emacs-19.34~9697 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=56eb10608f4b60b1d96c6e83498ea128ffa857e8;p=emacs.git (shell-delimiter-argument-list): Now has chars, not strings. --- 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. 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.")