aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKarl Heuer1999-05-14 08:47:12 +0000
committerKarl Heuer1999-05-14 08:47:12 +0000
commitcb641d1860fa9a4103e94d84b4785e7092ba03cb (patch)
tree7c9fcc86bdc48fb0a152197a5fa8131db619da87
parent33d17698ffd000902f967e41da8acb853a970fca (diff)
downloademacs-cb641d1860fa9a4103e94d84b4785e7092ba03cb.tar.gz
emacs-cb641d1860fa9a4103e94d84b4785e7092ba03cb.zip
(fast-lock-cache-name): Fix test for `windows-nt'.
-rw-r--r--lisp/fast-lock.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/fast-lock.el b/lisp/fast-lock.el
index 859ec239c42..fca1188789f 100644
--- a/lisp/fast-lock.el
+++ b/lisp/fast-lock.el
@@ -552,7 +552,7 @@ See `fast-lock-cache-directory'."
552 (concat buffer-file-name ".flc") 552 (concat buffer-file-name ".flc")
553 (let* ((bufile (expand-file-name buffer-file-truename)) 553 (let* ((bufile (expand-file-name buffer-file-truename))
554 (chars-alist 554 (chars-alist
555 (if (memq system-type '(emx windowsnt)) 555 (if (memq system-type '(emx windows-nt))
556 '((?/ . (?#)) (?# . (?# ?#)) (?: . (?\;)) (?\; . (?\; ?\;))) 556 '((?/ . (?#)) (?# . (?# ?#)) (?: . (?\;)) (?\; . (?\; ?\;)))
557 '((?/ . (?#)) (?# . (?# ?#))))) 557 '((?/ . (?#)) (?# . (?# ?#)))))
558 (mapchars 558 (mapchars