From 56eb10608f4b60b1d96c6e83498ea128ffa857e8 Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Wed, 2 Mar 1994 22:02:56 +0000 Subject: [PATCH] (shell-delimiter-argument-list): Now has chars, not strings. --- lisp/shell.el | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) 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.")