summaryrefslogtreecommitdiffstats
path: root/src/ex_docmd.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2022-02-14 21:51:46 +0000
committerBram Moolenaar <Bram@vim.org>2022-02-14 21:51:46 +0000
commit8991be2ab4a9f3418ab41594a0c5b789c5cb0935 (patch)
treea1ecbdb709a9b2143b63f3930990cb6e2b7d32b1 /src/ex_docmd.c
parentb5d2039e000e0787a04208928ad49e105529e36b (diff)
patch 8.2.4386: still cannot build tiny versionv8.2.4386
Problem: Still cannot build tiny version. Solution: Adjust #ifdefs.
Diffstat (limited to 'src/ex_docmd.c')
-rw-r--r--src/ex_docmd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ex_docmd.c b/src/ex_docmd.c
index 2cd2ca3509..f967e6e336 100644
--- 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_silent)
|| 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.
*/