]> git.eshelyaron.com Git - emacs.git/commitdiff
gnus-sum.el (gnus-summary-read-group-1): Fix the "contains no messages" logic, which...
authorLars Ingebrigtsen <larsi@gnus.org>
Thu, 27 Jan 2011 23:56:27 +0000 (23:56 +0000)
committerKatsumi Yamaoka <yamaoka@jpl.org>
Thu, 27 Jan 2011 23:56:27 +0000 (23:56 +0000)
lisp/gnus/ChangeLog
lisp/gnus/gnus-sum.el

index 2bb58c98fec04916fb2c1059f0cce6e7034e8e51..3970f61d0499dc661b0411864eed141054fa89e5 100644 (file)
@@ -1,5 +1,8 @@
 2011-01-27  Lars Ingebrigtsen  <larsi@gnus.org>
 
+       * gnus-sum.el (gnus-summary-read-group-1): Fix the "contains no
+       messages" logic, which was reversed.
+
        * gnus-art.el (article-update-date-lapsed): Ensure that point stays at
        the "same place" even if point is on the line being replaced.
        (article-update-date-lapsed): Allow updating both the combined lapsed
index e709b71a5b08a44d659359290b52df09be7214d1..8ee5964689eb3bc180cd8f60f587e60574ea0918 100644 (file)
@@ -3939,11 +3939,9 @@ If NO-DISPLAY, don't generate a summary buffer."
              (gnus-group-jump-to-group group)
              (gnus-group-next-unread-group 1))
          (gnus-handle-ephemeral-exit quit-config)))
-      (let ((grpinfo (gnus-get-info group)))
-       (if (null (gnus-info-read grpinfo))
-           (gnus-message 3 "Group %s contains no messages"
-                         (gnus-group-decoded-name group))
-         (gnus-message 3 "Can't select group")))
+      (if (null (gnus-list-of-unread-articles group))
+         (gnus-message 3 "Group %s contains no messages" group)
+       (gnus-message 3 "Can't select group"))
       nil)
      ;; The user did a `C-g' while prompting for number of articles,
      ;; so we exit this group.