mirror of
https://github.com/vim/vim.git
synced 2025-07-26 11:04:33 -04:00
patch 8.0.1828: get no clue why :gui does not fork
Problem: Get no clue why :gui does not fork. Solution: Add a channel log message.
This commit is contained in:
parent
b2ed680ba7
commit
e65fffd9b4
@ -5144,7 +5144,10 @@ job_any_running()
|
|||||||
|
|
||||||
for (job = first_job; job != NULL; job = job->jv_next)
|
for (job = first_job; job != NULL; job = job->jv_next)
|
||||||
if (job_still_useful(job))
|
if (job_still_useful(job))
|
||||||
|
{
|
||||||
|
ch_log(NULL, "GUI not forking because a job is running");
|
||||||
return TRUE;
|
return TRUE;
|
||||||
|
}
|
||||||
return FALSE;
|
return FALSE;
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
@ -761,6 +761,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 */
|
||||||
|
/**/
|
||||||
|
1828,
|
||||||
/**/
|
/**/
|
||||||
1827,
|
1827,
|
||||||
/**/
|
/**/
|
||||||
|
Loading…
x
Reference in New Issue
Block a user