commit | 35d5af6c0b618aef9ca87b05b2e184934e47d916 | [log] [tgz] |
---|---|---|
author | Bram Moolenaar <Bram@vim.org> | Sun May 26 20:44:10 2019 +0200 |
committer | Bram Moolenaar <Bram@vim.org> | Sun May 26 20:44:10 2019 +0200 |
tree | 13e1e05a10a50c1d95852f2f8846ec613a105252 | |
parent | 51fe3b14f63da2b985bcd7b4c50fbe34ae84ea48 [diff] [blame] |
patch 8.1.1403: cannot build without the timer feature Problem: Cannot build without the timer feature. Solution: Add #ifdef.
diff --git a/src/structs.h b/src/structs.h index 7ead00c..ca7c540 100644 --- a/src/structs.h +++ b/src/structs.h
@@ -2874,7 +2874,9 @@ int w_zindex; int w_maxheight; // "maxheight" for popup window int w_maxwidth; // "maxwidth" for popup window +# if defined(FEAT_TIMERS) timer_T *w_popup_timer; // timer for closing popup window +# endif #endif