1
0
forked from aniani/vim

patch 8.2.0569: build failure with tiny version

Problem:    Build failure with tiny version.
Solution:   Add #ifdef.
This commit is contained in:
Bram Moolenaar 2020-04-13 15:06:53 +02:00
parent 55b0fb7001
commit fbda69b309
2 changed files with 4 additions and 0 deletions

View File

@ -4764,9 +4764,11 @@ ex_blast(exarg_T *eap)
int int
ends_excmd(int c) ends_excmd(int c)
{ {
#ifdef FEAT_EVAL
if (c == '#') if (c == '#')
// TODO: should check for preceding white space // TODO: should check for preceding white space
return in_vim9script(); return in_vim9script();
#endif
return (c == NUL || c == '|' || c == '"' || c == '\n'); return (c == NUL || c == '|' || c == '"' || c == '\n');
} }

View File

@ -738,6 +738,8 @@ static char *(features[]) =
static int included_patches[] = static int included_patches[] =
{ /* Add new patch number below this line */ { /* Add new patch number below this line */
/**/
569,
/**/ /**/
568, 568,
/**/ /**/