1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-12-23 10:34:07 +00:00

(mail-unquote-printable-region): Use insert-byte instead of insert-char,

when the UNIBYTE arg is non-nil.
This commit is contained in:
Eli Zaretskii 2008-09-30 11:54:57 +00:00
parent 9721264a83
commit f45de83bf8
2 changed files with 9 additions and 2 deletions

View File

@ -1,3 +1,9 @@
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.

View File

@ -141,8 +141,9 @@ as Rmail does."
(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))