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 | |
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')
-rw-r--r-- | src/syntax.c | 2 | ||||
-rw-r--r-- | src/version.c | 2 |
2 files changed, 3 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 /* diff --git a/src/version.c b/src/version.c index 344c327dd..63577aca0 100644 --- 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, |