diff src/os_win32.c @ 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 db5c79d93eee
children 4f0677020a43
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";