X-Git-Url: https://git.notmuchmail.org/git?p=notmuch;a=blobdiff_plain;f=notmuch.c;h=3b4cd6f13a40f5c586cd1f2e85e16e5ab833e29d;hp=c607457c0040d61866be19d2e8f5a8407ab05b62;hb=9fc6f4e60d6c2bd98d6bd918af9982131c7fb0b1;hpb=02aa1391beae37e1c4641a9543871d96afdae1bb diff --git a/notmuch.c b/notmuch.c index c607457c..3b4cd6f1 100644 --- a/notmuch.c +++ b/notmuch.c @@ -1067,25 +1067,6 @@ show_message_body (const char *filename) return ret; } -static int -_message_is_unread (notmuch_message_t *message) -{ - notmuch_tags_t *tags; - const char *tag; - - for (tags = notmuch_message_get_tags (message); - notmuch_tags_has_more (tags); - notmuch_tags_advance (tags)) - { - tag = notmuch_tags_get (tags); - - if (strcmp (tag, "unread") == 0) - return 1; - } - - return 0; -} - static int show_command (void *ctx, unused (int argc), unused (char *argv[])) { @@ -1096,7 +1077,6 @@ show_command (void *ctx, unused (int argc), unused (char *argv[])) notmuch_messages_t *messages; notmuch_message_t *message; int ret = 0; - int unread; const char *headers[] = { "Subject", "From", "To", "Cc", "Bcc", "Date" @@ -1135,11 +1115,9 @@ show_command (void *ctx, unused (int argc), unused (char *argv[])) notmuch_messages_advance (messages)) { message = notmuch_messages_get (messages); - unread = _message_is_unread (message); - printf ("\fmessage{ ID: %s %s\n", - notmuch_message_get_message_id (message), - unread ? "unread" : ""); + printf ("\fmessage{ ID: %s\n", + notmuch_message_get_message_id (message)); printf ("\fheader{\n");