Re: [PATCH v1 1/3] notmuch: Include the format parameter of text/plain parts

2018-12-22 Thread David Edmondson
On Saturday, 2018-12-22 at 07:41:37 +09, David Bremner wrote: > David Edmondson writes: > >> During formatted output, if a content type of a text/plain part >> has a "format" paramter, include it in the output. >> --- >> notmuch-show.c | 13 + >> 1 file changed, 13 insertions(+) >>

[PATCH v2 3/3] emacs: Process format=flowed text

2018-12-22 Thread David Edmondson
If a text/plain part is declared as format=flowed, apply the appropriate transformation for display using flow-fill.el. --- emacs/notmuch-show.el | 3 ++- emacs/notmuch-wash.el | 14 ++ 2 files changed, 16 insertions(+), 1 deletion(-) diff --git a/emacs/notmuch-show.el

[PATCH v2 0/3] support for format=flowed text display

2018-12-22 Thread David Edmondson
support for format=flowed text display This patch improves the display of format=flowed text parts. I suspect that format=flowed display and some of the other content washing might interact in annoying ways, but the only way to be sure is to see how people feel about the results. v2: - Update

[PATCH v2 2/3] emacs: Pass the part to text/plain hook functions

2018-12-22 Thread David Edmondson
Some text/plain hook functions may wish to access the details of the part that is being manipulated. --- emacs/notmuch-show.el | 2 +- emacs/notmuch-wash.el | 10 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/emacs/notmuch-show.el b/emacs/notmuch-show.el index

[PATCH v2 1/3] notmuch: Include the format parameter of text/plain parts

2018-12-22 Thread David Edmondson
During formatted output, if a content type of a text/plain part has a "format" paramter, include it in the output. --- devel/schemata | 2 ++ notmuch-show.c | 13 + 2 files changed, 15 insertions(+) diff --git a/devel/schemata b/devel/schemata index 42b1bcf3..194933d4 100644 ---