From 282cd2b8d909a2c50b8b0b02efe8c8f3acc3e065 Mon Sep 17 00:00:00 2001 From: keiichi Date: Thu, 23 Dec 1999 10:09:21 +0000 Subject: [PATCH] (gnus-cache-file-name): Do not replace file name character in base path. --- lisp/gnus-cache.el | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/lisp/gnus-cache.el b/lisp/gnus-cache.el index 0cc99b5..0795259 100644 --- a/lisp/gnus-cache.el +++ b/lisp/gnus-cache.el @@ -419,8 +419,7 @@ Returns the list of articles removed." ;; Translate the first colon into a slash. (when (string-match ":" group) (aset group (match-beginning 0) ?/)) - (nnheader-replace-chars-in-string group ?. ?/))) - t)) + (nnheader-replace-chars-in-string group ?. ?/))))) (if (stringp article) article (int-to-string article)))) (defun gnus-cache-update-article (group article) -- 1.7.10.4