summaryrefslogtreecommitdiff
path: root/src/proto/channel.pro
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2016-02-16 19:25:12 +0100
committerBram Moolenaar <Bram@vim.org>2016-02-16 19:25:12 +0100
commit9a6e33a19b18f20c25b73392cd2faa3ec4890c8c (patch)
tree2c13d3d751e1e635c4ca4fa8dbc854598a669f89 /src/proto/channel.pro
parent5d54a045989599468b7a971fc354b0cba4e2b09d (diff)
downloadvim-9a6e33a19b18f20c25b73392cd2faa3ec4890c8c.zip
patch 7.4.1336
Problem: Channel NL mode is not supported yet. Solution: Add NL mode support to channels.
Diffstat (limited to 'src/proto/channel.pro')
-rw-r--r--src/proto/channel.pro2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/proto/channel.pro b/src/proto/channel.pro
index c5e61be5c..e1c88627f 100644
--- a/src/proto/channel.pro
+++ b/src/proto/channel.pro
@@ -7,7 +7,7 @@ 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_json_mode(channel_T *channel, ch_mode_T ch_mode);
+void channel_set_mode(channel_T *channel, ch_mode_T ch_mode);
void channel_set_timeout(channel_T *channel, int timeout);
void channel_set_callback(channel_T *channel, char_u *callback);
void channel_set_req_callback(channel_T *channel, char_u *callback, int id);