diff options
Diffstat (limited to 'src/keyboard.h')
-rw-r--r-- | src/keyboard.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/keyboard.h b/src/keyboard.h index 06deab0c365..215ddf09163 100644 --- a/src/keyboard.h +++ b/src/keyboard.h @@ -30,6 +30,10 @@ extern int poll_suppress_count; Initialized by the terminal-specific lisp files. */ extern Lisp_Object Vfunction_key_map; +/* Buffer holding the key that invoked the current command. */ +extern Lisp_Object *this_command_keys; +extern int this_command_key_count; /* Size in use. */ + /* Macros for dealing with lispy events. */ @@ -59,6 +63,7 @@ extern Lisp_Object Qvscrollbar_part, Qvslider_part; extern Lisp_Object Qvthumbup_part, Qvthumbdown_part; extern Lisp_Object Qhscrollbar_part, Qhslider_part; extern Lisp_Object Qhthumbleft_part, Qhthumbright_part; +extern Lisp_Object Qswitch_frame; /* Properties on event heads. */ extern Lisp_Object Qevent_kind, Qevent_symbol_elements; |