From: Tomi Ollila Date: Sun, 20 May 2012 16:58:14 +0000 (+0300) Subject: emacs: use 'gnus-decoded in notmuch-mm-display-part-inline () X-Git-Tag: 0.13.1~16 X-Git-Url: https://git.notmuchmail.org/git?a=commitdiff_plain;ds=sidebyside;h=70ca3444c75beaa693fcac411dd6a2819bd4341e;hp=70ca3444c75beaa693fcac411dd6a2819bd4341e;p=notmuch emacs: use 'gnus-decoded in notmuch-mm-display-part-inline () When mail message is read from emacs, the message structure obtained may contain parts which have content included (`text/plain` for example) and other parts where content is not included (`text/html` for example). In case content is included, the string is already available in emacs' internal format and therefore mm-... functions should not attempt to do further decoding for the data in temp buffer provided for it. Currently when reply buffer is created, notmuch-mm-display-part-inline () is used to provided quoted reply content. This change makes the mm-... functions called by it use 'gnus-decoded as charset whenever the content is already available. File .../emacs-23.3/lisp/gnus/mm-uu.el mentions: "`gnus-decoded' is a fake charset, which means no further decoding." ---