summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2021-02-14 14:07:34 +0100
committerBram Moolenaar <Bram@vim.org>2021-02-14 14:07:34 +0100
commit2379f87eb48a4ee6a1d0fc7df964e12a3efe4fd5 (patch)
treea02fda0d39cc9ac13c675c259daea92806210051
parent9979fcd72ed671ec2c98800587c3a6996adb27d4 (diff)
downloadvim-git-2379f87eb48a4ee6a1d0fc7df964e12a3efe4fd5.tar.gz
patch 8.2.2514: Vim9: build error in tiny versionv8.2.2514
Problem: Vim9: build error in tiny version. Solution: Add #ifdef.
-rw-r--r--src/ex_docmd.c2
-rw-r--r--src/version.c2
2 files changed, 4 insertions, 0 deletions
diff --git a/src/ex_docmd.c b/src/ex_docmd.c
index 0bb5142d7..0dd21eb01 100644
--- a/src/ex_docmd.c
+++ b/src/ex_docmd.c
@@ -1785,7 +1785,9 @@ do_one_cmd(
if (parse_command_modifiers(&ea, &errormsg, &cmdmod, FALSE) == FAIL)
goto doend;
apply_cmdmod(&cmdmod);
+#ifdef FEAT_EVAL
vim9script = in_vim9script();
+#endif
after_modifier = ea.cmd;
#ifdef FEAT_EVAL
diff --git a/src/version.c b/src/version.c
index 20bc9a225..21316e267 100644
--- a/src/version.c
+++ b/src/version.c
@@ -751,6 +751,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 2514,
+/**/
2513,
/**/
2512,