Patch 8.2.0300
Problem: Vim9: expression test fails without channel support.
Solution: Add has('channel') check.
Files: src/testdir/test_vim9_expr.vim
*** ../vim-8.2.0299/src/testdir/test_vim9_expr.vim 2020-02-22
19:07:24.393786830 +0100
--- src/testdir/test_vim9_expr.vim 2020-02-22 20:31:06.196402754 +0100
***************
*** 773,780 ****
assert_equal(true, !{})
assert_equal(false, !{'yes': 'no'})
! assert_equal(true, !test_null_job())
! assert_equal(true, !test_null_channel())
assert_equal(true, !test_null_blob())
assert_equal(true, !0z)
--- 773,782 ----
assert_equal(true, !{})
assert_equal(false, !{'yes': 'no'})
! if has('channel')
! assert_equal(true, !test_null_job())
! assert_equal(true, !test_null_channel())
! endif
assert_equal(true, !test_null_blob())
assert_equal(true, !0z)
*** ../vim-8.2.0299/src/version.c 2020-02-22 19:07:24.397786814 +0100
--- src/version.c 2020-02-22 20:32:46.312071805 +0100
***************
*** 740,741 ****
--- 740,743 ----
{ /* Add new patch number below this line */
+ /**/
+ 300,
/**/
--
hundred-and-one symptoms of being an internet addict:
92. It takes you two hours to check all 14 of your mailboxes.
/// 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/202002221933.01MJXtxZ015747%40masaka.moolenaar.net.