Mercurial > emacs
changeset 22968:edcf24874ef5
(Fcall_last_kbd_macro): this_command renamed to Vthis_command.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Sun, 09 Aug 1998 21:55:58 +0000 |
parents | 63801d5488f4 |
children | 1e29148859d4 |
files | src/macros.c |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/src/macros.c Sun Aug 09 21:55:27 1998 +0000 +++ b/src/macros.c Sun Aug 09 21:55:58 1998 +0000 @@ -208,7 +208,7 @@ { /* 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 @@ /* 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; }