diff --git a/src/main.c b/src/main.c index 389d570006..5d02c95849 100644 --- a/src/main.c +++ b/src/main.c @@ -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; } /* diff --git a/src/version.c b/src/version.c index 92b9221848..b9945845d5 100644 --- a/src/version.c +++ b/src/version.c @@ -746,6 +746,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 4300, /**/ 4299, /**/