emacs: override enriched-decode-display-prop for text/enriched display
authorJani Nikula <jani@nikula.org>
Mon, 11 Sep 2017 20:09:49 +0000 (23:09 +0300)
committerDavid Bremner <david@tethera.net>
Tue, 12 Sep 2017 01:08:01 +0000 (22:08 -0300)
Switch to a local version of enriched-decode-display-prop if we
encounter a text/enriched part. This is to mitigate
https://bugs.gnu.org/28350. Normally it would be prudent to remove the
override afterwards, but in this case just leave it in.

Notes from db:
      This doesn't disable text/enriched, just one feature of it.

emacs/notmuch-show.el

index 1cbcc132030a67c347938b943d70beb2fd67a59e..dd423765d7139cc2004c5a3b03c6989cdca57ff1 100644 (file)
@@ -773,6 +773,15 @@ will return nil if the CID is unknown or cannot be retrieved."
 (defun notmuch-show-insert-part-text/x-vcalendar (msg part content-type nth depth button)
   (notmuch-show-insert-part-text/calendar msg part content-type nth depth button))
 
+;; https://bugs.gnu.org/28350
+(defun notmuch-show--enriched-decode-display-prop (start end &optional param)
+  (list start end))
+
+(defun notmuch-show-insert-part-text/enriched (msg part content-type nth depth button)
+  (advice-add 'enriched-decode-display-prop :override
+             #'notmuch-show--enriched-decode-display-prop)
+  nil)
+
 (defun notmuch-show-get-mime-type-of-application/octet-stream (part)
   ;; If we can deduce a MIME type from the filename of the attachment,
   ;; we return that.