diff options
| author | David Bremner <david@tethera.net> | 2015-04-05 22:13:03 +0900 |
|---|---|---|
| committer | David Bremner <david@tethera.net> | 2015-06-01 07:32:54 +0200 |
| commit | 0018a8d787a98f80c665061daa9b0c73839d3666 (patch) | |
| tree | c24386a37b845ae5f400bcb4bbb178c06af31b75 /notmuch-dump.c | |
| parent | 0706e0e3e2da9abf0487ec91a505de82cf5e5c10 (diff) | |
cli: define shared options, use for --help and --version
Unfortunately it seems trickier to support --config globally
The non-trivial changes are in notmuch.c; most of the other changes
consists of blindly inserting two lines into every subcommand.
Diffstat (limited to 'notmuch-dump.c')
| -rw-r--r-- | notmuch-dump.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/notmuch-dump.c b/notmuch-dump.c index 9c6ad7f4..fab22bdd 100644 --- a/notmuch-dump.c +++ b/notmuch-dump.c @@ -228,6 +228,7 @@ notmuch_dump_command (notmuch_config_t *config, int argc, char *argv[]) { 0, 0 } } }, { NOTMUCH_OPT_STRING, &output_file_name, "output", 'o', 0 }, { NOTMUCH_OPT_BOOLEAN, &gzip_output, "gzip", 'z', 0 }, + { NOTMUCH_OPT_INHERIT, (void *) ¬much_shared_options, NULL, 0, 0 }, { 0, 0, 0, 0, 0 } }; @@ -235,6 +236,8 @@ notmuch_dump_command (notmuch_config_t *config, int argc, char *argv[]) if (opt_index < 0) return EXIT_FAILURE; + notmuch_process_shared_options (argv[0]); + if (opt_index < argc) { query_str = query_string_from_args (notmuch, argc - opt_index, argv + opt_index); if (query_str == NULL) { |
