# HG changeset patch # User Christian Brabandt # Date 1532401205 -7200 # Node ID 68722ba529717a56656e5074677ac36135168b47 # Parent a17703b82355e91393c4e1b8841e7545bc9b3fe1 patch 8.1.0208: file left behind after running individual test commit https://github.com/vim/vim/commit/7624af02948de881eb5294fe5d266b948404d489 Author: Bram Moolenaar Date: Tue Jul 24 04:51:20 2018 +0200 patch 8.1.0208: file left behind after running individual test Problem: File left behind after running individual test. Solution: Delete the file. diff --git a/src/testdir/test_modeline.vim b/src/testdir/test_modeline.vim --- a/src/testdir/test_modeline.vim +++ b/src/testdir/test_modeline.vim @@ -5,4 +5,5 @@ func Test_modeline_invalid() call writefile(['vi:0', 'nothing'], 'Xmodeline') call assert_fails('split Xmodeline', 'E518:') bwipe! + call delete('Xmodeline') endfunc diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -794,6 +794,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 208, +/**/ 207, /**/ 206,