summaryrefslogtreecommitdiff
path: root/lisp/shell.el
diff options
context:
space:
mode:
authorAndreas Schwab <schwab@suse.de>2003-12-24 10:05:48 +0000
committerAndreas Schwab <schwab@suse.de>2003-12-24 10:05:48 +0000
commitf9ca862a94f625e17a5d610f62e37a69245458a4 (patch)
tree3e3b0a8c17c25a3b656427c6c032d8005e14b106 /lisp/shell.el
parent674e65b26e6a62dba3126740f075ccfc8a24de8a (diff)
downloademacs-f9ca862a94f625e17a5d610f62e37a69245458a4.tar.gz
(shell-file-name-quote-list): Add backslash.
Diffstat (limited to 'lisp/shell.el')
-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.")
(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.