summaryrefslogtreecommitdiff
path: root/src/proto
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2016-02-19 22:33:35 +0100
committerBram Moolenaar <Bram@vim.org>2016-02-19 22:33:35 +0100
commit40ea1da14ba196a23309789852e1b663fd92e3a8 (patch)
tree6b5807598b0892e3947262ac3c5f169be92aa1e2 /src/proto
parented5a78e11c80c7b13b233149fd4273b71fc96262 (diff)
downloadvim-git-40ea1da14ba196a23309789852e1b663fd92e3a8.tar.gz
patch 7.4.1356v7.4.1356
Problem: Job and channel options parsing is scattered. Solution: Move all option value parsing to get_job_options();
Diffstat (limited to 'src/proto')
-rw-r--r--src/proto/channel.pro2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/proto/channel.pro b/src/proto/channel.pro
index 8f9293300..89504b594 100644
--- a/src/proto/channel.pro
+++ b/src/proto/channel.pro
@@ -10,8 +10,6 @@ void channel_gui_register_all(void);
channel_T *channel_open(char *hostname, int port_in, int waittime, void (*close_cb)(void));
void channel_set_pipes(channel_T *channel, sock_T in, sock_T out, sock_T err);
void channel_set_job(channel_T *channel, job_T *job);
-void channel_set_mode(channel_T *channel, ch_mode_T mode);
-void channel_set_timeout(channel_T *channel, int timeout);
void channel_set_callback(channel_T *channel, char_u *callback);
void channel_set_options(channel_T *channel, jobopt_T *options);
void channel_set_req_callback(channel_T *channel, char_u *callback, int id);