patch 8.2.4488: build error with +eval but without +channel or +job
Problem: Build error with +eval but without +channel or +job.
Solution: Add #ifdef. (John Marriott)
diff --git a/src/typval.c b/src/typval.c
index 7754667..38b81e8 100644
--- a/src/typval.c
+++ b/src/typval.c
@@ -1394,10 +1394,14 @@
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;
diff --git a/src/version.c b/src/version.c
index 960e18c..3918e74 100644
--- a/src/version.c
+++ b/src/version.c
@@ -755,6 +755,8 @@
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 4488,
+/**/
4487,
/**/
4486,