diff options
author | Karl Heuer <kwzh@gnu.org> | 1998-09-10 15:26:22 +0000 |
---|---|---|
committer | Karl Heuer <kwzh@gnu.org> | 1998-09-10 15:26:22 +0000 |
commit | ad3f2354b6f776e1807276dde5585b122ad7e029 (patch) | |
tree | c271e1dad2cee5f67aa2c4b3733bb3bc15bbc884 /lisp/shell.el | |
parent | be09e6e6bf034742e081b3d021a6df8fbb6151cd (diff) | |
download | emacs-ad3f2354b6f776e1807276dde5585b122ad7e029.tar.gz |
(shell-file-name-quote-list): Add # to the value.
Diffstat (limited to 'lisp/shell.el')
-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 03d06cae7e8..5b3c09cb413 100644 --- a/lisp/shell.el +++ b/lisp/shell.el @@ -163,7 +163,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. |