From: Peter Wang <novalazy@gmail.com>
To: notmuch@notmuchmail.org
Subject: Re: [PATCH v5 1/5] cli: command line parsing: allow default for keyword options
Date: Sun, 27 May 2012 12:32:53 +1000 [thread overview]
Message-ID: <20120527123253.GA3049@hili.localdomain> (raw)
In-Reply-To: <1338047694-32548-2-git-send-email-markwalters1009@gmail.com>
On Sat, 26 May 2012 16:54:50 +0100, Mark Walters <markwalters1009@gmail.com> wrote:
> This changes the parsing for "keyword" options so that if the option
> is specified with no argument the first possible argument is
> chosen. This make it easier to add options to existing boolean
> arguments (the existing --option can default to TRUE).
This has the side-effect of allowing defaults for all keyword options,
right? I'm not sure that's desirable when the default is non-obvious.
Maybe keyword options which allow an optional argument should have an
explicit entry in the notmuch_keyword_t[] array, e.g. under "" or "default".
> diff --git a/command-line-arguments.c b/command-line-arguments.c
> index 76b185f..d40c7e6 100644
> --- a/command-line-arguments.c
> +++ b/command-line-arguments.c
> @@ -11,10 +11,16 @@
> */
>
> static notmuch_bool_t
> -_process_keyword_arg (const notmuch_opt_desc_t *arg_desc, const char *arg_str) {
> +_process_keyword_arg (const notmuch_opt_desc_t *arg_desc, char next, const char *arg_str) {
>
> const notmuch_keyword_t *keywords = arg_desc->keywords;
>
> + if (next == 0) {
> +/* No keyword given so return first option as default */
> + *((int *)arg_desc->output_var) = keywords->value;
> + return TRUE;
> + }
Indentation.
Peter
next prev parent reply other threads:[~2012-05-27 2:33 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-05-26 15:54 [PATCH v5 0/5] Allow JSON to use non-entire thread, and use for elide Mark Walters
2012-05-26 15:54 ` [PATCH v5 1/5] cli: command line parsing: allow default for keyword options Mark Walters
2012-05-27 2:32 ` Peter Wang [this message]
2012-05-26 15:54 ` [PATCH v5 2/5] cli: Let json output "null" messages for non --entire-thread Mark Walters
2012-05-26 15:54 ` [PATCH v5 3/5] cli: make --entire-thread=false work for format=json Mark Walters
2012-05-26 15:54 ` [PATCH v5 4/5] Update devel/schemata for --entire-thread=false Mark Walters
2012-05-26 15:54 ` [PATCH v5 5/5] emacs: make elide messages use notmuch-show for omitting messages 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=20120527123253.GA3049@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).