summaryrefslogtreecommitdiff
path: root/src/syntax.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2018-03-20 13:00:25 +0100
committerBram Moolenaar <Bram@vim.org>2018-03-20 13:00:25 +0100
commit6185903e3d07eb53326fc1403fc2de97ca31b775 (patch)
tree749ad4863c57ac6e3cadd06957281e4ce0d199c3 /src/syntax.c
parente26e0d2b83c2875b9829b884c2ababf8ca771f7e (diff)
downloadvim-git-6185903e3d07eb53326fc1403fc2de97ca31b775.tar.gz
patch 8.0.1621: using invalid default value for highlight attributev8.0.1621
Problem: Using invalid default value for highlight attribute. Solution: Use zero instead of -1.
Diffstat (limited to 'src/syntax.c')
-rw-r--r--src/syntax.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/syntax.c b/src/syntax.c
index d09359ab1..e945dac04 100644
--- 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