Skip to content

Commit 39b2127

Browse files
committed
patch 7.4.1301
Problem: Missing options in ch_open(). Solution: Add s:chopt like in the other calls. (Ozaki Kiichi)
1 parent 2ab375e commit 39b2127

2 files changed

Lines changed: 3 additions & 1 deletion

File tree

src/testdir/test_channel.vim

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ endfunc
161161

162162
" Test that we can open two channels.
163163
func s:two_channels(port)
164-
let handle = ch_open('localhost:' . a:port)
164+
let handle = ch_open('localhost:' . a:port, s:chopt)
165165
if handle < 0
166166
call assert_false(1, "Can't open channel")
167167
return

src/version.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -747,6 +747,8 @@ static char *(features[]) =
747747

748748
static int included_patches[] =
749749
{ /* Add new patch number below this line */
750+
/**/
751+
1301,
750752
/**/
751753
1300,
752754
/**/

0 commit comments

Comments
 (0)