changeset 9601:9cc49b86f613 v7.4.2078

commit https://github.com/vim/vim/commit/ca8942c6e331a69ddd533dd78931f399f7dcaa79 Author: Bram Moolenaar <Bram@vim.org> Date: Tue Jul 19 23:36:31 2016 +0200 patch 7.4.2078 Problem: Running checks in po diretory fails. Solution: Add colors used in syntax.c to the builtiin color table.
author Christian Brabandt <cb@256bit.org>
date Tue, 19 Jul 2016 23:45:05 +0200
parents 8ab52b4db723
children 652b81970bde
files src/term.c src/version.c
diffstat 2 files changed, 4 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/src/term.c
+++ b/src/term.c
@@ -6104,6 +6104,7 @@ gui_get_color_cmn(char_u *name)
 	    {(char_u *)"gray",		RGB(0xBE, 0xBE, 0xBE)},
 	    {(char_u *)"green",		RGB(0x00, 0xFF, 0x00)},
 	    {(char_u *)"grey",		RGB(0xBE, 0xBE, 0xBE)},
+	    {(char_u *)"grey90",	RGB(0xE5, 0xE5, 0xE5)},
 	    {(char_u *)"lightblue",	RGB(0xAD, 0xD8, 0xE6)},
 	    {(char_u *)"lightcyan",	RGB(0xE0, 0xFF, 0xFF)},
 	    {(char_u *)"lightgray",	RGB(0xD3, 0xD3, 0xD3)},
@@ -6114,6 +6115,7 @@ gui_get_color_cmn(char_u *name)
 	    {(char_u *)"lightyellow",	RGB(0xFF, 0xFF, 0xE0)},
 	    {(char_u *)"magenta",	RGB(0xFF, 0x00, 0xFF)},
 	    {(char_u *)"red",		RGB(0xFF, 0x00, 0x00)},
+	    {(char_u *)"seagreen",	RGB(0x2E, 0x8B, 0x57)},
 	    {(char_u *)"white",		RGB(0xFF, 0xFF, 0xFF)},
 	    {(char_u *)"yellow",	RGB(0xFF, 0xFF, 0x00)},
     };
--- a/src/version.c
+++ b/src/version.c
@@ -759,6 +759,8 @@ static char *(features[]) =
 static int included_patches[] =
 {   /* Add new patch number below this line */
 /**/
+    2078,
+/**/
     2077,
 /**/
     2076,