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
commit1e55142152d2c1c8f8a14c448ba5f81017bac242 (patch)
treec2219d255420fa817dfa1078c06b4fa469d92a28 /lisp/hippie-exp.el
parentd54344ac7139ccef357e574852685d0b351f69e9 (diff)
downloademacs-1e55142152d2c1c8f8a14c448ba5f81017bac242.tar.gz
(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_/.,~^#$+="))