aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/testdir
diff options
context:
space:
mode:
authorzeertzjq <zeertzjq@outlook.com>2022-07-29 07:31:54 +0800
committerGitHub <noreply@github.com>2022-07-29 07:31:54 +0800
commit88ed33230ac91423f6e09c3f7c07cc02b2b115ac (patch)
treef91f1f339e3ddd3468af71b61361a20f0bacc635 /src/nvim/testdir
parent352a177dae5b602f5685faa3ce4ad841d3ddbc15 (diff)
downloadrneovim-88ed33230ac91423f6e09c3f7c07cc02b2b115ac.tar.gz
rneovim-88ed33230ac91423f6e09c3f7c07cc02b2b115ac.tar.bz2
rneovim-88ed33230ac91423f6e09c3f7c07cc02b2b115ac.zip
vim-patch:9.0.0101: invalid memory access in diff mode with "dp" and undo (#19568)
Problem: Invalid memory access in diff mode with "dp" and undo. Solution: Make sure the line number does not go below one. https://github.com/vim/vim/commit/4e677b9c40ccbc5f090971b31dc2fe07bf05541d
Diffstat (limited to 'src/nvim/testdir')
-rw-r--r--src/nvim/testdir/test_diffmode.vim14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/nvim/testdir/test_diffmode.vim b/src/nvim/testdir/test_diffmode.vim
index bc931b1e1b..1dbbe578c5 100644
--- a/src/nvim/testdir/test_diffmode.vim
+++ b/src/nvim/testdir/test_diffmode.vim
@@ -1471,5 +1471,19 @@ func Test_diff_manipulations()
%bwipe!
endfunc
+" This was causing the line number in the diff block to go below one.
+" FIXME: somehow this causes a valgrind error when run directly but not when
+" run as a test.
+func Test_diff_put_and_undo()
+ set diff
+ next 0
+ split 00
+ sil! norm o0gguudpo0ggJuudp
+
+ bwipe!
+ bwipe!
+ set nodiff
+endfunc
+
" vim: shiftwidth=2 sts=2 expandtab