aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/os/channel.c
diff options
context:
space:
mode:
authoroni-link <knil.ino@gmail.com>2014-07-29 13:11:34 +0200
committerNicolas Hillegeer <nicolas@hillegeer.com>2014-07-29 13:29:54 +0200
commit1ef12f02042c21de938b6ad674c7ba4094855747 (patch)
tree7c036ce40be42585c0b8bd3b64b3261f9cfd1b72 /src/nvim/os/channel.c
parenta98a6996c291b3e300d27b791eded9eed333d677 (diff)
downloadrneovim-1ef12f02042c21de938b6ad674c7ba4094855747.tar.gz
rneovim-1ef12f02042c21de938b6ad674c7ba4094855747.tar.bz2
rneovim-1ef12f02042c21de938b6ad674c7ba4094855747.zip
Remove unused arg 'defer' in 'job_start' #1000
* With the changes in commit "events: Refactor how event deferral is handled" (2e4ea29d2c7b62eb8baf1c41cd43433e085dda0) the function argument 'defer' of 'job_start' and member variable 'defer' of 'struct job' can be removed. * Update/Fix the documentation for function 'job_start'.
Diffstat (limited to 'src/nvim/os/channel.c')
-rw-r--r--src/nvim/os/channel.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/nvim/os/channel.c b/src/nvim/os/channel.c
index d5f29aa667..1a2efca513 100644
--- a/src/nvim/os/channel.c
+++ b/src/nvim/os/channel.c
@@ -96,7 +96,6 @@ uint64_t channel_from_job(char **argv)
job_out,
job_err,
NULL,
- true,
0,
&status);