0
0
mirror of https://github.com/vim/vim.git synced 2025-09-24 03:44:06 -04:00

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;
}
/*