annotate src/macros.c @ 337:fbbf69b4e8a7 r21-0-66

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