We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8ed0458 commit b4d2cb1Copy full SHA for b4d2cb1
2 files changed
src/testdir/test_vim9_expr.vim
@@ -773,8 +773,10 @@ def Test_expr7_not()
773
assert_equal(true, !{})
774
assert_equal(false, !{'yes': 'no'})
775
776
- assert_equal(true, !test_null_job())
777
- assert_equal(true, !test_null_channel())
+ if has('channel')
+ assert_equal(true, !test_null_job())
778
+ assert_equal(true, !test_null_channel())
779
+ endif
780
781
assert_equal(true, !test_null_blob())
782
assert_equal(true, !0z)
src/version.c
@@ -738,6 +738,8 @@ static char *(features[]) =
738
739
static int included_patches[] =
740
{ /* Add new patch number below this line */
741
+/**/
742
+ 300,
743
/**/
744
299,
745
0 commit comments