# HG changeset patch # User Jim Blandy # Date 719519977 0 # Node ID 8c27b145955aabc4791dba8b24d5212a516304b4 # Parent b3b2d1181d3aef6be836eef03d29dccb16bbcf76 * keyboard.h (this_command_keys): Extern declaration changed. Doc fix. diff -r b3b2d1181d3a -r 8c27b145955a src/keyboard.h --- a/src/keyboard.h Mon Oct 19 18:38:58 1992 +0000 +++ b/src/keyboard.h Mon Oct 19 18:39:37 1992 +0000 @@ -30,9 +30,12 @@ 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. */ +/* Vector holding the key sequence that invoked the current command. + It is reused for each command, and it may be longer than the current + sequence; this_command_key_count indicates how many elements + actually mean something. */ +extern Lisp_Object this_command_keys; +extern int this_command_key_count; /* Macros for dealing with lispy events. */