summaryrefslogtreecommitdiffstats
path: root/command-line-arguments.h
diff options
context:
space:
mode:
authorJani Nikula <jani@nikula.org>2017-10-14 16:15:43 +0300
committerDavid Bremner <david@tethera.net>2017-11-08 09:46:44 -0500
commit733ccfabca350f65a1d0ba1f64792a8a436da273 (patch)
tree602a83e0831b1ccd19d1a25c97fd34576481b7da /command-line-arguments.h
parent7ac96b149f5a0e5c03b64856d7c20789dab3c628 (diff)
cli: allow empty strings for notmuch insert --folder argument
Now that it's easy to add argument specific modifiers in opt descriptions, add a new .allow_empty field to allow empty strings for individual string arguments while retaining strict checks elsewhere. Use this for notmuch insert --folder, where the empty string means top level folder.
Diffstat (limited to 'command-line-arguments.h')
-rw-r--r--command-line-arguments.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/command-line-arguments.h b/command-line-arguments.h
index 76ca4dcb..c0228f7c 100644
--- a/command-line-arguments.h
+++ b/command-line-arguments.h
@@ -32,6 +32,9 @@ typedef struct notmuch_opt_desc {
/* Optional, if non-NULL, set to true if the option is present. */
bool *present;
+ /* Optional, allow empty strings for opt_string. */
+ bool allow_empty;
+
/* Must be set for opt_keyword and opt_flags. */
const struct notmuch_keyword *keywords;
} notmuch_opt_desc_t;