# HG changeset patch # User Christian Brabandt # Date 1455143404 -3600 # Node ID dfae8bce5920e3e96a607e335b283c1d0a957c08 # Parent 562b4bda0d642a8e75b549c91f1fa0866cc977db commit https://github.com/vim/vim/commit/39b21272d521512b6ecac6cc0f310944f21b7443 Author: Bram Moolenaar Date: Wed Feb 10 23:28:21 2016 +0100 patch 7.4.1301 Problem: Missing options in ch_open(). Solution: Add s:chopt like in the other calls. (Ozaki Kiichi) diff --git a/src/testdir/test_channel.vim b/src/testdir/test_channel.vim --- a/src/testdir/test_channel.vim +++ b/src/testdir/test_channel.vim @@ -161,7 +161,7 @@ endfunc " Test that we can open two channels. func s:two_channels(port) - let handle = ch_open('localhost:' . a:port) + let handle = ch_open('localhost:' . a:port, s:chopt) if handle < 0 call assert_false(1, "Can't open channel") return diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -748,6 +748,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 1301, +/**/ 1300, /**/ 1299,