Synch with Gnus trunk.

(message-forward-make-body-plain, message-forward-make-body-mml):
 Use mm-multibyte-string-p instead of multibyte-string-p.
This commit is contained in:
Katsumi Yamaoka 2010-05-12 08:24:25 +00:00
parent e05aebe905
commit 706deb23dc
2 changed files with 8 additions and 2 deletions

View file

@ -1,3 +1,9 @@
2010-05-12 Katsumi Yamaoka <yamaoka@jpl.org>
* message.el (message-forward-make-body-plain)
(message-forward-make-body-mml): Use mm-multibyte-string-p instead of
multibyte-string-p.
2010-05-12 Katsumi Yamaoka <yamaoka@jpl.org>
* message.el (message-forward-make-body-mml): Assume original message

View file

@ -7165,7 +7165,7 @@ Optional DIGEST will use digest to forward."
(contents (with-current-buffer forward-buffer (buffer-string)))
e)
(unless (featurep 'xemacs)
(unless (multibyte-string-p contents)
(unless (mm-multibyte-string-p contents)
(error "Attempt to insert unibyte string from the buffer \"%s\"\
to the multibyte buffer \"%s\""
(if (bufferp forward-buffer)
@ -7220,7 +7220,7 @@ Optional DIGEST will use digest to forward."
(if (not message-forward-decoded-p)
(let ((contents (with-current-buffer forward-buffer (buffer-string))))
(unless (featurep 'xemacs)
(unless (multibyte-string-p contents)
(unless (mm-multibyte-string-p contents)
(error "Attempt to insert unibyte string from the buffer \"%s\"\
to the multibyte buffer \"%s\""
(if (bufferp forward-buffer)