From 1adda3403d80e96446248a92ceafee036053765c Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Sat, 12 Mar 2016 15:39:40 +0100 Subject: patch 7.4.1542 Problem: job_start() with a list is not tested. Solution: Call job_start() with a list. --- src/testdir/test_channel.vim | 2 +- src/version.c | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/src/testdir/test_channel.vim b/src/testdir/test_channel.vim index ed62e6646..c9658802d 100644 --- 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 index ed48bb068..4812298c8 100644 --- a/src/version.c +++ b/src/version.c @@ -743,6 +743,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 1542, /**/ 1541, /**/ -- cgit v1.2.1