summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2020-11-05 19:34:41 +0100
committerBram Moolenaar <Bram@vim.org>2020-11-05 19:34:41 +0100
commitb885b435d126d34475714e39ec1125bd4e1c77c6 (patch)
tree747f870a9beaf80dfb28cb19112a32997606ca4e
parentfabc3ca896751277f18a3a68e5661179728db3ad (diff)
patch 8.2.1958: build failure with timersv8.2.1958
Problem: Build failure with timers. Solution: Add missing change.
-rw-r--r--src/popupwin.c2
-rw-r--r--src/version.c2
2 files changed, 3 insertions, 1 deletions
diff --git a/src/popupwin.c b/src/popupwin.c
index ed964568dc..ab1b6f6b69 100644
--- a/src/popupwin.c
+++ b/src/popupwin.c
@@ -384,7 +384,7 @@ popup_add_timeout(win_T *wp, int time)
vim_snprintf((char *)cbbuf, sizeof(cbbuf),
"{_ -> popup_close(%d)}", wp->w_id);
- if (get_lambda_tv(&ptr, &tv, &EVALARG_EVALUATE) == OK)
+ if (get_lambda_tv(&ptr, &tv, FALSE, &EVALARG_EVALUATE) == OK)
{
wp->w_popup_timer = create_timer(time, 0);
wp->w_popup_timer->tr_callback = get_callback(&tv);
diff --git a/src/version.c b/src/version.c
index ca5a513afe..ef4be7d639 100644
--- a/src/version.c
+++ b/src/version.c
@@ -751,6 +751,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 1958,
+/**/
1957,
/**/
1956,