diff src/popupwin.c @ 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 f16cee6adf29
children 1d30eb64a7a2
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);