# HG changeset patch # User Bram Moolenaar # Date 1628191803 -7200 # Node ID a1804f725a9a5979898d2bd760709dc8c141ea07 # Parent 3555268fbaf58588875e8dfc28b3b26a90b9f458 patch 8.2.3298: build failure with small features Commit: https://github.com/vim/vim/commit/6f6d58c3809010b1386634c1aeec61f1a66e72c2 Author: Bram Moolenaar Date: Thu Aug 5 21:17:32 2021 +0200 patch 8.2.3298: build failure with small features Problem: Build failure with small features. Solution: Add #ifdef. diff --git a/src/ex_docmd.c b/src/ex_docmd.c --- 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 --- 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,