diff src/testdir/test_edit.vim @ 25786:ec62e0764ffa v8.2.3428

patch 8.2.3428: using freed memory when replacing Commit: https://github.com/vim/vim/commit/35a9a00afcb20897d462a766793ff45534810dc3 Author: Bram Moolenaar <Bram@vim.org> Date: Sat Sep 11 21:14:20 2021 +0200 patch 8.2.3428: using freed memory when replacing Problem: Using freed memory when replacing. (Dhiraj Mishra) Solution: Get the line pointer after calling ins_copychar().
author Bram Moolenaar <Bram@vim.org>
date Sat, 11 Sep 2021 21:15:03 +0200
parents 4c1b6f3eb96b
children 16a7d1154be8
line wrap: on
line diff
--- a/src/testdir/test_edit.vim
+++ b/src/testdir/test_edit.vim
@@ -1895,4 +1895,16 @@ func Test_edit_revins()
   bw!
 endfunc
 
+" Test for getting the character of the line below after "p"
+func Test_edit_put_CTRL_E()
+  set encoding=latin1
+  new
+  let @" = ''
+  sil! norm orggRx
+  sil! norm pr
+  call assert_equal(['r', 'r'], getline(1, 2))
+  bwipe!
+  set encoding=utf-8
+endfunc
+
 " vim: shiftwidth=2 sts=2 expandtab