mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-22 02:48:08 +01:00
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.
This commit is contained in:
parent
98afc27957
commit
508d2d2ff7
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue