comparison src/vim9compile.c @ 19562:6b7719b8f9b9 v8.2.0338

patch 8.2.0338: build failure without the channel feature Commit: https://github.com/vim/vim/commit/f4f190d8219fc93c6e58e54ce7c1ac15af07840f Author: Bram Moolenaar <Bram@vim.org> Date: Sun Mar 1 13:01:16 2020 +0100 patch 8.2.0338: build failure without the channel feature Problem: Build failure without the channel feature. Solution: Add #ifdef
author Bram Moolenaar <Bram@vim.org>
date Sun, 01 Mar 2020 13:15:06 +0100
parents 8eeec8886c02
children 06f29b6ea04a
comparison
equal deleted inserted replaced
19561:8d05000d0f1e 19562:6b7719b8f9b9
5225 case ISN_PUSHPARTIAL: 5225 case ISN_PUSHPARTIAL:
5226 // TODO 5226 // TODO
5227 break; 5227 break;
5228 5228
5229 case ISN_PUSHJOB: 5229 case ISN_PUSHJOB:
5230 #ifdef FEAT_JOB_CHANNEL
5230 job_unref(isn->isn_arg.job); 5231 job_unref(isn->isn_arg.job);
5232 #endif
5231 break; 5233 break;
5232 5234
5233 case ISN_PUSHCHANNEL: 5235 case ISN_PUSHCHANNEL:
5236 #ifdef FEAT_JOB_CHANNEL
5234 channel_unref(isn->isn_arg.channel); 5237 channel_unref(isn->isn_arg.channel);
5238 #endif
5235 break; 5239 break;
5236 5240
5237 case ISN_UCALL: 5241 case ISN_UCALL:
5238 vim_free(isn->isn_arg.ufunc.cuf_name); 5242 vim_free(isn->isn_arg.ufunc.cuf_name);
5239 break; 5243 break;