`replace-match' has been fixed at 2004-01-15, thanks to Handa-san.
+2004-01-15 Katsumi Yamaoka <yamaoka@jpl.org>
+
+ * mime-edit.el (mime-edit-normalize-body): Fix a comment that the
+ problem related to `replace-match' has been fixed at 2004-01-15,
+ thanks to Handa-san.
+
+\f
2003-12-24 MORIOKA Tomohiko <tomo@kanji.zinbun.kyoto-u.ac.jp>
* SEMI: Version 1.14.6 (Maruoka) released.
(narrow-to-region beg (mime-edit-content-end))
(goto-char beg)
(while (re-search-forward "\\(\\=\\|[^\r]\\)\n" nil t)
- ;; Don't use this in the multibyte buffer since it may
- ;; convert the unibyte string into multibyte.
- ;;;;(replace-match "\\1\r\n"))))
+ ;; In a certain period, `replace-match' with "\\N"
+ ;; converted 8-bit characters into multibyte string,
+ ;; but it has been fixed at 2004-01-15.
+ ;;(replace-match "\\1\r\n"))))
(backward-char 1)
(insert "\r")
(forward-char 1))))