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:
@@ -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
|
||||||
|
|
||||||
|
@@ -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,
|
||||||
/**/
|
/**/
|
||||||
|
Reference in New Issue
Block a user