Skip to content

Commit a7c6024

Browse files
committed
updated for version 7.4.132
Problem: Win32: flags and inherit_handles arguments mixed up. Solution: Swap the argument. (cs86661)
1 parent 0133188 commit a7c6024

2 files changed

Lines changed: 3 additions & 1 deletion

File tree

src/os_win32.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3831,8 +3831,8 @@ mch_set_winsize_now(void)
38313831
static BOOL
38323832
vim_create_process(
38333833
char *cmd,
3834-
DWORD flags,
38353834
BOOL inherit_handles,
3835+
DWORD flags,
38363836
STARTUPINFO *si,
38373837
PROCESS_INFORMATION *pi)
38383838
{

src/version.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -738,6 +738,8 @@ static char *(features[]) =
738738

739739
static int included_patches[] =
740740
{ /* Add new patch number below this line */
741+
/**/
742+
132,
741743
/**/
742744
131,
743745
/**/

0 commit comments

Comments
 (0)