diff options
author | Bram Moolenaar <Bram@vim.org> | 2017-06-24 22:52:24 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2017-06-24 22:52:24 +0200 |
commit | ea20de81462a7e1a7f8fc1d53ad618efb0663c17 (patch) | |
tree | d6e16eecb8c079f3c70baaa11a11c29bd8e20916 /src/syntax.c | |
parent | cc0750dc6e878394ab0fd922b7ea4280918ae406 (diff) | |
download | vim-git-ea20de81462a7e1a7f8fc1d53ad618efb0663c17.tar.gz |
patch 8.0.0673: build failure without conceal featurev8.0.0673
Problem: Build failure without conceal feature.
Solution: Add #ifdef.
Diffstat (limited to 'src/syntax.c')
-rw-r--r-- | src/syntax.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/syntax.c b/src/syntax.c index da2c87684..09013b07c 100644 --- a/src/syntax.c +++ b/src/syntax.c @@ -1061,7 +1061,9 @@ syn_start_line(void) next_match_idx = -1; ++current_line_id; +#ifdef FEAT_CONCEAL next_seqnr = 1; +#endif } /* |