Return-Path: X-Original-To: notmuch@notmuchmail.org Delivered-To: notmuch@notmuchmail.org Received: from localhost (localhost [127.0.0.1]) by olra.theworths.org (Postfix) with ESMTP id 207A0431FD6 for ; Fri, 6 Apr 2012 05:49:29 -0700 (PDT) X-Virus-Scanned: Debian amavisd-new at olra.theworths.org X-Spam-Flag: NO X-Spam-Score: 0.201 X-Spam-Level: X-Spam-Status: No, score=0.201 tagged_above=-999 required=5 tests=[DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, FREEMAIL_ENVFROM_END_DIGIT=1, FREEMAIL_FROM=0.001, RCVD_IN_DNSWL_LOW=-0.7] autolearn=disabled Received: from olra.theworths.org ([127.0.0.1]) by localhost (olra.theworths.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id D617iMwUHYnX for ; Fri, 6 Apr 2012 05:49:28 -0700 (PDT) Received: from mail-wg0-f45.google.com (mail-wg0-f45.google.com [74.125.82.45]) (using TLSv1 with cipher RC4-SHA (128/128 bits)) (No client certificate requested) by olra.theworths.org (Postfix) with ESMTPS id 57DB1431FDC for ; Fri, 6 Apr 2012 05:49:26 -0700 (PDT) Received: by mail-wg0-f45.google.com with SMTP id dt14so188823wgb.2 for ; Fri, 06 Apr 2012 05:49:26 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:cc:subject:date:message-id:x-mailer:in-reply-to:references; bh=6AWDtpv50jmIDDNcYOwlTA9e7zH4EvWg3JLHKf43KCI=; b=YDsqjG1XQhu+XGTBz7XO3bwBFH5gV7uke5FXRAN74772jpNHXV+z3bzmrKQYxE2nfD 7ZlAi7nhoiK2UVBYPxVhd2ad/YEn1mk/SDOGDv04DS1nCyKnbVzczgjWrFyJ17BPT6bS VVEpqVsWF7afWoGL5etbyh/OVfg+jppT3YU03lE/nnqqyp4WYC2C7ZR15VJuy7pL9sat x4drGefCVHr30ugezz18ZbSkg1hdZuvpxQj7IUUkIseYW8keG49S7TjPteYMdBOdf1fE Z9Zh4QuAg/84JN/vHKyQxso9UJrm/buITNtLULSODXWXi54XJlvYQdDNRYeT1MtYSraX Quog== Received: by 10.180.102.129 with SMTP id fo1mr11701605wib.6.1333716566014; Fri, 06 Apr 2012 05:49:26 -0700 (PDT) Received: from localhost (94-192-233-223.zone6.bethere.co.uk. [94.192.233.223]) by mx.google.com with ESMTPS id fn2sm10219101wib.0.2012.04.06.05.49.24 (version=TLSv1/SSLv3 cipher=OTHER); Fri, 06 Apr 2012 05:49:25 -0700 (PDT) From: Mark Walters To: notmuch@notmuchmail.org Subject: [PATCH v3 6/6] emacs: make show set --exclude=false Date: Fri, 6 Apr 2012 13:49:11 +0100 Message-Id: <1333716551-29153-7-git-send-email-markwalters1009@gmail.com> X-Mailer: git-send-email 1.7.9.1 In-Reply-To: <1333716551-29153-1-git-send-email-markwalters1009@gmail.com> References: <1333716551-29153-1-git-send-email-markwalters1009@gmail.com> X-BeenThere: notmuch@notmuchmail.org X-Mailman-Version: 2.1.13 Precedence: list List-Id: "Use and development of the notmuch mail system." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 06 Apr 2012 12:49:29 -0000 Show has to set --exclude=false to deal with cases where it is asked to show a single excluded message. It uses JSON so it can easily pass the exclude information to the user. --- emacs/notmuch-show.el | 6 ++++-- 1 files changed, 4 insertions(+), 2 deletions(-) diff --git a/emacs/notmuch-show.el b/emacs/notmuch-show.el index 6d3fe62..30b26d1 100644 --- a/emacs/notmuch-show.el +++ b/emacs/notmuch-show.el @@ -1060,13 +1060,15 @@ function is used." (append (list "\'") basic-args (list "and (" notmuch-show-query-context ")\'")) (append (list "\'") basic-args (list "\'"))))) - (notmuch-show-insert-forest (notmuch-query-get-threads args)) + (notmuch-show-insert-forest (notmuch-query-get-threads + (cons "--exclude=false" args))) ;; If the query context reduced the results to nothing, run ;; the basic query. (when (and (eq (buffer-size) 0) notmuch-show-query-context) (notmuch-show-insert-forest - (notmuch-query-get-threads basic-args)))) + (notmuch-query-get-threads + (cons "--exclude=false" basic-args))))) (jit-lock-register #'notmuch-show-buttonise-links) -- 1.7.9.1