summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2018-03-20 11:17:04 +0100
committerBram Moolenaar <Bram@vim.org>2018-03-20 11:17:04 +0100
commitecadf4377f120200252e023ef6a9aa369e98850a (patch)
treeeef9db6c1496fa719f1b694602f57591407ba263 /src
parent42f652f733550a0d8bc9b030c9a5a62e7e2d8668 (diff)
downloadvim-git-ecadf4377f120200252e023ef6a9aa369e98850a.tar.gz
patch 8.0.1618: color Grey50 is missing in the compiled-in tablev8.0.1618
Problem: Color Grey50, used for ToolbarLine, is missing in the compiled-in table. Solution: Add the color to the list. (Kazunobu Kuriyama)
Diffstat (limited to 'src')
-rw-r--r--src/term.c3
-rw-r--r--src/version.c2
2 files changed, 4 insertions, 1 deletions
diff --git a/src/term.c b/src/term.c
index 622491fb0..c74e14f44 100644
--- a/src/term.c
+++ b/src/term.c
@@ -3642,7 +3642,7 @@ swapping_screen(void)
return (full_screen && *T_TI != NUL);
}
-#ifdef FEAT_MOUSE
+#if defined(FEAT_MOUSE) || defined(PROTO)
/*
* setmouse() - switch mouse on/off depending on current mode and 'mouse'
*/
@@ -6805,6 +6805,7 @@ gui_get_color_cmn(char_u *name)
{(char_u *)"green", RGB(0x00, 0xFF, 0x00)},
{(char_u *)"grey", RGB(0xBE, 0xBE, 0xBE)},
{(char_u *)"grey40", RGB(0x66, 0x66, 0x66)},
+ {(char_u *)"grey50", RGB(0x7F, 0x7F, 0x7F)},
{(char_u *)"grey90", RGB(0xE5, 0xE5, 0xE5)},
{(char_u *)"lightblue", RGB(0xAD, 0xD8, 0xE6)},
{(char_u *)"lightcyan", RGB(0xE0, 0xFF, 0xFF)},
diff --git a/src/version.c b/src/version.c
index 92ca63ad1..35feb7698 100644
--- a/src/version.c
+++ b/src/version.c
@@ -767,6 +767,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 1618,
+/**/
1617,
/**/
1616,