(wl-summary-prev): Fixed regexp.
authorteranisi <teranisi>
Fri, 3 May 2002 06:17:10 +0000 (06:17 +0000)
committerteranisi <teranisi>
Fri, 3 May 2002 06:17:10 +0000 (06:17 +0000)
(wl-summary-next): Ditto.

wl/ChangeLog
wl/wl-summary.el

index 65b8fb3..e66a7cf 100644 (file)
@@ -1,3 +1,8 @@
+2002-05-03  Yuuichi Teranishi  <teranisi@ns.templewest.net>
+
+       * wl-summary.el (wl-summary-prev): Fixed regexp.
+       (wl-summary-next): Ditto.
+
 2002-05-02  Yoichi NAKAYAMA  <yoichi@eken.phys.nagoya-u.ac.jp>
 
        * wl-summary.el (wl-summary-line-day-of-week): Ignore error.
index adfd087..9bbad65 100644 (file)
@@ -4918,10 +4918,10 @@ Use function list is `wl-summary-write-current-folder-functions'."
     (if (elmo-folder-plugged-p wl-summary-buffer-elmo-folder)
        (setq regex (format "%s[^%s]"
                            wl-summary-message-regexp
-                           skip-mark-regexp))
+                           (concat skip-mark-regexp "0-9")))
       (setq regex (format "%s[^%s]\\(%s\\|%s\\| \\)"
                          wl-summary-message-regexp
-                         skip-mark-regexp
+                         (concat skip-mark-regexp "0-9")
                          (regexp-quote wl-summary-unread-cached-mark)
                          (regexp-quote wl-summary-important-mark))))
     (unless (re-search-backward regex nil t)
@@ -4957,10 +4957,10 @@ Use function list is `wl-summary-write-current-folder-functions'."
     (if (elmo-folder-plugged-p wl-summary-buffer-elmo-folder)
        (setq regex (format "%s[^%s]"
                            wl-summary-message-regexp
-                           skip-mark-regexp))
+                           (concat skip-mark-regexp "0-9")))
       (setq regex (format "%s[^%s]\\(%s\\|%s\\| \\)"
                          wl-summary-message-regexp
-                         skip-mark-regexp
+                         (concat skip-mark-regexp "0-9")
                          (regexp-quote wl-summary-unread-cached-mark)
                          (regexp-quote wl-summary-important-mark))))
     (unless (re-search-forward regex nil t)