From: Peter Wang <novalazy@gmail.com>
To: notmuch@notmuchmail.org
Subject: Re: [PATCH v6 3/6] cli: make --entire-thread=false work for format=json.
Date: Mon, 28 May 2012 23:34:15 +1000 [thread overview]
Message-ID: <20120528233415.GE2331@hili.localdomain> (raw)
In-Reply-To: <1338106946-7611-4-git-send-email-markwalters1009@gmail.com>
On Sun, 27 May 2012 09:22:23 +0100, Mark Walters <markwalters1009@gmail.com> wrote:
> @@ -1036,7 +1047,9 @@ notmuch_show_command (void *ctx, unused (int argc), unused (char *argv[]))
> switch (format_sel) {
> case NOTMUCH_FORMAT_JSON:
> format = &format_json;
> - params.entire_thread = TRUE;
> + /* JSON defaults to entire-thread TRUE */
> + if (entire_thread == ENTIRE_THREAD_DEFAULT)
> + entire_thread = ENTIRE_THREAD_TRUE;
> break;
Minor point, but you can defer this until later and keep the logic in
one place.
> case NOTMUCH_FORMAT_TEXT:
> format = &format_text;
> @@ -1058,6 +1071,15 @@ notmuch_show_command (void *ctx, unused (int argc), unused (char *argv[]))
> params.raw = TRUE;
> break;
> }
> + /* Default is entire-thread = FALSE except for format=json which
> + * is dealt with above. */
> + if (entire_thread == ENTIRE_THREAD_DEFAULT)
> + entire_thread = ENTIRE_THREAD_FALSE;
> +
> + if (entire_thread == ENTIRE_THREAD_TRUE)
> + params.entire_thread = TRUE;
> + else
> + params.entire_thread = FALSE;
/* Default is entire-thread = FALSE except for format=json. */
if (entire_thread == ENTIRE_THREAD_DEFAULT) {
if (format == &format_json)
entire_thread = ENTIRE_THREAD_TRUE;
else
entire_thread = ENTIRE_THREAD_FALSE;
}
Peter
next prev parent reply other threads:[~2012-05-28 13:34 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-05-27 8:22 [PATCH v6 0/6] Allow JSON to use non-entire thread, and use for elide Mark Walters
2012-05-27 8:22 ` [PATCH v6 1/6] cli: command line parsing: allow default for keyword options Mark Walters
2012-05-28 13:31 ` Peter Wang
2012-05-28 19:05 ` Mark Walters
2012-05-27 8:22 ` [PATCH v6 2/6] cli: Let json output "null" messages for non --entire-thread Mark Walters
2012-05-27 8:22 ` [PATCH v6 3/6] cli: make --entire-thread=false work for format=json Mark Walters
2012-05-28 13:34 ` Peter Wang [this message]
2012-05-28 19:06 ` Mark Walters
2012-05-27 8:22 ` [PATCH v6 4/6] Update devel/schemata for --entire-thread=false Mark Walters
2012-05-27 8:22 ` [PATCH v6 5/6] emacs: make elide messages use notmuch-show for omitting messages Mark Walters
2012-05-27 8:22 ` [PATCH v6 6/6] cli: notmuch-show.c fix whitespace error Mark Walters
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
List information: https://notmuchmail.org/
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20120528233415.GE2331@hili.localdomain \
--to=novalazy@gmail.com \
--cc=notmuch@notmuchmail.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
Code repositories for project(s) associated with this public inbox
https://yhetil.org/notmuch.git/
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).