aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJason Rumney2004-05-18 20:26:26 +0000
committerJason Rumney2004-05-18 20:26:26 +0000
commit6dd6baa5df0cb0370b713e40e2143487a6a8ab38 (patch)
treec966f8ac982f9826807f7e0fc84c5761c08088a1 /src
parentf3c4ec7415591e0b3f563dcafb8aa41491ba5cca (diff)
downloademacs-6dd6baa5df0cb0370b713e40e2143487a6a8ab38.tar.gz
emacs-6dd6baa5df0cb0370b713e40e2143487a6a8ab38.zip
Fix last change for non USE_LISP_UNION_TYPE case.
Diffstat (limited to 'src')
-rw-r--r--src/w32fns.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/w32fns.c b/src/w32fns.c
index f56ecc35cc6..c0c66a9591e 100644
--- a/src/w32fns.c
+++ b/src/w32fns.c
@@ -8090,7 +8090,7 @@ DEFUN ("w32-unregister-hot-key", Fw32_unregister_hot_key,
8090 (WPARAM) XINT (XCAR (item)), (LPARAM) item.i)) 8090 (WPARAM) XINT (XCAR (item)), (LPARAM) item.i))
8091#else 8091#else
8092 if (PostThreadMessage (dwWindowsThreadId, WM_EMACS_UNREGISTER_HOT_KEY, 8092 if (PostThreadMessage (dwWindowsThreadId, WM_EMACS_UNREGISTER_HOT_KEY,
8093 (WPARAM) XINT (XCAR (item)), (LPARAM) item.i)) 8093 (WPARAM) XINT (XCAR (item)), (LPARAM) item))
8094 8094
8095#endif 8095#endif
8096 { 8096 {
@@ -8170,7 +8170,7 @@ is set to off if the low bit of NEW-STATE is zero, otherwise on. */)
8170 (WPARAM) vk_code, (LPARAM) new_state.i)) 8170 (WPARAM) vk_code, (LPARAM) new_state.i))
8171#else 8171#else
8172 if (PostThreadMessage (dwWindowsThreadId, WM_EMACS_TOGGLE_LOCK_KEY, 8172 if (PostThreadMessage (dwWindowsThreadId, WM_EMACS_TOGGLE_LOCK_KEY,
8173 (WPARAM) vk_code, (LPARAM) new_state.i)) 8173 (WPARAM) vk_code, (LPARAM) new_state))
8174#endif 8174#endif
8175 { 8175 {
8176 MSG msg; 8176 MSG msg;