changeset 17166:59a4e78ccc5c v8.1.1582

patch 8.1.1582: cannot build with +textprop but without +timers commit https://github.com/vim/vim/commit/0fcf26ba4ffaaa6a2fb8d879dc24b5f7e1bb6a13 Author: Bram Moolenaar <Bram@vim.org> 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)
author Bram Moolenaar <Bram@vim.org>
date Sun, 23 Jun 2019 01:15:14 +0200
parents 52c40536e248
children 3a799cd410d4
files src/popupwin.c src/version.c
diffstat 2 files changed, 4 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- 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);
 
--- 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,