Skip to content
Snippets Groups Projects
Commit 1e624c91 authored by Bram Moolenaar's avatar Bram Moolenaar
Browse files

patch 8.2.1180: build failure in small version

Problem:    Build failure in small version.
Solution:   Add #ifdef.
parent f65927fc
No related branches found
Tags v8.2.1180
No related merge requests found
......@@ -2750,10 +2750,11 @@ parse_command_modifiers(exarg_T *eap, char **errormsg, int skip_only)
if (*p == NUL || ends_excmd(*p))
break;
}
#ifdef FEAT_EVAL
// Avoid that "filter(arg)" is recognized.
if (in_vim9script() && !VIM_ISWHITE(*p))
break;
#endif
if (skip_only)
p = skip_vimgrep_pat(p, NULL, NULL);
else
......
......@@ -754,6 +754,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
1180,
/**/
1179,
/**/
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment