changeset 89037:a706555725da

(quoted-printable-decode-region): Fix previous change.
author Kenichi Handa <handa@m17n.org>
date Wed, 21 Aug 2002 01:32:03 +0000
parents 0454186ceba1
children f60ed671d6e4
files lisp/gnus/qp.el
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/gnus/qp.el	Wed Aug 21 00:42:28 2002 +0000
+++ b/lisp/gnus/qp.el	Wed Aug 21 01:32:03 2002 +0000
@@ -63,7 +63,7 @@
 		 (let ((byte (string-to-int (buffer-substring (1+ (point))
 							      (+ 3 (point)))
 					    16)))
-		   (insert-byte byte)
+		   (insert-byte 1 byte)
 		   (delete-char 3)
 		   (unless (eq byte ?=)
 		     (backward-char))))