From: Jason Rumney Date: Tue, 18 May 2004 20:26:26 +0000 (+0000) Subject: Fix last change for non USE_LISP_UNION_TYPE case. X-Git-Tag: ttn-vms-21-2-B4~6151 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=6dd6baa5df0cb0370b713e40e2143487a6a8ab38;p=emacs.git Fix last change for non USE_LISP_UNION_TYPE case. --- 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, (WPARAM) XINT (XCAR (item)), (LPARAM) item.i)) #else if (PostThreadMessage (dwWindowsThreadId, WM_EMACS_UNREGISTER_HOT_KEY, - (WPARAM) XINT (XCAR (item)), (LPARAM) item.i)) + (WPARAM) XINT (XCAR (item)), (LPARAM) item)) #endif { @@ -8170,7 +8170,7 @@ is set to off if the low bit of NEW-STATE is zero, otherwise on. */) (WPARAM) vk_code, (LPARAM) new_state.i)) #else if (PostThreadMessage (dwWindowsThreadId, WM_EMACS_TOGGLE_LOCK_KEY, - (WPARAM) vk_code, (LPARAM) new_state.i)) + (WPARAM) vk_code, (LPARAM) new_state)) #endif { MSG msg;