commit | cb8bbe9bf3214d07580d6b43d6539416884153bd | [log] [tgz] |
---|---|---|
author | Bram Moolenaar <Bram@vim.org> | Sun Jul 16 13:48:22 2017 +0200 |
committer | Bram Moolenaar <Bram@vim.org> | Sun Jul 16 13:48:22 2017 +0200 |
tree | 60a96551f612f3f77e71aeb7fdde295c58e8b6f2 | |
parent | 26e8558e74fc1701b57f092cc2c3dbf879cf1af3 [diff] [blame] |
patch 8.0.0718: output of job in terminal is not displayed Problem: Output of job in terminal is not displayed. Solution: Connect the job output to the terminal.
diff --git a/src/evalfunc.c b/src/evalfunc.c index 75ebb20..428d7a4 100644 --- a/src/evalfunc.c +++ b/src/evalfunc.c
@@ -6745,7 +6745,7 @@ rettv->v_type = VAR_JOB; if (check_restricted() || check_secure()) return; - rettv->vval.v_job = job_start(argvars); + rettv->vval.v_job = job_start(argvars, NULL); } /*