changeset 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 086e3c445c0a
children 6789408b611e
files src/channel.c src/version.c
diffstat 2 files changed, 5 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- 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
--- 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,