From: Bram Moolenaar Date: Sun, 1 Mar 2020 12:01:16 +0000 (+0100) Subject: patch 8.2.0338: build failure without the channel feature X-Git-Tag: v8.2.0338 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f4f190d8219fc93c6e58e54ce7c1ac15af07840f;p=vim patch 8.2.0338: build failure without the channel feature Problem: Build failure without the channel feature. Solution: Add #ifdef --- diff --git a/src/version.c b/src/version.c index 6c519cb34..cd410bfed 100644 --- a/src/version.c +++ b/src/version.c @@ -738,6 +738,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 338, /**/ 337, /**/ diff --git a/src/vim9compile.c b/src/vim9compile.c index a4525ca0c..2e0c2ffa8 100644 --- a/src/vim9compile.c +++ b/src/vim9compile.c @@ -5227,11 +5227,15 @@ delete_instr(isn_T *isn) break; case ISN_PUSHJOB: +#ifdef FEAT_JOB_CHANNEL job_unref(isn->isn_arg.job); +#endif break; case ISN_PUSHCHANNEL: +#ifdef FEAT_JOB_CHANNEL channel_unref(isn->isn_arg.channel); +#endif break; case ISN_UCALL: