# HG changeset patch # User Christian Brabandt # Date 1478895303 -3600 # Node ID 471b87c3b67d695f7003f27a18ec973b5e4497fe # Parent d4804cb77036b2dd1e4d8beb7791cb5809d6c0e9 commit https://github.com/vim/vim/commit/79cbdcb1eeead00bad6fc64ab4a53e5860d5a663 Author: Bram Moolenaar Date: Fri Nov 11 21:14:03 2016 +0100 patch 8.0.0076 Problem: Channel log has double parens ()(). Solution: Remove () for write_buf_line. (Yasuhiro Matsumoto) diff --git a/src/channel.c b/src/channel.c --- a/src/channel.c +++ b/src/channel.c @@ -1341,7 +1341,7 @@ write_buf_line(buf_T *buf, linenr_T lnum p[len] = NL; p[len + 1] = NUL; - channel_send(channel, PART_IN, p, len + 1, "write_buf_line()"); + channel_send(channel, PART_IN, p, len + 1, "write_buf_line"); vim_free(p); } @@ -3450,7 +3450,12 @@ channel_handle_events(void) * Return FAIL or OK. */ int -channel_send(channel_T *channel, ch_part_T part, char_u *buf, int len, char *fun) +channel_send( + channel_T *channel, + ch_part_T part, + char_u *buf, + int len, + char *fun) { int res; sock_T fd; diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -765,6 +765,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 76, +/**/ 75, /**/ 74,