# HG changeset patch # User Chong Yidong # Date 1153937656 0 # Node ID 594b286900a334329a4c1663d353fee91c38a20f # Parent 995e57f32746fe0747124de2a46e64eee4c2de2b * keyboard.h: Include systime.h. Update read_char prototype. diff -r 995e57f32746 -r 594b286900a3 src/keyboard.h --- a/src/keyboard.h Wed Jul 26 18:14:05 2006 +0000 +++ b/src/keyboard.h Wed Jul 26 18:14:16 2006 +0000 @@ -19,6 +19,8 @@ the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ +#include "systime.h" /* for EMACS_TIME */ + /* Length of echobuf field in each KBOARD. */ /* Each KBOARD represents one logical input stream from which Emacs gets input. @@ -297,7 +299,8 @@ extern Lisp_Object parse_modifiers P_ ((Lisp_Object)); extern Lisp_Object reorder_modifiers P_ ((Lisp_Object)); -extern Lisp_Object read_char P_ ((int, int, Lisp_Object *, Lisp_Object, int *)); +extern Lisp_Object read_char P_ ((int, int, Lisp_Object *, Lisp_Object, + int *, EMACS_TIME *)); /* User-supplied string to translate input characters through. */ extern Lisp_Object Vkeyboard_translate_table;