diff src/macros.c @ 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 ef9dd93e3077
children 1dd05eb0443d
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;
 }