diff options
author | Bram Moolenaar <Bram@vim.org> | 2017-07-23 22:57:00 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2017-07-23 22:57:00 +0200 |
commit | 81bdd6a02575b024db3dd5d91ec4ac4dfd41aa7a (patch) | |
tree | 7a4548544f79b73f05e97ec5168683f3febd8baf | |
parent | dbe948d6c350feacc01ad019b57717149c8ea5e5 (diff) | |
download | vim-git-81bdd6a02575b024db3dd5d91ec4ac4dfd41aa7a.tar.gz |
patch 8.0.0765: build fails with tiny featuresv8.0.0765
Problem: Build fails with tiny features.
Solution: Adjust #ifdef. (John Marriott)
-rw-r--r-- | src/option.c | 4 | ||||
-rw-r--r-- | src/option.h | 4 | ||||
-rw-r--r-- | src/version.c | 2 |
3 files changed, 5 insertions, 5 deletions
diff --git a/src/option.c b/src/option.c index 6dbc3d117..987c5b5df 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 7394c7fd9..89c792205 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 ed580491e..34017d131 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, |