Skip to content

Commit

Permalink
patch 7.4.1301
Browse files Browse the repository at this point in the history
Problem:    Missing options in ch_open().
Solution:   Add s:chopt like in the other calls. (Ozaki Kiichi)
  • Loading branch information
brammool committed Feb 10, 2016
1 parent 2ab375e commit 39b2127
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/testdir/test_channel.vim
Expand Up @@ -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
Expand Down
2 changes: 2 additions & 0 deletions src/version.c
Expand Up @@ -747,6 +747,8 @@ static char *(features[]) =

static int included_patches[] =
{ /* Add new patch number below this line */
/**/
1301,
/**/
1300,
/**/
Expand Down

0 comments on commit 39b2127

Please sign in to comment.