1
0
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:
Bram Moolenaar 2022-02-05 12:39:24 +00:00
parent 46f3080e5c
commit 4fa1346bf4
2 changed files with 6 additions and 2 deletions

View File

@ -1047,8 +1047,10 @@ is_safe_now(void)
return stuff_empty()
&& typebuf.tb_len == 0
&& scriptin[curscript] == NULL
&& !global_busy
&& !debug_mode;
#ifdef FEAT_EVAL
&& !debug_mode
#endif
&& !global_busy;
}
/*

View File

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