From: Bram Moolenaar Date: Mon, 26 Sep 2016 20:58:58 +0000 (+0200) Subject: patch 8.0.0016 X-Git-Tag: v8.0.0016 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=0e77b7691ee7c477facb4c9d9162c8603ada2d84;p=vim patch 8.0.0016 Problem: Build fails. Solution: Include missing change. --- diff --git a/src/eval.c b/src/eval.c index 6873b978a..3b5abe9c3 100644 --- a/src/eval.c +++ b/src/eval.c @@ -7305,7 +7305,7 @@ get_tv_string_buf_chk(typval_T *varp, char_u *buf) #ifdef FEAT_JOB_CHANNEL { channel_T *channel = varp->vval.v_channel; - char *status = channel_status(channel); + char *status = channel_status(channel, -1); if (channel == NULL) vim_snprintf((char *)buf, NUMBUFLEN, "channel %s", status); diff --git a/src/version.c b/src/version.c index cd1595007..2ae056a6c 100644 --- a/src/version.c +++ b/src/version.c @@ -764,6 +764,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 16, /**/ 15, /**/