changeset 89036:0454186ceba1

(quoted-printable-decode-region): Insert bytes by `insert-byte'.
author Kenichi Handa <handa@m17n.org>
date Wed, 21 Aug 2002 00:42:28 +0000
parents 0c18d239a810
children a706555725da
files lisp/gnus/qp.el
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/gnus/qp.el	Tue Aug 20 13:12:32 2002 +0000
+++ b/lisp/gnus/qp.el	Wed Aug 21 00:42:28 2002 +0000
@@ -63,7 +63,7 @@
 		 (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))))