mirror of
https://github.com/vim/vim.git
synced 2025-09-24 03:44:06 -04:00
patch 8.0.0865: cannot build with channel but without terminal feature
Problem: Cannot build with channel but without terminal feature. Solution: Add #ifdef
This commit is contained in:
@@ -4391,6 +4391,7 @@ get_job_options(typval_T *tv, jobopt_T *opt, int supported)
|
|||||||
return FAIL;
|
return FAIL;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
#ifdef FEAT_TERMINAL
|
||||||
else if (STRCMP(hi->hi_key, "term_name") == 0)
|
else if (STRCMP(hi->hi_key, "term_name") == 0)
|
||||||
{
|
{
|
||||||
if (!(supported & JO2_TERM_NAME))
|
if (!(supported & JO2_TERM_NAME))
|
||||||
@@ -4403,6 +4404,7 @@ get_job_options(typval_T *tv, jobopt_T *opt, int supported)
|
|||||||
return FAIL;
|
return FAIL;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
else if (STRCMP(hi->hi_key, "waittime") == 0)
|
else if (STRCMP(hi->hi_key, "waittime") == 0)
|
||||||
{
|
{
|
||||||
if (!(supported & JO_WAITTIME))
|
if (!(supported & JO_WAITTIME))
|
||||||
|
@@ -769,6 +769,8 @@ static char *(features[]) =
|
|||||||
|
|
||||||
static int included_patches[] =
|
static int included_patches[] =
|
||||||
{ /* Add new patch number below this line */
|
{ /* Add new patch number below this line */
|
||||||
|
/**/
|
||||||
|
865,
|
||||||
/**/
|
/**/
|
||||||
864,
|
864,
|
||||||
/**/
|
/**/
|
||||||
|
Reference in New Issue
Block a user