X-Git-Url: https://git.notmuchmail.org/git?p=notmuch;a=blobdiff_plain;f=notmuch.c;h=64e59fe588bce24e08a94b36dc4b996a1d1b2f00;hp=b20b4065005630dfc3c5bc2d374516a819f77c33;hb=1eec45659b1f647c862667b045eb27a691d0f11e;hpb=db81b31c56d87912f5c8e8265b079c2fcfcb5c37 diff --git a/notmuch.c b/notmuch.c index b20b4065..64e59fe5 100644 --- a/notmuch.c +++ b/notmuch.c @@ -913,7 +913,6 @@ _get_one_line_summary (void *ctx, notmuch_message_t *message) const char *from; time_t date; const char *relative_date; - const char *subject; const char *tags; from = notmuch_message_get_header (message, "from"); @@ -921,12 +920,10 @@ _get_one_line_summary (void *ctx, notmuch_message_t *message) date = notmuch_message_get_date (message); relative_date = _format_relative_date (ctx, date); - subject = notmuch_message_get_header (message, "subject"); - tags = _get_tags_as_string (ctx, message); - return talloc_asprintf (ctx, "%s (%s) %s (%s)", - from, relative_date, subject, tags); + return talloc_asprintf (ctx, "%s (%s) (%s)", + from, relative_date, tags); } static void @@ -1079,7 +1076,7 @@ show_command (void *ctx, unused (int argc), unused (char *argv[])) int ret = 0; const char *headers[] = { - "Subject", "From", "To", "Cc", "Bcc", "Date" + "From", "To", "Cc", "Bcc", "Date" }; const char *name, *value; unsigned int i; @@ -1118,6 +1115,8 @@ show_command (void *ctx, unused (int argc), unused (char *argv[])) printf ("%s\n", _get_one_line_summary (local, message)); + printf ("%s\n", notmuch_message_get_header (message, "subject")); + for (i = 0; i < ARRAY_SIZE (headers); i++) { name = headers[i]; value = notmuch_message_get_header (message, name);