summaryrefslogtreecommitdiff
path: root/src/proto/channel.pro
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2016-01-31 20:24:32 +0100
committerBram Moolenaar <Bram@vim.org>2016-01-31 20:24:32 +0100
commitfb1f62691eae7c79a28b3b17a60e72ce198c71a2 (patch)
tree92456937dc3d372bf30b97df3c5b5148ea2a8243 /src/proto/channel.pro
parent155500077c80cdb5d9c63996000c011b66a676bf (diff)
downloadvim-git-fb1f62691eae7c79a28b3b17a60e72ce198c71a2.tar.gz
patch 7.4.1229v7.4.1229
Problem: "eval" and "expr" channel commands don't work yet. Solution: Implement them. Update the error numbers. Also add "redraw".
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 bf3d93e5f..e0fbda891 100644
--- a/src/proto/channel.pro
+++ b/src/proto/channel.pro
@@ -4,7 +4,7 @@ int channel_open(char *hostname, int port_in, void (*close_cb)(void));
void channel_set_json_mode(int idx, int json_mode);
void channel_set_callback(int idx, char_u *callback);
void channel_set_req_callback(int idx, char_u *callback);
-int channel_decode_json(char_u *msg, typval_T *tv1, typval_T *tv2);
+int channel_decode_json(char_u *msg, typval_T *tv1, typval_T *tv2, typval_T *tv3);
int channel_is_open(int idx);
void channel_close(int idx);
int channel_save(int idx, char_u *buf, int len);