comparison src/syntax.c @ 13495:459c4b29b6c1 v8.0.1621

patch 8.0.1621: using invalid default value for highlight attribute commit https://github.com/vim/vim/commit/6185903e3d07eb53326fc1403fc2de97ca31b775 Author: Bram Moolenaar <Bram@vim.org> 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.
author Christian Brabandt <cb@256bit.org>
date Tue, 20 Mar 2018 13:15:07 +0100
parents 69517d67421f
children cad480bac9e1
comparison
equal deleted inserted replaced
13494:3f7f1579151c 13495:459c4b29b6c1
10042 char_u *end; 10042 char_u *end;
10043 int id; 10043 int id;
10044 #ifdef USER_HIGHLIGHT 10044 #ifdef USER_HIGHLIGHT
10045 char_u userhl[10]; 10045 char_u userhl[10];
10046 # ifdef FEAT_STL_OPT 10046 # ifdef FEAT_STL_OPT
10047 int id_SNC = -1;
10048 int id_S = -1; 10047 int id_S = -1;
10048 int id_SNC = 0;
10049 # ifdef FEAT_TERMINAL 10049 # ifdef FEAT_TERMINAL
10050 int id_ST = -1; 10050 int id_ST = 0;
10051 int id_STNC = -1; 10051 int id_STNC = 0;
10052 # endif 10052 # endif
10053 int hlcnt; 10053 int hlcnt;
10054 # endif 10054 # endif
10055 #endif 10055 #endif
10056 static int hl_flags[HLF_COUNT] = HL_FLAGS; 10056 static int hl_flags[HLF_COUNT] = HL_FLAGS;