# HG changeset patch # User Christian Brabandt # Date 1456080304 -3600 # Node ID 477c1d8556985c3c92915ffc3a1199372cf4262e # Parent 76ce2d323c0fc62316b7c65abdbd92244721ffd2 commit https://github.com/vim/vim/commit/eab089d22f172ddd2d33367a998e68c2f1c6c989 Author: Bram Moolenaar 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. diff --git a/src/os_win32.c b/src/os_win32.c --- 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"; diff --git a/src/structs.h b/src/structs.h --- 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 */ diff --git a/src/version.c b/src/version.c --- 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,