]> code.delx.au - gnu-emacs/commitdiff
(shell-file-name-quote-list): Quote `$'.
authorChong Yidong <cyd@stupidchicken.com>
Wed, 27 Aug 2008 17:04:23 +0000 (17:04 +0000)
committerChong Yidong <cyd@stupidchicken.com>
Wed, 27 Aug 2008 17:04:23 +0000 (17:04 +0000)
lisp/shell.el

index e067fea4df9b2ff7374eef298ac83a3622be47c5..5c52788b858ea22510db11e2229c7882b3a04bce 100644 (file)
@@ -172,7 +172,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 '(?\s ?\* ?\! ?\" ?\' ?\` ?\# ?\\)))
+    (append shell-delimiter-argument-list '(?\s ?$ ?\* ?\! ?\" ?\' ?\` ?\# ?\\)))
   "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.