From: Mark Walters Date: Sat, 28 Jul 2012 11:56:34 +0000 (+0100) Subject: emacs: show: exclude bug fix X-Git-Tag: 0.14~32 X-Git-Url: https://git.notmuchmail.org/git?a=commitdiff_plain;h=1efb6e7ae16ede7feccffc1864a206bec3caf337;p=notmuch emacs: show: exclude bug fix The pipe message function (when used with a prefix) uses a search of the form "id: or id:" etc. Since the user says precisely which messages are wanted by opening them it should not use excludes. --- diff --git a/emacs/notmuch-show.el b/emacs/notmuch-show.el index 6335d45f..dcfc1901 100644 --- a/emacs/notmuch-show.el +++ b/emacs/notmuch-show.el @@ -1617,7 +1617,7 @@ than only the current message." (let (shell-command) (if entire-thread (setq shell-command - (concat notmuch-command " show --format=mbox " + (concat notmuch-command " show --format=mbox --exclude=false " (shell-quote-argument (mapconcat 'identity (notmuch-show-get-message-ids-for-open-messages) " OR ")) " | " command))