From: Bram Moolenaar Date: Sat, 21 Mar 2015 20:46:13 +0000 (+0100) Subject: updated for version 7.4.673 X-Git-Tag: v7.4.673 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e7154eb5c391aa39d5a87b47b9f7338f1a65354e;p=vim 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 index 788a9f5aa..aee2d6a30 100644 --- 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 index 344c327dd..63577aca0 100644 --- a/src/version.c +++ b/src/version.c @@ -741,6 +741,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 673, /**/ 672, /**/