# HG changeset patch # User Andreas Schwab # Date 1072260348 0 # Node ID 0f1ef5c0e5d75fe2866c28944fb68a100e436190 # Parent bb2708b976f118485b14a0422a8c77cb1f636f05 (shell-file-name-quote-list): Add backslash. diff -r bb2708b976f1 -r 0f1ef5c0e5d7 lisp/shell.el --- 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.