X-Git-Url: https://git.notmuchmail.org/git?p=notmuch;a=blobdiff_plain;f=emacs%2Fnotmuch-show.el;h=9f045d7d2fdb26d5fdb9f4293d094c93644d5363;hp=f3150af520912376419b9fb8db7a59a6d97797af;hb=362ab047c264ae67ec3de041aec637979077db21;hpb=c51d5b3cdb5ca0816816e88ca6f7136a24e74eee diff --git a/emacs/notmuch-show.el b/emacs/notmuch-show.el index f3150af5..9f045d7d 100644 --- a/emacs/notmuch-show.el +++ b/emacs/notmuch-show.el @@ -280,6 +280,15 @@ current buffer, if possible." t) nil))))) +(defun notmuch-show-insert-part-multipart/* (msg part content-type nth depth declared-type) + (let ((inner-parts (plist-get part :content))) + (notmuch-show-insert-part-header nth declared-type content-type nil) + ;; Show all of the parts. + (mapc (lambda (inner-part) + (notmuch-show-insert-bodypart msg inner-part depth)) + inner-parts)) + t) + (defun notmuch-show-insert-part-text/plain (msg part content-type nth depth declared-type) (let ((start (point))) ;; If this text/plain part is not the first part in the message,