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 8A5AD429E3A for ; Sat, 26 May 2012 08:55:18 -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 iLAcYOytNHq7 for ; Sat, 26 May 2012 08:55:17 -0700 (PDT) Received: from mail-we0-f181.google.com (mail-we0-f181.google.com [74.125.82.181]) (using TLSv1 with cipher RC4-SHA (128/128 bits)) (No client certificate requested) by olra.theworths.org (Postfix) with ESMTPS id 57610429E44 for ; Sat, 26 May 2012 08:55:12 -0700 (PDT) Received: by mail-we0-f181.google.com with SMTP id j55so1411304wer.26 for ; Sat, 26 May 2012 08:55:12 -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=tANVdmUV5fhD3PCH1bNZY0t9tn15aQw9ZNiYxv0s5LQ=; b=Tvm/cDv+2aFF/K8+xx724NPONjt75VbQngBI+uC82Kjq8BSEJuylwUgNEFAfUALpGH oXWp8yHimxuSY7OTCKBU7ub61c7AIouW3oPr9nsbEEN5Bd321z6dH7ZVqlJ0sLi+gWKr NzTp8O/PjHiKNAs0n+lLCECpGiK7XNWmgeirZS/jYJFbUOEi7+1VvkSThTP6OD10an6P CJQXbWn3sJOBQLcIlHiaTgIDit1GUrcByObK8BJK00vY3GDE45c53vPRq8vj1GpCMHTh A1jchXA+65+kQXZFHFpK4y4AQI5/Hm+L6tRRTLANJPk9UQUyz4Gm7W0nO2Mubt5mBuU7 pSxQ== Received: by 10.180.85.129 with SMTP id h1mr4251312wiz.2.1338047712036; Sat, 26 May 2012 08:55:12 -0700 (PDT) Received: from localhost (94-192-233-223.zone6.bethere.co.uk. [94.192.233.223]) by mx.google.com with ESMTPS id du4sm9244965wib.10.2012.05.26.08.55.10 (version=TLSv1/SSLv3 cipher=OTHER); Sat, 26 May 2012 08:55:11 -0700 (PDT) From: Mark Walters To: notmuch@notmuchmail.org Subject: [PATCH v5 4/5] Update devel/schemata for --entire-thread=false Date: Sat, 26 May 2012 16:54:53 +0100 Message-Id: <1338047694-32548-5-git-send-email-markwalters1009@gmail.com> X-Mailer: git-send-email 1.7.9.1 In-Reply-To: <1338047694-32548-1-git-send-email-markwalters1009@gmail.com> References: <1338047694-32548-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: Sat, 26 May 2012 15:55:19 -0000 Also remove the Json --entire-thread item from devel/TODO. --- devel/TODO | 2 -- devel/schemata | 2 +- 2 files changed, 1 insertions(+), 3 deletions(-) diff --git a/devel/TODO b/devel/TODO index 7b750af..eb757af 100644 --- a/devel/TODO +++ b/devel/TODO @@ -92,8 +92,6 @@ and email address in the From: line. We could also then easily support "notmuch compose --from " to support getting at alternate email addresses. -Fix the --format=json option to not imply --entire-thread. - Implement "notmuch search --exclude-threads=" to allow for excluding muted threads, (and any other negative, thread-based filtering that the user wants to do). diff --git a/devel/schemata b/devel/schemata index 977cea7..8fcab8e 100644 --- a/devel/schemata +++ b/devel/schemata @@ -32,7 +32,7 @@ thread = [thread_node*] # A message and its replies (show_messages) thread_node = [ - message?, # present if --entire-thread or matched + message?, # null if not matched and not --entire-thread [thread_node*] # children of message ] -- 1.7.9.1