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:
parent
f65927fc8d
commit
1e624c912d
@ -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
|
||||||
|
@ -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,
|
||||||
/**/
|
/**/
|
||||||
|
Loading…
x
Reference in New Issue
Block a user