comparison src/ex_docmd.c @ 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 4097434c7c67
children 6e5d378919c4
comparison
equal deleted inserted replaced
27719:6514db4f0b6c 27720:2631b9021808
3082 } 3082 }
3083 3083
3084 return OK; 3084 return OK;
3085 } 3085 }
3086 3086
3087 #if defined(FEAT_EVAL) || defined(PROTO)
3088 /* 3087 /*
3089 * Return TRUE if "cmod" has anything set. 3088 * Return TRUE if "cmod" has anything set.
3090 */ 3089 */
3091 int 3090 int
3092 has_cmdmod(cmdmod_T *cmod, int ignore_silent) 3091 has_cmdmod(cmdmod_T *cmod, int ignore_silent)
3098 || cmod->cmod_verbose != 0 3097 || cmod->cmod_verbose != 0
3099 || cmod->cmod_tab != 0 3098 || cmod->cmod_tab != 0
3100 || cmod->cmod_filter_regmatch.regprog != NULL; 3099 || cmod->cmod_filter_regmatch.regprog != NULL;
3101 } 3100 }
3102 3101
3102 #if defined(FEAT_EVAL) || defined(PROTO)
3103 /* 3103 /*
3104 * If Vim9 script and "cmdmod" has anything set give an error and return TRUE. 3104 * If Vim9 script and "cmdmod" has anything set give an error and return TRUE.
3105 */ 3105 */
3106 int 3106 int
3107 cmdmod_error(int ignore_silent) 3107 cmdmod_error(int ignore_silent)