From: Vincent Lefevre Date: Thu, 15 Jan 2015 12:19:14 +0000 (+0100) Subject: Also colorize the initial mutt_enter_fname prompt. X-Git-Tag: neomutt-20160307~107 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=c8e68c87b3f6f0ecd09ec0a75ac038e78e78a272;p=neomutt Also colorize the initial mutt_enter_fname prompt. Note: the new prompt obtained after a key is typed was already colorized. --- diff --git a/curs_lib.c b/curs_lib.c index 236961297..7b6a4f45f 100644 --- a/curs_lib.c +++ b/curs_lib.c @@ -567,8 +567,10 @@ int _mutt_enter_fname (const char *prompt, char *buf, size_t blen, int *redraw, { event_t ch; + SETCOLOR (MT_COLOR_PROMPT); mvaddstr (LINES-1, 0, (char *) prompt); addstr (_(" ('?' for list): ")); + NORMAL_COLOR; if (buf[0]) addstr (buf); clrtoeol ();