# HG changeset patch # User Bram Moolenaar # Date 1646164803 -3600 # Node ID 46c06f741d12777016698265b4cd1e4b936377c0 # Parent 4d060c3c8864618597ba0a70f714ea1c1a9df0ac patch 8.2.4488: build error with +eval but without +channel or +job Commit: https://github.com/vim/vim/commit/f6b0c79742727948edee78cb1a3a9a4e3be8b0fd Author: Bram Moolenaar Date: Tue Mar 1 19:52:48 2022 +0000 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 --- a/src/typval.c +++ b/src/typval.c @@ -1394,10 +1394,14 @@ typval_compare_null(typval_T *tv1, typva 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 --- a/src/version.c +++ b/src/version.c @@ -755,6 +755,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 4488, +/**/ 4487, /**/ 4486,