changeset 8176:477c1d855698 v7.4.1381

commit https://github.com/vim/vim/commit/eab089d22f172ddd2d33367a998e68c2f1c6c989 Author: Bram Moolenaar <Bram@vim.org> Date: Sun Feb 21 19:32:02 2016 +0100 patch 7.4.1381 Problem: Exit value not available on MS-Windows. Solution: Set the exit value.
author Christian Brabandt <cb@256bit.org>
date Sun, 21 Feb 2016 19:45:04 +0100
parents 76ce2d323c0f
children 0e3185eea369
files src/os_win32.c src/structs.h src/version.c
diffstat 3 files changed, 4 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/os_win32.c
+++ b/src/os_win32.c
@@ -5127,6 +5127,7 @@ mch_job_status(job_T *job)
 	    || dwExitCode != STILL_ACTIVE)
     {
 	job->jv_status = JOB_ENDED;
+	job->jv_exitval = (int)dwExitCode;
 	return "dead";
     }
     return "run";
--- a/src/structs.h
+++ b/src/structs.h
@@ -1257,7 +1257,6 @@ struct jobvar_S
     job_T	*jv_prev;
 #ifdef UNIX
     pid_t	jv_pid;
-    int		jv_exitval;
 #endif
 #ifdef WIN32
     PROCESS_INFORMATION	jv_proc_info;
@@ -1265,6 +1264,7 @@ struct jobvar_S
 #endif
     jobstatus_T	jv_status;
     char_u	*jv_stoponexit; /* allocated */
+    int		jv_exitval;
     char_u	*jv_exit_cb;	/* allocated */
 
     int		jv_refcount;	/* reference count */
--- a/src/version.c
+++ b/src/version.c
@@ -748,6 +748,8 @@ static char *(features[]) =
 static int included_patches[] =
 {   /* Add new patch number below this line */
 /**/
+    1381,
+/**/
     1380,
 /**/
     1379,