# HG changeset patch # User Christian Brabandt # Date 1537818309 -7200 # Node ID 516fc9fc4f1f0714d3ffffee4961343424536c11 # Parent 36b3ea49d9908eab983903dbf753682867cca6d3 patch 8.1.0430: Xargadd file left behind after running test commit https://github.com/vim/vim/commit/d339828b4b0dde662dc9ce65baf1cc098aec402c Author: Bram Moolenaar Date: Mon Sep 24 21:32:11 2018 +0200 patch 8.1.0430: Xargadd file left behind after running test Problem: Xargadd file left behind after running test. Solution: Delete the file. (Dominique Pelle) diff --git a/src/testdir/test_arglist.vim b/src/testdir/test_arglist.vim --- a/src/testdir/test_arglist.vim +++ b/src/testdir/test_arglist.vim @@ -94,6 +94,7 @@ func Test_argadd_empty_curbuf() call assert_equal('Xargadd', bufname('%')) call assert_equal(2, line('$')) + call delete('Xargadd') %argd bwipe! endfunc diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -795,6 +795,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 430, +/**/ 429, /**/ 428,