Commit c154348f authored by Roman Zippel's avatar Roman Zippel Committed by Linus Torvalds

[PATCH] fix menuconfig colours with TERM=vt100

On Mon, 13 Nov 2006, Phil Oester wrote:
> In commit 350b5b76, the default menuconfig
> color scheme was changed to bluetitle.  This breaks the highlighting
> of the selected item for me with TERM=vt100.  The only way I can see
> which item is selected is via:
>
>     make MENUCONFIG_COLOR=mono menuconfig
>
> Which restores the pre-2.6.19 white on black highlighting.

Fix.

Cc: Phil Oester <kernel@linuxace.com>
Signed-off-by: default avatarRoman Zippel <zippel@linux-m68k.org>
Signed-off-by: default avatarAndrew Morton <akpm@osdl.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
parent f12aa704
...@@ -221,16 +221,14 @@ static void init_dialog_colors(void) ...@@ -221,16 +221,14 @@ static void init_dialog_colors(void)
*/ */
static void color_setup(const char *theme) static void color_setup(const char *theme)
{ {
if (set_theme(theme)) { int use_color;
if (has_colors()) { /* Terminal supports color? */
start_color(); use_color = set_theme(theme);
init_dialog_colors(); if (use_color && has_colors()) {
} start_color();
} init_dialog_colors();
else } else
{
set_mono_theme(); set_mono_theme();
}
} }
/* /*
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment