From: Bram Moolenaar Date: Sat, 25 Feb 2017 21:37:15 +0000 (+0100) Subject: patch 8.0.0373: build fails without +folding X-Git-Tag: v8.0.0373 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=376407674ff10b60e7c6090906be50982763f0f3;p=vim patch 8.0.0373: build fails without +folding Problem: Build fails without +folding. Solution: Move misplaced #ifdef. --- diff --git a/src/option.c b/src/option.c index 959af4fa4..459179e2e 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 3b8c12705..b008d1408 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, /**/