# HG changeset patch # User Bram Moolenaar # Date 1591792205 -7200 # Node ID d7d6993fc266257d6732b2043af4682fbe2e93dd # Parent 9e726ca76ff96995e544fdc7e44430c32b4df989 patch 8.2.0944: xxd test leaves file behind Commit: https://github.com/vim/vim/commit/253ea9fa42278faa064f2590a5c0de46dc903a17 Author: Bram Moolenaar Date: Wed Jun 10 14:21:20 2020 +0200 patch 8.2.0944: xxd test leaves file behind Problem: Xxd test leaves file behind. Solution: Delete the file "XXDfile". (Christian Brabandt, closes https://github.com/vim/vim/issues/6228) diff --git a/src/testdir/test_xxd.vim b/src/testdir/test_xxd.vim --- a/src/testdir/test_xxd.vim +++ b/src/testdir/test_xxd.vim @@ -208,7 +208,8 @@ func Test_xxd() " -o -offset %d - bw! + bwipe! + call delete('XXDfile') endfunc " Various ways with wrong arguments that trigger the usage output. diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -755,6 +755,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 944, +/**/ 943, /**/ 942,