X-Git-Url: https://git.cworth.org/git?a=blobdiff_plain;f=tag-util.c;h=92e08a1d05030099b6439f0b56568bc6a8b40bc5;hb=e8efa11da90fa47adcbc489638320d61ac98391a;hp=701d329794b59a9c13f43a4e257ba752c944454a;hpb=e9b6e464745fdebd4c6367dfc731859fe390b531;p=obsolete%2Fnotmuch-old diff --git a/tag-util.c b/tag-util.c index 701d3297..92e08a1d 100644 --- a/tag-util.c +++ b/tag-util.c @@ -188,16 +188,11 @@ parse_tag_command_line (void *ctx, int argc, char **argv, tag_op_list_append (tag_ops, argv[i] + 1, is_remove); } - if (tag_op_list_size (tag_ops) == 0) { - fprintf (stderr, "Error: 'notmuch tag' requires at least one tag to add or remove.\n"); - return TAG_PARSE_INVALID; - } - *query_str = query_string_from_args (ctx, argc - i, &argv[i]); - if (*query_str == NULL || **query_str == '\0') { - fprintf (stderr, "Error: notmuch tag requires at least one search term.\n"); - return TAG_PARSE_INVALID; + if (*query_str == NULL) { + fprintf (stderr, "Out of memory.\n"); + return TAG_PARSE_OUT_OF_MEMORY; } return TAG_PARSE_SUCCESS;