From: Bram Moolenaar Date: Mon, 17 Jan 2022 21:13:28 +0000 (+0000) Subject: patch 8.2.4125: completion tests fail X-Git-Tag: v8.2.4125 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b3d9ceed2bc96acb7a2388e138559df6282118af;p=vim patch 8.2.4125: completion tests fail Problem: Completion tests fail. Solution: Disable error messages while dereferencing the function name. --- diff --git a/src/eval.c b/src/eval.c index df73ba1ae..bf65082e2 100644 --- a/src/eval.c +++ b/src/eval.c @@ -709,7 +709,9 @@ call_vim_function( // The name might be "import.Func" or "Funcref". arg = func; + ++emsg_off; name = deref_function_name(&arg, &tofree, &EVALARG_EVALUATE, FALSE); + --emsg_off; if (name == NULL) name = func; diff --git a/src/version.c b/src/version.c index 7657cf509..735b8f6f8 100644 --- a/src/version.c +++ b/src/version.c @@ -750,6 +750,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 4125, /**/ 4124, /**/