From f3e59d5e1aeab604997c5064503ac4cd0c3aa03f Mon Sep 17 00:00:00 2001 From: Karl Heuer Date: Sat, 29 Oct 1994 18:33:48 +0000 Subject: [PATCH] (read_avail_input): Fix Lisp_Object vs. int problem. --- src/keyboard.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/keyboard.c b/src/keyboard.c index 35e48548c6a..b82e4e3dc0e 100644 --- a/src/keyboard.c +++ b/src/keyboard.c @@ -3672,8 +3672,8 @@ read_avail_input (expected) buf[i].modifiers = meta_modifier; if (meta_key != 2) cbuf[i] &= ~0x80; - - XSETINT (buf[i].code, cbuf[i]); + + buf[i].code = cbuf[i]; #ifdef MULTI_FRAME XSETFRAME (buf[i].frame_or_window, selected_frame); #else -- 2.39.5