# HG changeset patch # User Bram Moolenaar # Date 1621188902 -7200 # Node ID 000568dd900ad1737d133d19856d33d9725deb66 # Parent 2a685774ad6923329b721a03877bc66da1d2bfcd patch 8.2.2859: Tcl test fails because of changed error message Commit: https://github.com/vim/vim/commit/dcfc311198b174468c007ec4b5b22b33c2c11c92 Author: Bram Moolenaar Date: Sun May 16 20:06:59 2021 +0200 patch 8.2.2859: Tcl test fails because of changed error message Problem: Tcl test fails because of changed error message. Solution: Adjust the expected error message. diff --git a/src/testdir/test_tcl.vim b/src/testdir/test_tcl.vim --- a/src/testdir/test_tcl.vim +++ b/src/testdir/test_tcl.vim @@ -145,7 +145,7 @@ func Test_vim_expr() call assert_fails('tcl ::vim::expr x y', \ 'wrong # args: should be "::vim::expr vimExpr"') - call assert_fails('tcl ::vim::expr 1-', 'E15: Invalid expression: 1-') + call assert_fails('tcl ::vim::expr 1-', 'E15: Invalid expression: "1-"') endfunc " Test ::vim::command 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 */ /**/ + 2859, +/**/ 2858, /**/ 2857,