mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-01-02 10:11:05 -08:00
Ignore modifiers when processing WM_IME_CHAR messages
* src/w32fns.c (w32_wnd_proc): Ignore modifiers when processing WM_IME_CHAR messages.
This commit is contained in:
parent
f641ef1a07
commit
32b97bb9e0
1 changed files with 1 additions and 1 deletions
|
|
@ -4576,7 +4576,7 @@ w32_wnd_proc (HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam)
|
|||
int size, i;
|
||||
W32Msg wmsg;
|
||||
HIMC context = get_ime_context_fn (hwnd);
|
||||
wmsg.dwModifiers = w32_get_key_modifiers (wParam, lParam);
|
||||
wmsg.dwModifiers = 0;
|
||||
/* Get buffer size. */
|
||||
size = get_composition_string_fn (context, GCS_RESULTSTR, NULL, 0);
|
||||
buffer = alloca (size);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue