changeset 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 19008fd7774d
children 8cf5ec9e5058
files lisp/hippie-exp.el
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
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_/.,~^#$+="))