2002-12-31 Ron Isaacson <Ron.Isaacson@morganstanley.com>
authoryoichi <yoichi>
Tue, 31 Dec 2002 08:13:08 +0000 (08:13 +0000)
committeryoichi <yoichi>
Tue, 31 Dec 2002 08:13:08 +0000 (08:13 +0000)
* wl-summary.el (wl-summary-mark-collect): Revive missing return
for sequential numbering case.

wl/ChangeLog
wl/wl-summary.el

index d4780a1..c5dc683 100644 (file)
@@ -1,3 +1,8 @@
+2002-12-31  Ron Isaacson  <Ron.Isaacson@morganstanley.com>
+
+       * wl-summary.el (wl-summary-mark-collect): Revive missing return
+       for sequential numbering case.
+
 2002-12-30  TAKAHASHI Kaoru  <kaoru@kaisei.org>
 
        * wl-message.el (wl-message-buffer-display): Back to the first page
index 0f3b16a..727aeef 100644 (file)
@@ -2994,7 +2994,8 @@ If optional argument NUMBER is specified, mark message specified by NUMBER."
          (while (not (eobp))
            (when (string= (wl-summary-temp-mark) mark)
              (setq msglist (cons (wl-summary-message-number) msglist)))
-           (forward-line 1)))))))
+           (forward-line 1))
+         (nreverse msglist))))))
 
 (defun wl-summary-exec ()
   (interactive)