aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGeoff Voelker1998-04-17 05:24:15 +0000
committerGeoff Voelker1998-04-17 05:24:15 +0000
commitd976a95d4b2576722bf77a0394c0d9d4ed8c19ce (patch)
tree70906567a77c76d097aeaa64fabb85e323586ce7
parentda418b28dccaaf30e938c5be3fb5e3bc8f592b5c (diff)
downloademacs-d976a95d4b2576722bf77a0394c0d9d4ed8c19ce.tar.gz
emacs-d976a95d4b2576722bf77a0394c0d9d4ed8c19ce.zip
(fast-lock-cache-name): Replace '\' with '#'.
-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 0268a1ecad3..d739673288f 100644
--- a/lisp/fast-lock.el
+++ b/lisp/fast-lock.el
@@ -535,7 +535,7 @@ See `fast-lock-cache-directory'."
535 (concat buffer-file-name ".flc") 535 (concat buffer-file-name ".flc")
536 (let* ((bufile (expand-file-name buffer-file-truename)) 536 (let* ((bufile (expand-file-name buffer-file-truename))
537 (chars-alist 537 (chars-alist
538 (if (eq system-type 'emx) 538 (if (memq system-type '(emx windowsnt))
539 '((?/ . (?#)) (?# . (?# ?#)) (?: . (?\;)) (?\; . (?\; ?\;))) 539 '((?/ . (?#)) (?# . (?# ?#)) (?: . (?\;)) (?\; . (?\; ?\;)))
540 '((?/ . (?#)) (?# . (?# ?#))))) 540 '((?/ . (?#)) (?# . (?# ?#)))))
541 (mapchars 541 (mapchars