From: Richard M. Stallman Date: Thu, 23 Dec 1993 00:54:23 +0000 (+0000) Subject: (struct input_event): `code' is now an int. X-Git-Tag: emacs-19.34~10625 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=653dfe64900e2aa511c2ce666cff1015b2ebe4ab;p=emacs.git (struct input_event): `code' is now an int. --- diff --git a/src/termhooks.h b/src/termhooks.h index 06770c348eb..d9abb3e72ce 100644 --- a/src/termhooks.h +++ b/src/termhooks.h @@ -259,7 +259,10 @@ struct input_event { /* What kind of event was this? */ enum event_kind kind; - Lisp_Object code; + /* For an ascii_keystroke, this is the character. + For a non_ascii_keystroke, this is the keysym code. + For a mouse event, this is the button number. + int code; enum scroll_bar_part part; /* This field is copied into a vector while the event is in the queue,