comparison src/version.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 a89350ba2a9d
children 6bde43dc824c
comparison
equal deleted inserted replaced
12870:0469872186f5 12871:1a450ce6980c
86 #ifdef FEAT_AUTOSERVERNAME 86 #ifdef FEAT_AUTOSERVERNAME
87 "+autoservername", 87 "+autoservername",
88 #else 88 #else
89 "-autoservername", 89 "-autoservername",
90 #endif 90 #endif
91 #ifdef FEAT_BEVAL 91 #ifdef FEAT_BEVAL_GUI
92 "+balloon_eval", 92 "+balloon_eval",
93 #else 93 #else
94 "-balloon_eval", 94 "-balloon_eval",
95 #endif 95 #endif
96 #ifdef FEAT_BEVALTERM 96 #ifdef FEAT_BEVAL_TERM
97 "+balloon_eval_term", 97 "+balloon_eval_term",
98 #else 98 #else
99 "-balloon_eval_term", 99 "-balloon_eval_term",
100 #endif 100 #endif
101 #ifdef FEAT_BROWSE 101 #ifdef FEAT_BROWSE
769 NULL 769 NULL
770 }; 770 };
771 771
772 static int included_patches[] = 772 static int included_patches[] =
773 { /* Add new patch number below this line */ 773 { /* Add new patch number below this line */
774 /**/
775 1312,
774 /**/ 776 /**/
775 1311, 777 1311,
776 /**/ 778 /**/
777 1310, 779 1310,
778 /**/ 780 /**/