From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from localhost (localhost [127.0.0.1]) by olra.theworths.org (Postfix) with ESMTP id 2E075431FC3 for ; Sun, 27 May 2012 01:22:43 -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 UQZRRpP4Omiz for ; Sun, 27 May 2012 01:22:42 -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 65858431FBD for ; Sun, 27 May 2012 01:22:42 -0700 (PDT) Received: by werj55 with SMTP id j55so1718268wer.26 for ; Sun, 27 May 2012 01:22:41 -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=jGNl8trqQr74/+e43KS2PQGE6zPp2kuYQRc7FPghHtq4cCjiMOqIZmh6o0lLc943C0 zU25UKz3qJYI+4+MArGpFB4kISW371eUPTpIs3mViyWEg5k8/M7i/Tro8QB3sde4ej0F JjgtfTv8ewFjOpsbrEXul1ygFxnR4uxOG1N8MlGbEko8DcJlUoK24Uye8ewJXCXLrQJ9 Adz2gXsHeVvcmxWLBZCeZVQjhsxry2RWxR75FrWKoBmbMngN26qbX0FqIklq0nMhya5/ 8KTIEnEkLRGNTSnsza0bDYCMzm3MQ/E7ciC7F0cCCiyTw5TolItAD4mwS9c5Vk/bLogV 3atw== Received: by 10.180.80.74 with SMTP id p10mr7775565wix.10.1338106961111; Sun, 27 May 2012 01:22:41 -0700 (PDT) Received: from localhost (94-192-233-223.zone6.bethere.co.uk. [94.192.233.223]) by mx.google.com with ESMTPS id m20sm2374494wie.6.2012.05.27.01.22.39 (version=TLSv1/SSLv3 cipher=OTHER); Sun, 27 May 2012 01:22:40 -0700 (PDT) From: Mark Walters To: notmuch@notmuchmail.org Subject: [PATCH v6 4/6] Update devel/schemata for --entire-thread=false Date: Sun, 27 May 2012 09:22:24 +0100 Message-Id: <1338106946-7611-5-git-send-email-markwalters1009@gmail.com> X-Mailer: git-send-email 1.7.9.1 In-Reply-To: <1338106946-7611-1-git-send-email-markwalters1009@gmail.com> References: <1338106946-7611-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: Sun, 27 May 2012 08:22:43 -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