Skip to content

Commit

Permalink
patch 8.2.4488: build error with +eval but without +channel or +job
Browse files Browse the repository at this point in the history
Problem:    Build error with +eval but without +channel or +job.
Solution:   Add #ifdef. (John Marriott)
  • Loading branch information
brammool committed Mar 1, 2022
1 parent 7a22224 commit f6b0c79
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/typval.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
2 changes: 2 additions & 0 deletions src/version.c
Original file line number Diff line number Diff line change
Expand Up @@ -754,6 +754,8 @@ static char *(features[]) =

static int included_patches[] =
{ /* Add new patch number below this line */
/**/
4488,
/**/
4487,
/**/
Expand Down

0 comments on commit f6b0c79

Please sign in to comment.