# HG changeset patch # User Bram Moolenaar # Date 1615991403 -3600 # Node ID 0edc315f2d0c15c2de5aabba3c7db8c6390644e8 # Parent 2248c198e209f2287243e32443052e26af76389e patch 8.2.2615: test is sourcing the wrong file Commit: https://github.com/vim/vim/commit/a4c81bea38d1f3e372a4191ab0bd7d664cba1428 Author: Bram Moolenaar Date: Wed Mar 17 15:23:16 2021 +0100 patch 8.2.2615: test is sourcing the wrong file Problem: Test is sourcing the wrong file. Solution: Correct the file name. diff --git a/src/testdir/test_vim9_script.vim b/src/testdir/test_vim9_script.vim --- a/src/testdir/test_vim9_script.vim +++ b/src/testdir/test_vim9_script.vim @@ -1575,7 +1575,7 @@ def Test_script_reload_from_function() delcommand CallFunc command CallFunc Func() def Func() - so /tmp/test.vim + so XreloadFunc.vim g:didTheFunc = 1 enddef END 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 */ /**/ + 2615, +/**/ 2614, /**/ 2613,