changeset 13422:6dbf1e9ebd1f v8.0.1585

patch 8.0.1585: enabling beval_term feature in Win32 GUI commit https://github.com/vim/vim/commit/ebf142a1ed1824ed17a3eb4f64e75616e3b3d0e8 Author: Bram Moolenaar <Bram@vim.org> Date: Tue Mar 6 18:20:03 2018 +0100 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.
author Christian Brabandt <cb@256bit.org>
date Tue, 06 Mar 2018 18:30:05 +0100
parents 3cf79a7a4529
children db1651bfa24d
files src/feature.h src/version.c
diffstat 2 files changed, 4 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/feature.h
+++ b/src/feature.h
@@ -1318,7 +1318,8 @@
 /*
  * +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
 #endif
 
--- a/src/version.c
+++ b/src/version.c
@@ -767,6 +767,8 @@ static char *(features[]) =
 static int included_patches[] =
 {   /* Add new patch number below this line */
 /**/
+    1585,
+/**/
     1584,
 /**/
     1583,