Problem: Build failure in tiny version.
Solution: Add #ifdef.
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;
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 */
}
static int included_patches[] =
{ /* Add new patch number below this line */
+/**/
+ 1245,
/**/
1244,
/**/