commit | e65fffd9b4f02539d8c2717b36a09d0e3250e220 | [log] [tgz] |
---|---|---|
author | Bram Moolenaar <Bram@vim.org> | Sun May 13 14:40:15 2018 +0200 |
committer | Bram Moolenaar <Bram@vim.org> | Sun May 13 14:40:15 2018 +0200 |
tree | 03a0a559561e869e349eb4dc3c492e1a43cac2c2 | |
parent | b2ed680ba760ec5eb2c626363ecbda4dd2528794 [diff] [blame] |
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 index 9023808..504d6b6 100644 --- a/src/channel.c +++ b/src/channel.c
@@ -5144,7 +5144,10 @@ 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