Skip to content

Commit 1b81fe8

Browse files
committed
updated for version 7.4.125
Problem: Win32: Dealing with messages may not work for multi-byte chars. Solution: Use pDispatchMessage(). (Ken Takata)
1 parent 962c192 commit 1b81fe8

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

src/os_win32.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4282,10 +4282,10 @@ mch_system_piped(char *cmd, int options)
42824282
{
42834283
MSG msg;
42844284

4285-
if (PeekMessage(&msg, (HWND)NULL, 0, 0, PM_REMOVE))
4285+
if (pPeekMessage(&msg, (HWND)NULL, 0, 0, PM_REMOVE))
42864286
{
42874287
TranslateMessage(&msg);
4288-
DispatchMessage(&msg);
4288+
pDispatchMessage(&msg);
42894289
}
42904290

42914291
/* write pipe information in the window */

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+
125,
741743
/**/
742744
124,
743745
/**/

0 commit comments

Comments
 (0)