# HG changeset patch # User Bram Moolenaar # Date 1388924966 -3600 # Node ID 1b09d6792520cbe1c94c20f6c833ad57316e75bb # Parent 2f856c7c1d43693687a9a49b03937574556641c7 updated for version 7.4.132 Problem: Win32: flags and inherit_handles arguments mixed up. Solution: Swap the argument. (cs86661) diff --git a/src/os_win32.c b/src/os_win32.c --- a/src/os_win32.c +++ b/src/os_win32.c @@ -3831,8 +3831,8 @@ mch_set_winsize_now(void) static BOOL vim_create_process( char *cmd, + BOOL inherit_handles, DWORD flags, - BOOL inherit_handles, STARTUPINFO *si, PROCESS_INFORMATION *pi) { diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -739,6 +739,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 132, +/**/ 131, /**/ 130,