summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2021-08-05 21:17:32 +0200
committerBram Moolenaar <Bram@vim.org>2021-08-05 21:17:32 +0200
commit6f6d58c3809010b1386634c1aeec61f1a66e72c2 (patch)
tree17ef035c35d63e13921fddf4768336d64a9e4da6 /src
parent63b9173693015b135aad8e3657bef5e7f776787e (diff)
downloadvim-git-6f6d58c3809010b1386634c1aeec61f1a66e72c2.tar.gz
patch 8.2.3298: build failure with small featuresv8.2.3298
Problem: Build failure with small features. Solution: Add #ifdef.
Diffstat (limited to 'src')
-rw-r--r--src/ex_docmd.c5
-rw-r--r--src/version.c2
2 files changed, 6 insertions, 1 deletions
diff --git a/src/ex_docmd.c b/src/ex_docmd.c
index a0e8370c2..c071a7a13 100644
--- a/src/ex_docmd.c
+++ b/src/ex_docmd.c
@@ -2331,7 +2331,10 @@ do_one_cmd(
|| ea.cmdidx == CMD_global
|| ea.cmdidx == CMD_vglobal
|| ea.usefilter
- || inside_block(&ea))
+#ifdef FEAT_EVAL
+ || inside_block(&ea)
+#endif
+ )
{
for (p = ea.arg; *p; ++p)
{
diff --git a/src/version.c b/src/version.c
index 48df2c1bd..942f114f0 100644
--- a/src/version.c
+++ b/src/version.c
@@ -756,6 +756,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 3298,
+/**/
3297,
/**/
3296,