diff options
author | Bram Moolenaar <Bram@vim.org> | 2020-06-24 19:05:29 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2020-06-24 19:05:29 +0200 |
commit | 9d40c63c7dc8c3eb3886c58dcd334bc7f37eceba (patch) | |
tree | 09a202a03fe7ebe4378ab246bb167486627750ca | |
parent | 5409f5d8c95007216ae1190565a7a8ee9ebd7100 (diff) | |
download | vim-git-9d40c63c7dc8c3eb3886c58dcd334bc7f37eceba.tar.gz |
patch 8.2.1048: build failure without the eval featurev8.2.1048
Problem: Build failure without the eval feature.
Solution: Add dummy typedef.
-rw-r--r-- | src/structs.h | 4 | ||||
-rw-r--r-- | src/version.c | 2 |
2 files changed, 6 insertions, 0 deletions
diff --git a/src/structs.h b/src/structs.h index 3a9bbd33c..0ac486406 100644 --- 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 index e383c1843..4e2c55379 100644 --- 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, |