diff options
author | Richard M. Stallman <rms@gnu.org> | 1998-08-09 21:55:58 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1998-08-09 21:55:58 +0000 |
commit | 14a18790a42e9dbbc35324c72cb87daea22a6be5 (patch) | |
tree | e99be73ceeedfef81bf9362deac13ccfac1cd7ac /src/macros.c | |
parent | e717e6d75de34853f8adcb6d42050e81cb4fe883 (diff) | |
download | emacs-14a18790a42e9dbbc35324c72cb87daea22a6be5.tar.gz |
(Fcall_last_kbd_macro): this_command renamed to Vthis_command.
Diffstat (limited to 'src/macros.c')
-rw-r--r-- | src/macros.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/macros.c b/src/macros.c index ad429f1f5e6..64cf5e80c44 100644 --- a/src/macros.c +++ b/src/macros.c @@ -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; } |