X-Git-Url: https://git.notmuchmail.org/git?a=blobdiff_plain;f=notmuch-config.c;h=11d8d68b5b5ead71d24d9f37202eaf958e8b1ccd;hb=2494e61b9ee6bbab4ac017136d7c6ee0de19b26d;hp=4de55e5fb0010872207703b1063f3a296e7f99da;hpb=3df2281746d57abbb45790ecb432ef40533c30bc;p=notmuch diff --git a/notmuch-config.c b/notmuch-config.c index 4de55e5f..11d8d68b 100644 --- a/notmuch-config.c +++ b/notmuch-config.c @@ -517,6 +517,7 @@ static const struct config_key { "index.decrypt", false, NULL }, { "index.header.", true, validate_field_name }, { "query.", true, NULL }, + { "squery.", true, validate_field_name }, }; static const config_key_info_t * @@ -679,6 +680,9 @@ _notmuch_config_list_built_with () printf ("%sretry_lock=%s\n", BUILT_WITH_PREFIX, notmuch_built_with ("retry_lock") ? "true" : "false"); + printf ("%ssexp_queries=%s\n", + BUILT_WITH_PREFIX, + notmuch_built_with ("sexp_queries") ? "true" : "false"); } static int @@ -708,10 +712,6 @@ notmuch_config_command (notmuch_database_t *notmuch, int argc, char *argv[]) if (opt_index < 0) return EXIT_FAILURE; - if (notmuch_requested_db_uuid) - fprintf (stderr, "Warning: ignoring --uuid=%s\n", - notmuch_requested_db_uuid); - /* skip at least subcommand argument */ argc -= opt_index; argv += opt_index;