Patch 8.2.1822 (after 8.2.1821)
Problem: List test doesn't fail.
Solution: Adjust the test for NULL list handling.
Files: src/testdir/test_listdict.vim
*** ../vim-8.2.1821/src/testdir/test_listdict.vim 2020-10-05
20:07:14.413414315 +0200
--- src/testdir/test_listdict.vim 2020-10-10 16:39:51.028354080 +0200
***************
*** 1007,1014 ****
call assert_equal('[]', string(l))
call assert_equal(0, sort(l))
call assert_equal(0, uniq(l))
! call assert_fails("let k = [] + l", 'E15:')
! call assert_fails("let k = l + []", 'E15:')
call assert_equal(0, len(copy(l)))
call assert_equal(0, count(l, 5))
call assert_equal([], deepcopy(l))
--- 1007,1016 ----
call assert_equal('[]', string(l))
call assert_equal(0, sort(l))
call assert_equal(0, uniq(l))
! let k = [] + l
! call assert_equal([], k)
! let k = l + []
! call assert_equal([], k)
call assert_equal(0, len(copy(l)))
call assert_equal(0, count(l, 5))
call assert_equal([], deepcopy(l))
*** ../vim-8.2.1821/src/version.c 2020-10-10 15:37:54.190275246 +0200
--- src/version.c 2020-10-10 16:38:05.088638230 +0200
***************
*** 752,753 ****
--- 752,755 ----
{ /* Add new patch number below this line */
+ /**/
+ 1822,
/**/
--
Keyboard not found. Think ENTER to continue.
/// Bram Moolenaar -- [email protected] -- http://www.Moolenaar.net \\\
/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
\\\ an exciting new programming language -- http://www.Zimbu.org ///
\\\ 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/202010101443.09AEh43t3742613%40masaka.moolenaar.net.