From: Bram Moolenaar Date: Tue, 6 Mar 2018 17:20:03 +0000 (+0100) Subject: patch 8.0.1585: enabling beval_term feature in Win32 GUI X-Git-Tag: v8.0.1585 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ebf142a1ed1824ed17a3eb4f64e75616e3b3d0e8;p=vim 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. --- diff --git a/src/feature.h b/src/feature.h index c80dc0511..9754d0bc6 100644 --- 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 diff --git a/src/version.c b/src/version.c index a2165f20e..a4fd2e60a 100644 --- a/src/version.c +++ b/src/version.c @@ -766,6 +766,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 1585, /**/ 1584, /**/