We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4c8719f commit fea14edCopy full SHA for fea14ed
src/eval.c
@@ -21164,6 +21164,9 @@ ex_function(eap)
21164
if (arg[j] != NUL)
21165
emsg_funcname((char *)e_invarg2, arg);
21166
}
21167
+ /* Disallow using the g: dict. */
21168
+ if (fudi.fd_dict != NULL && fudi.fd_dict->dv_scope == VAR_DEF_SCOPE)
21169
+ EMSG(_("E862: Cannot use g: here"));
21170
21171
21172
/*
src/version.c
@@ -725,6 +725,8 @@ static char *(features[]) =
725
726
static int included_patches[] =
727
{ /* Add new patch number below this line */
728
+/**/
729
+ 824,
730
/**/
731
823,
732
0 commit comments