2 Copyright (C) 1985, 1986, 1993 Free Software Foundation, Inc.
4 This file is part of GNU Emacs.
6 GNU Emacs is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2, or (at your option)
11 GNU Emacs is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with GNU Emacs; see the file COPYING. If not, write to
18 the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
28 Lisp_Object Qexecute_kbd_macro
;
30 Lisp_Object Vlast_kbd_macro
;
32 Lisp_Object Vexecuting_macro
;
33 int executing_macro_index
;
35 Lisp_Object
Fexecute_kbd_macro ();
37 DEFUN ("start-kbd-macro", Fstart_kbd_macro
, Sstart_kbd_macro
, 1, 1, "P",
38 "Record subsequent keyboard input, defining a keyboard macro.\n\
39 The commands are recorded even as they are executed.\n\
40 Use \\[end-kbd-macro] to finish recording and make the macro available.\n\
41 Use \\[name-last-kbd-macro] to give it a permanent name.\n\
42 Non-nil arg (prefix arg) means append to last macro defined;\n\
43 This begins by re-executing that macro as if you typed it again.")
47 if (!NILP (current_perdisplay
->defining_kbd_macro
))
48 error ("Already defining kbd macro");
50 if (!current_perdisplay
->kbd_macro_buffer
)
52 current_perdisplay
->kbd_macro_bufsize
= 30;
53 current_perdisplay
->kbd_macro_buffer
54 = (Lisp_Object
*)malloc (30 * sizeof (Lisp_Object
));
59 current_perdisplay
->kbd_macro_ptr
= current_perdisplay
->kbd_macro_buffer
;
60 current_perdisplay
->kbd_macro_end
= current_perdisplay
->kbd_macro_buffer
;
61 message("Defining kbd macro...");
65 message("Appending to kbd macro...");
66 current_perdisplay
->kbd_macro_ptr
= current_perdisplay
->kbd_macro_end
;
67 Fexecute_kbd_macro (Vlast_kbd_macro
, make_number (1));
69 current_perdisplay
->defining_kbd_macro
= Qt
;
74 DEFUN ("end-kbd-macro", Fend_kbd_macro
, Send_kbd_macro
, 0, 1, "p",
75 "Finish defining a keyboard macro.\n\
76 The definition was started by \\[start-kbd-macro].\n\
77 The macro is now available for use via \\[call-last-kbd-macro],\n\
78 or it can be given a name with \\[name-last-kbd-macro] and then invoked\n\
81 With numeric arg, repeat macro now that many times,\n\
82 counting the definition just completed as the first repetition.\n\
83 An argument of zero means repeat until error.")
87 if (NILP (current_perdisplay
->defining_kbd_macro
))
88 error ("Not defining kbd macro.");
93 CHECK_NUMBER (arg
, 0);
95 if (!NILP (current_perdisplay
->defining_kbd_macro
))
97 current_perdisplay
->defining_kbd_macro
= Qnil
;
100 = make_event_array ((current_perdisplay
->kbd_macro_end
101 - current_perdisplay
->kbd_macro_buffer
),
102 current_perdisplay
->kbd_macro_buffer
);
103 message("Keyboard macro defined");
106 if (XFASTINT (arg
) == 0)
107 Fexecute_kbd_macro (Vlast_kbd_macro
, arg
);
110 XSETINT (arg
, XINT (arg
)-1);
112 Fexecute_kbd_macro (Vlast_kbd_macro
, arg
);
117 /* Store character c into kbd macro being defined */
119 store_kbd_macro_char (c
)
122 if (!NILP (current_perdisplay
->defining_kbd_macro
))
124 if ((current_perdisplay
->kbd_macro_ptr
125 - current_perdisplay
->kbd_macro_buffer
)
126 == current_perdisplay
->kbd_macro_bufsize
)
128 register Lisp_Object
*new;
129 current_perdisplay
->kbd_macro_bufsize
*= 2;
130 new = (Lisp_Object
*)xrealloc (current_perdisplay
->kbd_macro_buffer
,
131 (current_perdisplay
->kbd_macro_bufsize
132 * sizeof (Lisp_Object
)));
133 current_perdisplay
->kbd_macro_ptr
134 += new - current_perdisplay
->kbd_macro_buffer
;
135 current_perdisplay
->kbd_macro_end
136 += new - current_perdisplay
->kbd_macro_buffer
;
137 current_perdisplay
->kbd_macro_buffer
= new;
139 *current_perdisplay
->kbd_macro_ptr
++ = c
;
143 /* Declare that all chars stored so far in the kbd macro being defined
144 really belong to it. This is done in between editor commands. */
146 finalize_kbd_macro_chars ()
148 current_perdisplay
->kbd_macro_end
= current_perdisplay
->kbd_macro_ptr
;
151 DEFUN ("call-last-kbd-macro", Fcall_last_kbd_macro
, Scall_last_kbd_macro
,
153 "Call the last keyboard macro that you defined with \\[start-kbd-macro].\n\
155 A prefix argument serves as a repeat count. Zero means repeat until error.\n\
157 To make a macro permanent so you can call it even after\n\
158 defining others, use \\[name-last-kbd-macro].")
162 if (! NILP (current_perdisplay
->defining_kbd_macro
))
163 error ("Can't execute anonymous macro while defining one");
164 else if (NILP (Vlast_kbd_macro
))
165 error ("No kbd macro has been defined");
167 Fexecute_kbd_macro (Vlast_kbd_macro
, prefix
);
171 /* Restore Vexecuting_macro and executing_macro_index - called when
172 the unwind-protect in Fexecute_kbd_macro gets invoked. */
178 Vexecuting_macro
= Fcar (info
);
180 executing_macro_index
= XINT (tem
);
184 DEFUN ("execute-kbd-macro", Fexecute_kbd_macro
, Sexecute_kbd_macro
, 1, 2, 0,
185 "Execute MACRO as string of editor command characters.\n\
186 If MACRO is a symbol, its function definition is used.\n\
187 COUNT is a repeat count, or nil for once, or 0 for infinite loop.")
189 Lisp_Object macro
, prefixarg
;
193 int count
= specpdl_ptr
- specpdl
;
197 if (!NILP (prefixarg
))
198 prefixarg
= Fprefix_numeric_value (prefixarg
),
199 repeat
= XINT (prefixarg
);
201 final
= indirect_function (macro
);
202 if (!STRINGP (final
) && !VECTORP (final
))
203 error ("Keyboard macros must be strings or vectors.");
205 XSETFASTINT (tem
, executing_macro_index
);
206 tem
= Fcons (Vexecuting_macro
, tem
);
207 record_unwind_protect (pop_kbd_macro
, tem
);
212 Vexecuting_macro
= final
;
213 executing_macro_index
= 0;
215 if (!current_perdisplay
)
223 && (STRINGP (Vexecuting_macro
) || VECTORP (Vexecuting_macro
)));
226 return unbind_to (count
, Qnil
);
231 Vlast_kbd_macro
= Qnil
;
232 Vexecuting_macro
= Qnil
;
237 Qexecute_kbd_macro
= intern ("execute-kbd-macro");
238 staticpro (&Qexecute_kbd_macro
);
240 defsubr (&Sstart_kbd_macro
);
241 defsubr (&Send_kbd_macro
);
242 defsubr (&Scall_last_kbd_macro
);
243 defsubr (&Sexecute_kbd_macro
);
245 DEFVAR_DISPLAY ("defining-kbd-macro", defining_kbd_macro
,
246 "Non-nil while a keyboard macro is being defined. Don't set this!");
248 DEFVAR_LISP ("executing-macro", &Vexecuting_macro
,
249 "Currently executing keyboard macro (a string); nil if none executing.");
251 DEFVAR_LISP_NOPRO ("executing-kbd-macro", &Vexecuting_macro
,
252 "Currently executing keyboard macro (a string); nil if none executing.");
254 DEFVAR_LISP ("last-kbd-macro", &Vlast_kbd_macro
,
255 "Last kbd macro defined, as a string; nil if none defined.");
260 initial_define_key (control_x_map
, ('e'), "call-last-kbd-macro");
261 initial_define_key (control_x_map
, ('('), "start-kbd-macro");
262 initial_define_key (control_x_map
, (')'), "end-kbd-macro");