changeset 111773:7db1ebaea814

mail/rmailmm.el (rmail-mime-insert-multipart): For unsupported multipart subtypes, insert all as usual.
author Kenichi Handa <handa@m17n.org>
date Fri, 26 Nov 2010 21:58:41 +0900
parents cc824a6e0de5
children 4fcb8625fab9 bbc996a3871b
files lisp/ChangeLog lisp/mail/rmailmm.el
diffstat 2 files changed, 5 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/ChangeLog	Fri Nov 26 16:58:35 2010 +0900
+++ b/lisp/ChangeLog	Fri Nov 26 21:58:41 2010 +0900
@@ -1,5 +1,8 @@
 2010-11-26  Kenichi Handa  <handa@m17n.org>
 
+	* mail/rmailmm.el (rmail-mime-insert-multipart): For unsupported
+	multipart subtypes, insert all as usual.
+
 	* mail/rmail.el: Require rfc2047.
 
 2010-11-26  Kenichi Handa  <handa@m17n.org>
--- a/lisp/mail/rmailmm.el	Fri Nov 26 16:58:35 2010 +0900
+++ b/lisp/mail/rmailmm.el	Fri Nov 26 21:58:41 2010 +0900
@@ -681,9 +681,9 @@
 	  (dolist (child children)
 	    (rmail-mime-insert child nil disposition)))))
      (t
-      ;; Unsupported subtype.  Insert all as attachment.
+      ;; Unsupported subtype.  Insert all of them.
       (dolist (child children)
-	(rmail-mime-insert-bulk child))))))
+	(rmail-mime-insert child))))))
 
 (defun rmail-mime-parse ()
   "Parse the current Rmail message as a MIME message.