mirror of
https://git.notmuchmail.org/git/notmuch
synced 2025-03-14 03:25:15 +01:00
notmuch show: Display "Subject: " before the subject.
I think I was being uselessly terse when I dropped that. Put it back.
This commit is contained in:
parent
2f4c587474
commit
bb7ed1f153
1 changed files with 1 additions and 3 deletions
|
@ -128,7 +128,7 @@ notmuch_show_command (void *ctx, unused (int argc), unused (char *argv[]))
|
|||
char *query_string;
|
||||
|
||||
const char *headers[] = {
|
||||
"From", "To", "Cc", "Bcc", "Date"
|
||||
"Subject", "From", "To", "Cc", "Bcc", "Date"
|
||||
};
|
||||
const char *name, *value;
|
||||
unsigned int i;
|
||||
|
@ -167,8 +167,6 @@ notmuch_show_command (void *ctx, unused (int argc), unused (char *argv[]))
|
|||
|
||||
printf ("%s\n", _get_one_line_summary (ctx, 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);
|
||||
|
|
Loading…
Add table
Reference in a new issue