From f6b0c79742727948edee78cb1a3a9a4e3be8b0fd Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Tue, 1 Mar 2022 19:52:48 +0000 Subject: 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) --- src/typval.c | 4 ++++ src/version.c | 2 ++ 2 files changed, 6 insertions(+) diff --git a/src/typval.c b/src/typval.c index 775466784..38b81e884 100644 --- a/src/typval.c +++ b/src/typval.c @@ -1394,10 +1394,14 @@ typval_compare_null(typval_T *tv1, typval_T *tv2) 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 960e18cea..3918e7439 100644 --- a/src/version.c +++ b/src/version.c @@ -754,6 +754,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 4488, /**/ 4487, /**/ -- cgit v1.2.1