*** empty log message ***
[bpt/emacs.git] / src / macros.c
CommitLineData
5a7f5d07 1/* Keyboard macros.
2136b408 2 Copyright (C) 1985, 1986, 1993, 2000, 2001 Free Software Foundation, Inc.
5a7f5d07
JB
3
4This file is part of GNU Emacs.
5
6GNU Emacs is free software; you can redistribute it and/or modify
7it under the terms of the GNU General Public License as published by
502ddf23 8the Free Software Foundation; either version 2, or (at your option)
5a7f5d07
JB
9any later version.
10
11GNU Emacs is distributed in the hope that it will be useful,
12but WITHOUT ANY WARRANTY; without even the implied warranty of
13MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14GNU General Public License for more details.
15
16You should have received a copy of the GNU General Public License
17along with GNU Emacs; see the file COPYING. If not, write to
3b7ad313
EN
18the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19Boston, MA 02111-1307, USA. */
5a7f5d07
JB
20
21
18160b98 22#include <config.h>
5a7f5d07
JB
23#include "lisp.h"
24#include "macros.h"
25#include "commands.h"
26#include "buffer.h"
27#include "window.h"
077d751f 28#include "keyboard.h"
5a7f5d07 29
2136b408 30Lisp_Object Qexecute_kbd_macro, Qkbd_macro_termination_hook;
5a7f5d07 31
d4087e06
RS
32/* Kbd macro currently being executed (a string or vector). */
33
5a7f5d07 34Lisp_Object Vexecuting_macro;
d4087e06
RS
35
36/* Index of next character to fetch from that macro. */
37
5a7f5d07
JB
38int executing_macro_index;
39
d4087e06
RS
40/* Number of successful iterations so far
41 for innermost keyboard macro.
42 This is not bound at each level,
43 so after an error, it describes the innermost interrupted macro. */
44
45int executing_macro_iterations;
46
47/* This is the macro that was executing.
48 This is not bound at each level,
49 so after an error, it describes the innermost interrupted macro.
50 We use it only as a kind of flag, so no need to protect it. */
51
52Lisp_Object executing_macro;
53
b80d5655
RS
54extern Lisp_Object real_this_command;
55
5a7f5d07
JB
56Lisp_Object Fexecute_kbd_macro ();
57\f
58DEFUN ("start-kbd-macro", Fstart_kbd_macro, Sstart_kbd_macro, 1, 1, "P",
59 "Record subsequent keyboard input, defining a keyboard macro.\n\
60The commands are recorded even as they are executed.\n\
61Use \\[end-kbd-macro] to finish recording and make the macro available.\n\
62Use \\[name-last-kbd-macro] to give it a permanent name.\n\
63Non-nil arg (prefix arg) means append to last macro defined;\n\
64 This begins by re-executing that macro as if you typed it again.")
65 (append)
66 Lisp_Object append;
67{
cd8b5aa3 68 if (!NILP (current_kboard->defining_kbd_macro))
5a7f5d07
JB
69 error ("Already defining kbd macro");
70
cd8b5aa3 71 if (!current_kboard->kbd_macro_buffer)
8b97da83 72 {
cd8b5aa3
KH
73 current_kboard->kbd_macro_bufsize = 30;
74 current_kboard->kbd_macro_buffer
9e7c370a 75 = (Lisp_Object *)xmalloc (30 * sizeof (Lisp_Object));
8b97da83 76 }
5a7f5d07 77 update_mode_lines++;
265a9e55 78 if (NILP (append))
5a7f5d07 79 {
9e7c370a
KH
80 if (current_kboard->kbd_macro_bufsize > 200)
81 {
82 current_kboard->kbd_macro_bufsize = 30;
83 current_kboard->kbd_macro_buffer
96a60349
KH
84 = (Lisp_Object *)xrealloc (current_kboard->kbd_macro_buffer,
85 30 * sizeof (Lisp_Object));
9e7c370a 86 }
cd8b5aa3
KH
87 current_kboard->kbd_macro_ptr = current_kboard->kbd_macro_buffer;
88 current_kboard->kbd_macro_end = current_kboard->kbd_macro_buffer;
9e7c370a 89 message ("Defining kbd macro...");
5a7f5d07
JB
90 }
91 else
92 {
f84db7d5
RS
93 int i, len;
94
95 /* Check the type of last-kbd-macro in case Lisp code changed it. */
96 if (!STRINGP (current_kboard->Vlast_kbd_macro)
97 && !VECTORP (current_kboard->Vlast_kbd_macro))
98 current_kboard->Vlast_kbd_macro
99 = wrong_type_argument (Qarrayp, current_kboard->Vlast_kbd_macro);
100
101 len = XINT (Flength (current_kboard->Vlast_kbd_macro));
102
103 /* Copy last-kbd-macro into the buffer, in case the Lisp code
104 has put another macro there. */
105 if (current_kboard->kbd_macro_bufsize < len + 30)
106 {
107 current_kboard->kbd_macro_bufsize = len + 30;
108 current_kboard->kbd_macro_buffer
109 = (Lisp_Object *)xrealloc (current_kboard->kbd_macro_buffer,
110 (len + 30) * sizeof (Lisp_Object));
111 }
112 for (i = 0; i < len; i++)
113 current_kboard->kbd_macro_buffer[i]
114 = Faref (current_kboard->Vlast_kbd_macro, make_number (i));
115
116 current_kboard->kbd_macro_ptr = current_kboard->kbd_macro_buffer + len;
117 current_kboard->kbd_macro_end = current_kboard->kbd_macro_ptr;
118
119 /* Re-execute the macro we are appending to,
120 for consistency of behavior. */
cd8b5aa3 121 Fexecute_kbd_macro (current_kboard->Vlast_kbd_macro,
9e1ffae2 122 make_number (1));
f84db7d5
RS
123
124 message ("Appending to kbd macro...");
5a7f5d07 125 }
cd8b5aa3 126 current_kboard->defining_kbd_macro = Qt;
5a7f5d07
JB
127
128 return Qnil;
129}
130
131DEFUN ("end-kbd-macro", Fend_kbd_macro, Send_kbd_macro, 0, 1, "p",
132 "Finish defining a keyboard macro.\n\
133The definition was started by \\[start-kbd-macro].\n\
134The macro is now available for use via \\[call-last-kbd-macro],\n\
135or it can be given a name with \\[name-last-kbd-macro] and then invoked\n\
136under that name.\n\
137\n\
138With numeric arg, repeat macro now that many times,\n\
139counting the definition just completed as the first repetition.\n\
140An argument of zero means repeat until error.")
86a3ca5e
EN
141 (repeat)
142 Lisp_Object repeat;
5a7f5d07 143{
cd8b5aa3 144 if (NILP (current_kboard->defining_kbd_macro))
d86ad277 145 error ("Not defining kbd macro");
5a7f5d07 146
86a3ca5e
EN
147 if (NILP (repeat))
148 XSETFASTINT (repeat, 1);
5a7f5d07 149 else
86a3ca5e 150 CHECK_NUMBER (repeat, 0);
5a7f5d07 151
cd8b5aa3 152 if (!NILP (current_kboard->defining_kbd_macro))
5a7f5d07 153 {
cd8b5aa3 154 current_kboard->defining_kbd_macro = Qnil;
5a7f5d07 155 update_mode_lines++;
cd8b5aa3
KH
156 current_kboard->Vlast_kbd_macro
157 = make_event_array ((current_kboard->kbd_macro_end
158 - current_kboard->kbd_macro_buffer),
159 current_kboard->kbd_macro_buffer);
9e7c370a 160 message ("Keyboard macro defined");
5a7f5d07
JB
161 }
162
86a3ca5e
EN
163 if (XFASTINT (repeat) == 0)
164 Fexecute_kbd_macro (current_kboard->Vlast_kbd_macro, repeat);
5a7f5d07
JB
165 else
166 {
86a3ca5e
EN
167 XSETINT (repeat, XINT (repeat)-1);
168 if (XINT (repeat) > 0)
169 Fexecute_kbd_macro (current_kboard->Vlast_kbd_macro, repeat);
5a7f5d07
JB
170 }
171 return Qnil;
172}
173
174/* Store character c into kbd macro being defined */
175
c3fd8dd5 176void
5a7f5d07
JB
177store_kbd_macro_char (c)
178 Lisp_Object c;
179{
cd8b5aa3 180 if (!NILP (current_kboard->defining_kbd_macro))
5a7f5d07 181 {
cd8b5aa3
KH
182 if ((current_kboard->kbd_macro_ptr
183 - current_kboard->kbd_macro_buffer)
184 == current_kboard->kbd_macro_bufsize)
5a7f5d07 185 {
23751e25
GM
186 int offset = (current_kboard->kbd_macro_ptr
187 - current_kboard->kbd_macro_buffer);
cd8b5aa3 188 current_kboard->kbd_macro_bufsize *= 2;
23751e25
GM
189 current_kboard->kbd_macro_buffer
190 = (Lisp_Object *)xrealloc (current_kboard->kbd_macro_buffer,
191 (current_kboard->kbd_macro_bufsize
192 * sizeof (Lisp_Object)));
cd8b5aa3 193 current_kboard->kbd_macro_ptr
23751e25 194 = current_kboard->kbd_macro_buffer + offset;
cd8b5aa3 195 current_kboard->kbd_macro_end
23751e25
GM
196 = (current_kboard->kbd_macro_buffer
197 + current_kboard->kbd_macro_bufsize);
5a7f5d07 198 }
23751e25 199
cd8b5aa3 200 *current_kboard->kbd_macro_ptr++ = c;
5a7f5d07
JB
201 }
202}
203
204/* Declare that all chars stored so far in the kbd macro being defined
205 really belong to it. This is done in between editor commands. */
206
c3fd8dd5 207void
5a7f5d07
JB
208finalize_kbd_macro_chars ()
209{
cd8b5aa3 210 current_kboard->kbd_macro_end = current_kboard->kbd_macro_ptr;
5a7f5d07 211}
199afd29
RS
212
213DEFUN ("cancel-kbd-macro-events", Fcancel_kbd_macro_events,
214 Scancel_kbd_macro_events, 0, 0, 0,
215 "Cancel the events added to a keyboard macro for this command.")
216 ()
217{
218 current_kboard->kbd_macro_ptr = current_kboard->kbd_macro_end;
6bbd7a29 219 return Qnil;
199afd29 220}
2d5f65a9
KH
221
222DEFUN ("store-kbd-macro-event", Fstore_kbd_macro_event,
223 Sstore_kbd_macro_event, 1, 1, 0,
224 "Store EVENT into the keyboard macro being defined.")
225 (event)
226 Lisp_Object event;
227{
228 store_kbd_macro_char (event);
229 return Qnil;
230}
5a7f5d07
JB
231\f
232DEFUN ("call-last-kbd-macro", Fcall_last_kbd_macro, Scall_last_kbd_macro,
233 0, 1, "p",
234 "Call the last keyboard macro that you defined with \\[start-kbd-macro].\n\
235\n\
236A prefix argument serves as a repeat count. Zero means repeat until error.\n\
237\n\
238To make a macro permanent so you can call it even after\n\
239defining others, use \\[name-last-kbd-macro].")
240 (prefix)
241 Lisp_Object prefix;
242{
4315204e
RS
243 /* Don't interfere with recognition of the previous command
244 from before this macro started. */
14a18790 245 Vthis_command = current_kboard->Vlast_command;
80184dac
KH
246 /* C-x z after the macro should repeat the macro. */
247 real_this_command = current_kboard->Vlast_kbd_macro;
4315204e 248
cd8b5aa3 249 if (! NILP (current_kboard->defining_kbd_macro))
5a7f5d07 250 error ("Can't execute anonymous macro while defining one");
cd8b5aa3 251 else if (NILP (current_kboard->Vlast_kbd_macro))
5a7f5d07
JB
252 error ("No kbd macro has been defined");
253 else
cd8b5aa3 254 Fexecute_kbd_macro (current_kboard->Vlast_kbd_macro, prefix);
4315204e
RS
255
256 /* command_loop_1 sets this to nil before it returns;
257 get back the last command within the macro
258 so that it can be last, again, after we return. */
14a18790 259 Vthis_command = current_kboard->Vlast_command;
4315204e 260
5a7f5d07
JB
261 return Qnil;
262}
263
264/* Restore Vexecuting_macro and executing_macro_index - called when
265 the unwind-protect in Fexecute_kbd_macro gets invoked. */
d4087e06 266
5a7f5d07
JB
267static Lisp_Object
268pop_kbd_macro (info)
269 Lisp_Object info;
270{
271 Lisp_Object tem;
80184dac
KH
272 Vexecuting_macro = XCAR (info);
273 tem = XCDR (info);
274 executing_macro_index = XINT (XCAR (tem));
275 real_this_command = XCDR (tem);
2136b408 276 Frun_hooks (1, &Qkbd_macro_termination_hook);
5a7f5d07
JB
277 return Qnil;
278}
279
280DEFUN ("execute-kbd-macro", Fexecute_kbd_macro, Sexecute_kbd_macro, 1, 2, 0,
281 "Execute MACRO as string of editor command characters.\n\
282If MACRO is a symbol, its function definition is used.\n\
283COUNT is a repeat count, or nil for once, or 0 for infinite loop.")
86a3ca5e
EN
284 (macro, count)
285 Lisp_Object macro, count;
5a7f5d07
JB
286{
287 Lisp_Object final;
288 Lisp_Object tem;
52d9c145 289 int pdlcount = specpdl_ptr - specpdl;
5a7f5d07
JB
290 int repeat = 1;
291 struct gcpro gcpro1;
d4087e06 292 int success_count = 0;
5a7f5d07 293
4b7da890
KH
294 executing_macro_iterations = 0;
295
1c8c5693
EN
296 if (!NILP (count))
297 {
298 count = Fprefix_numeric_value (count);
299 repeat = XINT (count);
300 }
5a7f5d07 301
502ddf23 302 final = indirect_function (macro);
65346ae6 303 if (!STRINGP (final) && !VECTORP (final))
d86ad277 304 error ("Keyboard macros must be strings or vectors");
5a7f5d07 305
80184dac
KH
306 tem = Fcons (Vexecuting_macro,
307 Fcons (make_number (executing_macro_index),
308 real_this_command));
5a7f5d07
JB
309 record_unwind_protect (pop_kbd_macro, tem);
310
311 GCPRO1 (final);
312 do
313 {
314 Vexecuting_macro = final;
d4087e06 315 executing_macro = final;
5a7f5d07
JB
316 executing_macro_index = 0;
317
04609ce4 318 current_kboard->Vprefix_arg = Qnil;
5a7f5d07 319 command_loop_1 ();
e86f81cc 320
d4087e06
RS
321 executing_macro_iterations = ++success_count;
322
e86f81cc 323 QUIT;
5a7f5d07 324 }
65346ae6
KH
325 while (--repeat
326 && (STRINGP (Vexecuting_macro) || VECTORP (Vexecuting_macro)));
5a7f5d07 327
d4087e06
RS
328 executing_macro = Qnil;
329
b80d5655
RS
330 real_this_command = Vexecuting_macro;
331
5a7f5d07 332 UNGCPRO;
52d9c145 333 return unbind_to (pdlcount, Qnil);
5a7f5d07
JB
334}
335\f
c3fd8dd5 336void
5a7f5d07
JB
337init_macros ()
338{
5a7f5d07 339 Vexecuting_macro = Qnil;
1ab778be 340 executing_macro = Qnil;
5a7f5d07
JB
341}
342
c3fd8dd5 343void
5a7f5d07
JB
344syms_of_macros ()
345{
5a7f5d07
JB
346 Qexecute_kbd_macro = intern ("execute-kbd-macro");
347 staticpro (&Qexecute_kbd_macro);
2136b408
GM
348 Qkbd_macro_termination_hook = intern ("kbd-macro-termination-hook");
349 staticpro (&Qkbd_macro_termination_hook);
5a7f5d07
JB
350
351 defsubr (&Sstart_kbd_macro);
352 defsubr (&Send_kbd_macro);
353 defsubr (&Scall_last_kbd_macro);
354 defsubr (&Sexecute_kbd_macro);
199afd29 355 defsubr (&Scancel_kbd_macro_events);
2d5f65a9 356 defsubr (&Sstore_kbd_macro_event);
5a7f5d07 357
cd8b5aa3 358 DEFVAR_KBOARD ("defining-kbd-macro", defining_kbd_macro,
5a7f5d07
JB
359 "Non-nil while a keyboard macro is being defined. Don't set this!");
360
361 DEFVAR_LISP ("executing-macro", &Vexecuting_macro,
9e1ffae2 362 "Currently executing keyboard macro (string or vector); nil if none executing.");
5a7f5d07
JB
363
364 DEFVAR_LISP_NOPRO ("executing-kbd-macro", &Vexecuting_macro,
9e1ffae2 365 "Currently executing keyboard macro (string or vector); nil if none executing.");
5a7f5d07 366
cd8b5aa3 367 DEFVAR_KBOARD ("last-kbd-macro", Vlast_kbd_macro,
9e1ffae2 368 "Last kbd macro defined, as a string or vector; nil if none defined.");
5a7f5d07
JB
369}
370
c3fd8dd5 371void
5a7f5d07
JB
372keys_of_macros ()
373{
374 initial_define_key (control_x_map, ('e'), "call-last-kbd-macro");
375 initial_define_key (control_x_map, ('('), "start-kbd-macro");
376 initial_define_key (control_x_map, (')'), "end-kbd-macro");
377}