# HG changeset patch # User Bram Moolenaar # Date 1546283705 -3600 # Node ID f58e7895cb40db2c531ccb3a7b7cb294d5a9679e # Parent 5e11b2d60e7f02102e55441f257c87b3970c17ef patch 8.1.0667: textprop test leaves file behind commit https://github.com/vim/vim/commit/2f21fa8743404289f1410ba49dd711a622f45d81 Author: Bram Moolenaar Date: Mon Dec 31 20:05:56 2018 +0100 patch 8.1.0667: textprop test leaves file behind Problem: Textprop test leaves file behind. Solution: Delete the file. (Dominique Pelle, closes https://github.com/vim/vim/issues/3743) diff --git a/src/testdir/test_textprop.vim b/src/testdir/test_textprop.vim --- a/src/testdir/test_textprop.vim +++ b/src/testdir/test_textprop.vim @@ -307,5 +307,5 @@ funct Test_textprop_screenshots() " clean up call StopVimInTerminal(buf) - call delete('Xtest_folds_with_rnu') + call delete('XtestProp') endfunc diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -800,6 +800,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 667, +/**/ 666, /**/ 665,