# HG changeset patch # User Christian Brabandt # Date 1521548107 -3600 # Node ID 459c4b29b6c14af77e637ca5d3aac763cae5ee27 # Parent 3f7f1579151ccca0bd4b6fd9f3d416824b3d9c04 patch 8.0.1621: using invalid default value for highlight attribute commit https://github.com/vim/vim/commit/6185903e3d07eb53326fc1403fc2de97ca31b775 Author: Bram Moolenaar Date: Tue Mar 20 13:00:25 2018 +0100 patch 8.0.1621: using invalid default value for highlight attribute Problem: Using invalid default value for highlight attribute. Solution: Use zero instead of -1. diff --git a/src/syntax.c b/src/syntax.c --- a/src/syntax.c +++ b/src/syntax.c @@ -10044,11 +10044,11 @@ highlight_changed(void) #ifdef USER_HIGHLIGHT char_u userhl[10]; # ifdef FEAT_STL_OPT - int id_SNC = -1; int id_S = -1; + int id_SNC = 0; # ifdef FEAT_TERMINAL - int id_ST = -1; - int id_STNC = -1; + int id_ST = 0; + int id_STNC = 0; # endif int hlcnt; # endif diff --git a/src/version.c b/src/version.c --- 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 */ /**/ + 1621, +/**/ 1620, /**/ 1619,