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