summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2020-04-13 15:06:53 +0200
committerBram Moolenaar <Bram@vim.org>2020-04-13 15:06:53 +0200
commitfbda69b309ca1c9748eaac38ab85b9e3425bf834 (patch)
tree14050f62719ea441f7a7f50e0279167609736f19
parent55b0fb7001ae42a58c10ad93a9157113f77a43d2 (diff)
patch 8.2.0569: build failure with tiny versionv8.2.0569
Problem: Build failure with 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 047e368e57..f908ff3548 100644
--- a/src/ex_docmd.c
+++ b/src/ex_docmd.c
@@ -4764,9 +4764,11 @@ ex_blast(exarg_T *eap)
int
ends_excmd(int c)
{
+#ifdef FEAT_EVAL
if (c == '#')
// TODO: should check for preceding white space
return in_vim9script();
+#endif
return (c == NUL || c == '|' || c == '"' || c == '\n');
}
diff --git a/src/version.c b/src/version.c
index 5659e92fca..d447b7aed4 100644
--- a/src/version.c
+++ b/src/version.c
@@ -739,6 +739,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 569,
+/**/
568,
/**/
567,