aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndreas Schwab2003-12-24 10:05:48 +0000
committerAndreas Schwab2003-12-24 10:05:48 +0000
commit56090b0b3b40fb7df4b6b09ef9cd123359491e32 (patch)
tree8841c6f06f6684a337c48a652c1f9b2db40e2195
parent702b4f7f9b7ca7436fe6d2142c143e77f5ee25c5 (diff)
downloademacs-56090b0b3b40fb7df4b6b09ef9cd123359491e32.tar.gz
emacs-56090b0b3b40fb7df4b6b09ef9cd123359491e32.zip
(shell-file-name-quote-list): Add backslash.
-rw-r--r--lisp/shell.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/shell.el b/lisp/shell.el
index c9191bc1648..cc83dcf1429 100644
--- a/lisp/shell.el
+++ b/lisp/shell.el
@@ -177,7 +177,7 @@ This is a fine thing to set in your `.emacs' file.")
177(defvar shell-file-name-quote-list 177(defvar shell-file-name-quote-list
178 (if (memq system-type '(ms-dos windows-nt)) 178 (if (memq system-type '(ms-dos windows-nt))
179 nil 179 nil
180 (append shell-delimiter-argument-list '(?\ ?\* ?\! ?\" ?\' ?\` ?\#))) 180 (append shell-delimiter-argument-list '(?\ ?\* ?\! ?\" ?\' ?\` ?\# ?\\)))
181 "List of characters to quote when in a file name. 181 "List of characters to quote when in a file name.
182This variable is used to initialize `comint-file-name-quote-list' in the 182This variable is used to initialize `comint-file-name-quote-list' in the
183shell buffer. The value may depend on the operating system or shell. 183shell buffer. The value may depend on the operating system or shell.