From: Bram Moolenaar Date: Fri, 16 Jul 2021 08:39:28 +0000 (+0200) Subject: patch 8.2.3172: MzScheme test fails X-Git-Tag: v8.2.3172 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=20c370d9f2ee89cb854054edf71f5004f6efff77;p=thirdparty%2Fvim.git patch 8.2.3172: MzScheme test fails Problem: MzScheme test fails. (Christian Brabandt) Solution: Correct function name. --- diff --git a/src/testdir/test_vim9_builtin.vim b/src/testdir/test_vim9_builtin.vim index f7c2f98ea1..98ed85fb32 100644 --- a/src/testdir/test_vim9_builtin.vim +++ b/src/testdir/test_vim9_builtin.vim @@ -1662,7 +1662,7 @@ def Test_mzeval() if !has('mzscheme') CheckFeature mzscheme endif - CheckDefAndScriptFailure2(['mzscheme(["a"])'], 'E1013: Argument 1: type mismatch, expected string but got list', 'E730: Using a List as a String') + CheckDefAndScriptFailure2(['mzeval(["a"])'], 'E1013: Argument 1: type mismatch, expected string but got list', 'E730: Using a List as a String') enddef def Test_nextnonblank() diff --git a/src/version.c b/src/version.c index 3caf18dcad..78d6088e41 100644 --- a/src/version.c +++ b/src/version.c @@ -755,6 +755,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 3172, /**/ 3171, /**/