# HG changeset patch # User Bram Moolenaar # Date 1561245314 -7200 # Node ID 59a4e78ccc5cf4c93a310a23a9cc666ee69d339f # Parent 52c40536e248d053a8125cda1df835b9b3679b70 patch 8.1.1582: cannot build with +textprop but without +timers commit https://github.com/vim/vim/commit/0fcf26ba4ffaaa6a2fb8d879dc24b5f7e1bb6a13 Author: Bram Moolenaar Date: Sun Jun 23 01:03:51 2019 +0200 patch 8.1.1582: cannot build with +textprop but without +timers Problem: Cannot build with +textprop but without +timers. Solution: Add #ifdef. (Ola S?der, closes https://github.com/vim/vim/issues/4574) diff --git a/src/popupwin.c b/src/popupwin.c --- a/src/popupwin.c +++ b/src/popupwin.c @@ -1051,8 +1051,10 @@ popup_create(typval_T *argvars, typval_T // Deal with options. apply_options(wp, argvars[1].vval.v_dict); +#ifdef FEAT_TIMERS if (type == TYPE_NOTIFICATION && wp->w_popup_timer == NULL) popup_add_timeout(wp, 3000); +#endif popup_adjust_position(wp); diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -778,6 +778,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 1582, +/**/ 1581, /**/ 1580,