]> git.eshelyaron.com Git - emacs.git/commitdiff
(nnvirtual-create-mapping): Don't use mapc.
authorDave Love <fx@gnu.org>
Sat, 23 Oct 1999 12:00:04 +0000 (12:00 +0000)
committerDave Love <fx@gnu.org>
Sat, 23 Oct 1999 12:00:04 +0000 (12:00 +0000)
lisp/gnus/ChangeLog
lisp/gnus/nnvirtual.el

index 3545e2871e6c45ed1b4a55c03864e33a8ecad47b..872f1a2cabeb6ed18fd62f7ae0e3469e01c7652e 100644 (file)
@@ -1,3 +1,7 @@
+1999-10-23  Dave Love  <fx@gnu.org>
+
+       * nnvirtual.el (nnvirtual-create-mapping): Don't use mapc.
+
 1999-10-19  Dave Love  <fx@gnu.org>
 
        * pop3.el: Merge changes from version `1.3s' which we weren't sent.
index 243717f5bafc2596e94d0ad647d6714164452df8..510cd1b05172c3324d41ab20463eeaf86fef6732 100644 (file)
@@ -671,27 +671,27 @@ based on the marks on the component groups."
     ;; Into all-unreads we put (g unreads).
     ;; Into all-marks we put (g marks).
     ;; We also increment cnt and tot here, and compute M (max of sizes).
-    (mapc (lambda (g)
-           (setq active (gnus-activate-group g)
-                 min (car active)
-                 max (cdr active))
-           (when (and active (>= max min) (not (zerop max)))
-             ;; store active information
-             (push (list g (- max min -1) max) actives)
-             ;; collect unread/mark info for later
-             (setq unreads (gnus-list-of-unread-articles g))
-             (setq marks (gnus-info-marks (gnus-get-info g)))
-             (when gnus-use-cache
-               (push (cons 'cache
-                           (gnus-cache-articles-in-group g))
-                     marks))
-             (push (cons g unreads) all-unreads)
-             (push (cons g marks) all-marks)
-             ;; count groups, total #articles, and max size
-             (setq size (- max min -1))
-             (setq cnt (1+ cnt)
-                   tot (+ tot size)
-                   M (max M size))))
+    (mapcar (lambda (g)
+             (setq active (gnus-activate-group g)
+                   min (car active)
+                   max (cdr active))
+             (when (and active (>= max min) (not (zerop max)))
+               ;; store active information
+               (push (list g (- max min -1) max) actives)
+               ;; collect unread/mark info for later
+               (setq unreads (gnus-list-of-unread-articles g))
+               (setq marks (gnus-info-marks (gnus-get-info g)))
+               (when gnus-use-cache
+                 (push (cons 'cache
+                             (gnus-cache-articles-in-group g))
+                       marks))
+               (push (cons g unreads) all-unreads)
+               (push (cons g marks) all-marks)
+               ;; count groups, total #articles, and max size
+               (setq size (- max min -1))
+               (setq cnt (1+ cnt)
+                     tot (+ tot size)
+                     M (max M size))))
          nnvirtual-component-groups)
 
     ;; Number of articles in the virtual group.