# HG changeset patch # User Christian Brabandt # Date 1526215505 -7200 # Node ID 8314bb913e148a9d215b09be3e890608d26a6127 # Parent 086e3c445c0aa4b97c394dc0f9c24995885d887a patch 8.0.1828: get no clue why :gui does not fork commit https://github.com/vim/vim/commit/e65fffd9b4f02539d8c2717b36a09d0e3250e220 Author: Bram Moolenaar Date: Sun May 13 14:40:15 2018 +0200 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. diff --git a/src/channel.c b/src/channel.c --- a/src/channel.c +++ b/src/channel.c @@ -5144,7 +5144,10 @@ job_any_running() for (job = first_job; job != NULL; job = job->jv_next) if (job_still_useful(job)) + { + ch_log(NULL, "GUI not forking because a job is running"); return TRUE; + } return FALSE; } #endif diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -762,6 +762,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 1828, +/**/ 1827, /**/ 1826,