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 f7c2f98..98ed85f 100644
--- a/src/testdir/test_vim9_builtin.vim
+++ b/src/testdir/test_vim9_builtin.vim
@@ -1662,7 +1662,7 @@
if !has('mzscheme')
CheckFeature mzscheme
endif
- CheckDefAndScriptFailure2(['mzscheme(["a"])'], 'E1013: Argument 1: type mismatch, expected string but got list<string>', 'E730: Using a List as a String')
+ CheckDefAndScriptFailure2(['mzeval(["a"])'], 'E1013: Argument 1: type mismatch, expected string but got list<string>', 'E730: Using a List as a String')
enddef
def Test_nextnonblank()
diff --git a/src/version.c b/src/version.c
index 3caf18d..78d6088 100644
--- a/src/version.c
+++ b/src/version.c
@@ -756,6 +756,8 @@
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 3172,
+/**/
3171,
/**/
3170,