# HG changeset patch # User Bram Moolenaar # Date 1426970773 -3600 # Node ID 67e7a819c8115a149d2e780fa1fa7d9fa96a6c02 # Parent 12155a47f6c2837abb204749dba28554ac6953fa updated for version 7.4.673 Problem: The first syntax entry gets sequence number zero, which doesn't work. (Clinton McKay) Solution: Start at number one. (Bjorn Linse) diff --git a/src/syntax.c b/src/syntax.c --- a/src/syntax.c +++ b/src/syntax.c @@ -311,7 +311,7 @@ typedef struct state_item but contained groups */ #ifdef FEAT_CONCEAL -static int next_seqnr = 0; /* value to use for si_seqnr */ +static int next_seqnr = 1; /* value to use for si_seqnr */ #endif /* diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -742,6 +742,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 673, +/**/ 672, /**/ 671,