changeset 97761:3971edd65203

(shell-file-name-quote-list): Quote `$'.
author Chong Yidong <cyd@stupidchicken.com>
date Wed, 27 Aug 2008 17:04:23 +0000
parents 89093acf32a1
children 870ef2dba090
files lisp/shell.el
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/shell.el	Wed Aug 27 17:04:13 2008 +0000
+++ b/lisp/shell.el	Wed Aug 27 17:04:23 2008 +0000
@@ -172,7 +172,7 @@
 (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.