Mercurial > emacs
changeset 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 | 385d5fe1c95c |
children | 3aafcde7e7c4 |
files | lisp/shell.el |
diffstat | 1 files changed, 3 insertions(+), 4 deletions(-) [+] |
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.")