]> git.notmuchmail.org Git - notmuch/commit
emacs: show: stop stderr appearing in buffer
authorMark Walters <markwalters1009@gmail.com>
Mon, 18 Nov 2013 21:10:33 +0000 (21:10 +0000)
committerDavid Bremner <david@tethera.net>
Wed, 20 Nov 2013 22:14:35 +0000 (18:14 -0400)
commit9c25d4bbf02d8c1902f1c166125afaf93419c3d7
tree9c10ea206fd1ea812a0e1c3c7a0ccfc36c4cb808
parent42ff2d3a0d899d3ec64787d3eff31ad8c74b1103
emacs: show: stop stderr appearing in buffer

In emacs 24.3+ the stdout/stderr from externally displaying an
attachment gets inserted into the show buffer. This is caused by
changes in mm-display-external in mm-decode.el.

Ideally, we would put this output in the notmuch errors buffer but the
handler is called asynchronously so we don't know when the output will
appear. Thus if we put it straight into the errors buffer it could get
interleaved with other errors. Also we can't easily tell when we
have got all the error output so can't wait until the process is complete.

One solution would be to create a new buffer for the stderr of each
attachment viewed. Again, since we can't tell when the process has
finished, we can't close these buffers automatically so this will
leave lots of buffers around.

Thus we add a debug variable notmuch-show-attachment-debug: it this is
non-nil we create a new buffer for each viewer; if this variable is
nil we just use a temp buffer which means all error output is
discarded (this is the same behaviour as with emacs pre 24.3).
emacs/notmuch-show.el