projects
/
notmuch.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
2f4c587
)
notmuch show: Display "Subject: " before the subject.
author
Carl Worth
<cworth@cworth.org>
Thu, 12 Nov 2009 18:22:55 +0000
(10:22 -0800)
committer
Carl Worth
<cworth@cworth.org>
Thu, 12 Nov 2009 18:22:55 +0000
(10:22 -0800)
I think I was being uselessly terse when I dropped that. Put it back.
notmuch-show.c
patch
|
blob
|
history
diff --git
a/notmuch-show.c
b/notmuch-show.c
index 19787feb2c17cd5dec629f0fc8b2ba35d1fe2dfc..41b33641c67143599c2d4f5b76f8554ade93297b 100644
(file)
--- 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);