0
0
mirror of https://github.com/vim/vim.git synced 2025-09-25 03:54:15 -04:00

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_global
|| ea.cmdidx == CMD_vglobal || ea.cmdidx == CMD_vglobal
|| ea.usefilter || ea.usefilter
|| inside_block(&ea)) #ifdef FEAT_EVAL
|| inside_block(&ea)
#endif
)
{ {
for (p = ea.arg; *p; ++p) for (p = ea.arg; *p; ++p)
{ {

View File

@@ -755,6 +755,8 @@ static char *(features[]) =
static int included_patches[] = static int included_patches[] =
{ /* Add new patch number below this line */ { /* Add new patch number below this line */
/**/
3298,
/**/ /**/
3297, 3297,
/**/ /**/