From 220912d69dfb1f7cc158dc1e4a1a17a560a75ba6 Mon Sep 17 00:00:00 2001 From: morioka Date: Sat, 9 May 1998 00:28:15 +0000 Subject: [PATCH] (quoted-printable-internal-decode-region): Use 'string-as-multibyte to avoid problem in Emacs 20.3. --- mel-q.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mel-q.el b/mel-q.el index 9a8f954..6ec4f0b 100644 --- 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))) )) ))) -- 1.7.10.4