Skip to content

Commit f28d871

Browse files
committed
patch 7.4.1694
Problem: Win32 gvim doesn't work with "dvorakj" input method. Solution: Wait for QS_ALLINPUT instead of QS_ALLEVENTS. (Yukihiro Nakadaira)
1 parent 8e77bad commit f28d871

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

src/gui_w32.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2218,7 +2218,7 @@ gui_mch_wait_for_chars(int wtime)
22182218
parse_queued_messages();
22192219

22202220
if (pPeekMessage(&msg, NULL, 0, 0, PM_NOREMOVE)
2221-
|| MsgWaitForMultipleObjects(0, NULL, FALSE, 100, QS_ALLEVENTS)
2221+
|| MsgWaitForMultipleObjects(0, NULL, FALSE, 100, QS_ALLINPUT)
22222222
!= WAIT_TIMEOUT)
22232223
break;
22242224
}

src/version.c

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

749749
static int included_patches[] =
750750
{ /* Add new patch number below this line */
751+
/**/
752+
1694,
751753
/**/
752754
1693,
753755
/**/

0 commit comments

Comments
 (0)