From: Richard Russon Date: Mon, 5 Jun 2017 12:50:50 +0000 (+0100) Subject: Fix typos in 'color compose' X-Git-Tag: neomutt-20170609~22 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=c499ed0c5c29d07dbde05208a4364f30b509ffad;p=neomutt Fix typos in 'color compose' --- diff --git a/compose.c b/compose.c index d0df23abc..c2ca782b9 100644 --- a/compose.c +++ b/compose.c @@ -170,13 +170,13 @@ static void redraw_crypt_lines(struct Header *msg) } else if (msg->security & SIGN) { - SETCOLOR(MT_COLOR_COMPOSE_SECURITY_ENCRYPT); + SETCOLOR(MT_COLOR_COMPOSE_SECURITY_SIGN); addstr(_("Sign")); } else { /* L10N: This refers to the encryption of the email, e.g. "Security: None" */ - SETCOLOR(MT_COLOR_COMPOSE_SECURITY_ENCRYPT); + SETCOLOR(MT_COLOR_COMPOSE_SECURITY_NONE); addstr(_("None")); } NORMAL_COLOR;