1
0
forked from aniani/vim

patch 8.0.0765: build fails with tiny features

Problem:    Build fails with tiny features.
Solution:   Adjust #ifdef. (John Marriott)
This commit is contained in:
Bram Moolenaar
2017-07-23 22:57:00 +02:00
parent dbe948d6c3
commit 81bdd6a025
3 changed files with 5 additions and 5 deletions

View File

@@ -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))