# HG changeset patch # User Bram Moolenaar # Date 1644876002 -3600 # Node ID 2631b902180810842963301c6d3c4f0e296e265f # Parent 6514db4f0b6cac2ce2bba51ab42e554433c0a23a patch 8.2.4386: still cannot build tiny version Commit: https://github.com/vim/vim/commit/8991be2ab4a9f3418ab41594a0c5b789c5cb0935 Author: Bram Moolenaar Date: Mon Feb 14 21:51:46 2022 +0000 patch 8.2.4386: still cannot build tiny version Problem: Still cannot build tiny version. Solution: Adjust #ifdefs. diff --git a/src/ex_docmd.c b/src/ex_docmd.c --- a/src/ex_docmd.c +++ b/src/ex_docmd.c @@ -3084,7 +3084,6 @@ parse_command_modifiers( return OK; } -#if defined(FEAT_EVAL) || defined(PROTO) /* * Return TRUE if "cmod" has anything set. */ @@ -3100,6 +3099,7 @@ has_cmdmod(cmdmod_T *cmod, int ignore_si || cmod->cmod_filter_regmatch.regprog != NULL; } +#if defined(FEAT_EVAL) || defined(PROTO) /* * If Vim9 script and "cmdmod" has anything set give an error and return TRUE. */ diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -751,6 +751,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 4386, +/**/ 4385, /**/ 4384,