forked from aniani/vim
patch 8.2.4300: cannot build tiny version
Problem: Cannot build tiny version. (Tony Mechelynck) Solution: Add #ifdef.
This commit is contained in:
parent
46f3080e5c
commit
4fa1346bf4
@ -1047,8 +1047,10 @@ is_safe_now(void)
|
|||||||
return stuff_empty()
|
return stuff_empty()
|
||||||
&& typebuf.tb_len == 0
|
&& typebuf.tb_len == 0
|
||||||
&& scriptin[curscript] == NULL
|
&& scriptin[curscript] == NULL
|
||||||
&& !global_busy
|
#ifdef FEAT_EVAL
|
||||||
&& !debug_mode;
|
&& !debug_mode
|
||||||
|
#endif
|
||||||
|
&& !global_busy;
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
@ -746,6 +746,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 */
|
||||||
|
/**/
|
||||||
|
4300,
|
||||||
/**/
|
/**/
|
||||||
4299,
|
4299,
|
||||||
/**/
|
/**/
|
||||||
|
Loading…
x
Reference in New Issue
Block a user