comparison src/evalfunc.c @ 12871:1a450ce6980c v8.0.1312

patch 8.0.1312: balloon_show() only works in terminal when compiled with GUI commit https://github.com/vim/vim/commit/c3719bd87beca9f72d2e9f11e36d561c2c3b57b0 Author: Bram Moolenaar <Bram@vim.org> Date: Sat Nov 18 22:13:31 2017 +0100 patch 8.0.1312: balloon_show() only works in terminal when compiled with GUI Problem: balloon_show() only works in terminal when compiled with the GUI. Solution: Add FEAT_BEVAL_GUI and refactor to move common code out of the GUI specific file.
author Christian Brabandt <cb@256bit.org>
date Sat, 18 Nov 2017 22:15:05 +0100
parents ebb4f6c93598
children 058e93aee621
comparison
equal deleted inserted replaced
12870:0469872186f5 12871:1a450ce6980c
5581 "autocmd", 5581 "autocmd",
5582 #endif 5582 #endif
5583 #ifdef FEAT_AUTOSERVERNAME 5583 #ifdef FEAT_AUTOSERVERNAME
5584 "autoservername", 5584 "autoservername",
5585 #endif 5585 #endif
5586 #ifdef FEAT_BEVAL 5586 #ifdef FEAT_BEVAL_GUI
5587 "balloon_eval", 5587 "balloon_eval",
5588 # ifndef FEAT_GUI_W32 /* other GUIs always have multiline balloons */ 5588 # ifndef FEAT_GUI_W32 /* other GUIs always have multiline balloons */
5589 "balloon_multiline", 5589 "balloon_multiline",
5590 # endif 5590 # endif
5591 #endif 5591 #endif
5592 #ifdef FEAT_BEVALTERM 5592 #ifdef FEAT_BEVAL_TERM
5593 "balloon_eval_term", 5593 "balloon_eval_term",
5594 #endif 5594 #endif
5595 #if defined(SOME_BUILTIN_TCAPS) || defined(ALL_BUILTIN_TCAPS) 5595 #if defined(SOME_BUILTIN_TCAPS) || defined(ALL_BUILTIN_TCAPS)
5596 "builtin_terms", 5596 "builtin_terms",
5597 # ifdef ALL_BUILTIN_TCAPS 5597 # ifdef ALL_BUILTIN_TCAPS