# HG changeset patch # User Christian Brabandt # Date 1457793904 -3600 # Node ID 0b31cc4b261e167071e37404e7769dbeb217fc4f # Parent 4f9bf9cceb8f6cc7f8b95d81a637cc5ad53bef84 commit https://github.com/vim/vim/commit/1adda3403d80e96446248a92ceafee036053765c Author: Bram Moolenaar Date: Sat Mar 12 15:39:40 2016 +0100 patch 7.4.1542 Problem: job_start() with a list is not tested. Solution: Call job_start() with a list. 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 @@ -492,7 +492,7 @@ func Test_nl_pipe() return endif call ch_log('Test_nl_pipe()') - let job = job_start(s:python . " test_channel_pipe.py") + let job = job_start([s:python, "test_channel_pipe.py"]) call assert_equal("run", job_status(job)) try let handle = job_getchannel(job) diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -744,6 +744,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 1542, +/**/ 1541, /**/ 1540,