Mercurial > emacs
annotate src/macros.c @ 11231:3cf67df24e7f
Update copyright.
author | Karl Heuer <kwzh@gnu.org> |
---|---|
date | Fri, 07 Apr 1995 00:16:13 +0000 |
parents | 399469e5eb5b |
children | e0f3fa4e7bf3 |
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 | |
18 the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ | |
19 | |
20 | |
4696
1fc792473491
Include <config.h> instead of "config.h".
Roland McGrath <roland@gnu.org>
parents:
2961
diff
changeset
|
21 #include <config.h> |
246 | 22 #include "lisp.h" |
23 #include "macros.h" | |
24 #include "commands.h" | |
25 #include "buffer.h" | |
26 #include "window.h" | |
27 | |
28 Lisp_Object Qexecute_kbd_macro; | |
29 | |
30 Lisp_Object Vexecuting_macro; | |
31 int executing_macro_index; | |
32 | |
33 Lisp_Object Fexecute_kbd_macro (); | |
34 | |
35 DEFUN ("start-kbd-macro", Fstart_kbd_macro, Sstart_kbd_macro, 1, 1, "P", | |
36 "Record subsequent keyboard input, defining a keyboard macro.\n\ | |
37 The commands are recorded even as they are executed.\n\ | |
38 Use \\[end-kbd-macro] to finish recording and make the macro available.\n\ | |
39 Use \\[name-last-kbd-macro] to give it a permanent name.\n\ | |
40 Non-nil arg (prefix arg) means append to last macro defined;\n\ | |
41 This begins by re-executing that macro as if you typed it again.") | |
42 (append) | |
43 Lisp_Object append; | |
44 { | |
11009 | 45 if (!NILP (current_kboard->defining_kbd_macro)) |
246 | 46 error ("Already defining kbd macro"); |
47 | |
11009 | 48 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
|
49 { |
11009 | 50 current_kboard->kbd_macro_bufsize = 30; |
51 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
|
52 = (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
|
53 } |
246 | 54 update_mode_lines++; |
485 | 55 if (NILP (append)) |
246 | 56 { |
11009 | 57 current_kboard->kbd_macro_ptr = current_kboard->kbd_macro_buffer; |
58 current_kboard->kbd_macro_end = current_kboard->kbd_macro_buffer; | |
246 | 59 message("Defining kbd macro..."); |
60 } | |
61 else | |
62 { | |
63 message("Appending to kbd macro..."); | |
11009 | 64 current_kboard->kbd_macro_ptr = current_kboard->kbd_macro_end; |
65 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
|
66 make_number (1)); |
246 | 67 } |
11009 | 68 current_kboard->defining_kbd_macro = Qt; |
246 | 69 |
70 return Qnil; | |
71 } | |
72 | |
73 DEFUN ("end-kbd-macro", Fend_kbd_macro, Send_kbd_macro, 0, 1, "p", | |
74 "Finish defining a keyboard macro.\n\ | |
75 The definition was started by \\[start-kbd-macro].\n\ | |
76 The macro is now available for use via \\[call-last-kbd-macro],\n\ | |
77 or it can be given a name with \\[name-last-kbd-macro] and then invoked\n\ | |
78 under that name.\n\ | |
79 \n\ | |
80 With numeric arg, repeat macro now that many times,\n\ | |
81 counting the definition just completed as the first repetition.\n\ | |
82 An argument of zero means repeat until error.") | |
83 (arg) | |
84 Lisp_Object arg; | |
85 { | |
11009 | 86 if (NILP (current_kboard->defining_kbd_macro)) |
87 error ("Not defining kbd macro."); | |
246 | 88 |
485 | 89 if (NILP (arg)) |
9314
2c681685646b
(Fend_kbd_macro, Fexecute_kbd_macro): Don't use XFASTINT as an lvalue.
Karl Heuer <kwzh@gnu.org>
parents:
9122
diff
changeset
|
90 XSETFASTINT (arg, 1); |
246 | 91 else |
92 CHECK_NUMBER (arg, 0); | |
93 | |
11009 | 94 if (!NILP (current_kboard->defining_kbd_macro)) |
246 | 95 { |
11009 | 96 current_kboard->defining_kbd_macro = Qnil; |
246 | 97 update_mode_lines++; |
11009 | 98 current_kboard->Vlast_kbd_macro |
99 = make_event_array ((current_kboard->kbd_macro_end | |
100 - current_kboard->kbd_macro_buffer), | |
101 current_kboard->kbd_macro_buffer); | |
246 | 102 message("Keyboard macro defined"); |
103 } | |
104 | |
105 if (XFASTINT (arg) == 0) | |
11009 | 106 Fexecute_kbd_macro (current_kboard->Vlast_kbd_macro, arg); |
246 | 107 else |
108 { | |
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
|
109 XSETINT (arg, XINT (arg)-1); |
af0995b9b142
* macros.c (Fend_kbd_macro): Don't use XFASTINT to check if arg is
Jim Blandy <jimb@redhat.com>
parents:
647
diff
changeset
|
110 if (XINT (arg) > 0) |
11009 | 111 Fexecute_kbd_macro (current_kboard->Vlast_kbd_macro, arg); |
246 | 112 } |
113 return Qnil; | |
114 } | |
115 | |
116 /* Store character c into kbd macro being defined */ | |
117 | |
118 store_kbd_macro_char (c) | |
119 Lisp_Object c; | |
120 { | |
11009 | 121 if (!NILP (current_kboard->defining_kbd_macro)) |
246 | 122 { |
11009 | 123 if ((current_kboard->kbd_macro_ptr |
124 - current_kboard->kbd_macro_buffer) | |
125 == current_kboard->kbd_macro_bufsize) | |
246 | 126 { |
10910
b0edc245c9b7
(defining_kbd_macro): Delete; now part of perdisplay. All uses changed.
Karl Heuer <kwzh@gnu.org>
parents:
10856
diff
changeset
|
127 register Lisp_Object *new; |
11009 | 128 current_kboard->kbd_macro_bufsize *= 2; |
129 new = (Lisp_Object *)xrealloc (current_kboard->kbd_macro_buffer, | |
130 (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
|
131 * sizeof (Lisp_Object))); |
11009 | 132 current_kboard->kbd_macro_ptr |
133 += new - current_kboard->kbd_macro_buffer; | |
134 current_kboard->kbd_macro_end | |
135 += new - current_kboard->kbd_macro_buffer; | |
136 current_kboard->kbd_macro_buffer = new; | |
246 | 137 } |
11009 | 138 *current_kboard->kbd_macro_ptr++ = c; |
246 | 139 } |
140 } | |
141 | |
142 /* Declare that all chars stored so far in the kbd macro being defined | |
143 really belong to it. This is done in between editor commands. */ | |
144 | |
145 finalize_kbd_macro_chars () | |
146 { | |
11009 | 147 current_kboard->kbd_macro_end = current_kboard->kbd_macro_ptr; |
246 | 148 } |
149 | |
150 DEFUN ("call-last-kbd-macro", Fcall_last_kbd_macro, Scall_last_kbd_macro, | |
151 0, 1, "p", | |
152 "Call the last keyboard macro that you defined with \\[start-kbd-macro].\n\ | |
153 \n\ | |
154 A prefix argument serves as a repeat count. Zero means repeat until error.\n\ | |
155 \n\ | |
156 To make a macro permanent so you can call it even after\n\ | |
157 defining others, use \\[name-last-kbd-macro].") | |
158 (prefix) | |
159 Lisp_Object prefix; | |
160 { | |
11009 | 161 if (! NILP (current_kboard->defining_kbd_macro)) |
246 | 162 error ("Can't execute anonymous macro while defining one"); |
11009 | 163 else if (NILP (current_kboard->Vlast_kbd_macro)) |
246 | 164 error ("No kbd macro has been defined"); |
165 else | |
11009 | 166 Fexecute_kbd_macro (current_kboard->Vlast_kbd_macro, prefix); |
246 | 167 return Qnil; |
168 } | |
169 | |
170 /* Restore Vexecuting_macro and executing_macro_index - called when | |
171 the unwind-protect in Fexecute_kbd_macro gets invoked. */ | |
172 static Lisp_Object | |
173 pop_kbd_macro (info) | |
174 Lisp_Object info; | |
175 { | |
176 Lisp_Object tem; | |
177 Vexecuting_macro = Fcar (info); | |
178 tem = Fcdr (info); | |
179 executing_macro_index = XINT (tem); | |
180 return Qnil; | |
181 } | |
182 | |
183 DEFUN ("execute-kbd-macro", Fexecute_kbd_macro, Sexecute_kbd_macro, 1, 2, 0, | |
184 "Execute MACRO as string of editor command characters.\n\ | |
185 If MACRO is a symbol, its function definition is used.\n\ | |
186 COUNT is a repeat count, or nil for once, or 0 for infinite loop.") | |
187 (macro, prefixarg) | |
188 Lisp_Object macro, prefixarg; | |
189 { | |
190 Lisp_Object final; | |
191 Lisp_Object tem; | |
192 int count = specpdl_ptr - specpdl; | |
193 int repeat = 1; | |
194 struct gcpro gcpro1; | |
195 | |
485 | 196 if (!NILP (prefixarg)) |
246 | 197 prefixarg = Fprefix_numeric_value (prefixarg), |
198 repeat = XINT (prefixarg); | |
199 | |
647 | 200 final = indirect_function (macro); |
9122
9ba3f17d6631
(Fexecute_kbd_macro): Use type test macros.
Karl Heuer <kwzh@gnu.org>
parents:
4696
diff
changeset
|
201 if (!STRINGP (final) && !VECTORP (final)) |
246 | 202 error ("Keyboard macros must be strings or vectors."); |
203 | |
9314
2c681685646b
(Fend_kbd_macro, Fexecute_kbd_macro): Don't use XFASTINT as an lvalue.
Karl Heuer <kwzh@gnu.org>
parents:
9122
diff
changeset
|
204 XSETFASTINT (tem, executing_macro_index); |
246 | 205 tem = Fcons (Vexecuting_macro, tem); |
206 record_unwind_protect (pop_kbd_macro, tem); | |
207 | |
208 GCPRO1 (final); | |
209 do | |
210 { | |
211 Vexecuting_macro = final; | |
212 executing_macro_index = 0; | |
213 | |
10856
882404a39680
(Fexecute_kbd_macro): Use clear_prefix_arg.
Karl Heuer <kwzh@gnu.org>
parents:
10627
diff
changeset
|
214 clear_prefix_arg (); |
246 | 215 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
|
216 |
af0995b9b142
* macros.c (Fend_kbd_macro): Don't use XFASTINT to check if arg is
Jim Blandy <jimb@redhat.com>
parents:
647
diff
changeset
|
217 QUIT; |
246 | 218 } |
9122
9ba3f17d6631
(Fexecute_kbd_macro): Use type test macros.
Karl Heuer <kwzh@gnu.org>
parents:
4696
diff
changeset
|
219 while (--repeat |
9ba3f17d6631
(Fexecute_kbd_macro): Use type test macros.
Karl Heuer <kwzh@gnu.org>
parents:
4696
diff
changeset
|
220 && (STRINGP (Vexecuting_macro) || VECTORP (Vexecuting_macro))); |
246 | 221 |
222 UNGCPRO; | |
223 return unbind_to (count, Qnil); | |
224 } | |
225 | |
226 init_macros () | |
227 { | |
228 Vexecuting_macro = Qnil; | |
229 } | |
230 | |
231 syms_of_macros () | |
232 { | |
233 Qexecute_kbd_macro = intern ("execute-kbd-macro"); | |
234 staticpro (&Qexecute_kbd_macro); | |
235 | |
236 defsubr (&Sstart_kbd_macro); | |
237 defsubr (&Send_kbd_macro); | |
238 defsubr (&Scall_last_kbd_macro); | |
239 defsubr (&Sexecute_kbd_macro); | |
240 | |
11009 | 241 DEFVAR_KBOARD ("defining-kbd-macro", defining_kbd_macro, |
246 | 242 "Non-nil while a keyboard macro is being defined. Don't set this!"); |
243 | |
244 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
|
245 "Currently executing keyboard macro (string or vector); nil if none executing."); |
246 | 246 |
247 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
|
248 "Currently executing keyboard macro (string or vector); nil if none executing."); |
246 | 249 |
11009 | 250 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
|
251 "Last kbd macro defined, as a string or vector; nil if none defined."); |
246 | 252 } |
253 | |
254 keys_of_macros () | |
255 { | |
256 initial_define_key (control_x_map, ('e'), "call-last-kbd-macro"); | |
257 initial_define_key (control_x_map, ('('), "start-kbd-macro"); | |
258 initial_define_key (control_x_map, (')'), "end-kbd-macro"); | |
259 } |