0
|
1 /* Keyboard macros.
|
|
2 Copyright (C) 1985, 1986, 1992, 1993, 1994 Free Software Foundation, Inc.
|
|
3
|
|
4 This file is part of XEmacs.
|
|
5
|
|
6 XEmacs is free software; you can redistribute it and/or modify it
|
|
7 under the terms of the GNU General Public License as published by the
|
|
8 Free Software Foundation; either version 2, or (at your option) any
|
|
9 later version.
|
|
10
|
|
11 XEmacs is distributed in the hope that it will be useful, but WITHOUT
|
|
12 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
13 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
|
14 for more details.
|
|
15
|
|
16 You should have received a copy of the GNU General Public License
|
|
17 along with XEmacs; see the file COPYING. If not, write to
|
|
18 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
19 Boston, MA 02111-1307, USA. */
|
|
20
|
|
21 /* Synched up with: FSF 19.30. */
|
|
22
|
|
23 /* A keyboard macro is a string of ASCII characters, or a vector of event
|
|
24 objects. Only key-press, mouse-press, mouse-release, and menu-selection
|
|
25 events ever get into a keyboard macro.
|
|
26
|
|
27 When interactively defining a keyboard macro, it will always be a vector
|
|
28 of events; strings may be executed for backwards compatibility.
|
|
29 */
|
|
30
|
|
31 #include <config.h>
|
|
32 #include "lisp.h"
|
|
33 #include "events.h"
|
|
34 #include "macros.h"
|
|
35 #include "commands.h"
|
|
36 #include "console.h"
|
|
37 #include "buffer.h"
|
|
38 #include "window.h"
|
|
39 #include "frame.h"
|
|
40 #include "keymap.h"
|
|
41
|
|
42 Lisp_Object Qexecute_kbd_macro;
|
|
43
|
|
44 /* The current macro and our position in it. When executing nested kbd
|
|
45 macros, previous values for these are wound through the execution stack
|
|
46 with unwind-protect.
|
|
47 */
|
|
48 Lisp_Object Vexecuting_macro;
|
|
49 int executing_macro_index;
|
|
50
|
|
51
|
20
|
52 DEFUN ("start-kbd-macro", Fstart_kbd_macro, 1, 1, "P", /*
|
0
|
53 Record subsequent keyboard and menu input, defining a keyboard macro.
|
|
54 The commands are recorded even as they are executed.
|
|
55 Use \\[end-kbd-macro] to finish recording and make the macro available.
|
|
56 Use \\[name-last-kbd-macro] to give it a permanent name.
|
|
57 Non-nil arg (prefix arg) means append to last macro defined;
|
|
58 This begins by re-executing that macro as if you typed it again.
|
20
|
59 */
|
|
60 (append))
|
0
|
61 {
|
|
62 /* This function can GC */
|
|
63 struct console *con = XCONSOLE (Vselected_console);
|
|
64 if (!NILP (con->defining_kbd_macro))
|
|
65 error ("Already defining kbd macro");
|
|
66
|
|
67 if (NILP (con->kbd_macro_builder))
|
|
68 con->kbd_macro_builder = make_vector (30, Qnil);
|
|
69
|
|
70 zmacs_region_stays = 1; /* set this before calling Fexecute_kbd_macro()
|
|
71 so that functions there can override */
|
|
72 MARK_MODELINE_CHANGED;
|
|
73 if (NILP (append))
|
|
74 {
|
|
75 con->kbd_macro_ptr = 0;
|
|
76 con->kbd_macro_end = 0;
|
|
77 message ("Defining kbd macro...");
|
|
78 }
|
|
79 else
|
|
80 {
|
|
81 message ("Appending to kbd macro...");
|
|
82 con->kbd_macro_ptr = con->kbd_macro_end;
|
|
83 Fexecute_kbd_macro (con->last_kbd_macro, make_int (1));
|
|
84 }
|
|
85 con->defining_kbd_macro = Qt;
|
|
86
|
|
87 return Qnil;
|
|
88 }
|
|
89
|
20
|
90 DEFUN ("end-kbd-macro", Fend_kbd_macro, 0, 1, "P", /*
|
0
|
91 Finish defining a keyboard macro.
|
|
92 The definition was started by \\[start-kbd-macro].
|
|
93 The macro is now available for use via \\[call-last-kbd-macro],
|
|
94 or it can be given a name with \\[name-last-kbd-macro] and then invoked
|
|
95 under that name.
|
|
96
|
|
97 With numeric arg, repeat macro now that many times,
|
|
98 counting the definition just completed as the first repetition.
|
|
99 An argument of zero means repeat until error.
|
20
|
100 */
|
|
101 (arg))
|
0
|
102 {
|
|
103 /* This function can GC */
|
|
104 struct console *con = XCONSOLE (Vselected_console);
|
|
105 int repeat;
|
|
106
|
|
107 if (NILP (con->defining_kbd_macro))
|
|
108 error ("Not defining kbd macro.");
|
|
109
|
|
110 if (NILP (arg))
|
|
111 repeat = -1;
|
|
112 else
|
|
113 repeat = XINT (Fprefix_numeric_value (arg));
|
|
114
|
|
115 if (!NILP (con->defining_kbd_macro))
|
|
116 {
|
|
117 int i;
|
|
118 int size = con->kbd_macro_end;
|
|
119 con->last_kbd_macro = make_vector (size, Qnil);
|
|
120 for (i = 0; i < con->kbd_macro_end; i++)
|
|
121 vector_data (XVECTOR (con->last_kbd_macro)) [i] =
|
|
122 vector_data (XVECTOR (con->kbd_macro_builder)) [i];
|
|
123 con->defining_kbd_macro = Qnil;
|
|
124 MARK_MODELINE_CHANGED;
|
|
125 message ("Keyboard macro defined");
|
|
126 }
|
|
127
|
|
128 zmacs_region_stays = 1; /* set this before calling Fexecute_kbd_macro()
|
|
129 so that functions there can override */
|
|
130 if (repeat < 0)
|
|
131 return Qnil;
|
|
132 else if (repeat == 0)
|
|
133 return Fexecute_kbd_macro (con->last_kbd_macro, Qzero);
|
|
134 else
|
|
135 return Fexecute_kbd_macro (con->last_kbd_macro,
|
|
136 make_int (repeat - 1));
|
|
137 }
|
|
138
|
|
139
|
|
140 /* Store event into kbd macro being defined
|
|
141 */
|
|
142 void
|
|
143 store_kbd_macro_event (Lisp_Object event)
|
|
144 {
|
|
145 struct console *con = event_console_or_selected (event);
|
|
146
|
|
147 if (con->kbd_macro_ptr == XVECTOR (con->kbd_macro_builder)->size)
|
|
148 {
|
|
149 int i;
|
|
150 int old_size = XVECTOR (con->kbd_macro_builder)->size;
|
|
151 int new_size = old_size * 2;
|
|
152 Lisp_Object new = make_vector (new_size, Qnil);
|
|
153 for (i = 0; i < old_size; i++)
|
|
154 vector_data (XVECTOR (new)) [i] =
|
|
155 vector_data (XVECTOR (con->kbd_macro_builder)) [i];
|
|
156 con->kbd_macro_builder = new;
|
|
157 }
|
|
158 vector_data (XVECTOR (con->kbd_macro_builder)) [con->kbd_macro_ptr++] =
|
|
159 Fcopy_event (event, Qnil);
|
|
160 }
|
|
161
|
|
162 /* Extract the next kbd-macro element into the given event.
|
|
163 If we're done, throws to the catch in Fexecute_kbd_macro().
|
|
164 */
|
|
165 void
|
|
166 pop_kbd_macro_event (Lisp_Object event)
|
|
167 {
|
|
168 if (NILP (Vexecuting_macro)) abort ();
|
|
169
|
|
170 if (STRINGP (Vexecuting_macro) || VECTORP (Vexecuting_macro))
|
|
171 {
|
|
172 if (executing_macro_index < XINT (Flength (Vexecuting_macro)))
|
|
173 {
|
|
174 nth_of_key_sequence_as_event (Vexecuting_macro,
|
|
175 executing_macro_index++,
|
|
176 event);
|
|
177 return;
|
|
178 }
|
|
179 }
|
|
180 else if (!EQ (Vexecuting_macro, Qt)) /* Some things replace the macro
|
|
181 with Qt to force an early exit. */
|
|
182 error ("junk in executing-macro");
|
|
183
|
|
184 Fthrow (Qexecute_kbd_macro, Qt);
|
|
185 }
|
|
186
|
|
187
|
|
188 /* Declare that all chars stored so far in the kbd macro being defined
|
|
189 really belong to it. This is done in between editor commands. */
|
|
190
|
|
191 void
|
|
192 finalize_kbd_macro_chars (struct console *con)
|
|
193 {
|
|
194 con->kbd_macro_end = con->kbd_macro_ptr;
|
|
195 }
|
|
196
|
20
|
197 DEFUN ("cancel-kbd-macro-events", Fcancel_kbd_macro_events, 0, 0, 0, /*
|
0
|
198 Cancel the events added to a keyboard macro for this command.
|
20
|
199 */
|
|
200 ())
|
0
|
201 {
|
|
202 struct console *con = XCONSOLE (Vselected_console);
|
|
203
|
|
204 con->kbd_macro_ptr = con->kbd_macro_end;
|
|
205
|
|
206 return Qnil;
|
|
207 }
|
|
208
|
20
|
209 DEFUN ("call-last-kbd-macro", Fcall_last_kbd_macro, 0, 1, "p", /*
|
0
|
210 Call the last keyboard macro that you defined with \\[start-kbd-macro].
|
|
211
|
|
212 A prefix argument serves as a repeat count. Zero means repeat until error.
|
|
213
|
|
214 To make a macro permanent so you can call it even after
|
|
215 defining others, use \\[name-last-kbd-macro].
|
20
|
216 */
|
|
217 (prefix))
|
0
|
218 {
|
|
219 /* This function can GC */
|
|
220 struct console *con = XCONSOLE (Vselected_console);
|
|
221
|
|
222 if (!NILP (con->defining_kbd_macro))
|
|
223 error ("Can't execute anonymous macro while defining one");
|
|
224 else if (NILP (con->last_kbd_macro))
|
|
225 error ("No kbd macro has been defined");
|
|
226 else
|
|
227 Fexecute_kbd_macro (con->last_kbd_macro, prefix);
|
|
228 return Qnil;
|
|
229 }
|
|
230
|
|
231 /* Restore Vexecuting_macro and executing_macro_index - called when
|
|
232 the unwind-protect in Fexecute_kbd_macro gets invoked. */
|
|
233 static Lisp_Object
|
|
234 pop_kbd_macro (Lisp_Object info)
|
|
235 {
|
|
236 Lisp_Object tem;
|
|
237 Vexecuting_macro = Fcar (info);
|
|
238 tem = Fcdr (info);
|
|
239 executing_macro_index = XINT (tem);
|
|
240 return Qnil;
|
|
241 }
|
|
242
|
20
|
243 DEFUN ("execute-kbd-macro", Fexecute_kbd_macro, 1, 2, 0, /*
|
0
|
244 Execute MACRO as string of editor command characters.
|
|
245 If MACRO is a symbol, its function definition is used.
|
|
246 COUNT is a repeat count, or nil for once, or 0 for infinite loop.
|
20
|
247 */
|
|
248 (macro, prefixarg))
|
0
|
249 {
|
|
250 /* This function can GC */
|
|
251 Lisp_Object final;
|
|
252 Lisp_Object tem;
|
|
253 int speccount = specpdl_depth ();
|
|
254 int repeat = 1;
|
|
255 struct gcpro gcpro1;
|
|
256 struct console *con = XCONSOLE (Vselected_console);
|
|
257
|
|
258 if (!NILP (prefixarg))
|
|
259 {
|
|
260 prefixarg = Fprefix_numeric_value (prefixarg);
|
|
261 repeat = XINT (prefixarg);
|
|
262 }
|
|
263
|
|
264 final = indirect_function (macro, 1);
|
|
265 if (!STRINGP (final) && !VECTORP (final))
|
|
266 error ("Keyboard macros must be strings or vectors.");
|
|
267
|
|
268 tem = Fcons (Vexecuting_macro, make_int (executing_macro_index));
|
|
269 record_unwind_protect (pop_kbd_macro, tem);
|
|
270
|
|
271 GCPRO1 (final);
|
|
272 do
|
|
273 {
|
|
274 Vexecuting_macro = final;
|
|
275 executing_macro_index = 0;
|
|
276 con->prefix_arg = Qnil;
|
|
277 internal_catch (Qexecute_kbd_macro, call_command_loop,
|
|
278 Qnil, 0);
|
|
279 }
|
|
280 while (--repeat != 0
|
|
281 && (STRINGP (Vexecuting_macro) ||
|
|
282 VECTORP (Vexecuting_macro)));
|
|
283
|
|
284 UNGCPRO;
|
|
285 return unbind_to (speccount, Qnil);
|
|
286 }
|
|
287
|
|
288
|
|
289 void
|
|
290 syms_of_macros (void)
|
|
291 {
|
20
|
292 DEFSUBR (Fstart_kbd_macro);
|
|
293 DEFSUBR (Fend_kbd_macro);
|
|
294 DEFSUBR (Fcall_last_kbd_macro);
|
|
295 DEFSUBR (Fexecute_kbd_macro);
|
|
296 DEFSUBR (Fcancel_kbd_macro_events);
|
0
|
297 defsymbol (&Qexecute_kbd_macro, "execute-kbd-macro");
|
|
298 }
|
|
299
|
|
300 void
|
|
301 vars_of_macros (void)
|
|
302 {
|
|
303 DEFVAR_LISP ("executing-macro", &Vexecuting_macro /*
|
|
304 Currently executing keyboard macro (a vector of events or string);
|
|
305 nil if none executing.
|
|
306 */ );
|
|
307
|
|
308 DEFVAR_LISP ("executing-kbd-macro", &Vexecuting_macro /*
|
|
309 Currently executing keyboard macro (a vector of events or string);
|
|
310 nil if none executing.
|
|
311 */ );
|
|
312 }
|
|
313
|
|
314 void
|
|
315 init_macros (void)
|
|
316 {
|
|
317 Vexecuting_macro = Qnil;
|
|
318 }
|
|
319
|