Skip to content

Commit ebf142a

Browse files
committed
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.
1 parent f536bf6 commit ebf142a

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

src/feature.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1318,7 +1318,8 @@
13181318
/*
13191319
* +balloon_eval_term Allow balloon expression evaluation in the terminal.
13201320
*/
1321-
#if defined(FEAT_HUGE) && (defined(UNIX) || defined(WIN32)) && defined(FEAT_TIMERS)
1321+
#if defined(FEAT_HUGE) && defined(FEAT_TIMERS) && \
1322+
(defined(UNIX) || (defined(WIN32) && !defined(FEAT_GUI_W32)))
13221323
# define FEAT_BEVAL_TERM
13231324
#endif
13241325

src/version.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -766,6 +766,8 @@ static char *(features[]) =
766766

767767
static int included_patches[] =
768768
{ /* Add new patch number below this line */
769+
/**/
770+
1585,
769771
/**/
770772
1584,
771773
/**/

0 commit comments

Comments
 (0)