comparison src/keyboard.h @ 1387:774897fea33a

* keyboard.h (Qswitch_frame): Declare this extern. * keyboard.h (this_command_keys, this_command_key_count): Added external declarations.
author Jim Blandy <jimb@redhat.com>
date Sun, 11 Oct 1992 06:42:47 +0000
parents ddbcabc6dcc9
children 8c27b145955a
comparison
equal deleted inserted replaced
1386:5845050f9d5c 1387:774897fea33a
28 28
29 /* Keymap mapping ASCII function key sequences onto their preferred forms. 29 /* Keymap mapping ASCII function key sequences onto their preferred forms.
30 Initialized by the terminal-specific lisp files. */ 30 Initialized by the terminal-specific lisp files. */
31 extern Lisp_Object Vfunction_key_map; 31 extern Lisp_Object Vfunction_key_map;
32 32
33 /* Buffer holding the key that invoked the current command. */
34 extern Lisp_Object *this_command_keys;
35 extern int this_command_key_count; /* Size in use. */
36
33 37
34 /* Macros for dealing with lispy events. */ 38 /* Macros for dealing with lispy events. */
35 39
36 /* True iff EVENT has data fields describing it (i.e. a mouse click). */ 40 /* True iff EVENT has data fields describing it (i.e. a mouse click). */
37 #define EVENT_HAS_PARAMETERS(event) \ 41 #define EVENT_HAS_PARAMETERS(event) \
57 /* Some of the event heads. */ 61 /* Some of the event heads. */
58 extern Lisp_Object Qvscrollbar_part, Qvslider_part; 62 extern Lisp_Object Qvscrollbar_part, Qvslider_part;
59 extern Lisp_Object Qvthumbup_part, Qvthumbdown_part; 63 extern Lisp_Object Qvthumbup_part, Qvthumbdown_part;
60 extern Lisp_Object Qhscrollbar_part, Qhslider_part; 64 extern Lisp_Object Qhscrollbar_part, Qhslider_part;
61 extern Lisp_Object Qhthumbleft_part, Qhthumbright_part; 65 extern Lisp_Object Qhthumbleft_part, Qhthumbright_part;
66 extern Lisp_Object Qswitch_frame;
62 67
63 /* Properties on event heads. */ 68 /* Properties on event heads. */
64 extern Lisp_Object Qevent_kind, Qevent_symbol_elements; 69 extern Lisp_Object Qevent_kind, Qevent_symbol_elements;
65 70
66 /* Getting an unmodified version of an event head. */ 71 /* Getting an unmodified version of an event head. */