Mercurial > emacs
changeset 72134:594b286900a3
* keyboard.h: Include systime.h. Update read_char prototype.
author | Chong Yidong <cyd@stupidchicken.com> |
---|---|
date | Wed, 26 Jul 2006 18:14:16 +0000 |
parents | 995e57f32746 |
children | 2bd7c2f5456f |
files | src/keyboard.h |
diffstat | 1 files changed, 4 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- 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;