Patch 8.2.4488 (after 8.2.4487)
Problem: Build error with +eval but without +channel or +job.
Solution: Add #ifdef. (John Marriott)
Files: src/typval.c
*** ../vim-8.2.4487/src/typval.c 2022-03-01 19:23:20.544357315 +0000
--- src/typval.c 2022-03-01 19:48:57.457236819 +0000
***************
*** 1394,1403 ****
--- 1394,1407 ----
switch (tv->v_type)
{
case VAR_BLOB: return tv->vval.v_blob == NULL;
+ #ifdef FEAT_JOB_CHANNEL
case VAR_CHANNEL: return tv->vval.v_channel == NULL;
+ #endif
case VAR_DICT: return tv->vval.v_dict == NULL;
case VAR_FUNC: return tv->vval.v_string == NULL;
+ #ifdef FEAT_JOB_CHANNEL
case VAR_JOB: return tv->vval.v_job == NULL;
+ #endif
case VAR_LIST: return tv->vval.v_list == NULL;
case VAR_PARTIAL: return tv->vval.v_partial == NULL;
case VAR_STRING: return tv->vval.v_string == NULL;
*** ../vim-8.2.4487/src/version.c 2022-03-01 19:23:20.544357315 +0000
--- src/version.c 2022-03-01 19:50:35.341043179 +0000
***************
*** 756,757 ****
--- 756,759 ----
{ /* Add new patch number below this line */
+ /**/
+ 4488,
/**/
--
hundred-and-one symptoms of being an internet addict:
134. You consider bandwidth to be more important than carats.
/// Bram Moolenaar -- [email protected] -- http://www.Moolenaar.net \\\
/// \\\
\\\ sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ ///
\\\ 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/20220301195323.4475F1C44AD%40moolenaar.net.