# HG changeset patch # User Christian Brabandt # Date 1500843605 -7200 # Node ID 6315c631dcb7744d2ba1e35d75cd33bf17bd7406 # Parent 1e525271a83e7ccf347f3103d658ce07e20c5b77 patch 8.0.0765: build fails with tiny features commit https://github.com/vim/vim/commit/81bdd6a02575b024db3dd5d91ec4ac4dfd41aa7a Author: Bram Moolenaar Date: Sun Jul 23 22:57:00 2017 +0200 patch 8.0.0765: build fails with tiny features Problem: Build fails with tiny features. Solution: Adjust #ifdef. (John Marriott) diff --git a/src/option.c b/src/option.c --- a/src/option.c +++ b/src/option.c @@ -57,9 +57,9 @@ #define PV_AI OPT_BUF(BV_AI) #define PV_AR OPT_BOTH(OPT_BUF(BV_AR)) #define PV_BKC OPT_BOTH(OPT_BUF(BV_BKC)) +#define PV_BH OPT_BUF(BV_BH) +#define PV_BT OPT_BUF(BV_BT) #ifdef FEAT_QUICKFIX -# define PV_BH OPT_BUF(BV_BH) -# define PV_BT OPT_BUF(BV_BT) # define PV_EFM OPT_BOTH(OPT_BUF(BV_EFM)) # define PV_GP OPT_BOTH(OPT_BUF(BV_GP)) # define PV_MP OPT_BOTH(OPT_BUF(BV_MP)) diff --git a/src/option.h b/src/option.h --- a/src/option.h +++ b/src/option.h @@ -988,12 +988,10 @@ enum { BV_AI = 0 , BV_AR + , BV_BH + , BV_BKC + , BV_BT #ifdef FEAT_QUICKFIX - , BV_BH -#endif - , BV_BKC -#ifdef FEAT_QUICKFIX - , BV_BT , BV_EFM , BV_GP , BV_MP diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -770,6 +770,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 765, +/**/ 764, /**/ 763,