From cf95d27689ac48c48c6ff2f360439beeac3976af Mon Sep 17 00:00:00 2001 From: oni-link Date: Sat, 8 Nov 2014 03:28:06 +0100 Subject: Mark some function arguments as [consumed] in the docs. The argument argv of job_start() and channel_from_job() will be freed. Mark them as such in the comments of this functions. --- src/nvim/os/job.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/nvim/os') diff --git a/src/nvim/os/job.c b/src/nvim/os/job.c index 551a7d1c87..17872ab9c9 100644 --- a/src/nvim/os/job.c +++ b/src/nvim/os/job.c @@ -105,7 +105,8 @@ void job_teardown(void) /// Tries to start a new job. /// /// @param argv Argument vector for the process. The first item is the -/// executable to run. +/// executable to run. +/// [consumed] /// @param data Caller data that will be associated with the job /// @param writable If true the job stdin will be available for writing with /// job_write, otherwise it will be redirected to /dev/null -- cgit