]> granicus.if.org Git - vim/commitdiff
updated for version 7.4.673 v7.4.673
authorBram Moolenaar <Bram@vim.org>
Sat, 21 Mar 2015 20:46:13 +0000 (21:46 +0100)
committerBram Moolenaar <Bram@vim.org>
Sat, 21 Mar 2015 20:46:13 +0000 (21:46 +0100)
Problem:    The first syntax entry gets sequence number zero, which doesn't
            work. (Clinton McKay)
Solution:   Start at number one. (Bjorn Linse)

src/syntax.c
src/version.c

index 788a9f5aab07c107e6d7283584e2cbc5989b210d..aee2d6a305d442c3748c6b7b3f0a59fd170f11af 100644 (file)
@@ -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
 
 /*
index 344c327dde517a794101056e1d9393e7aad34569..63577aca0ac4f31cfc0d77df74061c86b5ddf018 100644 (file)
@@ -741,6 +741,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    673,
 /**/
     672,
 /**/