# HG changeset patch # User Bram Moolenaar # Date 1642454103 -3600 # Node ID fe3da8b63dfac332b44ee4e9715664568c5edcce # Parent b0432adbe58e0497e5a8a8d2f8fb22eb0f9c8e01 patch 8.2.4125: completion tests fail Commit: https://github.com/vim/vim/commit/b3d9ceed2bc96acb7a2388e138559df6282118af Author: Bram Moolenaar Date: Mon Jan 17 21:13:28 2022 +0000 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 --- 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 --- a/src/version.c +++ b/src/version.c @@ -751,6 +751,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 4125, +/**/ 4124, /**/ 4123,