changeset 27720:2631b9021808 v8.2.4386

patch 8.2.4386: still cannot build tiny version Commit: https://github.com/vim/vim/commit/8991be2ab4a9f3418ab41594a0c5b789c5cb0935 Author: Bram Moolenaar <Bram@vim.org> 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.
author Bram Moolenaar <Bram@vim.org>
date Mon, 14 Feb 2022 23:00:02 +0100
parents 6514db4f0b6c
children c6174f84a358
files src/ex_docmd.c src/version.c
diffstat 2 files changed, 3 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- 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.
  */
--- 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,