(spam-setup-widening): don't use (return)
authorTeodor Zlatanov <tzz@lifelogs.com>
Fri, 7 Mar 2003 17:49:17 +0000 (17:49 +0000)
committerTeodor Zlatanov <tzz@lifelogs.com>
Fri, 7 Mar 2003 17:49:17 +0000 (17:49 +0000)
lisp/ChangeLog
lisp/spam.el

index 07b62c1..446e8a0 100644 (file)
@@ -3,6 +3,7 @@
        * spam.el (spam-use-hashcash): new variable
        (spam-list-of-checks): added spam-use-hashcash with associated spam-check-hashcash
        (spam-check-hashcash): new function, installed iff hashcash.el is loaded
+       (spam-setup-widening): don't use (return)
 
 2003-03-06  Kevin Greiner  <kgreiner@xpediantsolutions.com>
 
index 451f64f..fc9c714 100644 (file)
@@ -612,8 +612,7 @@ See the Info node `(gnus)Fancy Mail Splitting' for more details."
 (defun spam-setup-widening ()
   (dolist (check spam-list-of-statistical-checks)
     (when (symbol-value check)
-      (setq nnimap-split-download-body t)
-      (return))))
+      (setq nnimap-split-download-body t))))
 
 (add-hook 'gnus-get-new-news-hook 'spam-setup-widening)