1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-03-06 05:52:32 -08:00

(message-forward-make-body): Use

mm-{en,dis}able-multibyte, not mm-{en,dis}able-multibyte-mule4.
This commit is contained in:
Dave Love 2002-06-24 19:07:19 +00:00
parent 78a75a678c
commit 4c327d315e

View file

@ -4242,11 +4242,11 @@ Optional DIGEST will use digest to forward."
(not message-forward-decoded-p))
(insert
(with-temp-buffer
(mm-disable-multibyte-mule4) ;; Must copy buffer in unibyte mode
(mm-disable-multibyte) ;; Must copy buffer in unibyte mode
(insert
(with-current-buffer forward-buffer
(mm-string-as-unibyte (buffer-string))))
(mm-enable-multibyte-mule4)
(mm-enable-multibyte)
(mime-to-mml)
(goto-char (point-min))
(when (looking-at "From ")