]> git.notmuchmail.org Git - notmuch/commitdiff
emacs: support text/calendar mime type
authorJani Nikula <jani@nikula.org>
Thu, 9 Feb 2012 14:46:03 +0000 (14:46 +0000)
committerDavid Bremner <bremner@debian.org>
Sat, 25 Feb 2012 12:55:47 +0000 (08:55 -0400)
Replace text/x-vcalendar with text/calendar, while maintaining support
and backwards compatibility for text/x-vcalendar.

Code by David Edmondson <dme@dme.org>

emacs/notmuch-show.el

index aa9cceedd0e5c9dbcb96e1505d54f23cf80e409e..f35513b9a87c0ef3238e34590b8c76a839d9fa1d 100644 (file)
@@ -729,7 +729,7 @@ current buffer, if possible."
        (run-hook-with-args 'notmuch-show-insert-text/plain-hook msg depth))))
   t)
 
-(defun notmuch-show-insert-part-text/x-vcalendar (msg part content-type nth depth declared-type)
+(defun notmuch-show-insert-part-text/calendar (msg part content-type nth depth declared-type)
   (notmuch-show-insert-part-header nth declared-type content-type (plist-get part :filename))
   (insert (with-temp-buffer
            (insert (notmuch-show-get-bodypart-content msg part nth))
@@ -747,6 +747,10 @@ current buffer, if possible."
              result)))
   t)
 
+;; For backwards compatibility.
+(defun notmuch-show-insert-part-text/x-vcalendar (msg part content-type nth depth declared-type)
+  (notmuch-show-insert-part-text/calendar msg part content-type nth depth declared-type))
+
 (defun notmuch-show-insert-part-application/octet-stream (msg part content-type nth depth declared-type)
   ;; If we can deduce a MIME type from the filename of the attachment,
   ;; do so and pass it on to the handler for that type.