From 291c83ebf4a32458eb4e01501c2ae82b7d6b41b2 Mon Sep 17 00:00:00 2001 From: yoichi Date: Tue, 19 Aug 2003 13:12:34 +0000 Subject: [PATCH] * wl-summary.el (wl-summary-sync): Fix regexp for last: and first:. --- wl/ChangeLog | 4 ++++ wl/wl-summary.el | 4 ++-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/wl/ChangeLog b/wl/ChangeLog index f4ce49c..5376b7b 100644 --- a/wl/ChangeLog +++ b/wl/ChangeLog @@ -1,3 +1,7 @@ +2003-08-19 Yoichi NAKAYAMA + + * wl-summary.el (wl-summary-sync): Fix regexp for last: and first:. + 2003-08-19 Yuuichi Teranishi * wl-summary.el (wl-summary-sync): Treat no-sync. diff --git a/wl/wl-summary.el b/wl/wl-summary.el index c81adfd..fb9c830 100644 --- a/wl/wl-summary.el +++ b/wl/wl-summary.el @@ -1181,8 +1181,8 @@ Entering Folder mode calls the value of `wl-summary-mode-hook'." (wl-summary-resume-cache-status) (and msg (wl-summary-jump-to-msg msg)))) ((string= range "no-sync")) - ((or (string-match "last:" range) - (string-match "first:" range)) + ((or (string-match "^last:" range) + (string-match "^first:" range)) (wl-summary-goto-folder-subr (concat "/" range "/" (elmo-folder-name-internal folder)) -- 1.7.10.4