diff options
author | Eli Zaretskii <eliz@gnu.org> | 2008-09-30 11:54:57 +0000 |
---|---|---|
committer | Eli Zaretskii <eliz@gnu.org> | 2008-09-30 11:54:57 +0000 |
commit | f45de83bf8fd3d3a475e77afff4dee434400187e (patch) | |
tree | 9994455a621a045a0c0ce5edd845917c128197ef /lisp/mail | |
parent | 9721264a836cf2a970f748fabdec7c3948f2f7e2 (diff) | |
download | emacs-f45de83bf8fd3d3a475e77afff4dee434400187e.tar.gz |
(mail-unquote-printable-region): Use insert-byte instead of insert-char,
when the UNIBYTE arg is non-nil.
Diffstat (limited to 'lisp/mail')
-rw-r--r-- | lisp/mail/mail-utils.el | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lisp/mail/mail-utils.el b/lisp/mail/mail-utils.el index 7c8593742e7..c26ec78c0be 100644 --- a/lisp/mail/mail-utils.el +++ b/lisp/mail/mail-utils.el @@ -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)) |