# HG changeset patch # User Christian Brabandt # Date 1498338003 -7200 # Node ID 2298fda621d300bdbab67084e8ebcf7e55be4621 # Parent 03d7eb8a9468c49dc32beeeb243c2d7e6c84690d patch 8.0.0673: build failure without conceal feature commit https://github.com/vim/vim/commit/ea20de81462a7e1a7f8fc1d53ad618efb0663c17 Author: Bram Moolenaar Date: Sat Jun 24 22:52:24 2017 +0200 patch 8.0.0673: build failure without conceal feature Problem: Build failure without conceal feature. Solution: Add #ifdef. diff --git a/src/syntax.c b/src/syntax.c --- 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 } /* diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -765,6 +765,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 673, +/**/ 672, /**/ 671,