changeset: 6396:d732298789f2
user: Vincent Lefevre <[email protected]>
date: Thu Jan 15 13:19:14 2015 +0100
link: http://dev.mutt.org/hg/mutt/rev/d732298789f2
Also colorize the initial mutt_enter_fname prompt.
Note: the new prompt obtained after a key is typed was already colorized.
diffs (14 lines):
diff -r 4ba366bc7c45 -r d732298789f2 curs_lib.c
--- a/curs_lib.c Tue Aug 12 14:04:55 2014 -0700
+++ b/curs_lib.c Thu Jan 15 13:19:14 2015 +0100
@@ -567,8 +567,10 @@
{
event_t ch;
+ SETCOLOR (MT_COLOR_PROMPT);
mvaddstr (LINES-1, 0, (char *) prompt);
addstr (_(" ('?' for list): "));
+ NORMAL_COLOR;
if (buf[0])
addstr (buf);
clrtoeol ();