{
/* Don't interfere with recognition of the previous command
from before this macro started. */
- this_command = current_kboard->Vlast_command;
+ Vthis_command = current_kboard->Vlast_command;
if (! NILP (current_kboard->defining_kbd_macro))
error ("Can't execute anonymous macro while defining one");
/* command_loop_1 sets this to nil before it returns;
get back the last command within the macro
so that it can be last, again, after we return. */
- this_command = current_kboard->Vlast_command;
+ Vthis_command = current_kboard->Vlast_command;
return Qnil;
}