Skip to content

Commit e4218b9

Browse files
committed
patch 8.2.1348: build failure without the eval feature
Problem: Build failure without the eval feature. Solution: Add #ifdef.
1 parent 9094430 commit e4218b9

2 files changed

Lines changed: 3 additions & 1 deletion

File tree

src/ex_docmd.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8581,7 +8581,6 @@ eval_vars(
85818581
(long)(current_sctx.sc_lnum + SOURCING_LNUM));
85828582
result = strbuf;
85838583
break;
8584-
#endif
85858584

85868585
case SPEC_SID:
85878586
if (current_sctx.sc_sid <= 0)
@@ -8592,6 +8591,7 @@ eval_vars(
85928591
sprintf((char *)strbuf, "<SNR>%d_", current_sctx.sc_sid);
85938592
result = strbuf;
85948593
break;
8594+
#endif
85958595

85968596
#ifdef FEAT_CLIENTSERVER
85978597
case SPEC_CLIENT: // Source of last submitted input

src/version.c

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

755755
static int included_patches[] =
756756
{ /* Add new patch number below this line */
757+
/**/
758+
1348,
757759
/**/
758760
1347,
759761
/**/

0 commit comments

Comments
 (0)