diff options
| -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 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 |