# HG changeset patch # User Bram Moolenaar # Date 1596309304 -7200 # Node ID c18d00494b606debcef1115eebff8b38af7368dd # Parent 72b5304e75a52dc7d3e39e23cbff10d522b4a666 patch 8.2.1348: build failure without the eval feature Commit: https://github.com/vim/vim/commit/e4218b9416bdcd78b9779a06258198573a0c369e Author: Bram Moolenaar Date: Sat Aug 1 21:11:38 2020 +0200 patch 8.2.1348: build failure without the eval feature Problem: Build failure without the eval feature. Solution: Add #ifdef. diff --git a/src/ex_docmd.c b/src/ex_docmd.c --- a/src/ex_docmd.c +++ b/src/ex_docmd.c @@ -8581,7 +8581,6 @@ eval_vars( (long)(current_sctx.sc_lnum + SOURCING_LNUM)); result = strbuf; break; -#endif case SPEC_SID: if (current_sctx.sc_sid <= 0) @@ -8592,6 +8591,7 @@ eval_vars( sprintf((char *)strbuf, "%d_", current_sctx.sc_sid); result = strbuf; break; +#endif #ifdef FEAT_CLIENTSERVER case SPEC_CLIENT: // Source of last submitted input diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -755,6 +755,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 1348, +/**/ 1347, /**/ 1346,