summaryrefslogtreecommitdiff
path: root/src/proto/channel.pro
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2016-09-01 15:11:51 +0200
committerBram Moolenaar <Bram@vim.org>2016-09-01 15:11:51 +0200
commit0874a83e9be1b39fdb217f02b427bf1d6133a4d8 (patch)
tree7d949e2638d0fd36cf55cb2edfa70cba9638de3f /src/proto/channel.pro
parentd8b554904d18fe19bd9fa79dbda880845cb017d2 (diff)
downloadvim-git-0874a83e9be1b39fdb217f02b427bf1d6133a4d8.tar.gz
patch 7.4.2298v7.4.2298
Problem: It is not possible to close the "in" part of a channel. Solution: Add ch_close_in().
Diffstat (limited to 'src/proto/channel.pro')
-rw-r--r--src/proto/channel.pro1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/proto/channel.pro b/src/proto/channel.pro
index 1acae9a10..869989cc4 100644
--- a/src/proto/channel.pro
+++ b/src/proto/channel.pro
@@ -27,6 +27,7 @@ int channel_is_open(channel_T *channel);
char *channel_status(channel_T *channel);
void channel_info(channel_T *channel, dict_T *dict);
void channel_close(channel_T *channel, int invoke_close_cb);
+void channel_close_in(channel_T *channel);
void channel_clear(channel_T *channel);
void channel_free_all(void);
char_u *channel_read_block(channel_T *channel, int part, int timeout);