From a4525bc5231bc175a4abd5f60624ed40e85c700b Mon Sep 17 00:00:00 2001 From: Thiago de Arruda Date: Mon, 5 Jan 2015 07:39:38 -0300 Subject: screen: Remove abstract_ui test in reset_cterm_colors --- src/nvim/screen.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/nvim/screen.c b/src/nvim/screen.c index 614f138e31..0ff74176d4 100644 --- a/src/nvim/screen.c +++ b/src/nvim/screen.c @@ -5971,7 +5971,7 @@ void screen_stop_highlight(void) */ void reset_cterm_colors(void) { - if (abstract_ui || t_colors > 1) { + if (t_colors > 1) { /* set Normal cterm colors */ if (cterm_normal_fg_color > 0 || cterm_normal_bg_color > 0) { out_str(T_OP); -- cgit