0
0
mirror of https://github.com/vim/vim.git synced 2025-09-27 04:14:06 -04:00

patch 8.0.1585: enabling beval_term feature in Win32 GUI

Problem:    Enabling beval_term feature in Win32 GUI.
Solution:   Only enable beval_term in Win32 console.
This commit is contained in:
Bram Moolenaar
2018-03-06 18:20:03 +01:00
parent f536bf6d45
commit ebf142a1ed
2 changed files with 4 additions and 1 deletions

View File

@@ -1318,7 +1318,8 @@
/* /*
* +balloon_eval_term Allow balloon expression evaluation in the terminal. * +balloon_eval_term Allow balloon expression evaluation in the terminal.
*/ */
#if defined(FEAT_HUGE) && (defined(UNIX) || defined(WIN32)) && defined(FEAT_TIMERS) #if defined(FEAT_HUGE) && defined(FEAT_TIMERS) && \
(defined(UNIX) || (defined(WIN32) && !defined(FEAT_GUI_W32)))
# define FEAT_BEVAL_TERM # define FEAT_BEVAL_TERM
#endif #endif

View File

@@ -766,6 +766,8 @@ static char *(features[]) =
static int included_patches[] = static int included_patches[] =
{ /* Add new patch number below this line */ { /* Add new patch number below this line */
/**/
1585,
/**/ /**/
1584, 1584,
/**/ /**/