diff options
author | Bram Moolenaar <Bram@vim.org> | 2018-07-24 04:51:20 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2018-07-24 04:51:20 +0200 |
commit | 7624af02948de881eb5294fe5d266b948404d489 (patch) | |
tree | aaac98af39d0942e25c5e4652ad0ba1e4ba2f206 /src | |
parent | 68f1b1b37fa7aba985d9f8727fd9f0f3eb0c19a9 (diff) | |
download | vim-git-7624af02948de881eb5294fe5d266b948404d489.tar.gz |
patch 8.1.0208: file left behind after running individual testv8.1.0208
Problem: File left behind after running individual test.
Solution: Delete the file.
Diffstat (limited to 'src')
-rw-r--r-- | src/testdir/test_modeline.vim | 1 | ||||
-rw-r--r-- | src/version.c | 2 |
2 files changed, 3 insertions, 0 deletions
diff --git a/src/testdir/test_modeline.vim b/src/testdir/test_modeline.vim index e278c1613..f02c68c7b 100644 --- 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 index 39ea6e2ab..e345fed55 100644 --- 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, |