Skip to content

Commit 1adda34

Browse files
committed
patch 7.4.1542
Problem: job_start() with a list is not tested. Solution: Call job_start() with a list.
1 parent 8950a56 commit 1adda34

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
@@ -492,7 +492,7 @@ func Test_nl_pipe()
492492
return
493493
endif
494494
call ch_log('Test_nl_pipe()')
495-
let job = job_start(s:python . " test_channel_pipe.py")
495+
let job = job_start([s:python, "test_channel_pipe.py"])
496496
call assert_equal("run", job_status(job))
497497
try
498498
let handle = job_getchannel(job)

src/version.c

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

744744
static int included_patches[] =
745745
{ /* Add new patch number below this line */
746+
/**/
747+
1542,
746748
/**/
747749
1541,
748750
/**/

0 commit comments

Comments
 (0)