Skip to content

Commit ffe535a

Browse files
committed
Fix build error when GUI disabled
1 parent 951868d commit ffe535a

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/optiondefs.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@
108108
#define PV_MOD OPT_BUF(BV_MOD)
109109
#define PV_MPS OPT_BUF(BV_MPS)
110110
#ifdef FEAT_GUI_MACVIM
111-
#define PV_MMTA OPT_BUF(BV_MMTA)
111+
# define PV_MMTA OPT_BUF(BV_MMTA)
112112
#endif
113113
#define PV_NF OPT_BUF(BV_NF)
114114
#ifdef FEAT_COMPL_FUNC
@@ -1715,7 +1715,7 @@ static struct vimoption options[] =
17151715
(char_u *)&p_mmta, PV_MMTA,
17161716
{(char_u *)FALSE, (char_u *)0L}
17171717
#else
1718-
(char_u *)NULL, PV_MMTA,
1718+
(char_u *)NULL, PV_NONE,
17191719
{(char_u *)NULL, (char_u *)0L}
17201720
#endif
17211721
SCTX_INIT},

0 commit comments

Comments
 (0)