patch 8.2.1245: build failure in tiny version
Problem: Build failure in tiny version.
Solution: Add #ifdef.
diff --git a/src/scriptfile.c b/src/scriptfile.c
index 5514573..ce269a1 100644
--- a/src/scriptfile.c
+++ b/src/scriptfile.c
@@ -1768,8 +1768,11 @@
if (sp->nextline != NULL
&& (*(p = skipwhite(sp->nextline)) == '\\'
|| (p[0] == '"' && p[1] == '\\' && p[2] == ' ')
+#ifdef FEAT_EVAL
|| (in_vim9script()
- && (*p == NUL || vim9_comment_start(p)))))
+ && (*p == NUL || vim9_comment_start(p)))
+#endif
+ ))
{
garray_T ga;
@@ -1798,8 +1801,11 @@
ga_concat(&ga, p + 1);
}
else if (!(p[0] == '"' && p[1] == '\\' && p[2] == ' ')
+#ifdef FEAT_EVAL
&& !(in_vim9script()
- && (*p == NUL || vim9_comment_start(p))))
+ && (*p == NUL || vim9_comment_start(p)))
+#endif
+ )
break;
/* drop a # comment or "\ comment line */
}
diff --git a/src/version.c b/src/version.c
index c8dab65..24ce5e8 100644
--- a/src/version.c
+++ b/src/version.c
@@ -755,6 +755,8 @@
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 1245,
+/**/
1244,
/**/
1243,