Fix wording in a doc-view.el comment

* lisp/doc-view.el (doc-view--current-cache-dir): Don't use
"illegal" for something that is not against the law.
This commit is contained in:
Eli Zaretskii 2016-02-15 13:09:46 +02:00
parent cf79616133
commit 903603f8cd

View file

@ -696,11 +696,12 @@ It's a subdirectory of `doc-view-cache-directory'."
(setq doc-view--current-cache-dir (setq doc-view--current-cache-dir
(file-name-as-directory (file-name-as-directory
(expand-file-name (expand-file-name
(concat (thread-last (file-name-nondirectory doc-view--buffer-file-name) (concat (thread-last
(file-name-nondirectory doc-view--buffer-file-name)
;; bug#13679 ;; bug#13679
(subst-char-in-string ?% ?_) (subst-char-in-string ?% ?_)
;; arc-mode concatenates archive name and file name ;; arc-mode concatenates archive name and file name
;; with colon, which is illegal on MS-Windows. ;; with colon, which isn't allowed on MS-Windows.
(subst-char-in-string ?: ?_)) (subst-char-in-string ?: ?_))
"-" "-"
(let ((file doc-view--buffer-file-name)) (let ((file doc-view--buffer-file-name))