平衡点
2023/09/07
_ Wanderlust で返信時にメーリングリストのシリアルナンバを削除するには
少し前であれば, 例えば Wanderlust の覚え書き - Meadow TIPS ある様に,
(defadvice wl-draft-strip-subject-re (before ys:wl-remove-ml-serial (subject))
(if (string-match "^\\(([^) ]+[: ][0-9]+)\\|\\[[^] ]+[: ][0-9]+\\]\\) " subject)
(setq subject (replace-match "" nil t subject))))
(ad-activate 'wl-draft-strip-subject-re)
みたいに指定しておこう, みたいな話だったのだけれど.
今なら
(setq wl-subject-re-prefix-regexp
"^\\(([^) ]+[: ][0-9]+)\\|\\[[^] ]+[: ][0-9]+\\]\\|^[ \t]*\\([Rr][Ee][:>][ \t]*\\)*[ \t]*\\) ")
で良いみたい.