mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2024-12-24 10:38:38 +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:
parent
9721264a83
commit
f45de83bf8
@ -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.
|
||||
|
@ -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))
|
||||
|
Loading…
Reference in New Issue
Block a user