From: okada Date: Mon, 26 Feb 2001 01:28:09 +0000 (+0000) Subject: * wl-summary.el (wl-summary-default-subject-filter): Fix for `Re>'. X-Git-Tag: wl-2_8-root^2~21 X-Git-Url: http://git.chise.org/gitweb/?a=commitdiff_plain;h=475cd78300286931408cba01221bc58c83b7fb5b;p=elisp%2Fwanderlust.git * wl-summary.el (wl-summary-default-subject-filter): Fix for `Re>'. --- diff --git a/wl/ChangeLog b/wl/ChangeLog index 28c98ec..030e9ed 100644 --- a/wl/ChangeLog +++ b/wl/ChangeLog @@ -1,3 +1,7 @@ +2000-02-26 Kenichi OKADA + + * wl-summary.el (wl-summary-default-subject-filter): Fix for `Re>'. + 2001-02-24 Yuuichi Teranishi * wl-util.el (wl-regexp-opt): New function. diff --git a/wl/wl-summary.el b/wl/wl-summary.el index 6eb0dc8..0bece63 100644 --- a/wl/wl-summary.el +++ b/wl/wl-summary.el @@ -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 "^\\[.*\\]" "")))