comparison src/term.c @ 19997:3d1de9093c01 v8.2.0554

patch 8.2.0554: the GUI doesn't set t_Co Commit: https://github.com/vim/vim/commit/acc770a10f65107131473ea2ab4ae5d429dfe172 Author: Bram Moolenaar <Bram@vim.org> Date: Sun Apr 12 15:11:06 2020 +0200 patch 8.2.0554: the GUI doesn't set t_Co Problem: The GUI doesn't set t_Co. Solution: In the GUI set t_Co to 256 * 256 * 256. (closes https://github.com/vim/vim/issues/5903)
author Bram Moolenaar <Bram@vim.org>
date Sun, 12 Apr 2020 15:15:04 +0200
parents 22f0dda71638
children fcfad3f4bc66
comparison
equal deleted inserted replaced
19996:f486b806468f 19997:3d1de9093c01
1550 /* 1550 /*
1551 * Set number of colors. 1551 * Set number of colors.
1552 * Store it as a number in t_colors. 1552 * Store it as a number in t_colors.
1553 * Store it as a string in T_CCO (using nr_colors[]). 1553 * Store it as a string in T_CCO (using nr_colors[]).
1554 */ 1554 */
1555 static void 1555 void
1556 set_color_count(int nr) 1556 set_color_count(int nr)
1557 { 1557 {
1558 char_u nr_colors[20]; // string for number of colors 1558 char_u nr_colors[20]; // string for number of colors
1559 1559
1560 t_colors = nr; 1560 t_colors = nr;