From: Dave Love Date: Thu, 5 Sep 2002 17:50:38 +0000 (+0000) Subject: (quoted-printable-decode-region): Use mm-insert-byte. X-Git-Tag: emacs-pretest-23.0.90~8295^2~1864^2~360 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=3bf30e3d4b9caac45bc6476e2af8c517b80f494c;p=emacs.git (quoted-printable-decode-region): Use mm-insert-byte. --- diff --git a/lisp/gnus/qp.el b/lisp/gnus/qp.el index b9761bedbdd..26d3151bfc4 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 byte 1) + (mm-insert-byte byte 1) (delete-char 3) (unless (eq byte ?=) (backward-char))))