From fbda69b309ca1c9748eaac38ab85b9e3425bf834 Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Mon, 13 Apr 2020 15:06:53 +0200 Subject: [PATCH] patch 8.2.0569: build failure with tiny version Problem: Build failure with tiny version. Solution: Add #ifdef. --- src/ex_docmd.c | 2 ++ src/version.c | 2 ++ 2 files changed, 4 insertions(+) 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, /**/ -- 2.50.1