mirror of
https://github.com/vim/vim.git
synced 2025-09-25 03:54:15 -04:00
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)
This commit is contained in:
@@ -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;
|
||||
|
@@ -754,6 +754,8 @@ static char *(features[]) =
|
||||
|
||||
static int included_patches[] =
|
||||
{ /* Add new patch number below this line */
|
||||
/**/
|
||||
4488,
|
||||
/**/
|
||||
4487,
|
||||
/**/
|
||||
|
Reference in New Issue
Block a user