mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-02-17 10:27:41 +00:00
(Fcall_last_kbd_macro): this_command renamed to Vthis_command.
This commit is contained in:
parent
e717e6d75d
commit
14a18790a4
1 changed files with 2 additions and 2 deletions
|
|
@ -208,7 +208,7 @@ defining others, use \\[name-last-kbd-macro].")
|
|||
{
|
||||
/* 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");
|
||||
|
|
@ -220,7 +220,7 @@ defining others, use \\[name-last-kbd-macro].")
|
|||
/* 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;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue