Synch with Oort Gnus.
authoryamaoka <yamaoka>
Sun, 9 Jun 2002 23:14:32 +0000 (23:14 +0000)
committeryamaoka <yamaoka>
Sun, 9 Jun 2002 23:14:32 +0000 (23:14 +0000)
lisp/ChangeLog
lisp/gnus-int.el

index 8dd4e76..5284f1a 100644 (file)
@@ -1,3 +1,7 @@
+2002-06-10  Simon Josefsson  <jas@extundo.com>
+
+       * gnus-int.el (gnus-request-expire-articles): Fix last change?
+
 2002-06-09  Simon Josefsson  <jas@extundo.com>
 
        * gnus-sum.el (gnus-summary-delete-article): Don't agent expire here.
index a4a9b1f..ae97600 100644 (file)
@@ -485,16 +485,16 @@ If GROUP is nil, all groups on GNUS-COMMAND-METHOD are scanned."
             info (nth 1 gnus-command-method))))
 
 (defun gnus-request-expire-articles (articles group &optional force)
-  (let ((gnus-command-method (gnus-find-method-for-group group))
-       (not-deleted
-        (funcall
-         (gnus-get-function gnus-command-method 'request-expire-articles)
-         articles (gnus-group-real-name group) (nth 1 gnus-command-method)
-         force)))
+  (let* ((gnus-command-method (gnus-find-method-for-group group))
+        (not-deleted
+         (funcall
+          (gnus-get-function gnus-command-method 'request-expire-articles)
+          articles (gnus-group-real-name group) (nth 1 gnus-command-method)
+          force)))
     (when (and gnus-agent gnus-agent-cache
               (gnus-sorted-difference articles not-deleted))
       (gnus-agent-expire (gnus-sorted-difference articles not-deleted)
-                        gnus-newsgroup-name 'force))
+                        group 'force))
     not-deleted))
 
 (defun gnus-request-move-article