# HG changeset patch # User Bram Moolenaar # Date 1644065103 -3600 # Node ID 0410a4c2405084f5093582cd40bf7951d6731c40 # Parent 9e4bb6ee63f58279c3ee68ad544106d8086b2f4a patch 8.2.4300: cannot build tiny version Commit: https://github.com/vim/vim/commit/4fa1346bf4210747f34b64d05b39309918ca538d Author: Bram Moolenaar Date: Sat Feb 5 12:39:24 2022 +0000 patch 8.2.4300: cannot build tiny version Problem: Cannot build tiny version. (Tony Mechelynck) Solution: Add #ifdef. diff --git a/src/main.c b/src/main.c --- 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 --- a/src/version.c +++ b/src/version.c @@ -747,6 +747,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 4300, +/**/ 4299, /**/ 4298,