# HG changeset patch # User Christian Brabandt # Date 1473187506 -7200 # Node ID de20f2434807f4377616337c46bf15413883ef3f # Parent af5497a26f0e5e437765592953b9faf5349f65d9 commit https://github.com/vim/vim/commit/df0db16cf74281a83a9ea3388a2ef9aedccd013c Author: Bram Moolenaar Date: Tue Sep 6 20:37:41 2016 +0200 patch 7.4.2336 Problem: Running normal mode tests leave a couple of files behind. (Yegappan Lakshmanan) Solution: Delete the files. (Christian Brabandt) diff --git a/src/testdir/test_normal.vim b/src/testdir/test_normal.vim --- a/src/testdir/test_normal.vim +++ b/src/testdir/test_normal.vim @@ -1125,6 +1125,8 @@ func! Test_normal19_z_spell() exe "lang" oldlang call delete("./Xspellfile.add") call delete("./Xspellfile2.add") + call delete("./Xspellfile.add.spl") + call delete("./Xspellfile2.add.spl") " zux -> no-op 2 diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -764,6 +764,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 2336, +/**/ 2335, /**/ 2334,