commit | e7154eb5c391aa39d5a87b47b9f7338f1a65354e | [log] [tgz] |
---|---|---|
author | Bram Moolenaar <Bram@vim.org> | Sat Mar 21 21:46:13 2015 +0100 |
committer | Bram Moolenaar <Bram@vim.org> | Sat Mar 21 21:46:13 2015 +0100 |
tree | 56c835bcb20cf37786f16ca002ed05eb29bf71a7 | |
parent | 5837f1f447c34628268aab52476a79d57b6a7eaf [diff] [blame] |
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 788a9f5..aee2d6a 100644 --- a/src/syntax.c +++ b/src/syntax.c
@@ -311,7 +311,7 @@ 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 /*