summaryrefslogtreecommitdiff
path: root/lisp/hippie-exp.el
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1996-06-04 16:37:27 +0000
committerRichard M. Stallman <rms@gnu.org>1996-06-04 16:37:27 +0000
commit8a5a6d3e6dc8279b42f3a04d5bab840e9106937d (patch)
tree94b9fef0cdfd48b312e05a33012d25f7b570c1c2 /lisp/hippie-exp.el
parentde88363f854f16ab2746ddf44c9150cfdf7a3d90 (diff)
downloademacs-8a5a6d3e6dc8279b42f3a04d5bab840e9106937d.tar.gz
emacs-8a5a6d3e6dc8279b42f3a04d5bab840e9106937d.tar.bz2
emacs-8a5a6d3e6dc8279b42f3a04d5bab840e9106937d.zip
(he-file-name-chars): Check windows-nt, not ms-windows.
Diffstat (limited to 'lisp/hippie-exp.el')
-rw-r--r--lisp/hippie-exp.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/hippie-exp.el b/lisp/hippie-exp.el
index 4b16c719371..bb59ac68382 100644
--- a/lisp/hippie-exp.el
+++ b/lisp/hippie-exp.el
@@ -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_/.,~^#$+="))