mirror of
https://github.com/vim/vim.git
synced 2025-09-23 03:43:49 -04:00
patch 8.2.4125: completion tests fail
Problem: Completion tests fail. Solution: Disable error messages while dereferencing the function name.
This commit is contained in:
@@ -709,7 +709,9 @@ call_vim_function(
|
|||||||
|
|
||||||
// The name might be "import.Func" or "Funcref".
|
// The name might be "import.Func" or "Funcref".
|
||||||
arg = func;
|
arg = func;
|
||||||
|
++emsg_off;
|
||||||
name = deref_function_name(&arg, &tofree, &EVALARG_EVALUATE, FALSE);
|
name = deref_function_name(&arg, &tofree, &EVALARG_EVALUATE, FALSE);
|
||||||
|
--emsg_off;
|
||||||
if (name == NULL)
|
if (name == NULL)
|
||||||
name = func;
|
name = func;
|
||||||
|
|
||||||
|
@@ -750,6 +750,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 */
|
||||||
|
/**/
|
||||||
|
4125,
|
||||||
/**/
|
/**/
|
||||||
4124,
|
4124,
|
||||||
/**/
|
/**/
|
||||||
|
Reference in New Issue
Block a user