]> code.delx.au - gnu-emacs/commitdiff
(read_avail_input): Fix Lisp_Object vs. int problem.
authorKarl Heuer <kwzh@gnu.org>
Sat, 29 Oct 1994 18:33:48 +0000 (18:33 +0000)
committerKarl Heuer <kwzh@gnu.org>
Sat, 29 Oct 1994 18:33:48 +0000 (18:33 +0000)
src/keyboard.c

index 35e48548c6a3dcb057fe9c658cc73aaad317c668..b82e4e3dc0edcae3c7b20f5c327b5c2b35ff0988 100644 (file)
@@ -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