diff options
author | Bram Moolenaar <Bram@vim.org> | 2015-03-21 21:46:13 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2015-03-21 21:46:13 +0100 |
commit | e7154eb5c391aa39d5a87b47b9f7338f1a65354e (patch) | |
tree | 56c835bcb20cf37786f16ca002ed05eb29bf71a7 /src/syntax.c | |
parent | 5837f1f447c34628268aab52476a79d57b6a7eaf (diff) | |
download | vim-git-e7154eb5c391aa39d5a87b47b9f7338f1a65354e.tar.gz |
updated for version 7.4.673v7.4.673
Problem: The first syntax entry gets sequence number zero, which doesn't
work. (Clinton McKay)
Solution: Start at number one. (Bjorn Linse)
Diffstat (limited to 'src/syntax.c')
-rw-r--r-- | src/syntax.c | 2 |
1 files changed, 1 insertions, 1 deletions
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 /* |