From 6bb844494c3ccadc284f0ecf03ca6f1a3f245c15 Mon Sep 17 00:00:00 2001 From: yamaoka Date: Wed, 11 Dec 2002 02:10:17 +0000 Subject: [PATCH] Fix last change. --- lisp/gnus-agent.el | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/lisp/gnus-agent.el b/lisp/gnus-agent.el index f37cb63..df00c31 100644 --- a/lisp/gnus-agent.el +++ b/lisp/gnus-agent.el @@ -2267,12 +2267,12 @@ FORCE is equivalent to setting gnus-agent-expire-days to zero(0)." (file (gnus-agent-article-name ".overview" group)) (dir (file-name-directory file)) point - (gnus-tmp-downloaded - (if (file-exists-p dir) - (sort (mapcar (lambda (name) (string-to-int name)) - (directory-files dir nil "^[0-9]+$" t)) - '>) - (progn (gnus-make-directory dir) nil))) + (downloaded (if (file-exists-p dir) + (sort (mapcar (lambda (name) (string-to-int name)) + (directory-files dir nil "^[0-9]+$" t)) + '>) + (progn (gnus-make-directory dir) nil))) + (gnus-tmp-downloaded downloaded) dl nov-arts alist header regenerated) -- 1.7.10.4