* gnus-group.el (gnus-group-sort-by-unread): Fix typo. Reported by
authorAndreas Seltenreich <uwi7@rz.uni-karlsruhe.de>
Tue, 27 Jun 2006 10:20:54 +0000 (10:20 +0000)
committerAndreas Seltenreich <uwi7@rz.uni-karlsruhe.de>
Tue, 27 Jun 2006 10:20:54 +0000 (10:20 +0000)
Kenneth Jacker <khj@be.cs.appstate.edu>.

lisp/ChangeLog
lisp/gnus-group.el

index 2a5f423..3cbe858 100644 (file)
@@ -1,3 +1,8 @@
+2006-06-27  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
+
+       * gnus-group.el (gnus-group-sort-by-unread): Fix typo.  Reported by
+       Kenneth Jacker <khj@be.cs.appstate.edu>.
+
 2006-06-26  Reiner Steib  <Reiner.Steib@gmx.de>
 
        * gnus-diary.el (gnus-user-format-function-d)
index 70d7600..536d8b8 100644 (file)
@@ -3228,7 +3228,7 @@ sort in reverse order."
 (defun gnus-group-sort-by-unread (info1 info2)
   "Sort by number of unread articles."
   (let ((n1 (gnus-group-unread (gnus-info-group info1)))
-       (n2 (gnus-group-unread (gnus-info-group info1))))
+       (n2 (gnus-group-unread (gnus-info-group info2))))
     (< (or (and (numberp n1) n1) 0)
        (or (and (numberp n2) n2) 0))))