aboutsummaryrefslogtreecommitdiffstats
path: root/src/macros.c
diff options
context:
space:
mode:
authorRichard M. Stallman1998-08-09 21:55:58 +0000
committerRichard M. Stallman1998-08-09 21:55:58 +0000
commit14a18790a42e9dbbc35324c72cb87daea22a6be5 (patch)
treee99be73ceeedfef81bf9362deac13ccfac1cd7ac /src/macros.c
parente717e6d75de34853f8adcb6d42050e81cb4fe883 (diff)
downloademacs-14a18790a42e9dbbc35324c72cb87daea22a6be5.tar.gz
emacs-14a18790a42e9dbbc35324c72cb87daea22a6be5.zip
(Fcall_last_kbd_macro): this_command renamed to Vthis_command.
Diffstat (limited to 'src/macros.c')
-rw-r--r--src/macros.c4
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].")
208{ 208{
209 /* Don't interfere with recognition of the previous command 209 /* Don't interfere with recognition of the previous command
210 from before this macro started. */ 210 from before this macro started. */
211 this_command = current_kboard->Vlast_command; 211 Vthis_command = current_kboard->Vlast_command;
212 212
213 if (! NILP (current_kboard->defining_kbd_macro)) 213 if (! NILP (current_kboard->defining_kbd_macro))
214 error ("Can't execute anonymous macro while defining one"); 214 error ("Can't execute anonymous macro while defining one");
@@ -220,7 +220,7 @@ defining others, use \\[name-last-kbd-macro].")
220 /* command_loop_1 sets this to nil before it returns; 220 /* command_loop_1 sets this to nil before it returns;
221 get back the last command within the macro 221 get back the last command within the macro
222 so that it can be last, again, after we return. */ 222 so that it can be last, again, after we return. */
223 this_command = current_kboard->Vlast_command; 223 Vthis_command = current_kboard->Vlast_command;
224 224
225 return Qnil; 225 return Qnil;
226} 226}