aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/termhooks.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/termhooks.h b/src/termhooks.h
index 2d806c4a287..da41266d984 100644
--- a/src/termhooks.h
+++ b/src/termhooks.h
@@ -1,6 +1,6 @@
1/* Hooks by which low level terminal operations 1/* Hooks by which low level terminal operations
2 can be made to call other routines. 2 can be made to call other routines.
3 Copyright (C) 1985, 1986, 1993, 1994 Free Software Foundation, Inc. 3 Copyright (C) 1985,86,93,94,2003 Free Software Foundation, Inc.
4 4
5This file is part of GNU Emacs. 5This file is part of GNU Emacs.
6 6
@@ -371,6 +371,8 @@ struct input_event
371 Lisp_Object arg; 371 Lisp_Object arg;
372}; 372};
373 373
374#define EVENT_INIT(event) bzero (&(event), sizeof (struct input_event))
375
374/* Called to read input events. */ 376/* Called to read input events. */
375extern int (*read_socket_hook) P_ ((int, struct input_event *, int, int)); 377extern int (*read_socket_hook) P_ ((int, struct input_event *, int, int));
376 378