From e65fffd9b4f02539d8c2717b36a09d0e3250e220 Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Sun, 13 May 2018 14:40:15 +0200 Subject: [PATCH] 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. --- src/channel.c | 3 +++ src/version.c | 2 ++ 2 files changed, 5 insertions(+) diff --git a/src/channel.c b/src/channel.c index 9023808d6..504d6b609 100644 --- 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 index 1589ed921..3271b6421 100644 --- a/src/version.c +++ b/src/version.c @@ -761,6 +761,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 1828, /**/ 1827, /**/ -- 2.40.0