changeset 111774:4fcb8625fab9

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:59:22 +0900
parents ec9916da73f2 (current diff) 7db1ebaea814 (diff)
children 81cac26277b0
files
diffstat 2 files changed, 5 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/ChangeLog	Fri Nov 26 16:59:23 2010 +0900
+++ b/lisp/ChangeLog	Fri Nov 26 21:59:22 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:59:23 2010 +0900
+++ b/lisp/mail/rmailmm.el	Fri Nov 26 21:59:22 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.