Mercurial > vim
comparison src/structs.h @ 16802:f5487021fdad v8.1.1403
patch 8.1.1403: cannot build without the timer feature
commit https://github.com/vim/vim/commit/35d5af6c0b618aef9ca87b05b2e184934e47d916
Author: Bram Moolenaar <Bram@vim.org>
Date: Sun May 26 20:44:10 2019 +0200
patch 8.1.1403: cannot build without the timer feature
Problem: Cannot build without the timer feature.
Solution: Add #ifdef.
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Sun, 26 May 2019 20:45:05 +0200 |
parents | 12e3a3afdb6a |
children | 5ff14f96f1c9 |
comparison
equal
deleted
inserted
replaced
16801:2d9d64daf580 | 16802:f5487021fdad |
---|---|
2872 pos_save_T w_save_cursor; /* backup of cursor pos and topline */ | 2872 pos_save_T w_save_cursor; /* backup of cursor pos and topline */ |
2873 #ifdef FEAT_TEXT_PROP | 2873 #ifdef FEAT_TEXT_PROP |
2874 int w_zindex; | 2874 int w_zindex; |
2875 int w_maxheight; // "maxheight" for popup window | 2875 int w_maxheight; // "maxheight" for popup window |
2876 int w_maxwidth; // "maxwidth" for popup window | 2876 int w_maxwidth; // "maxwidth" for popup window |
2877 # if defined(FEAT_TIMERS) | |
2877 timer_T *w_popup_timer; // timer for closing popup window | 2878 timer_T *w_popup_timer; // timer for closing popup window |
2879 # endif | |
2878 #endif | 2880 #endif |
2879 | 2881 |
2880 | 2882 |
2881 /* | 2883 /* |
2882 * === start of cached values ==== | 2884 * === start of cached values ==== |