(gnus-group-catchup): Indent.
authorLars Magne Ingebrigtsen <larsi@gnus.org>
Thu, 13 Apr 2006 07:24:58 +0000 (07:24 +0000)
committerLars Magne Ingebrigtsen <larsi@gnus.org>
Thu, 13 Apr 2006 07:24:58 +0000 (07:24 +0000)
lisp/ChangeLog
lisp/gnus-group.el

index 6fc9035..66cfd96 100644 (file)
@@ -2,6 +2,7 @@
 
        * gnus-group.el (gnus-group-catchup-current): Change
        if-then-else-if-then-else into cond.
+       (gnus-group-catchup): Indent.
 
 2006-04-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
 
index bdbaff0..be73806 100644 (file)
@@ -3378,10 +3378,12 @@ or nil if no action could be taken."
        (gnus-add-marked-articles group 'dormant nil nil 'force))
       ;; Do auto-expirable marks if that's required.
       (when (gnus-group-auto-expirable-p group)
-        (gnus-range-map (lambda (article)
-                          (gnus-add-marked-articles group 'expire (list article))
-                          (gnus-request-set-mark group (list (list (list article) 'add '(expire)))))
-                        unread))
+        (gnus-range-map
+        (lambda (article)
+          (gnus-add-marked-articles group 'expire (list article))
+          (gnus-request-set-mark group (list (list (list article)
+                                                   'add '(expire)))))
+        unread))
       (let ((gnus-newsgroup-name group))
        (gnus-run-hooks 'gnus-group-catchup-group-hook))
       num)))