diff options
author | Geoff Voelker <voelker@cs.washington.edu> | 1998-04-17 05:25:04 +0000 |
---|---|---|
committer | Geoff Voelker <voelker@cs.washington.edu> | 1998-04-17 05:25:04 +0000 |
commit | 4aed037936b450b88d2ecf0003b11a3c9bdd3956 (patch) | |
tree | 1c1573a1e6a66410ca9f8e51a363c9d72338ed6a /lisp | |
parent | 97b927b3fa3faa8422e78ddd41d22a84af1a0613 (diff) | |
download | emacs-4aed037936b450b88d2ecf0003b11a3c9bdd3956.tar.gz emacs-4aed037936b450b88d2ecf0003b11a3c9bdd3956.tar.bz2 emacs-4aed037936b450b88d2ecf0003b11a3c9bdd3956.zip |
(shell-file-name-chars): Add ',' and ':'.
Diffstat (limited to 'lisp')
-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 ff86b52356b..a62ea1fdee7 100644 --- a/lisp/shell.el +++ b/lisp/shell.el @@ -152,7 +152,7 @@ This is a fine thing to set in your `.emacs' file.") (defvar shell-file-name-chars (if (memq system-type '(ms-dos windows-nt)) - "~/A-Za-z0-9_^$!#%&{}@`'.()-" + "~/A-Za-z0-9_^$!#%&{}@`'.,:()-" "~/A-Za-z0-9+@:_.$#%,={}-") "String of characters valid in a file name. This variable is used to initialize `comint-file-name-chars' in the |