From 082a3bf961efd3668d06e3137cb1ad27c3998d07 Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Tue, 18 May 2021 15:32:11 +0200 Subject: [PATCH] patch 8.2.2867: build failure Problem: Build failure. Solution: Add missing part of the change. --- src/globals.h | 2 +- src/version.c | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/src/globals.h b/src/globals.h index 74a7c3967..77ea16943 100644 --- 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 index 88dd5d6d9..275b231ce 100644 --- a/src/version.c +++ b/src/version.c @@ -750,6 +750,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 2867, /**/ 2866, /**/ -- 2.50.1