aboutsummaryrefslogtreecommitdiffhomepage
path: root/notmuch.c
diff options
context:
space:
mode:
authorGravatar Carl Worth <cworth@cworth.org>2009-11-06 09:32:24 -0800
committerGravatar Carl Worth <cworth@cworth.org>2009-11-06 09:32:24 -0800
commit508d2d2ff7bacb0b39563d233e9271fd8113b67c (patch)
tree35e7dcc05a4ce288a7b5a56410aa70d99663533b /notmuch.c
parent98afc279573bfd9528056cb1e9398a286d97a8a3 (diff)
notmuch show: Don't show the subject line twice.
I recently added a print of the subject line for use as part of a two-line summary in the emacs client. But of course, the subject was already being printed on the next line. So I didn't really need to add anything, I could have just stopped hiding what was already printed. Anyway, we now avoid printing it twice in a row.
Diffstat (limited to 'notmuch.c')
-rw-r--r--notmuch.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/notmuch.c b/notmuch.c
index 5dce6521..64e59fe5 100644
--- a/notmuch.c
+++ b/notmuch.c
@@ -1076,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;