aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJim Blandy1992-10-19 18:39:37 +0000
committerJim Blandy1992-10-19 18:39:37 +0000
commit49fcd3debd7d1728e3c931cef9a86725950bfff9 (patch)
tree851fe7ab8afcd1a682815439ef116d4a88390f29 /src
parent6569cc8d18b12b197ed27dc9f934c85a0ed035ec (diff)
downloademacs-49fcd3debd7d1728e3c931cef9a86725950bfff9.tar.gz
emacs-49fcd3debd7d1728e3c931cef9a86725950bfff9.zip
* keyboard.h (this_command_keys): Extern declaration changed. Doc fix.
Diffstat (limited to 'src')
-rw-r--r--src/keyboard.h9
1 files changed, 6 insertions, 3 deletions
diff --git a/src/keyboard.h b/src/keyboard.h
index 215ddf09163..cf92fb33c13 100644
--- a/src/keyboard.h
+++ b/src/keyboard.h
@@ -30,9 +30,12 @@ extern int poll_suppress_count;
30 Initialized by the terminal-specific lisp files. */ 30 Initialized by the terminal-specific lisp files. */
31extern Lisp_Object Vfunction_key_map; 31extern 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.
34extern Lisp_Object *this_command_keys; 34 It is reused for each command, and it may be longer than the current
35extern int this_command_key_count; /* Size in use. */ 35 sequence; this_command_key_count indicates how many elements
36 actually mean something. */
37extern Lisp_Object this_command_keys;
38extern int this_command_key_count;
36 39
37 40
38/* Macros for dealing with lispy events. */ 41/* Macros for dealing with lispy events. */