Update for last_command_char rename.

This commit is contained in:
Glenn Morris 2009-01-09 03:29:39 +00:00
parent d293848d9d
commit a31e445edb
2 changed files with 5 additions and 5 deletions

View file

@ -326,11 +326,11 @@ Whichever character you type to run this command is inserted. */)
CHECK_NUMBER (n);
/* Barf if the key that invoked this was not a character. */
if (!CHARACTERP (last_command_char))
if (!CHARACTERP (last_command_event))
bitch_at_user ();
{
int character = translate_char (Vtranslation_table_for_input,
XINT (last_command_char));
XINT (last_command_event));
if (XINT (n) >= 2 && NILP (current_buffer->overwrite_mode))
{
int modified_char = character;

View file

@ -45,10 +45,10 @@ extern Lisp_Object Vminibuffer_local_must_match_map;
and require a match */
extern Lisp_Object Vminibuffer_local_filename_must_match_map;
/* Last character of last key sequence. */
extern Lisp_Object last_command_char;
/* Last input event read as a command. */
extern Lisp_Object last_command_event;
/* Last input character read as a command, not counting menus
/* Last input event read as a command, not counting menus
reached by the mouse. */
extern Lisp_Object last_nonmenu_event;