aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/os/channel.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/nvim/os/channel.c')
-rw-r--r--src/nvim/os/channel.c7
1 files changed, 1 insertions, 6 deletions
diff --git a/src/nvim/os/channel.c b/src/nvim/os/channel.c
index 9e2c812a3f..439487f30b 100644
--- a/src/nvim/os/channel.c
+++ b/src/nvim/os/channel.c
@@ -92,7 +92,7 @@ uint64_t channel_from_job(char **argv)
channel,
job_out,
job_err,
- job_exit,
+ NULL,
true,
0,
&status);
@@ -275,11 +275,6 @@ static void job_err(RStream *rstream, void *data, bool eof)
// TODO(tarruda): plugin error messages should be sent to the error buffer
}
-static void job_exit(Job *job, void *data)
-{
- // TODO(tarruda): what should be done here?
-}
-
static void parse_msgpack(RStream *rstream, void *data, bool eof)
{
Channel *channel = data;