From: Bram Moolenaar Date: Sun, 28 Aug 2016 11:38:54 +0000 (+0200) Subject: patch 7.4.2276 X-Git-Tag: v7.4.2276 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=1773ddfdcd106fa3bbf479c9b62ccde03c2a86ba;p=vim patch 7.4.2276 Problem: Command line test fails on Windows when run twice. Solution: Wipe the buffer so that the directory can be deleted. --- diff --git a/src/testdir/test_cmdline.vim b/src/testdir/test_cmdline.vim index f6721d523..4bacf5721 100644 --- a/src/testdir/test_cmdline.vim +++ b/src/testdir/test_cmdline.vim @@ -186,5 +186,6 @@ func Test_expand_star_star() call writefile(['asdfasdf'], 'a/b/fileXname') call feedkeys(":find **/fileXname\\", 'xt') call assert_equal('find a/b/fileXname', getreg(':')) + bwipe! call delete('a', 'rf') endfunc diff --git a/src/version.c b/src/version.c index 152e7b74d..60b137450 100644 --- a/src/version.c +++ b/src/version.c @@ -763,6 +763,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 2276, /**/ 2275, /**/