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:
parent
55b0fb7001
commit
fbda69b309
@ -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');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -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,
|
||||||
/**/
|
/**/
|
||||||
|
Loading…
x
Reference in New Issue
Block a user