(he-file-name-chars): Check windows-nt, not ms-windows.
authorRichard M. Stallman <rms@gnu.org>
Tue, 4 Jun 1996 16:37:27 +0000 (16:37 +0000)
committerRichard M. Stallman <rms@gnu.org>
Tue, 4 Jun 1996 16:37:27 +0000 (16:37 +0000)
lisp/hippie-exp.el

index 4b16c71..bb59ac6 100644 (file)
@@ -445,7 +445,7 @@ otherwise."
 (defvar he-file-name-chars
   (cond ((memq system-type '(vax-vms axp-vms))
         "-a-zA-Z0-9_/.,~^#$+=:\\[\\]")
-       ((memq system-type '(ms-dos ms-windows))
+       ((memq system-type '(ms-dos windows-nt))
         "-a-zA-Z0-9_/.,~^#$+=:\\\\")
        (t                          ;; More strange file formats ?
         "-a-zA-Z0-9_/.,~^#$+="))