* message.el (message-forward-make-body-plain, message-forward-make-body-mml):
authorKatsumi Yamaoka <yamaoka@jpl.org>
Wed, 12 May 2010 08:18:48 +0000 (08:18 +0000)
committerKatsumi Yamaoka <yamaoka@jpl.org>
Wed, 12 May 2010 08:18:48 +0000 (08:18 +0000)
 Use mm-multibyte-string-p instead of multibyte-string-p.
* lpath.el: Revert.

lisp/ChangeLog
lisp/message.el

index 97ad6d9..bc9fc94 100644 (file)
@@ -1,3 +1,11 @@
+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.
+
+       * lpath.el: Revert.
+
 2010-05-12  Katsumi Yamaoka  <yamaoka@jpl.org>
 
        * message.el (message-forward-make-body-mml): Assume original message
index 1442293..beb9d16 100644 (file)
@@ -7138,7 +7138,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)
@@ -7193,7 +7193,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)