(shell-file-name-quote-list): Add backslash.
authorAndreas Schwab <schwab@suse.de>
Wed, 24 Dec 2003 10:05:48 +0000 (10:05 +0000)
committerAndreas Schwab <schwab@suse.de>
Wed, 24 Dec 2003 10:05:48 +0000 (10:05 +0000)
lisp/shell.el

index c9191bc..cc83dcf 100644 (file)
@@ -177,7 +177,7 @@ This is a fine thing to set in your `.emacs' file.")
 (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.