comparison src/keyboard.h @ 1440:8c27b145955a

* keyboard.h (this_command_keys): Extern declaration changed. Doc fix.
author Jim Blandy <jimb@redhat.com>
date Mon, 19 Oct 1992 18:39:37 +0000
parents 774897fea33a
children 02bd6870de86
comparison
equal deleted inserted replaced
1439:b3b2d1181d3a 1440:8c27b145955a
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. */ 33 /* Vector holding the key sequence that invoked the current command.
34 extern Lisp_Object *this_command_keys; 34 It is reused for each command, and it may be longer than the current
35 extern int this_command_key_count; /* Size in use. */ 35 sequence; this_command_key_count indicates how many elements
36 actually mean something. */
37 extern Lisp_Object this_command_keys;
38 extern int this_command_key_count;
36 39
37 40
38 /* Macros for dealing with lispy events. */ 41 /* Macros for dealing with lispy events. */
39 42
40 /* True iff EVENT has data fields describing it (i.e. a mouse click). */ 43 /* True iff EVENT has data fields describing it (i.e. a mouse click). */