# HG changeset patch # User Bram Moolenaar # Date 1673991004 -3600 # Node ID 6969fac11aaabca4621253a19bc987a802a1bbdb # Parent 8d9190368b3bda5cc96367a5ea18b80a39955979 patch 9.0.1214: file left behind after running tests Commit: https://github.com/vim/vim/commit/541c87c808df91b55e51fedc4987152a3edfe80d Author: Dominique Pelle Date: Tue Jan 17 21:20:44 2023 +0000 patch 9.0.1214: file left behind after running tests Problem: File left behind after running tests. Solution: Delete the file. (Dominique Pell?, closes https://github.com/vim/vim/issues/11839) diff --git a/src/testdir/test_autocmd.vim b/src/testdir/test_autocmd.vim --- a/src/testdir/test_autocmd.vim +++ b/src/testdir/test_autocmd.vim @@ -640,6 +640,7 @@ func Test_WinScrolled_diff() \ }, event) call StopVimInTerminal(buf) + call delete('XscrollEvent') endfunc func Test_WinClosed() diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -696,6 +696,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 1214, +/**/ 1213, /**/ 1212,