# HG changeset patch # User Richard M. Stallman # Date 762645776 0 # Node ID 2b445a954b0b8526139b46d5fae86309172196b0 # Parent 385d5fe1c95c2c1582dae8d64b50240524fcacae (shell-delimiter-argument-list): Now has chars, not strings. diff -r 385d5fe1c95c -r 2b445a954b0b lisp/shell.el --- 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.")