# HG changeset patch # User Bram Moolenaar # Date 1594241103 -7200 # Node ID 7509aea3a6714bbd60071ef078745e2e744921c1 # Parent 2de9761cb1fcc8466727e96f188cc1376d5f3222 patch 8.2.1163: build error Commit: https://github.com/vim/vim/commit/6e13530ca03dd9cad245221177dd65f712211448 Author: Bram Moolenaar Date: Wed Jul 8 22:36:17 2020 +0200 patch 8.2.1163: build error Problem: Build error. Solution: Add missing change to globals. diff --git a/src/globals.h b/src/globals.h --- a/src/globals.h +++ b/src/globals.h @@ -1885,7 +1885,7 @@ EXTERN listitem_T range_list_item; // Passed to an eval() function to enable evaluation. EXTERN evalarg_T EVALARG_EVALUATE # ifdef DO_INIT - = {EVAL_EVALUATE, 0, NULL, NULL, NULL, {0, 0, 0, 0, NULL}, NULL} + = {EVAL_EVALUATE, 0, NULL, NULL, NULL, {0, 0, 0, 0, NULL}, NULL, NULL} # endif ; #endif diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -755,6 +755,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 1163, +/**/ 1162, /**/ 1161,