diff lisp/hippie-exp.el @ 15330:770c11688d0f

(he-file-name-chars): Check windows-nt, not ms-windows.
author Richard M. Stallman <rms@gnu.org>
date Tue, 04 Jun 1996 16:37:27 +0000
parents 594c4676b8c6
children 41bce2c4b1b8
line wrap: on
line diff
--- a/lisp/hippie-exp.el	Tue Jun 04 16:17:22 1996 +0000
+++ b/lisp/hippie-exp.el	Tue Jun 04 16:37:27 1996 +0000
@@ -445,7 +445,7 @@
 (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_/.,~^#$+="))