From: yoichi Date: Tue, 19 Aug 2003 13:12:34 +0000 (+0000) Subject: * wl-summary.el (wl-summary-sync): Fix regexp for last: and first:. X-Git-Tag: wl-2_11_8~3 X-Git-Url: http://git.chise.org/gitweb/?a=commitdiff_plain;h=291c83ebf4a32458eb4e01501c2ae82b7d6b41b2;p=elisp%2Fwanderlust.git * wl-summary.el (wl-summary-sync): Fix regexp for last: and first:. --- 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))