changeset 11581:2298fda621d3 v8.0.0673

patch 8.0.0673: build failure without conceal feature commit https://github.com/vim/vim/commit/ea20de81462a7e1a7f8fc1d53ad618efb0663c17 Author: Bram Moolenaar <Bram@vim.org> 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.
author Christian Brabandt <cb@256bit.org>
date Sat, 24 Jun 2017 23:00:03 +0200
parents 03d7eb8a9468
children 5944758f4092
files src/syntax.c src/version.c
diffstat 2 files changed, 4 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- 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
 }
 
 /*
--- 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,