diff options
| -rw-r--r-- | src/keyboard.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/keyboard.h b/src/keyboard.h index c0c941a0646..96ac7d2e856 100644 --- a/src/keyboard.h +++ b/src/keyboard.h | |||
| @@ -19,6 +19,8 @@ along with GNU Emacs; see the file COPYING. If not, write to | |||
| 19 | the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | 19 | the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
| 20 | Boston, MA 02110-1301, USA. */ | 20 | Boston, MA 02110-1301, USA. */ |
| 21 | 21 | ||
| 22 | #include "systime.h" /* for EMACS_TIME */ | ||
| 23 | |||
| 22 | /* Length of echobuf field in each KBOARD. */ | 24 | /* Length of echobuf field in each KBOARD. */ |
| 23 | 25 | ||
| 24 | /* Each KBOARD represents one logical input stream from which Emacs gets input. | 26 | /* Each KBOARD represents one logical input stream from which Emacs gets input. |
| @@ -297,7 +299,8 @@ struct input_event; | |||
| 297 | 299 | ||
| 298 | extern Lisp_Object parse_modifiers P_ ((Lisp_Object)); | 300 | extern Lisp_Object parse_modifiers P_ ((Lisp_Object)); |
| 299 | extern Lisp_Object reorder_modifiers P_ ((Lisp_Object)); | 301 | extern Lisp_Object reorder_modifiers P_ ((Lisp_Object)); |
| 300 | extern Lisp_Object read_char P_ ((int, int, Lisp_Object *, Lisp_Object, int *)); | 302 | extern Lisp_Object read_char P_ ((int, int, Lisp_Object *, Lisp_Object, |
| 303 | int *, EMACS_TIME *)); | ||
| 301 | /* User-supplied string to translate input characters through. */ | 304 | /* User-supplied string to translate input characters through. */ |
| 302 | extern Lisp_Object Vkeyboard_translate_table; | 305 | extern Lisp_Object Vkeyboard_translate_table; |
| 303 | 306 | ||