comparison src/screen.c @ 13452:9b09f6e470e0 v8.0.1600

patch 8.0.1600: crash when setting t_Co to zero when 'termguicolors' is set commit https://github.com/vim/vim/commit/f708ac592f47100a36f2bc12ec98ea6357fdfa27 Author: Bram Moolenaar <Bram@vim.org> Date: Mon Mar 12 21:48:32 2018 +0100 patch 8.0.1600: crash when setting t_Co to zero when 'termguicolors' is set Problem: Crash when setting t_Co to zero when 'termguicolors' is set. Solution: Use IS_CTERM instead of checking the number of colors. (closes #2710)
author Christian Brabandt <cb@256bit.org>
date Mon, 12 Mar 2018 22:00:06 +0100
parents c415cdd49ea4
children cec5137d5332
comparison
equal deleted inserted replaced
13451:be0536e2f27f 13452:9b09f6e470e0
8125 { 8125 {
8126 if (aep->ae_u.cterm.bg_color) 8126 if (aep->ae_u.cterm.bg_color)
8127 term_bg_color(aep->ae_u.cterm.bg_color - 1); 8127 term_bg_color(aep->ae_u.cterm.bg_color - 1);
8128 } 8128 }
8129 8129
8130 if (t_colors <= 1) 8130 if (!IS_CTERM)
8131 { 8131 {
8132 if (aep->ae_u.term.start != NULL) 8132 if (aep->ae_u.term.start != NULL)
8133 out_str(aep->ae_u.term.start); 8133 out_str(aep->ae_u.term.start);
8134 } 8134 }
8135 } 8135 }