* wl-summary.el (wl-summary-default-subject-filter): Fix for `Re>'.
authorokada <okada>
Mon, 26 Feb 2001 01:25:44 +0000 (01:25 +0000)
committerokada <okada>
Mon, 26 Feb 2001 01:25:44 +0000 (01:25 +0000)
wl/ChangeLog
wl/wl-summary.el

index c91ded7..409e992 100644 (file)
@@ -1,3 +1,7 @@
+2000-02-26  Kenichi OKADA  <okada@opaopa.org>
+
+       * wl-summary.el (wl-summary-default-subject-filter): Fix for `Re>'.
+
 2001-02-25  Masahiro MURATA  <muse@ba2.so-net.ne.jp>
 
        * wl-folder.el (wl-folder-sync-entity): Fixed change value of
index 9b71bb3..3af1481 100644 (file)
@@ -2924,7 +2924,7 @@ If ARG, without confirm."
 
 (defun wl-summary-default-subject-filter (subject)
   (let ((case-fold-search t))
-    (setq subject (elmo-replace-in-string subject "[ \t]*\\(re\\|was\\):" ""))
+    (setq subject (elmo-replace-in-string subject "[ \t]*\\(re\\|was\\)[:>]" ""))
     (setq subject (elmo-replace-in-string subject "[ \t]" ""))
     (elmo-replace-in-string subject "^\\[.*\\]" "")))