changeset 6698:67e7a819c811 v7.4.673

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)
author Bram Moolenaar <bram@vim.org>
date Sat, 21 Mar 2015 21:46:13 +0100
parents 12155a47f6c2
children 6f67adb8ade6
files src/syntax.c src/version.c
diffstat 2 files changed, 3 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- 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
 
 /*
--- 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,