Skip to content

Commit

Permalink
Fix line length clint error
Browse files Browse the repository at this point in the history
  • Loading branch information
gpanders committed Jul 12, 2021
1 parent f43d493 commit 057beba
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/nvim/eval/funcs.c
Original file line number Diff line number Diff line change
Expand Up @@ -5264,8 +5264,8 @@ static void f_jobstart(typval_T *argvars, typval_T *rettv, FunPtr fptr)
env = create_environment(job_env, clear_env, pty, term_name);

Channel *chan = channel_job_start(argv, on_stdout, on_stderr, on_exit, pty,
rpc, overlapped, detach, stdin_mode, cwd, width,
height, env, &rettv->vval.v_number);
rpc, overlapped, detach, stdin_mode, cwd,
width, height, env, &rettv->vval.v_number);
if (chan) {
channel_create_event(chan, NULL);
}
Expand Down

0 comments on commit 057beba

Please sign in to comment.