nnir.el (nnir-run-imap): Order the article list separately for each group.
authorAndrew Cohen <cohen@andy.bu.edu>
Wed, 17 Nov 2010 14:23:12 +0000 (09:23 -0500)
committerAndrew Cohen <cohen@andy.bu.edu>
Wed, 17 Nov 2010 14:23:12 +0000 (09:23 -0500)
lisp/ChangeLog
lisp/nnir.el

index f2e95ba..be7c0a9 100644 (file)
@@ -1,3 +1,8 @@
+2010-11-17  Andrew Cohen  <cohen@andy.bu.edu>
+
+       * nnir.el (nnir-run-imap): Reverse the article list for each group
+       rather than the whole list.
+
 2010-11-17  Katsumi Yamaoka  <yamaoka@jpl.org>
 
        * shr.el (shr-image-displayer): Protect function against non-existent
index 3745677..1983a0a 100644 (file)
@@ -677,14 +677,14 @@ details on the language and supported extensions"
                         (cdr (assoc nnir-imap-default-search-key
                                     nnir-imap-search-arguments))))
           (gnus-inhibit-demon t)
-         (groups (or groups (nnir-get-active srv)))
-          artlist)
+         (groups (or groups (nnir-get-active srv))))
       (message "Opening server %s" server)
       (apply
        'vconcat
        (mapcar
        (lambda (x)
-         (let ((group x))
+         (let ((group x)
+               artlist)
            (condition-case ()
                (when (nnimap-possibly-change-group
                       (gnus-group-short-name group) server)