From 633d058eb46e9d5f9eaf25ddb1ecc3d651c81bc2 Mon Sep 17 00:00:00 2001 From: teranisi Date: Mon, 4 Sep 2000 04:55:59 +0000 Subject: [PATCH] * elmo2.el (elmo-multi-folder-diff): Fixed problem of filter folder. --- elmo/ChangeLog | 2 ++ elmo/elmo2.el | 3 ++- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/elmo/ChangeLog b/elmo/ChangeLog index 657dcb1..91bfa07 100644 --- a/elmo/ChangeLog +++ b/elmo/ChangeLog @@ -1,5 +1,7 @@ 2000-09-04 Yuuichi Teranishi + * elmo2.el (elmo-multi-folder-diff): Fixed problem of filter folder. + * elmo-imap4.el (elmo-imap4-authenticator-alist): Added `plain' entry. (elmo-imap4-send-command): Use `elmo-imap4-current-response' instead of `response'. diff --git a/elmo/elmo2.el b/elmo/elmo2.el index 79b01b6..aa13003 100644 --- a/elmo/elmo2.el +++ b/elmo/elmo2.el @@ -774,7 +774,8 @@ without cacheing." (setq count (+ 1 count)) (setq flds (cdr flds))) (while diffs - (setq unsync (+ unsync (car (car diffs)))) + (and (car (car diffs)) + (setq unsync (+ unsync (car (car diffs))))) (setq nomif (+ nomif (cdr (car diffs)))) (setq diffs (cdr diffs))) (elmo-folder-set-info-hashtb fld nil nomif) -- 1.7.10.4