comparison src/evalfunc.c @ 11670:3b2afa2b77b3 v8.0.0718

patch 8.0.0718: output of job in terminal is not displayed commit https://github.com/vim/vim/commit/cb8bbe9bf3214d07580d6b43d6539416884153bd Author: Bram Moolenaar <Bram@vim.org> Date: Sun Jul 16 13:48:22 2017 +0200 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.
author Christian Brabandt <cb@256bit.org>
date Sun, 16 Jul 2017 14:00:03 +0200
parents 67cf0d45b006
children ce434212d682
comparison
equal deleted inserted replaced
11669:20bedd70c837 11670:3b2afa2b77b3
6743 f_job_start(typval_T *argvars, typval_T *rettv) 6743 f_job_start(typval_T *argvars, typval_T *rettv)
6744 { 6744 {
6745 rettv->v_type = VAR_JOB; 6745 rettv->v_type = VAR_JOB;
6746 if (check_restricted() || check_secure()) 6746 if (check_restricted() || check_secure())
6747 return; 6747 return;
6748 rettv->vval.v_job = job_start(argvars); 6748 rettv->vval.v_job = job_start(argvars, NULL);
6749 } 6749 }
6750 6750
6751 /* 6751 /*
6752 * "job_status()" function 6752 * "job_status()" function
6753 */ 6753 */