diff options
author | Karl Heuer <kwzh@gnu.org> | 1999-05-14 08:47:12 +0000 |
---|---|---|
committer | Karl Heuer <kwzh@gnu.org> | 1999-05-14 08:47:12 +0000 |
commit | cb641d1860fa9a4103e94d84b4785e7092ba03cb (patch) | |
tree | 7c9fcc86bdc48fb0a152197a5fa8131db619da87 /lisp | |
parent | 33d17698ffd000902f967e41da8acb853a970fca (diff) | |
download | emacs-cb641d1860fa9a4103e94d84b4785e7092ba03cb.tar.gz emacs-cb641d1860fa9a4103e94d84b4785e7092ba03cb.tar.bz2 emacs-cb641d1860fa9a4103e94d84b4785e7092ba03cb.zip |
(fast-lock-cache-name): Fix test for `windows-nt'.
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/fast-lock.el | 2 |
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'." (concat buffer-file-name ".flc") (let* ((bufile (expand-file-name buffer-file-truename)) (chars-alist - (if (memq system-type '(emx windowsnt)) + (if (memq system-type '(emx windows-nt)) '((?/ . (?#)) (?# . (?# ?#)) (?: . (?\;)) (?\; . (?\; ?\;))) '((?/ . (?#)) (?# . (?# ?#))))) (mapchars |