From 8c44211f10620d21fcd31fb81850642f1094cf84 Mon Sep 17 00:00:00 2001 From: yoichi Date: Tue, 31 Dec 2002 08:13:08 +0000 Subject: [PATCH] 2002-12-31 Ron Isaacson * wl-summary.el (wl-summary-mark-collect): Revive missing return for sequential numbering case. --- wl/ChangeLog | 5 +++++ wl/wl-summary.el | 3 ++- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/wl/ChangeLog b/wl/ChangeLog index d4780a1..c5dc683 100644 --- a/wl/ChangeLog +++ b/wl/ChangeLog @@ -1,3 +1,8 @@ +2002-12-31 Ron Isaacson + + * wl-summary.el (wl-summary-mark-collect): Revive missing return + for sequential numbering case. + 2002-12-30 TAKAHASHI Kaoru * wl-message.el (wl-message-buffer-display): Back to the first page diff --git a/wl/wl-summary.el b/wl/wl-summary.el index 0f3b16a..727aeef 100644 --- a/wl/wl-summary.el +++ b/wl/wl-summary.el @@ -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) -- 1.7.10.4