# HG changeset patch # User Bram Moolenaar # Date 1586783704 -7200 # Node ID 23a4aef4f923ec5b50023c5cacd11d83c5c1b83e # Parent 0017b6fea4b001f608e05aae3cf3c52a7d123aeb patch 8.2.0569: build failure with tiny version Commit: https://github.com/vim/vim/commit/fbda69b309ca1c9748eaac38ab85b9e3425bf834 Author: Bram Moolenaar Date: Mon Apr 13 15:06:53 2020 +0200 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 --- 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 --- 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,