comparison src/channel.c @ 13915:8314bb913e14 v8.0.1828

patch 8.0.1828: get no clue why :gui does not fork commit https://github.com/vim/vim/commit/e65fffd9b4f02539d8c2717b36a09d0e3250e220 Author: Bram Moolenaar <Bram@vim.org> 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.
author Christian Brabandt <cb@256bit.org>
date Sun, 13 May 2018 14:45:05 +0200
parents 3e5c24ecc313
children dc67449d648c
comparison
equal deleted inserted replaced
13914:086e3c445c0a 13915:8314bb913e14
5142 { 5142 {
5143 job_T *job; 5143 job_T *job;
5144 5144
5145 for (job = first_job; job != NULL; job = job->jv_next) 5145 for (job = first_job; job != NULL; job = job->jv_next)
5146 if (job_still_useful(job)) 5146 if (job_still_useful(job))
5147 {
5148 ch_log(NULL, "GUI not forking because a job is running");
5147 return TRUE; 5149 return TRUE;
5150 }
5148 return FALSE; 5151 return FALSE;
5149 } 5152 }
5150 #endif 5153 #endif
5151 5154
5152 #if !defined(USE_ARGV) || defined(PROTO) 5155 #if !defined(USE_ARGV) || defined(PROTO)