Patch 8.2.3661 (after 8.2.3659)
Problem: Test for put with large count fails.
Solution: Adjust the counts in the test.
Files: src/testdir/test_put.vim
*** ../vim-8.2.3660/src/testdir/test_put.vim 2021-11-16 12:50:42.128595270
+0000
--- src/testdir/test_put.vim 2021-11-24 14:54:12.822025554 +0000
***************
*** 162,169 ****
endif
new
! let @" = 'x'
! call assert_fails('norm 44444444444444p', 'E1240:')
bwipe!
endfunc
--- 162,169 ----
endif
new
! let @" = repeat('x', 100)
! call assert_fails('norm 999999999p', 'E1240:')
bwipe!
endfunc
***************
*** 182,190 ****
endif
new
! call setline(1, 'x')
! exe "norm \<C-V>y"
! call assert_fails('norm 44444444444444p', 'E1240:')
bwipe!
endfunc
--- 182,190 ----
endif
new
! call setline(1, repeat('x', 100))
! exe "norm \<C-V>$y"
! call assert_fails('norm 999999999p', 'E1240:')
bwipe!
endfunc
*** ../vim-8.2.3660/src/version.c 2021-11-24 13:40:26.427007315 +0000
--- src/version.c 2021-11-24 14:58:59.533611694 +0000
***************
*** 759,760 ****
--- 759,762 ----
{ /* Add new patch number below this line */
+ /**/
+ 3661,
/**/
--
bashian roulette:
$ ((RANDOM%6)) || rm -rf ~
/// Bram Moolenaar -- [email protected] -- http://www.Moolenaar.net \\\
/// \\\
\\\ sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ ///
\\\ help me help AIDS victims -- http://ICCF-Holland.org ///
--
--
You received this message from the "vim_dev" maillist.
Do not top-post! Type your reply below the text you are replying to.
For more information, visit http://www.vim.org/maillist.php
---
You received this message because you are subscribed to the Google Groups
"vim_dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
To view this discussion on the web visit
https://groups.google.com/d/msgid/vim_dev/20211124150112.644A51C3DF9%40moolenaar.net.