From: Bram Moolenaar Date: Mon, 13 Apr 2020 13:06:53 +0000 (+0200) Subject: patch 8.2.0569: build failure with tiny version X-Git-Tag: v8.2.0569 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=fbda69b309ca1c9748eaac38ab85b9e3425bf834;p=vim patch 8.2.0569: build failure with tiny version Problem: Build failure with tiny version. Solution: Add #ifdef. --- diff --git a/src/ex_docmd.c b/src/ex_docmd.c index 047e368e5..f908ff354 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 5659e92fc..d447b7aed 100644 --- a/src/version.c +++ b/src/version.c @@ -738,6 +738,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 569, /**/ 568, /**/