]> git.eshelyaron.com Git - emacs.git/commitdiff
(comint-filename-chars): Combine DOS and Windows strings.
authorGeoff Voelker <voelker@cs.washington.edu>
Fri, 17 Apr 1998 05:23:53 +0000 (05:23 +0000)
committerGeoff Voelker <voelker@cs.washington.edu>
Fri, 17 Apr 1998 05:23:53 +0000 (05:23 +0000)
lisp/comint.el

index 8e3a1bb23095367fc51848eaf02bb9ee7e4e0e61..c6ba27ac6af4fd4d33b528e59519e1d11dc07a12 100644 (file)
@@ -1940,13 +1940,9 @@ This is used by comint's and shell's completion functions, and by shell's
 directory tracking functions.")
 
 (defvar comint-file-name-chars
-  (cond
-   ((eq system-type 'ms-dos)
-    "~/A-Za-z0-9_^$!#%&{}@`'.()-")
-   ((eq system-type 'windows-nt)
-    "~/A-Za-z0-9_^$!#%&{}@`'.,:()-")
-   (t   
-    "~/A-Za-z0-9+@:_.$#%,={}-"))
+  (if (memq system-type '(ms-dos windows-nt))
+      "~/A-Za-z0-9_^$!#%&{}@`'.,:()-"
+    "~/A-Za-z0-9+@:_.$#%,={}-")
   "String of characters valid in a file name.
 Note that all non-ASCII characters are considered valid in a file name
 regardless of what this variable says.