# HG changeset patch # User Christian Brabandt # Date 1457994605 -3600 # Node ID 80cfe52ca3a204986e1cb3a5f1ed9555d6cc95b0 # Parent 78d30d1fe7aba6e08a14686ba9cf2f174882afeb commit https://github.com/vim/vim/commit/39afdea2035c34239910267978538a3c99b66911 Author: Bram Moolenaar Date: Mon Mar 14 23:27:29 2016 +0100 patch 7.4.1561 Problem: Missing update to proto file. Solution: Change the proto file. diff --git a/src/proto/channel.pro b/src/proto/channel.pro --- a/src/proto/channel.pro +++ b/src/proto/channel.pro @@ -12,7 +12,7 @@ channel_T *channel_open_func(typval_T *a 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, jobopt_T *options); void channel_set_options(channel_T *channel, jobopt_T *opt); -void channel_set_req_callback(channel_T *channel, int part, char_u *callback, int id); +void channel_set_req_callback(channel_T *channel, int part, char_u *callback, partial_T *partial, int id); void channel_write_in(channel_T *channel); void channel_write_new_lines(buf_T *buf); char_u *channel_get(channel_T *channel, int part); diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -744,6 +744,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 1561, +/**/ 1560, /**/ 1559,