From f4f190d8219fc93c6e58e54ce7c1ac15af07840f Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Sun, 1 Mar 2020 13:01:16 +0100 Subject: [PATCH] patch 8.2.0338: build failure without the channel feature Problem: Build failure without the channel feature. Solution: Add #ifdef --- src/version.c | 2 ++ src/vim9compile.c | 4 ++++ 2 files changed, 6 insertions(+) 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: -- 2.50.1