summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2017-07-23 22:57:00 +0200
committerBram Moolenaar <Bram@vim.org>2017-07-23 22:57:00 +0200
commit81bdd6a02575b024db3dd5d91ec4ac4dfd41aa7a (patch)
tree7a4548544f79b73f05e97ec5168683f3febd8baf /src
parentdbe948d6c350feacc01ad019b57717149c8ea5e5 (diff)
patch 8.0.0765: build fails with tiny featuresv8.0.0765
Problem: Build fails with tiny features. Solution: Adjust #ifdef. (John Marriott)
Diffstat (limited to 'src')
-rw-r--r--src/option.c4
-rw-r--r--src/option.h4
-rw-r--r--src/version.c2
3 files changed, 5 insertions, 5 deletions
diff --git a/src/option.c b/src/option.c
index 6dbc3d1170..987c5b5dfc 100644
--- 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
index 7394c7fd92..89c7922050 100644
--- a/src/option.h
+++ b/src/option.h
@@ -988,12 +988,10 @@ enum
{
BV_AI = 0
, BV_AR
-#ifdef FEAT_QUICKFIX
, BV_BH
-#endif
, BV_BKC
-#ifdef FEAT_QUICKFIX
, BV_BT
+#ifdef FEAT_QUICKFIX
, BV_EFM
, BV_GP
, BV_MP
diff --git a/src/version.c b/src/version.c
index ed580491e9..34017d131b 100644
--- 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,