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

index 28c98ec..030e9ed 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-24  Yuuichi Teranishi  <teranisi@gohome.org>
 
        * wl-util.el (wl-regexp-opt): New function.
index 6eb0dc8..0bece63 100644 (file)
@@ -2742,7 +2742,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 "^\\[.*\\]" "")))