when the UNIBYTE arg is non-nil.
+2008-09-30 Eli Zaretskii <eliz@gnu.org>
+
+ * mail/mail-utils.el (mail-unquote-printable-region): Use
+ insert-byte instead of insert-char, when the UNIBYTE arg is
+ non-nil.
+
2008-09-30 Daiki Ueno <ueno@unixuser.org>
* epa-file.el (epa-file-insert-file-contents): Fix typo.
(if unibyte
(progn
(replace-match "")
- ;; insert-char will insert this as unibyte,
- (insert-char char 1))
+ ;; insert-byte will insert this as a
+ ;; corresponding eight-bit character.
+ (insert-byte char 1))
(replace-match (make-string 1 char) t t))))
(noerror
(setq failed t))