Skip to content

Commit 6f6d58c

Browse files
committed
patch 8.2.3298: build failure with small features
Problem: Build failure with small features. Solution: Add #ifdef.
1 parent 63b9173 commit 6f6d58c

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

src/ex_docmd.c

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2331,7 +2331,10 @@ do_one_cmd(
23312331
|| ea.cmdidx == CMD_global
23322332
|| ea.cmdidx == CMD_vglobal
23332333
|| ea.usefilter
2334-
|| inside_block(&ea))
2334+
#ifdef FEAT_EVAL
2335+
|| inside_block(&ea)
2336+
#endif
2337+
)
23352338
{
23362339
for (p = ea.arg; *p; ++p)
23372340
{

src/version.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -755,6 +755,8 @@ static char *(features[]) =
755755

756756
static int included_patches[] =
757757
{ /* Add new patch number below this line */
758+
/**/
759+
3298,
758760
/**/
759761
3297,
760762
/**/

0 commit comments

Comments
 (0)