# HG changeset patch # User Bram Moolenaar # Date 1642346103 -3600 # Node ID 391eb1c30344994d5b9a5470a24c917bc8add987 # Parent f6c3d0df92737432c614454bd6ca2f10572c2795 patch 8.2.4112: function not deleted at end of test Commit: https://github.com/vim/vim/commit/d9b74a2a41e43ca17a9885ec0a58404adff4273f Author: Bram Moolenaar Date: Sun Jan 16 15:00:08 2022 +0000 patch 8.2.4112: function not deleted at end of test Problem: Function not deleted at end of test. Solution: Delete the function. diff --git a/src/testdir/test_diffmode.vim b/src/testdir/test_diffmode.vim --- a/src/testdir/test_diffmode.vim +++ b/src/testdir/test_diffmode.vim @@ -1212,7 +1212,9 @@ func Test_diff_maintains_change_mark() call DiffMaintainsChangeMark() set diffopt+=internal call DiffMaintainsChangeMark() + set diffopt& + delfunc DiffMaintainsChangeMark endfunc " Test for 'patchexpr' diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -751,6 +751,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 4112, +/**/ 4111, /**/ 4110,