(quoted-printable-internal-decode-region): Use 'string-as-multibyte to
authormorioka <morioka>
Sat, 9 May 1998 00:28:15 +0000 (00:28 +0000)
committermorioka <morioka>
Sat, 9 May 1998 00:28:15 +0000 (00:28 +0000)
avoid problem in Emacs 20.3.

mel-q.el

index 9a8f954..6ec4f0b 100644 (file)
--- a/mel-q.el
+++ b/mel-q.el
@@ -202,7 +202,7 @@ It calls external quoted-printable encoder specified by
          (setq e (match-end 0))
          (setq str (buffer-substring b e))
          (delete-region b e)
-         (insert (quoted-printable-decode-string str))
+         (insert (string-as-multibyte (quoted-printable-decode-string str)))
          ))
       )))