Mercurial > emacs
changeset 53273:0f1ef5c0e5d7
(shell-file-name-quote-list): Add backslash.
author | Andreas Schwab <schwab@suse.de> |
---|---|
date | Wed, 24 Dec 2003 10:05:48 +0000 |
parents | bb2708b976f1 |
children | c6ecb6ee69bf |
files | lisp/shell.el |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/shell.el Wed Dec 24 10:05:31 2003 +0000 +++ b/lisp/shell.el Wed Dec 24 10:05:48 2003 +0000 @@ -177,7 +177,7 @@ (defvar shell-file-name-quote-list (if (memq system-type '(ms-dos windows-nt)) nil - (append shell-delimiter-argument-list '(?\ ?\* ?\! ?\" ?\' ?\` ?\#))) + (append shell-delimiter-argument-list '(?\ ?\* ?\! ?\" ?\' ?\` ?\# ?\\))) "List of characters to quote when in a file name. This variable is used to initialize `comint-file-name-quote-list' in the shell buffer. The value may depend on the operating system or shell.