From: Carl Worth Date: Wed, 2 Dec 2009 22:38:00 +0000 (-0800) Subject: emacs: Add --entire-thread option to "notmuch show" command line. X-Git-Tag: 0.1~248 X-Git-Url: https://git.notmuchmail.org/git?p=notmuch;a=commitdiff_plain;h=4d19b89d293253def0b25aaa0c0c30ed8810804d;ds=sidebyside emacs: Add --entire-thread option to "notmuch show" command line. We (plan to) do any hiding of messages from within emacs, so don't let notmuch hide messages from us. --- diff --git a/notmuch.el b/notmuch.el index 25096513..84247aa5 100644 --- a/notmuch.el +++ b/notmuch.el @@ -933,7 +933,7 @@ thread from that buffer can be show when done with this one)." (erase-buffer) (goto-char (point-min)) (save-excursion - (call-process notmuch-command nil t nil "show" thread-id) + (call-process notmuch-command nil t nil "show" "--entire-thread" thread-id) (notmuch-show-markup-messages) ) (run-hooks 'notmuch-show-hook)