diff options
Diffstat (limited to 'src/keyboard.h')
-rw-r--r-- | src/keyboard.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/keyboard.h b/src/keyboard.h index d4339d0529b..9f2be5b531b 100644 --- a/src/keyboard.h +++ b/src/keyboard.h @@ -202,7 +202,7 @@ extern int poll_suppress_count; sequence; this_command_key_count indicates how many elements actually mean something. */ extern Lisp_Object this_command_keys; -extern int this_command_key_count; +extern ptrdiff_t this_command_key_count; /* The frame in which the last input event occurred, or Qmacro if the last event came from a macro. We use this to determine when to @@ -500,7 +500,7 @@ extern void poll_for_input_1 (void); extern void show_help_echo (Lisp_Object, Lisp_Object, Lisp_Object, Lisp_Object); extern void gen_help_event (Lisp_Object, Lisp_Object, Lisp_Object, - Lisp_Object, EMACS_INT); + Lisp_Object, ptrdiff_t); extern void kbd_buffer_store_help_event (Lisp_Object, Lisp_Object); extern Lisp_Object menu_item_eval_property (Lisp_Object); extern int kbd_buffer_events_waiting (int); |