Synch to No Gnus 200406292138.
authoryamaoka <yamaoka>
Tue, 29 Jun 2004 22:12:28 +0000 (22:12 +0000)
committeryamaoka <yamaoka>
Tue, 29 Jun 2004 22:12:28 +0000 (22:12 +0000)
lisp/ChangeLog
lisp/gnus-group.el

index a0c97bf..845c0fd 100644 (file)
@@ -1,3 +1,8 @@
+2004-06-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
+
+       * gnus-group.el (gnus-group-get-new-news-this-group): Don't
+       update info that isn't there.
+
 2004-06-29  Katsumi Yamaoka  <yamaoka@jpl.org>
 
        * mm-view.el (mm-inline-render-with-function): Use multibyte
index b265d5e..a0f5d07 100644 (file)
@@ -3688,7 +3688,8 @@ If DONT-SCAN is non-nil, scan non-activated groups as well."
       (if (gnus-activate-group group (if dont-scan nil 'scan) nil method)
          (let ((info (gnus-get-info group))
                (active (gnus-active group)))
-           (gnus-request-update-info info method)
+           (when info
+             (gnus-request-update-info info method))
            (gnus-get-unread-articles-in-group info active)
            (unless (gnus-virtual-group-p group)
              (gnus-close-group group))