Skip to content

Commit 0c2c96e

Browse files
committed
patch 7.4.1338
Problem: Another part of the change is missing. Solution: Type os_unix.c right this time.
1 parent ba093bc commit 0c2c96e

2 files changed

Lines changed: 4 additions & 1 deletion

File tree

src/os_unix.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5037,7 +5037,7 @@ mch_call_shell(
50375037

50385038
#if defined(FEAT_JOB) || defined(PROTO)
50395039
void
5040-
mch_start_job(char **argv, job_T *job)
5040+
mch_start_job(char **argv, job_T *job, jobopt_T *options)
50415041
{
50425042
pid_t pid;
50435043
int fd_in[2]; /* for stdin */
@@ -5127,6 +5127,7 @@ mch_start_job(char **argv, job_T *job)
51275127
# ifdef FEAT_CHANNEL
51285128
channel_set_pipes(channel, fd_in[1], fd_out[0], fd_err[0]);
51295129
channel_set_job(channel, job);
5130+
channel_set_mode(channel, options->jo_mode);
51305131
# ifdef FEAT_GUI
51315132
channel_gui_register(channel);
51325133
# endif

src/version.c

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

748748
static int included_patches[] =
749749
{ /* Add new patch number below this line */
750+
/**/
751+
1338,
750752
/**/
751753
1337,
752754
/**/

0 commit comments

Comments
 (0)