aboutsummaryrefslogtreecommitdiffhomepage
path: root/notmuch-show.c
diff options
context:
space:
mode:
authorGravatar Carl Worth <cworth@cworth.org>2009-11-12 10:22:55 -0800
committerGravatar Carl Worth <cworth@cworth.org>2009-11-12 10:22:55 -0800
commitbb7ed1f153a8cf28e4b9ef7670e4bfc05322987f (patch)
tree4f6a0af689d762db11c4b938be087cd99bec2aee /notmuch-show.c
parent2f4c5874747c58be04764a7c9a62f3b352e4f9fb (diff)
notmuch show: Display "Subject: " before the subject.
I think I was being uselessly terse when I dropped that. Put it back.
Diffstat (limited to 'notmuch-show.c')
-rw-r--r--notmuch-show.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/notmuch-show.c b/notmuch-show.c
index 19787feb..41b33641 100644
--- a/notmuch-show.c
+++ b/notmuch-show.c
@@ -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);