diff src/syntax.c @ 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 476a12a96bb1
children bcc0909b379e
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
 
 /*