# HG changeset patch # User Geoff Voelker # Date 873229059 0 # Node ID aee700a39aea4d6732ef3fbe773c821900a08cfe # Parent b0f1b44e7a13b2acc59244c423ba03f7d15b2bb1 (comint-file-name-chars): Use separate sets for ms-dos and windows-nt. diff -r b0f1b44e7a13 -r aee700a39aea lisp/comint.el --- a/lisp/comint.el Tue Sep 02 19:37:13 1997 +0000 +++ b/lisp/comint.el Tue Sep 02 19:37:39 1997 +0000 @@ -1918,9 +1918,13 @@ directory tracking functions.") (defvar comint-file-name-chars - (if (memq system-type '(ms-dos windows-nt)) - "~/A-Za-z0-9_^$!#%&{}@`'.()-" - "~/A-Za-z0-9+@:_.$#%,={}-") + (cond + ((eq system-type 'ms-dos) + "~/A-Za-z0-9_^$!#%&{}@`'.()-") + ((eq system-type 'windows-nt) + "~/A-Za-z0-9_^$!#%&{}@`'.,:()-") + (t + "~/A-Za-z0-9+@:_.$#%,={}-")) "String of characters valid in a file name. This is a good thing to set in mode hooks.")