commit | 6f6d58c3809010b1386634c1aeec61f1a66e72c2 | [log] [tgz] |
---|---|---|
author | Bram Moolenaar <Bram@vim.org> | Thu Aug 05 21:17:32 2021 +0200 |
committer | Bram Moolenaar <Bram@vim.org> | Thu Aug 05 21:17:32 2021 +0200 |
tree | 17ef035c35d63e13921fddf4768336d64a9e4da6 | |
parent | 63b9173693015b135aad8e3657bef5e7f776787e [diff] [blame] |
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 index a0e8370..c071a7a 100644 --- a/src/ex_docmd.c +++ b/src/ex_docmd.c
@@ -2331,7 +2331,10 @@ || 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) {