Mercurial > emacs
annotate src/macros.c @ 14248:a66d4c3e8b1f
(x_make_frame_visible): Explicitly make the frame
the selected frame.
author | Geoff Voelker <voelker@cs.washington.edu> |
---|---|
date | Sun, 21 Jan 1996 00:57:52 +0000 |
parents | ee40177f6c68 |
children | 621f53083d60 |
rev | line source |
---|---|
246 | 1 /* Keyboard macros. |
2961 | 2 Copyright (C) 1985, 1986, 1993 Free Software Foundation, Inc. |
246 | 3 |
4 This file is part of GNU Emacs. | |
5 | |
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 | |
647 | 8 the Free Software Foundation; either version 2, or (at your option) |
246 | 9 any later version. |
10 | |
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. | |
15 | |
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 | |
14186
ee40177f6c68
Update FSF's address in the preamble.
Erik Naggum <erik@naggum.no>
parents:
14100
diff
changeset
|
18 the Free Software Foundation, Inc., 59 Temple Place - Suite 330, |
ee40177f6c68
Update FSF's address in the preamble.
Erik Naggum <erik@naggum.no>
parents:
14100
diff
changeset
|
19 Boston, MA 02111-1307, USA. */ |
246 | 20 |
21 | |
4696
1fc792473491
Include <config.h> instead of "config.h".
Roland McGrath <roland@gnu.org>
parents:
2961
diff
changeset
|
22 #include <config.h> |
246 | 23 #include "lisp.h" |
24 #include "macros.h" | |
25 #include "commands.h" | |
26 #include "buffer.h" | |
27 #include "window.h" | |
11341 | 28 #include "keyboard.h" |
246 | 29 |
30 Lisp_Object Qexecute_kbd_macro; | |
31 | |
32 Lisp_Object Vexecuting_macro; | |
33 int executing_macro_index; | |
34 | |
35 Lisp_Object Fexecute_kbd_macro (); | |
36 | |
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.") | |
44 (append) | |
45 Lisp_Object append; | |
46 { | |
11009 | 47 if (!NILP (current_kboard->defining_kbd_macro)) |
246 | 48 error ("Already defining kbd macro"); |
49 | |
11009 | 50 if (!current_kboard->kbd_macro_buffer) |
10910
b0edc245c9b7
(defining_kbd_macro): Delete; now part of perdisplay. All uses changed.
Karl Heuer <kwzh@gnu.org>
parents:
10856
diff
changeset
|
51 { |
11009 | 52 current_kboard->kbd_macro_bufsize = 30; |
53 current_kboard->kbd_macro_buffer | |
10910
b0edc245c9b7
(defining_kbd_macro): Delete; now part of perdisplay. All uses changed.
Karl Heuer <kwzh@gnu.org>
parents:
10856
diff
changeset
|
54 = (Lisp_Object *)malloc (30 * sizeof (Lisp_Object)); |
b0edc245c9b7
(defining_kbd_macro): Delete; now part of perdisplay. All uses changed.
Karl Heuer <kwzh@gnu.org>
parents:
10856
diff
changeset
|
55 } |
246 | 56 update_mode_lines++; |
485 | 57 if (NILP (append)) |
246 | 58 { |
11009 | 59 current_kboard->kbd_macro_ptr = current_kboard->kbd_macro_buffer; |
60 current_kboard->kbd_macro_end = current_kboard->kbd_macro_buffer; | |
246 | 61 message("Defining kbd macro..."); |
62 } | |
63 else | |
64 { | |
65 message("Appending to kbd macro..."); | |
11009 | 66 current_kboard->kbd_macro_ptr = current_kboard->kbd_macro_end; |
67 Fexecute_kbd_macro (current_kboard->Vlast_kbd_macro, | |
10935
73b02c08f17d
(Fstart_kbd_macro): Access Vlast_kbd_macro via perdisplay.
Karl Heuer <kwzh@gnu.org>
parents:
10910
diff
changeset
|
68 make_number (1)); |
246 | 69 } |
11009 | 70 current_kboard->defining_kbd_macro = Qt; |
246 | 71 |
72 return Qnil; | |
73 } | |
74 | |
75 DEFUN ("end-kbd-macro", Fend_kbd_macro, Send_kbd_macro, 0, 1, "p", | |
76 "Finish defining a keyboard macro.\n\ | |
77 The definition was started by \\[start-kbd-macro].\n\ | |
78 The macro is now available for use via \\[call-last-kbd-macro],\n\ | |
79 or it can be given a name with \\[name-last-kbd-macro] and then invoked\n\ | |
80 under that name.\n\ | |
81 \n\ | |
82 With numeric arg, repeat macro now that many times,\n\ | |
83 counting the definition just completed as the first repetition.\n\ | |
84 An argument of zero means repeat until error.") | |
14081
addc50fc3981
(Fend_kbd_macro, Fexecute_kbd_macro): Harmonize arguments with
Erik Naggum <erik@naggum.no>
parents:
13773
diff
changeset
|
85 (repeat) |
addc50fc3981
(Fend_kbd_macro, Fexecute_kbd_macro): Harmonize arguments with
Erik Naggum <erik@naggum.no>
parents:
13773
diff
changeset
|
86 Lisp_Object repeat; |
246 | 87 { |
11009 | 88 if (NILP (current_kboard->defining_kbd_macro)) |
89 error ("Not defining kbd macro."); | |
246 | 90 |
14081
addc50fc3981
(Fend_kbd_macro, Fexecute_kbd_macro): Harmonize arguments with
Erik Naggum <erik@naggum.no>
parents:
13773
diff
changeset
|
91 if (NILP (repeat)) |
addc50fc3981
(Fend_kbd_macro, Fexecute_kbd_macro): Harmonize arguments with
Erik Naggum <erik@naggum.no>
parents:
13773
diff
changeset
|
92 XSETFASTINT (repeat, 1); |
246 | 93 else |
14081
addc50fc3981
(Fend_kbd_macro, Fexecute_kbd_macro): Harmonize arguments with
Erik Naggum <erik@naggum.no>
parents:
13773
diff
changeset
|
94 CHECK_NUMBER (repeat, 0); |
246 | 95 |
11009 | 96 if (!NILP (current_kboard->defining_kbd_macro)) |
246 | 97 { |
11009 | 98 current_kboard->defining_kbd_macro = Qnil; |
246 | 99 update_mode_lines++; |
11009 | 100 current_kboard->Vlast_kbd_macro |
101 = make_event_array ((current_kboard->kbd_macro_end | |
102 - current_kboard->kbd_macro_buffer), | |
103 current_kboard->kbd_macro_buffer); | |
246 | 104 message("Keyboard macro defined"); |
105 } | |
106 | |
14081
addc50fc3981
(Fend_kbd_macro, Fexecute_kbd_macro): Harmonize arguments with
Erik Naggum <erik@naggum.no>
parents:
13773
diff
changeset
|
107 if (XFASTINT (repeat) == 0) |
addc50fc3981
(Fend_kbd_macro, Fexecute_kbd_macro): Harmonize arguments with
Erik Naggum <erik@naggum.no>
parents:
13773
diff
changeset
|
108 Fexecute_kbd_macro (current_kboard->Vlast_kbd_macro, repeat); |
246 | 109 else |
110 { | |
14081
addc50fc3981
(Fend_kbd_macro, Fexecute_kbd_macro): Harmonize arguments with
Erik Naggum <erik@naggum.no>
parents:
13773
diff
changeset
|
111 XSETINT (repeat, XINT (repeat)-1); |
addc50fc3981
(Fend_kbd_macro, Fexecute_kbd_macro): Harmonize arguments with
Erik Naggum <erik@naggum.no>
parents:
13773
diff
changeset
|
112 if (XINT (repeat) > 0) |
addc50fc3981
(Fend_kbd_macro, Fexecute_kbd_macro): Harmonize arguments with
Erik Naggum <erik@naggum.no>
parents:
13773
diff
changeset
|
113 Fexecute_kbd_macro (current_kboard->Vlast_kbd_macro, repeat); |
246 | 114 } |
115 return Qnil; | |
116 } | |
117 | |
118 /* Store character c into kbd macro being defined */ | |
119 | |
120 store_kbd_macro_char (c) | |
121 Lisp_Object c; | |
122 { | |
11009 | 123 if (!NILP (current_kboard->defining_kbd_macro)) |
246 | 124 { |
11009 | 125 if ((current_kboard->kbd_macro_ptr |
126 - current_kboard->kbd_macro_buffer) | |
127 == current_kboard->kbd_macro_bufsize) | |
246 | 128 { |
10910
b0edc245c9b7
(defining_kbd_macro): Delete; now part of perdisplay. All uses changed.
Karl Heuer <kwzh@gnu.org>
parents:
10856
diff
changeset
|
129 register Lisp_Object *new; |
11009 | 130 current_kboard->kbd_macro_bufsize *= 2; |
131 new = (Lisp_Object *)xrealloc (current_kboard->kbd_macro_buffer, | |
132 (current_kboard->kbd_macro_bufsize | |
10910
b0edc245c9b7
(defining_kbd_macro): Delete; now part of perdisplay. All uses changed.
Karl Heuer <kwzh@gnu.org>
parents:
10856
diff
changeset
|
133 * sizeof (Lisp_Object))); |
11009 | 134 current_kboard->kbd_macro_ptr |
135 += new - current_kboard->kbd_macro_buffer; | |
136 current_kboard->kbd_macro_end | |
137 += new - current_kboard->kbd_macro_buffer; | |
138 current_kboard->kbd_macro_buffer = new; | |
246 | 139 } |
11009 | 140 *current_kboard->kbd_macro_ptr++ = c; |
246 | 141 } |
142 } | |
143 | |
144 /* Declare that all chars stored so far in the kbd macro being defined | |
145 really belong to it. This is done in between editor commands. */ | |
146 | |
147 finalize_kbd_macro_chars () | |
148 { | |
11009 | 149 current_kboard->kbd_macro_end = current_kboard->kbd_macro_ptr; |
246 | 150 } |
12845
9ee2045cda62
(Fcancel_kbd_macro_events): New function.
Richard M. Stallman <rms@gnu.org>
parents:
12119
diff
changeset
|
151 |
9ee2045cda62
(Fcancel_kbd_macro_events): New function.
Richard M. Stallman <rms@gnu.org>
parents:
12119
diff
changeset
|
152 DEFUN ("cancel-kbd-macro-events", Fcancel_kbd_macro_events, |
9ee2045cda62
(Fcancel_kbd_macro_events): New function.
Richard M. Stallman <rms@gnu.org>
parents:
12119
diff
changeset
|
153 Scancel_kbd_macro_events, 0, 0, 0, |
9ee2045cda62
(Fcancel_kbd_macro_events): New function.
Richard M. Stallman <rms@gnu.org>
parents:
12119
diff
changeset
|
154 "Cancel the events added to a keyboard macro for this command.") |
9ee2045cda62
(Fcancel_kbd_macro_events): New function.
Richard M. Stallman <rms@gnu.org>
parents:
12119
diff
changeset
|
155 () |
9ee2045cda62
(Fcancel_kbd_macro_events): New function.
Richard M. Stallman <rms@gnu.org>
parents:
12119
diff
changeset
|
156 { |
9ee2045cda62
(Fcancel_kbd_macro_events): New function.
Richard M. Stallman <rms@gnu.org>
parents:
12119
diff
changeset
|
157 current_kboard->kbd_macro_ptr = current_kboard->kbd_macro_end; |
9ee2045cda62
(Fcancel_kbd_macro_events): New function.
Richard M. Stallman <rms@gnu.org>
parents:
12119
diff
changeset
|
158 } |
13773
7d50ac085b12
(Fstore_kbd_macro_event): New function.
Karl Heuer <kwzh@gnu.org>
parents:
12845
diff
changeset
|
159 |
7d50ac085b12
(Fstore_kbd_macro_event): New function.
Karl Heuer <kwzh@gnu.org>
parents:
12845
diff
changeset
|
160 DEFUN ("store-kbd-macro-event", Fstore_kbd_macro_event, |
7d50ac085b12
(Fstore_kbd_macro_event): New function.
Karl Heuer <kwzh@gnu.org>
parents:
12845
diff
changeset
|
161 Sstore_kbd_macro_event, 1, 1, 0, |
7d50ac085b12
(Fstore_kbd_macro_event): New function.
Karl Heuer <kwzh@gnu.org>
parents:
12845
diff
changeset
|
162 "Store EVENT into the keyboard macro being defined.") |
7d50ac085b12
(Fstore_kbd_macro_event): New function.
Karl Heuer <kwzh@gnu.org>
parents:
12845
diff
changeset
|
163 (event) |
7d50ac085b12
(Fstore_kbd_macro_event): New function.
Karl Heuer <kwzh@gnu.org>
parents:
12845
diff
changeset
|
164 Lisp_Object event; |
7d50ac085b12
(Fstore_kbd_macro_event): New function.
Karl Heuer <kwzh@gnu.org>
parents:
12845
diff
changeset
|
165 { |
7d50ac085b12
(Fstore_kbd_macro_event): New function.
Karl Heuer <kwzh@gnu.org>
parents:
12845
diff
changeset
|
166 store_kbd_macro_char (event); |
7d50ac085b12
(Fstore_kbd_macro_event): New function.
Karl Heuer <kwzh@gnu.org>
parents:
12845
diff
changeset
|
167 return Qnil; |
7d50ac085b12
(Fstore_kbd_macro_event): New function.
Karl Heuer <kwzh@gnu.org>
parents:
12845
diff
changeset
|
168 } |
246 | 169 |
170 DEFUN ("call-last-kbd-macro", Fcall_last_kbd_macro, Scall_last_kbd_macro, | |
171 0, 1, "p", | |
172 "Call the last keyboard macro that you defined with \\[start-kbd-macro].\n\ | |
173 \n\ | |
174 A prefix argument serves as a repeat count. Zero means repeat until error.\n\ | |
175 \n\ | |
176 To make a macro permanent so you can call it even after\n\ | |
177 defining others, use \\[name-last-kbd-macro].") | |
178 (prefix) | |
179 Lisp_Object prefix; | |
180 { | |
11009 | 181 if (! NILP (current_kboard->defining_kbd_macro)) |
246 | 182 error ("Can't execute anonymous macro while defining one"); |
11009 | 183 else if (NILP (current_kboard->Vlast_kbd_macro)) |
246 | 184 error ("No kbd macro has been defined"); |
185 else | |
11009 | 186 Fexecute_kbd_macro (current_kboard->Vlast_kbd_macro, prefix); |
246 | 187 return Qnil; |
188 } | |
189 | |
190 /* Restore Vexecuting_macro and executing_macro_index - called when | |
191 the unwind-protect in Fexecute_kbd_macro gets invoked. */ | |
192 static Lisp_Object | |
193 pop_kbd_macro (info) | |
194 Lisp_Object info; | |
195 { | |
196 Lisp_Object tem; | |
197 Vexecuting_macro = Fcar (info); | |
198 tem = Fcdr (info); | |
199 executing_macro_index = XINT (tem); | |
200 return Qnil; | |
201 } | |
202 | |
203 DEFUN ("execute-kbd-macro", Fexecute_kbd_macro, Sexecute_kbd_macro, 1, 2, 0, | |
204 "Execute MACRO as string of editor command characters.\n\ | |
205 If MACRO is a symbol, its function definition is used.\n\ | |
206 COUNT is a repeat count, or nil for once, or 0 for infinite loop.") | |
14081
addc50fc3981
(Fend_kbd_macro, Fexecute_kbd_macro): Harmonize arguments with
Erik Naggum <erik@naggum.no>
parents:
13773
diff
changeset
|
207 (macro, count) |
addc50fc3981
(Fend_kbd_macro, Fexecute_kbd_macro): Harmonize arguments with
Erik Naggum <erik@naggum.no>
parents:
13773
diff
changeset
|
208 Lisp_Object macro, count; |
246 | 209 { |
210 Lisp_Object final; | |
211 Lisp_Object tem; | |
14094
e5e4fe8e968f
(Fexecute_kbd_macro): Local var `pdlcount' renamed from
Karl Heuer <kwzh@gnu.org>
parents:
14081
diff
changeset
|
212 int pdlcount = specpdl_ptr - specpdl; |
246 | 213 int repeat = 1; |
214 struct gcpro gcpro1; | |
215 | |
14100
0950fefc4bd1
(Fexecute_kbd_macro): Reindent properly.
Erik Naggum <erik@naggum.no>
parents:
14094
diff
changeset
|
216 if (!NILP (count)) |
0950fefc4bd1
(Fexecute_kbd_macro): Reindent properly.
Erik Naggum <erik@naggum.no>
parents:
14094
diff
changeset
|
217 { |
0950fefc4bd1
(Fexecute_kbd_macro): Reindent properly.
Erik Naggum <erik@naggum.no>
parents:
14094
diff
changeset
|
218 count = Fprefix_numeric_value (count); |
0950fefc4bd1
(Fexecute_kbd_macro): Reindent properly.
Erik Naggum <erik@naggum.no>
parents:
14094
diff
changeset
|
219 repeat = XINT (count); |
0950fefc4bd1
(Fexecute_kbd_macro): Reindent properly.
Erik Naggum <erik@naggum.no>
parents:
14094
diff
changeset
|
220 } |
246 | 221 |
647 | 222 final = indirect_function (macro); |
9122
9ba3f17d6631
(Fexecute_kbd_macro): Use type test macros.
Karl Heuer <kwzh@gnu.org>
parents:
4696
diff
changeset
|
223 if (!STRINGP (final) && !VECTORP (final)) |
246 | 224 error ("Keyboard macros must be strings or vectors."); |
225 | |
9314
2c681685646b
(Fend_kbd_macro, Fexecute_kbd_macro): Don't use XFASTINT as an lvalue.
Karl Heuer <kwzh@gnu.org>
parents:
9122
diff
changeset
|
226 XSETFASTINT (tem, executing_macro_index); |
246 | 227 tem = Fcons (Vexecuting_macro, tem); |
228 record_unwind_protect (pop_kbd_macro, tem); | |
229 | |
230 GCPRO1 (final); | |
231 do | |
232 { | |
233 Vexecuting_macro = final; | |
234 executing_macro_index = 0; | |
235 | |
12119
d7b51659a56d
(Fexecute_kbd_macro): Vprefix_arg is now part of kboard.
Karl Heuer <kwzh@gnu.org>
parents:
11341
diff
changeset
|
236 current_kboard->Vprefix_arg = Qnil; |
246 | 237 command_loop_1 (); |
1682
af0995b9b142
* macros.c (Fend_kbd_macro): Don't use XFASTINT to check if arg is
Jim Blandy <jimb@redhat.com>
parents:
647
diff
changeset
|
238 |
af0995b9b142
* macros.c (Fend_kbd_macro): Don't use XFASTINT to check if arg is
Jim Blandy <jimb@redhat.com>
parents:
647
diff
changeset
|
239 QUIT; |
246 | 240 } |
9122
9ba3f17d6631
(Fexecute_kbd_macro): Use type test macros.
Karl Heuer <kwzh@gnu.org>
parents:
4696
diff
changeset
|
241 while (--repeat |
9ba3f17d6631
(Fexecute_kbd_macro): Use type test macros.
Karl Heuer <kwzh@gnu.org>
parents:
4696
diff
changeset
|
242 && (STRINGP (Vexecuting_macro) || VECTORP (Vexecuting_macro))); |
246 | 243 |
244 UNGCPRO; | |
14094
e5e4fe8e968f
(Fexecute_kbd_macro): Local var `pdlcount' renamed from
Karl Heuer <kwzh@gnu.org>
parents:
14081
diff
changeset
|
245 return unbind_to (pdlcount, Qnil); |
246 | 246 } |
247 | |
248 init_macros () | |
249 { | |
250 Vexecuting_macro = Qnil; | |
251 } | |
252 | |
253 syms_of_macros () | |
254 { | |
255 Qexecute_kbd_macro = intern ("execute-kbd-macro"); | |
256 staticpro (&Qexecute_kbd_macro); | |
257 | |
258 defsubr (&Sstart_kbd_macro); | |
259 defsubr (&Send_kbd_macro); | |
260 defsubr (&Scall_last_kbd_macro); | |
261 defsubr (&Sexecute_kbd_macro); | |
12845
9ee2045cda62
(Fcancel_kbd_macro_events): New function.
Richard M. Stallman <rms@gnu.org>
parents:
12119
diff
changeset
|
262 defsubr (&Scancel_kbd_macro_events); |
13773
7d50ac085b12
(Fstore_kbd_macro_event): New function.
Karl Heuer <kwzh@gnu.org>
parents:
12845
diff
changeset
|
263 defsubr (&Sstore_kbd_macro_event); |
246 | 264 |
11009 | 265 DEFVAR_KBOARD ("defining-kbd-macro", defining_kbd_macro, |
246 | 266 "Non-nil while a keyboard macro is being defined. Don't set this!"); |
267 | |
268 DEFVAR_LISP ("executing-macro", &Vexecuting_macro, | |
10935
73b02c08f17d
(Fstart_kbd_macro): Access Vlast_kbd_macro via perdisplay.
Karl Heuer <kwzh@gnu.org>
parents:
10910
diff
changeset
|
269 "Currently executing keyboard macro (string or vector); nil if none executing."); |
246 | 270 |
271 DEFVAR_LISP_NOPRO ("executing-kbd-macro", &Vexecuting_macro, | |
10935
73b02c08f17d
(Fstart_kbd_macro): Access Vlast_kbd_macro via perdisplay.
Karl Heuer <kwzh@gnu.org>
parents:
10910
diff
changeset
|
272 "Currently executing keyboard macro (string or vector); nil if none executing."); |
246 | 273 |
11009 | 274 DEFVAR_KBOARD ("last-kbd-macro", Vlast_kbd_macro, |
10935
73b02c08f17d
(Fstart_kbd_macro): Access Vlast_kbd_macro via perdisplay.
Karl Heuer <kwzh@gnu.org>
parents:
10910
diff
changeset
|
275 "Last kbd macro defined, as a string or vector; nil if none defined."); |
246 | 276 } |
277 | |
278 keys_of_macros () | |
279 { | |
280 initial_define_key (control_x_map, ('e'), "call-last-kbd-macro"); | |
281 initial_define_key (control_x_map, ('('), "start-kbd-macro"); | |
282 initial_define_key (control_x_map, (')'), "end-kbd-macro"); | |
283 } |