diff options
author | Bram Moolenaar <Bram@vim.org> | 2018-03-06 18:20:03 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2018-03-06 18:20:03 +0100 |
commit | ebf142a1ed1824ed17a3eb4f64e75616e3b3d0e8 (patch) | |
tree | fd1508cec310dbf74e61917fe45e51e7ca21b776 /src/feature.h | |
parent | f536bf6d4518e2c66e635e39820d53f672021d87 (diff) | |
download | vim-git-ebf142a1ed1824ed17a3eb4f64e75616e3b3d0e8.tar.gz |
patch 8.0.1585: enabling beval_term feature in Win32 GUIv8.0.1585
Problem: Enabling beval_term feature in Win32 GUI.
Solution: Only enable beval_term in Win32 console.
Diffstat (limited to 'src/feature.h')
-rw-r--r-- | src/feature.h | 3 |
1 files changed, 2 insertions, 1 deletions
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 |