1
0
forked from aniani/vim

patch 8.2.3298: build failure with small features

Problem:    Build failure with small features.
Solution:   Add #ifdef.
This commit is contained in:
Bram Moolenaar
2021-08-05 21:17:32 +02:00
parent 63b9173693
commit 6f6d58c380
2 changed files with 6 additions and 1 deletions

View File

@@ -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)
{