From ea20de81462a7e1a7f8fc1d53ad618efb0663c17 Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Sat, 24 Jun 2017 22:52:24 +0200 Subject: [PATCH] patch 8.0.0673: build failure without conceal feature Problem: Build failure without conceal feature. Solution: Add #ifdef. --- src/syntax.c | 2 ++ src/version.c | 2 ++ 2 files changed, 4 insertions(+) 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 } /* diff --git a/src/version.c b/src/version.c index d15b7db8e..b9f309d21 100644 --- a/src/version.c +++ b/src/version.c @@ -764,6 +764,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 673, /**/ 672, /**/ -- 2.50.1