diff src/structs.h @ 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 f2286ff0c102
children b717dae2f26d
line wrap: on
line diff
--- 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 */