summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2020-08-01 21:11:38 +0200
committerBram Moolenaar <Bram@vim.org>2020-08-01 21:11:38 +0200
commite4218b9416bdcd78b9779a06258198573a0c369e (patch)
tree941685ea5c29e3813c61f9f30524d84d24c11f5a
parent909443028b57d7514ce3c71f00e9d808f2126b4f (diff)
downloadvim-git-e4218b9416bdcd78b9779a06258198573a0c369e.tar.gz
patch 8.2.1348: build failure without the eval featurev8.2.1348
Problem: Build failure without the eval feature. Solution: Add #ifdef.
-rw-r--r--src/ex_docmd.c2
-rw-r--r--src/version.c2
2 files changed, 3 insertions, 1 deletions
diff --git a/src/ex_docmd.c b/src/ex_docmd.c
index 1f36bf7e0..185fc49cb 100644
--- 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, "<SNR>%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
index 6b1a36773..e715d8ae3 100644
--- 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,