# HG changeset patch # User Christian Brabandt # Date 1488059104 -3600 # Node ID 0cfcbb7046b69fe2a8b277edd5e62e58274ef4eb # Parent 2828f870f481a0bdc3740a1520d77c8e08cd5544 patch 8.0.0373: build fails without +folding commit https://github.com/vim/vim/commit/376407674ff10b60e7c6090906be50982763f0f3 Author: Bram Moolenaar Date: Sat Feb 25 22:37:15 2017 +0100 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 --- 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| + P_RWIN|P_ONECOMMA|P_NODUP, #ifdef FEAT_FOLDING - P_RWIN|P_ONECOMMA|P_NODUP, (char_u *)VAR_WIN, PV_FMR, {(char_u *)"{{{,}}}", (char_u *)NULL} #else 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 */ /**/ + 373, +/**/ 372, /**/ 371,