summaryrefslogtreecommitdiff
path: root/src/keyboard.h
diff options
context:
space:
mode:
authorJim Blandy <jimb@redhat.com>1992-10-11 06:42:47 +0000
committerJim Blandy <jimb@redhat.com>1992-10-11 06:42:47 +0000
commit6084b314a58f8279db2b77ecd0b3f8d07570054c (patch)
tree368b09cac9f13e1dccea2a922c880da3024d4cc9 /src/keyboard.h
parentcd21b83986f5d0f68ba8228f0aeca901677be8be (diff)
downloademacs-6084b314a58f8279db2b77ecd0b3f8d07570054c.tar.gz
emacs-6084b314a58f8279db2b77ecd0b3f8d07570054c.tar.bz2
emacs-6084b314a58f8279db2b77ecd0b3f8d07570054c.zip
* keyboard.h (Qswitch_frame): Declare this extern.
* keyboard.h (this_command_keys, this_command_key_count): Added external declarations.
Diffstat (limited to 'src/keyboard.h')
-rw-r--r--src/keyboard.h5
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;