Skip to content

Commit 3764076

Browse files
committed
patch 8.0.0373: build fails without +folding
Problem: Build fails without +folding. Solution: Move misplaced #ifdef.
1 parent a713ff8 commit 3764076

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

src/option.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1278,8 +1278,8 @@ static struct vimoption options[] =
12781278
#endif
12791279
SCRIPTID_INIT},
12801280
{"foldmarker", "fmr", P_STRING|P_ALLOCED|P_VIM|P_VI_DEF|
1281-
#ifdef FEAT_FOLDING
12821281
P_RWIN|P_ONECOMMA|P_NODUP,
1282+
#ifdef FEAT_FOLDING
12831283
(char_u *)VAR_WIN, PV_FMR,
12841284
{(char_u *)"{{{,}}}", (char_u *)NULL}
12851285
#else

src/version.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -764,6 +764,8 @@ static char *(features[]) =
764764

765765
static int included_patches[] =
766766
{ /* Add new patch number below this line */
767+
/**/
768+
373,
767769
/**/
768770
372,
769771
/**/

0 commit comments

Comments
 (0)