Skip to content

Commit ecadf43

Browse files
committed
patch 8.0.1618: color Grey50 is missing in the compiled-in table
Problem: Color Grey50, used for ToolbarLine, is missing in the compiled-in table. Solution: Add the color to the list. (Kazunobu Kuriyama)
1 parent 42f652f commit ecadf43

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

src/term.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3642,7 +3642,7 @@ swapping_screen(void)
36423642
return (full_screen && *T_TI != NUL);
36433643
}
36443644

3645-
#ifdef FEAT_MOUSE
3645+
#if defined(FEAT_MOUSE) || defined(PROTO)
36463646
/*
36473647
* setmouse() - switch mouse on/off depending on current mode and 'mouse'
36483648
*/
@@ -6805,6 +6805,7 @@ gui_get_color_cmn(char_u *name)
68056805
{(char_u *)"green", RGB(0x00, 0xFF, 0x00)},
68066806
{(char_u *)"grey", RGB(0xBE, 0xBE, 0xBE)},
68076807
{(char_u *)"grey40", RGB(0x66, 0x66, 0x66)},
6808+
{(char_u *)"grey50", RGB(0x7F, 0x7F, 0x7F)},
68086809
{(char_u *)"grey90", RGB(0xE5, 0xE5, 0xE5)},
68096810
{(char_u *)"lightblue", RGB(0xAD, 0xD8, 0xE6)},
68106811
{(char_u *)"lightcyan", RGB(0xE0, 0xFF, 0xFF)},

src/version.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -766,6 +766,8 @@ static char *(features[]) =
766766

767767
static int included_patches[] =
768768
{ /* Add new patch number below this line */
769+
/**/
770+
1618,
769771
/**/
770772
1617,
771773
/**/

0 commit comments

Comments
 (0)