From f63e65a57210c1c0245a298373b8379fd35d6338 Mon Sep 17 00:00:00 2001 From: Kenichi Handa Date: Wed, 21 Aug 2002 00:42:28 +0000 Subject: [PATCH] (quoted-printable-decode-region): Insert bytes by `insert-byte'. --- lisp/gnus/qp.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/gnus/qp.el b/lisp/gnus/qp.el index 0760457b3e9..33cdb6e1a7f 100644 --- a/lisp/gnus/qp.el +++ b/lisp/gnus/qp.el @@ -63,7 +63,7 @@ coding-system." (let ((byte (string-to-int (buffer-substring (1+ (point)) (+ 3 (point))) 16))) - (insert byte) + (insert-byte byte) (delete-char 3) (unless (eq byte ?=) (backward-char)))) -- 2.39.5