diff options
| author | Chong Yidong | 2008-08-27 17:04:23 +0000 |
|---|---|---|
| committer | Chong Yidong | 2008-08-27 17:04:23 +0000 |
| commit | 3ca5dc5b45c08177775530b1fa8b4327edb7631e (patch) | |
| tree | 56ad6306c4c65d0e8efab33b5c5f8616adb70ff3 | |
| parent | fb5fc025c11209a999e9847de350b98394fcae80 (diff) | |
| download | emacs-3ca5dc5b45c08177775530b1fa8b4327edb7631e.tar.gz emacs-3ca5dc5b45c08177775530b1fa8b4327edb7631e.zip | |
(shell-file-name-quote-list): Quote `$'.
| -rw-r--r-- | lisp/shell.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/shell.el b/lisp/shell.el index e067fea4df9..5c52788b858 100644 --- a/lisp/shell.el +++ b/lisp/shell.el | |||
| @@ -172,7 +172,7 @@ This is a fine thing to set in your `.emacs' file.") | |||
| 172 | (defvar shell-file-name-quote-list | 172 | (defvar shell-file-name-quote-list |
| 173 | (if (memq system-type '(ms-dos windows-nt)) | 173 | (if (memq system-type '(ms-dos windows-nt)) |
| 174 | nil | 174 | nil |
| 175 | (append shell-delimiter-argument-list '(?\s ?\* ?\! ?\" ?\' ?\` ?\# ?\\))) | 175 | (append shell-delimiter-argument-list '(?\s ?$ ?\* ?\! ?\" ?\' ?\` ?\# ?\\))) |
| 176 | "List of characters to quote when in a file name. | 176 | "List of characters to quote when in a file name. |
| 177 | This variable is used to initialize `comint-file-name-quote-list' in the | 177 | This variable is used to initialize `comint-file-name-quote-list' in the |
| 178 | shell buffer. The value may depend on the operating system or shell. | 178 | shell buffer. The value may depend on the operating system or shell. |