Patch 8.2.0338
Problem: Build failure without the channel feature.
Solution: Add #ifdef
Files: src/vim9compile.c
*** ../vim-8.2.0337/src/vim9compile.c 2020-02-29 23:23:44.484659204 +0100
--- src/vim9compile.c 2020-03-01 13:00:16.697143336 +0100
***************
*** 5227,5237 ****
--- 5227,5241 ----
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:
*** ../vim-8.2.0337/src/version.c 2020-03-01 01:05:46.199710201 +0100
--- src/version.c 2020-03-01 13:00:56.632986689 +0100
***************
*** 740,741 ****
--- 740,743 ----
{ /* Add new patch number below this line */
+ /**/
+ 338,
/**/
--
I wish there was a knob on the TV to turn up the intelligence.
There's a knob called "brightness", but it doesn't seem to work.
/// Bram Moolenaar -- [email protected] -- http://www.Moolenaar.net \\\
/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
\\\ an exciting new programming language -- http://www.Zimbu.org ///
\\\ help me help AIDS victims -- http://ICCF-Holland.org ///
--
--
You received this message from the "vim_dev" maillist.
Do not top-post! Type your reply below the text you are replying to.
For more information, visit http://www.vim.org/maillist.php
---
You received this message because you are subscribed to the Google Groups
"vim_dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
To view this discussion on the web visit
https://groups.google.com/d/msgid/vim_dev/202003011201.021C1xFH004675%40masaka.moolenaar.net.