flim-1_14-rfc2231
Yuuichi Teranishi
teranisi @ gohome.org
2001年 2月 28日 (水) 14:26:52 JST
At 27 Feb 2001 23:16:56 +0900,
Shuhei KOBAYASHI wrote:
>
> 中身は FLIM 1.14.2 + parameter value decoder ですが, flim-1_13-rfc2231
> とは異なる実装となっています. 動作確認した環境は多くありませんので,
> flim-1_13-rfc2231 との互換性等, 御意見をお待ちしております.
>
raw-buffer が unibyte だと日本語パラメータがデコードされないみたいです。
あんちょくに以下のようにするとデコードされました。
--- mime-parse.el 2001/02/27 13:57:24 1.21.4.2.2.1
+++ mime-parse.el 2001/02/28 05:20:34
@@ -155,7 +155,8 @@
;; convert byte-string to character-string.
;; (setq text (decode-mime-charset-string text (or charset 'us-ascii)))
(when charset
- (setq text (decode-mime-charset-string text charset)))
+ (with-temp-buffer
+ (setq text (decode-mime-charset-string text charset))))
(when language
(put-text-property 0 (length text) 'mime-language language text))
text))
--
Yuuichi Teranishi (寺西裕一) <teranisi @ gohome.org>
PGP 5.0i Public Key: http://www.gohome.org/pgp5/teranisi.key
"For tomorrow may rain, so I'll follow the sun."
More information about the Emacs-mime-ja
mailing list