# HG changeset patch # User Bram Moolenaar # Date 1621345502 -7200 # Node ID 99fe793b8b12b94babc5cb53ee7318a71c35f262 # Parent 7054589796e57421278d4981df7df65f62e74219 patch 8.2.2867: build failure Commit: https://github.com/vim/vim/commit/082a3bf961efd3668d06e3137cb1ad27c3998d07 Author: Bram Moolenaar Date: Tue May 18 15:32:11 2021 +0200 patch 8.2.2867: build failure Problem: Build failure. Solution: Add missing part of the change. diff --git a/src/globals.h b/src/globals.h --- a/src/globals.h +++ b/src/globals.h @@ -1909,7 +1909,7 @@ EXTERN listitem_T range_list_item; EXTERN evalarg_T EVALARG_EVALUATE # ifdef DO_INIT = {EVAL_EVALUATE, 0, NULL, NULL, NULL, {0, 0, 0, 0, NULL}, - NULL, NULL, NULL} + {0, 0, 0, 0, NULL}, NULL, NULL, NULL} # endif ; #endif diff --git a/src/version.c b/src/version.c --- 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 */ /**/ + 2867, +/**/ 2866, /**/ 2865,