changeset 25270:a3c07227ffde v8.2.3172

patch 8.2.3172: MzScheme test fails Commit: https://github.com/vim/vim/commit/20c370d9f2ee89cb854054edf71f5004f6efff77 Author: Bram Moolenaar <Bram@vim.org> Date: Fri Jul 16 10:39:28 2021 +0200 patch 8.2.3172: MzScheme test fails Problem: MzScheme test fails. (Christian Brabandt) Solution: Correct function name.
author Bram Moolenaar <Bram@vim.org>
date Fri, 16 Jul 2021 10:45:04 +0200
parents d42ac4880e0f
children 51a7e859b0de
files src/testdir/test_vim9_builtin.vim src/version.c
diffstat 2 files changed, 3 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- 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<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()
--- a/src/version.c
+++ b/src/version.c
@@ -756,6 +756,8 @@ static char *(features[]) =
 static int included_patches[] =
 {   /* Add new patch number below this line */
 /**/
+    3172,
+/**/
     3171,
 /**/
     3170,