Mercurial > emacs
changeset 9745:129ec4acc4ff
(read_avail_input): Fix Lisp_Object vs. int problem.
author | Karl Heuer <kwzh@gnu.org> |
---|---|
date | Sat, 29 Oct 1994 18:33:48 +0000 |
parents | ca139ac056a1 |
children | 49e984bf6689 |
files | src/keyboard.c |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/src/keyboard.c Sat Oct 29 12:43:53 1994 +0000 +++ b/src/keyboard.c Sat Oct 29 18:33:48 1994 +0000 @@ -3672,8 +3672,8 @@ 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