[mew-dist 23720] To:が2つあるメールをオートリファイル
Ryota Hirose
hirose at example.com
2003年 6月 6日 (金) 17:26:37 JST
ヤマハの広瀬です。
mew-inbox-action-alistによるオートリファイルを便利に使わせてもらってい
ます。ところで、同じヘッダ(例えばTo:)が複数あるようなメールでは、後ろ
にある方のヘッダにしかマッチしてくれません。そこで、mew-scan.elに以下
のような変更を加えて複数のヘッダをすべて検索対象としていますが、これは
正しいのでしょうか。
Index: mew-scan.el
===================================================================
RCS file: /cvsmew/mew/mew-scan.el,v
retrieving revision 1.186
diff -u -r1.186 mew-scan.el
--- mew-scan.el 2003/06/05 07:05:42 1.186
+++ mew-scan.el 2003/06/06 08:21:40
@@ -422,6 +422,9 @@
;; We need to keep composite properties of charset.
;; This must be "buffer-substring".
(setq str (buffer-substring med (1- (point))))
+ (let ((ostr (aref vec n)))
+ (if (and (stringp ostr) (> (length ostr) 0))
+ (setq str (concat ostr " " str))))
(aset vec n str)))))
vec))
Mew-dist メーリングリストの案内