diff options
author | Thiago de Arruda <tpadilha84@gmail.com> | 2015-01-05 07:39:38 -0300 |
---|---|---|
committer | Thiago de Arruda <tpadilha84@gmail.com> | 2015-01-12 09:47:40 -0300 |
commit | a4525bc5231bc175a4abd5f60624ed40e85c700b (patch) | |
tree | 93aecc8e836cce9dde7314a17222bb5282623316 | |
parent | 4a28785c6e279c17941679feadc6fb6d090ace9f (diff) | |
download | rneovim-a4525bc5231bc175a4abd5f60624ed40e85c700b.tar.gz rneovim-a4525bc5231bc175a4abd5f60624ed40e85c700b.tar.bz2 rneovim-a4525bc5231bc175a4abd5f60624ed40e85c700b.zip |
screen: Remove abstract_ui test in reset_cterm_colors
-rw-r--r-- | src/nvim/screen.c | 2 |
1 files changed, 1 insertions, 1 deletions
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); |