changeset 22820:d05319bbf63b v8.2.1958

patch 8.2.1958: build failure with timers Commit: https://github.com/vim/vim/commit/b885b435d126d34475714e39ec1125bd4e1c77c6 Author: Bram Moolenaar <Bram@vim.org> Date: Thu Nov 5 19:34:41 2020 +0100 patch 8.2.1958: build failure with timers Problem: Build failure with timers. Solution: Add missing change.
author Bram Moolenaar <Bram@vim.org>
date Thu, 05 Nov 2020 19:45:03 +0100
parents b6df7d42c633
children 3e8f3dc13538
files src/popupwin.c src/version.c
diffstat 2 files changed, 3 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- 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);
--- 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,