From 376407674ff10b60e7c6090906be50982763f0f3 Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Sat, 25 Feb 2017 22:37:15 +0100 Subject: [PATCH] patch 8.0.0373: build fails without +folding Problem: Build fails without +folding. Solution: Move misplaced #ifdef. --- src/option.c | 2 +- src/version.c | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/src/option.c b/src/option.c index 959af4fa4e..459179e2e1 100644 --- a/src/option.c +++ b/src/option.c @@ -1278,8 +1278,8 @@ static struct vimoption options[] = #endif SCRIPTID_INIT}, {"foldmarker", "fmr", P_STRING|P_ALLOCED|P_VIM|P_VI_DEF| -#ifdef FEAT_FOLDING P_RWIN|P_ONECOMMA|P_NODUP, +#ifdef FEAT_FOLDING (char_u *)VAR_WIN, PV_FMR, {(char_u *)"{{{,}}}", (char_u *)NULL} #else diff --git a/src/version.c b/src/version.c index 3b8c12705f..b008d14088 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 */ +/**/ + 373, /**/ 372, /**/ -- 2.47.2