# HG changeset patch # User Bram Moolenaar # Date 1593018904 -7200 # Node ID 15ef156a6e754b4b33184a42abaa9e2f3be7b6c4 # Parent bf27f31717f62b88f55a528bac59025e031f7b1e patch 8.2.1048: build failure without the eval feature Commit: https://github.com/vim/vim/commit/9d40c63c7dc8c3eb3886c58dcd334bc7f37eceba Author: Bram Moolenaar Date: Wed Jun 24 19:05:29 2020 +0200 patch 8.2.1048: build failure without the eval feature Problem: Build failure without the eval feature. Solution: Add dummy typedef. diff --git a/src/structs.h b/src/structs.h --- a/src/structs.h +++ b/src/structs.h @@ -1794,6 +1794,10 @@ typedef struct { int dummy; } scriptitem_T; +typedef struct +{ + int dummy; +} evalarg_T; #endif // Struct passed between functions dealing with function call execution. 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 */ /**/ + 1048, +/**/ 1047, /**/ 1046,