Re: [PATCH] emacs: override enriched-decode-display-prop for text/enriched display

Subject: Re: [PATCH] emacs: override enriched-decode-display-prop for text/enriched display

Date: Mon, 11 Sep 2017 21:21:05 +0100

To: Jani Nikula, notmuch@notmuchmail.org

Cc:

From: David Edmondson


Looks good.

On Monday, 2017-09-11 at 23:09:49 +0300, Jani Nikula wrote:

> 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.
> ---
>  emacs/notmuch-show.el | 9 +++++++++
>  1 file changed, 9 insertions(+)
>
> diff --git a/emacs/notmuch-show.el b/emacs/notmuch-show.el
> index cd901e471930..993902770095 100644
> --- a/emacs/notmuch-show.el
> +++ b/emacs/notmuch-show.el
> @@ -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.
> -- 
> 2.11.0
>
> _______________________________________________
> notmuch mailing list
> notmuch@notmuchmail.org
> https://notmuchmail.org/mailman/listinfo/notmuch

dme.
-- 
There's too many people on the bus from the airport.
_______________________________________________
notmuch mailing list
notmuch@notmuchmail.org
https://notmuchmail.org/mailman/listinfo/notmuch

Thread: