aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSean Dewar <seandewar@users.noreply.github.com>2022-01-17 00:15:51 +0000
committerzeertzjq <zeertzjq@outlook.com>2022-01-27 18:47:55 +0800
commitd8adb3a72122aa36571acdff552dddf7aff3d4ff (patch)
treec0985270ff69d1313ddfd8c88f76d8cd4a29e942
parentc0ff0cac8719a175a2cdd8244d12015aef854b51 (diff)
downloadrneovim-d8adb3a72122aa36571acdff552dddf7aff3d4ff.tar.gz
rneovim-d8adb3a72122aa36571acdff552dddf7aff3d4ff.tar.bz2
rneovim-d8adb3a72122aa36571acdff552dddf7aff3d4ff.zip
vim-patch:8.2.4112: function not deleted at end of test
Problem: Function not deleted at end of test. Solution: Delete the function. https://github.com/vim/vim/commit/d9b74a2a41e43ca17a9885ec0a58404adff4273f oops -- my fault :P
-rw-r--r--src/nvim/testdir/test_diffmode.vim2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/nvim/testdir/test_diffmode.vim b/src/nvim/testdir/test_diffmode.vim
index 9829b6b654..482d39056f 100644
--- a/src/nvim/testdir/test_diffmode.vim
+++ b/src/nvim/testdir/test_diffmode.vim
@@ -1170,7 +1170,9 @@ func Test_diff_maintains_change_mark()
call DiffMaintainsChangeMark()
set diffopt+=internal
call DiffMaintainsChangeMark()
+
set diffopt&
+ delfunc DiffMaintainsChangeMark
endfunc
func Test_diff_rnu()