0
0
mirror of https://github.com/vim/vim.git synced 2025-07-26 11:04:33 -04:00

patch 8.2.1180: build failure in small version

Problem:    Build failure in small version.
Solution:   Add #ifdef.
This commit is contained in:
Bram Moolenaar 2020-07-11 14:08:04 +02:00
parent f65927fc8d
commit 1e624c912d
2 changed files with 4 additions and 1 deletions

View File

@ -2750,10 +2750,11 @@ parse_command_modifiers(exarg_T *eap, char **errormsg, int skip_only)
if (*p == NUL || ends_excmd(*p)) if (*p == NUL || ends_excmd(*p))
break; break;
} }
#ifdef FEAT_EVAL
// Avoid that "filter(arg)" is recognized. // Avoid that "filter(arg)" is recognized.
if (in_vim9script() && !VIM_ISWHITE(*p)) if (in_vim9script() && !VIM_ISWHITE(*p))
break; break;
#endif
if (skip_only) if (skip_only)
p = skip_vimgrep_pat(p, NULL, NULL); p = skip_vimgrep_pat(p, NULL, NULL);
else else

View File

@ -754,6 +754,8 @@ static char *(features[]) =
static int included_patches[] = static int included_patches[] =
{ /* Add new patch number below this line */ { /* Add new patch number below this line */
/**/
1180,
/**/ /**/
1179, 1179,
/**/ /**/