aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorIlya Zakharevich2015-08-17 20:08:45 +0300
committerEli Zaretskii2015-08-17 20:08:45 +0300
commit94cf37c8de3bc14cdadfe84dc8c405a477adbe3e (patch)
treecc9141fd6d26ef1c4d928ca67aacbc0a4e9e966b
parentc7a64af460b9c64107cebc9a2852efd0e61291d9 (diff)
downloademacs-94cf37c8de3bc14cdadfe84dc8c405a477adbe3e.tar.gz
emacs-94cf37c8de3bc14cdadfe84dc8c405a477adbe3e.zip
Fix a bug with LWindow key remapping on MS-Windows
* src/w32fns.c (deliver_wm_chars): Fix a typo. (Bug#21276)
-rw-r--r--src/w32fns.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/w32fns.c b/src/w32fns.c
index 4532fb9f469..4b29e64bd58 100644
--- a/src/w32fns.c
+++ b/src/w32fns.c
@@ -3131,7 +3131,7 @@ deliver_wm_chars (int do_translate, HWND hwnd, UINT msg, UINT wParam,
3131 } 3131 }
3132 else if (wmsg.dwModifiers & (alt_modifier | meta_modifier) 3132 else if (wmsg.dwModifiers & (alt_modifier | meta_modifier)
3133 || (console_modifiers 3133 || (console_modifiers
3134 & (RIGHT_WIN_PRESSED | RIGHT_WIN_PRESSED 3134 & (LEFT_WIN_PRESSED | RIGHT_WIN_PRESSED
3135 | APPS_PRESSED | SCROLLLOCK_ON))) 3135 | APPS_PRESSED | SCROLLLOCK_ON)))
3136 { 3136 {
3137 /* Pure Alt (or combination of Alt, Win, APPS, scrolllock. */ 3137 /* Pure Alt (or combination of Alt, Win, APPS, scrolllock. */