X-Git-Url: https://git.notmuchmail.org/git?p=notmuch;a=blobdiff_plain;f=notmuch-tag.c;h=d9daf8fbe44a39f50ba2464cb6a057cfe372afc1;hp=6408babb5f1daf9ddd088f23047399c488942d06;hb=b12b81bbb572079ac0f5089fa7eb38f71c7874d1;hpb=4e9fe60422d9092737550bd8a3b8525ee2a20daf diff --git a/notmuch-tag.c b/notmuch-tag.c index 6408babb..d9daf8fb 100644 --- a/notmuch-tag.c +++ b/notmuch-tag.c @@ -97,7 +97,7 @@ tag_query (void *ctx, notmuch_database_t *notmuch, const char *query_string, notmuch_query_t *query; notmuch_messages_t *messages; notmuch_message_t *message; - int ret = 0; + int ret = NOTMUCH_STATUS_SUCCESS; /* Optimize the query so it excludes messages that already have * the specified set of tags. */ @@ -140,6 +140,7 @@ tag_file (void *ctx, notmuch_database_t *notmuch, tag_op_flag_t flags, size_t line_size = 0; ssize_t line_len; int ret = 0; + int warn = 0; tag_op_list_t *tag_ops; tag_ops = tag_op_list_create (ctx); @@ -154,8 +155,13 @@ tag_file (void *ctx, notmuch_database_t *notmuch, tag_op_flag_t flags, ret = parse_tag_line (ctx, line, TAG_FLAG_NONE, &query_string, tag_ops); - if (ret > 0) + if (ret > 0) { + if (ret != TAG_PARSE_SKIPPED) + /* remember there has been problematic lines */ + warn = 1; + ret = 0; continue; + } if (ret < 0) break; @@ -168,7 +174,7 @@ tag_file (void *ctx, notmuch_database_t *notmuch, tag_op_flag_t flags, if (line) free (line); - return ret; + return ret || warn; } int