Mercurial > emacs
annotate src/eval.c @ 26438:8cff6b2a70c6
(b2m): Add dependency on GETOPTDEPS.
author | Gerd Moellmann <gerd@gnu.org> |
---|---|
date | Sat, 13 Nov 1999 22:47:19 +0000 |
parents | 6527989cb214 |
children | 9fd028e7872c |
rev | line source |
---|---|
272 | 1 /* Evaluator for GNU Emacs Lisp interpreter. |
26088
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25783
diff
changeset
|
2 Copyright (C) 1985, 86, 87, 93, 94, 95, 1999 Free Software Foundation, Inc. |
272 | 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 | |
10342
01d13c22797e
(Fcommandp): Use & PSEUDOVECTOR_SIZE_MASK on `size' field of compiled
Roland McGrath <roland@gnu.org>
parents:
10201
diff
changeset
|
8 the Free Software Foundation; either version 2, or (at your option) |
272 | 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:
14073
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:
14073
diff
changeset
|
19 Boston, MA 02111-1307, USA. */ |
272 | 20 |
21 | |
4696
1fc792473491
Include <config.h> instead of "config.h".
Roland McGrath <roland@gnu.org>
parents:
4474
diff
changeset
|
22 #include <config.h> |
21514 | 23 |
272 | 24 #include "lisp.h" |
2439
b6c62e4abf59
Put interrupt input blocking in a separate file from xterm.h.
Jim Blandy <jimb@redhat.com>
parents:
1564
diff
changeset
|
25 #include "blockinput.h" |
272 | 26 |
27 #ifndef standalone | |
28 #include "commands.h" | |
515 | 29 #include "keyboard.h" |
272 | 30 #else |
31 #define INTERACTIVE 1 | |
32 #endif | |
33 | |
34 #include <setjmp.h> | |
35 | |
36 /* This definition is duplicated in alloc.c and keyboard.c */ | |
37 /* Putting it in lisp.h makes cc bomb out! */ | |
38 | |
39 struct backtrace | |
40 { | |
41 struct backtrace *next; | |
42 Lisp_Object *function; | |
43 Lisp_Object *args; /* Points to vector of args. */ | |
727 | 44 int nargs; /* Length of vector. |
45 If nargs is UNEVALLED, args points to slot holding | |
46 list of unevalled args */ | |
272 | 47 char evalargs; |
48 /* Nonzero means call value of debugger when done with this operation. */ | |
49 char debug_on_exit; | |
50 }; | |
51 | |
52 struct backtrace *backtrace_list; | |
53 | |
1196
65e2edefe748
* eval.c (Fcondition_case): Rearranged for clarity. Don't worry
Jim Blandy <jimb@redhat.com>
parents:
940
diff
changeset
|
54 /* This structure helps implement the `catch' and `throw' control |
65e2edefe748
* eval.c (Fcondition_case): Rearranged for clarity. Don't worry
Jim Blandy <jimb@redhat.com>
parents:
940
diff
changeset
|
55 structure. A struct catchtag contains all the information needed |
65e2edefe748
* eval.c (Fcondition_case): Rearranged for clarity. Don't worry
Jim Blandy <jimb@redhat.com>
parents:
940
diff
changeset
|
56 to restore the state of the interpreter after a non-local jump. |
65e2edefe748
* eval.c (Fcondition_case): Rearranged for clarity. Don't worry
Jim Blandy <jimb@redhat.com>
parents:
940
diff
changeset
|
57 |
65e2edefe748
* eval.c (Fcondition_case): Rearranged for clarity. Don't worry
Jim Blandy <jimb@redhat.com>
parents:
940
diff
changeset
|
58 Handlers for error conditions (represented by `struct handler' |
65e2edefe748
* eval.c (Fcondition_case): Rearranged for clarity. Don't worry
Jim Blandy <jimb@redhat.com>
parents:
940
diff
changeset
|
59 structures) just point to a catch tag to do the cleanup required |
65e2edefe748
* eval.c (Fcondition_case): Rearranged for clarity. Don't worry
Jim Blandy <jimb@redhat.com>
parents:
940
diff
changeset
|
60 for their jumps. |
65e2edefe748
* eval.c (Fcondition_case): Rearranged for clarity. Don't worry
Jim Blandy <jimb@redhat.com>
parents:
940
diff
changeset
|
61 |
65e2edefe748
* eval.c (Fcondition_case): Rearranged for clarity. Don't worry
Jim Blandy <jimb@redhat.com>
parents:
940
diff
changeset
|
62 catchtag structures are chained together in the C calling stack; |
65e2edefe748
* eval.c (Fcondition_case): Rearranged for clarity. Don't worry
Jim Blandy <jimb@redhat.com>
parents:
940
diff
changeset
|
63 the `next' member points to the next outer catchtag. |
65e2edefe748
* eval.c (Fcondition_case): Rearranged for clarity. Don't worry
Jim Blandy <jimb@redhat.com>
parents:
940
diff
changeset
|
64 |
65e2edefe748
* eval.c (Fcondition_case): Rearranged for clarity. Don't worry
Jim Blandy <jimb@redhat.com>
parents:
940
diff
changeset
|
65 A call like (throw TAG VAL) searches for a catchtag whose `tag' |
65e2edefe748
* eval.c (Fcondition_case): Rearranged for clarity. Don't worry
Jim Blandy <jimb@redhat.com>
parents:
940
diff
changeset
|
66 member is TAG, and then unbinds to it. The `val' member is used to |
65e2edefe748
* eval.c (Fcondition_case): Rearranged for clarity. Don't worry
Jim Blandy <jimb@redhat.com>
parents:
940
diff
changeset
|
67 hold VAL while the stack is unwound; `val' is returned as the value |
65e2edefe748
* eval.c (Fcondition_case): Rearranged for clarity. Don't worry
Jim Blandy <jimb@redhat.com>
parents:
940
diff
changeset
|
68 of the catch form. |
65e2edefe748
* eval.c (Fcondition_case): Rearranged for clarity. Don't worry
Jim Blandy <jimb@redhat.com>
parents:
940
diff
changeset
|
69 |
65e2edefe748
* eval.c (Fcondition_case): Rearranged for clarity. Don't worry
Jim Blandy <jimb@redhat.com>
parents:
940
diff
changeset
|
70 All the other members are concerned with restoring the interpreter |
65e2edefe748
* eval.c (Fcondition_case): Rearranged for clarity. Don't worry
Jim Blandy <jimb@redhat.com>
parents:
940
diff
changeset
|
71 state. */ |
272 | 72 struct catchtag |
73 { | |
74 Lisp_Object tag; | |
75 Lisp_Object val; | |
76 struct catchtag *next; | |
77 struct gcpro *gcpro; | |
78 jmp_buf jmp; | |
79 struct backtrace *backlist; | |
80 struct handler *handlerlist; | |
81 int lisp_eval_depth; | |
82 int pdlcount; | |
83 int poll_suppress_count; | |
26365
6527989cb214
(struct catchtag): Add member byte_stack.
Gerd Moellmann <gerd@gnu.org>
parents:
26307
diff
changeset
|
84 struct byte_stack *byte_stack; |
272 | 85 }; |
86 | |
87 struct catchtag *catchlist; | |
88 | |
26297
4d1e267efd41
[DEBUG_GCPRO] (gcpro_level): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
26088
diff
changeset
|
89 #ifdef DEBUG_GCPRO |
4d1e267efd41
[DEBUG_GCPRO] (gcpro_level): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
26088
diff
changeset
|
90 /* Count levels of GCPRO to detect failure to UNGCPRO. */ |
4d1e267efd41
[DEBUG_GCPRO] (gcpro_level): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
26088
diff
changeset
|
91 int gcpro_level; |
4d1e267efd41
[DEBUG_GCPRO] (gcpro_level): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
26088
diff
changeset
|
92 #endif |
4d1e267efd41
[DEBUG_GCPRO] (gcpro_level): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
26088
diff
changeset
|
93 |
272 | 94 Lisp_Object Qautoload, Qmacro, Qexit, Qinteractive, Qcommandp, Qdefun; |
381 | 95 Lisp_Object Qinhibit_quit, Vinhibit_quit, Vquit_flag; |
272 | 96 Lisp_Object Qmocklisp_arguments, Vmocklisp_arguments, Qmocklisp; |
97 Lisp_Object Qand_rest, Qand_optional; | |
98 Lisp_Object Qdebug_on_error; | |
99 | |
16296
584310941e70
(syms_of_eval): Initialize Vrun_hooks here.
Richard M. Stallman <rms@gnu.org>
parents:
16113
diff
changeset
|
100 /* This holds either the symbol `run-hooks' or nil. |
584310941e70
(syms_of_eval): Initialize Vrun_hooks here.
Richard M. Stallman <rms@gnu.org>
parents:
16113
diff
changeset
|
101 It is nil at an early stage of startup, and when Emacs |
584310941e70
(syms_of_eval): Initialize Vrun_hooks here.
Richard M. Stallman <rms@gnu.org>
parents:
16113
diff
changeset
|
102 is shutting down. */ |
272 | 103 Lisp_Object Vrun_hooks; |
104 | |
105 /* Non-nil means record all fset's and provide's, to be undone | |
106 if the file being autoloaded is not fully loaded. | |
107 They are recorded by being consed onto the front of Vautoload_queue: | |
108 (FUN . ODEF) for a defun, (OFEATURES . nil) for a provide. */ | |
109 | |
110 Lisp_Object Vautoload_queue; | |
111 | |
112 /* Current number of specbindings allocated in specpdl. */ | |
113 int specpdl_size; | |
114 | |
115 /* Pointer to beginning of specpdl. */ | |
116 struct specbinding *specpdl; | |
117 | |
118 /* Pointer to first unused element in specpdl. */ | |
119 struct specbinding *specpdl_ptr; | |
120 | |
121 /* Maximum size allowed for specpdl allocation */ | |
122 int max_specpdl_size; | |
123 | |
124 /* Depth in Lisp evaluations and function calls. */ | |
125 int lisp_eval_depth; | |
126 | |
127 /* Maximum allowed depth in Lisp evaluations and function calls. */ | |
128 int max_lisp_eval_depth; | |
129 | |
130 /* Nonzero means enter debugger before next function call */ | |
131 int debug_on_next_call; | |
132 | |
684 | 133 /* List of conditions (non-nil atom means all) which cause a backtrace |
706
86cb5db0b6c3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
687
diff
changeset
|
134 if an error is handled by the command loop's error handler. */ |
684 | 135 Lisp_Object Vstack_trace_on_error; |
272 | 136 |
684 | 137 /* List of conditions (non-nil atom means all) which enter the debugger |
706
86cb5db0b6c3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
687
diff
changeset
|
138 if an error is handled by the command loop's error handler. */ |
684 | 139 Lisp_Object Vdebug_on_error; |
272 | 140 |
13768 | 141 /* List of conditions and regexps specifying error messages which |
142 do not enter the debugger even if Vdebug_on_errors says they should. */ | |
143 Lisp_Object Vdebug_ignored_errors; | |
144 | |
16355
1d85b2698564
(Vdebug_force): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
16296
diff
changeset
|
145 /* Non-nil means call the debugger even if the error will be handled. */ |
16443
0128b923d281
(Vdebug_on_signal): Renamed from Vdebug_force.
Richard M. Stallman <rms@gnu.org>
parents:
16355
diff
changeset
|
146 Lisp_Object Vdebug_on_signal; |
16355
1d85b2698564
(Vdebug_force): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
16296
diff
changeset
|
147 |
1d85b2698564
(Vdebug_force): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
16296
diff
changeset
|
148 /* Hook for edebug to use. */ |
1d85b2698564
(Vdebug_force): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
16296
diff
changeset
|
149 Lisp_Object Vsignal_hook_function; |
1d85b2698564
(Vdebug_force): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
16296
diff
changeset
|
150 |
272 | 151 /* Nonzero means enter debugger if a quit signal |
684 | 152 is handled by the command loop's error handler. */ |
272 | 153 int debug_on_quit; |
154 | |
17872
31b2c6763574
(num_nonmacro_input_events):
Richard M. Stallman <rms@gnu.org>
parents:
17275
diff
changeset
|
155 /* The value of num_nonmacro_input_events as of the last time we |
1196
65e2edefe748
* eval.c (Fcondition_case): Rearranged for clarity. Don't worry
Jim Blandy <jimb@redhat.com>
parents:
940
diff
changeset
|
156 started to enter the debugger. If we decide to enter the debugger |
17872
31b2c6763574
(num_nonmacro_input_events):
Richard M. Stallman <rms@gnu.org>
parents:
17275
diff
changeset
|
157 again when this is still equal to num_nonmacro_input_events, then we |
1196
65e2edefe748
* eval.c (Fcondition_case): Rearranged for clarity. Don't worry
Jim Blandy <jimb@redhat.com>
parents:
940
diff
changeset
|
158 know that the debugger itself has an error, and we should just |
65e2edefe748
* eval.c (Fcondition_case): Rearranged for clarity. Don't worry
Jim Blandy <jimb@redhat.com>
parents:
940
diff
changeset
|
159 signal the error instead of entering an infinite loop of debugger |
65e2edefe748
* eval.c (Fcondition_case): Rearranged for clarity. Don't worry
Jim Blandy <jimb@redhat.com>
parents:
940
diff
changeset
|
160 invocations. */ |
65e2edefe748
* eval.c (Fcondition_case): Rearranged for clarity. Don't worry
Jim Blandy <jimb@redhat.com>
parents:
940
diff
changeset
|
161 int when_entered_debugger; |
272 | 162 |
163 Lisp_Object Vdebugger; | |
164 | |
165 void specbind (), record_unwind_protect (); | |
166 | |
13314
661060193eb8
(run_hook_with_args): Add forward declaration.
Richard M. Stallman <rms@gnu.org>
parents:
13103
diff
changeset
|
167 Lisp_Object run_hook_with_args (); |
661060193eb8
(run_hook_with_args): Add forward declaration.
Richard M. Stallman <rms@gnu.org>
parents:
13103
diff
changeset
|
168 |
272 | 169 Lisp_Object funcall_lambda (); |
170 extern Lisp_Object ml_apply (); /* Apply a mocklisp function to unevaluated argument list */ | |
171 | |
21514 | 172 void |
272 | 173 init_eval_once () |
174 { | |
175 specpdl_size = 50; | |
7885
bc6406a90796
(init_eval_once): Call xmalloc, not malloc.
Richard M. Stallman <rms@gnu.org>
parents:
7533
diff
changeset
|
176 specpdl = (struct specbinding *) xmalloc (specpdl_size * sizeof (struct specbinding)); |
14600
f32beac333a0
(init_eval_once): Initialize specpdl_ptr.
Karl Heuer <kwzh@gnu.org>
parents:
14218
diff
changeset
|
177 specpdl_ptr = specpdl; |
272 | 178 max_specpdl_size = 600; |
17061
bc9a4db95edb
(init_eval_once): Increase max_lisp_eval_depth to 300.
Karl Heuer <kwzh@gnu.org>
parents:
16930
diff
changeset
|
179 max_lisp_eval_depth = 300; |
8980
e641b60610a1
(init_eval_once): Init Vrun_hooks here.
Richard M. Stallman <rms@gnu.org>
parents:
8902
diff
changeset
|
180 |
e641b60610a1
(init_eval_once): Init Vrun_hooks here.
Richard M. Stallman <rms@gnu.org>
parents:
8902
diff
changeset
|
181 Vrun_hooks = Qnil; |
272 | 182 } |
183 | |
21514 | 184 void |
272 | 185 init_eval () |
186 { | |
187 specpdl_ptr = specpdl; | |
188 catchlist = 0; | |
189 handlerlist = 0; | |
190 backtrace_list = 0; | |
191 Vquit_flag = Qnil; | |
192 debug_on_next_call = 0; | |
193 lisp_eval_depth = 0; | |
26307
155d5adcdff4
(init_eval): Conditionalize declaration of gcpro_level.
Dave Love <fx@gnu.org>
parents:
26297
diff
changeset
|
194 #ifdef DEBUG_GCPRO |
26297
4d1e267efd41
[DEBUG_GCPRO] (gcpro_level): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
26088
diff
changeset
|
195 gcpro_level = 0; |
26307
155d5adcdff4
(init_eval): Conditionalize declaration of gcpro_level.
Dave Love <fx@gnu.org>
parents:
26297
diff
changeset
|
196 #endif |
17872
31b2c6763574
(num_nonmacro_input_events):
Richard M. Stallman <rms@gnu.org>
parents:
17275
diff
changeset
|
197 /* This is less than the initial value of num_nonmacro_input_events. */ |
7213
bb5db306a305
(init_eval): Initialize when_entered_debugger to -1.
Richard M. Stallman <rms@gnu.org>
parents:
6918
diff
changeset
|
198 when_entered_debugger = -1; |
272 | 199 } |
200 | |
201 Lisp_Object | |
202 call_debugger (arg) | |
203 Lisp_Object arg; | |
204 { | |
205 if (lisp_eval_depth + 20 > max_lisp_eval_depth) | |
206 max_lisp_eval_depth = lisp_eval_depth + 20; | |
207 if (specpdl_size + 40 > max_specpdl_size) | |
208 max_specpdl_size = specpdl_size + 40; | |
209 debug_on_next_call = 0; | |
17872
31b2c6763574
(num_nonmacro_input_events):
Richard M. Stallman <rms@gnu.org>
parents:
17275
diff
changeset
|
210 when_entered_debugger = num_nonmacro_input_events; |
272 | 211 return apply1 (Vdebugger, arg); |
212 } | |
213 | |
21514 | 214 void |
272 | 215 do_debug_on_call (code) |
216 Lisp_Object code; | |
217 { | |
218 debug_on_next_call = 0; | |
219 backtrace_list->debug_on_exit = 1; | |
220 call_debugger (Fcons (code, Qnil)); | |
221 } | |
222 | |
223 /* NOTE!!! Every function that can call EVAL must protect its args | |
224 and temporaries from garbage collection while it needs them. | |
225 The definition of `For' shows what you have to do. */ | |
226 | |
227 DEFUN ("or", For, Sor, 0, UNEVALLED, 0, | |
228 "Eval args until one of them yields non-nil, then return that value.\n\ | |
229 The remaining args are not evalled at all.\n\ | |
230 If all args return nil, return nil.") | |
231 (args) | |
232 Lisp_Object args; | |
233 { | |
234 register Lisp_Object val; | |
235 Lisp_Object args_left; | |
236 struct gcpro gcpro1; | |
237 | |
485 | 238 if (NILP(args)) |
272 | 239 return Qnil; |
240 | |
241 args_left = args; | |
242 GCPRO1 (args_left); | |
243 | |
244 do | |
245 { | |
246 val = Feval (Fcar (args_left)); | |
485 | 247 if (!NILP (val)) |
272 | 248 break; |
249 args_left = Fcdr (args_left); | |
250 } | |
485 | 251 while (!NILP(args_left)); |
272 | 252 |
253 UNGCPRO; | |
254 return val; | |
255 } | |
256 | |
257 DEFUN ("and", Fand, Sand, 0, UNEVALLED, 0, | |
258 "Eval args until one of them yields nil, then return nil.\n\ | |
259 The remaining args are not evalled at all.\n\ | |
260 If no arg yields nil, return the last arg's value.") | |
261 (args) | |
262 Lisp_Object args; | |
263 { | |
264 register Lisp_Object val; | |
265 Lisp_Object args_left; | |
266 struct gcpro gcpro1; | |
267 | |
485 | 268 if (NILP(args)) |
272 | 269 return Qt; |
270 | |
271 args_left = args; | |
272 GCPRO1 (args_left); | |
273 | |
274 do | |
275 { | |
276 val = Feval (Fcar (args_left)); | |
485 | 277 if (NILP (val)) |
272 | 278 break; |
279 args_left = Fcdr (args_left); | |
280 } | |
485 | 281 while (!NILP(args_left)); |
272 | 282 |
283 UNGCPRO; | |
284 return val; | |
285 } | |
286 | |
287 DEFUN ("if", Fif, Sif, 2, UNEVALLED, 0, | |
288 "(if COND THEN ELSE...): if COND yields non-nil, do THEN, else do ELSE...\n\ | |
289 Returns the value of THEN or the value of the last of the ELSE's.\n\ | |
290 THEN must be one expression, but ELSE... can be zero or more expressions.\n\ | |
291 If COND yields nil, and there are no ELSE's, the value is nil.") | |
292 (args) | |
293 Lisp_Object args; | |
294 { | |
295 register Lisp_Object cond; | |
296 struct gcpro gcpro1; | |
297 | |
298 GCPRO1 (args); | |
299 cond = Feval (Fcar (args)); | |
300 UNGCPRO; | |
301 | |
485 | 302 if (!NILP (cond)) |
272 | 303 return Feval (Fcar (Fcdr (args))); |
304 return Fprogn (Fcdr (Fcdr (args))); | |
305 } | |
306 | |
307 DEFUN ("cond", Fcond, Scond, 0, UNEVALLED, 0, | |
308 "(cond CLAUSES...): try each clause until one succeeds.\n\ | |
309 Each clause looks like (CONDITION BODY...). CONDITION is evaluated\n\ | |
310 and, if the value is non-nil, this clause succeeds:\n\ | |
311 then the expressions in BODY are evaluated and the last one's\n\ | |
312 value is the value of the cond-form.\n\ | |
313 If no clause succeeds, cond returns nil.\n\ | |
314 If a clause has one element, as in (CONDITION),\n\ | |
315 CONDITION's value if non-nil is returned from the cond-form.") | |
316 (args) | |
317 Lisp_Object args; | |
318 { | |
319 register Lisp_Object clause, val; | |
320 struct gcpro gcpro1; | |
321 | |
322 val = Qnil; | |
323 GCPRO1 (args); | |
485 | 324 while (!NILP (args)) |
272 | 325 { |
326 clause = Fcar (args); | |
327 val = Feval (Fcar (clause)); | |
485 | 328 if (!NILP (val)) |
272 | 329 { |
25662
0a7261c1d487
Use XCAR, XCDR, and XFLOAT_DATA instead of explicit member access.
Ken Raeburn <raeburn@raeburn.org>
parents:
25314
diff
changeset
|
330 if (!EQ (XCDR (clause), Qnil)) |
0a7261c1d487
Use XCAR, XCDR, and XFLOAT_DATA instead of explicit member access.
Ken Raeburn <raeburn@raeburn.org>
parents:
25314
diff
changeset
|
331 val = Fprogn (XCDR (clause)); |
272 | 332 break; |
333 } | |
25662
0a7261c1d487
Use XCAR, XCDR, and XFLOAT_DATA instead of explicit member access.
Ken Raeburn <raeburn@raeburn.org>
parents:
25314
diff
changeset
|
334 args = XCDR (args); |
272 | 335 } |
336 UNGCPRO; | |
337 | |
338 return val; | |
339 } | |
340 | |
341 DEFUN ("progn", Fprogn, Sprogn, 0, UNEVALLED, 0, | |
342 "(progn BODY...): eval BODY forms sequentially and return value of last one.") | |
343 (args) | |
344 Lisp_Object args; | |
345 { | |
346 register Lisp_Object val, tem; | |
347 Lisp_Object args_left; | |
348 struct gcpro gcpro1; | |
349 | |
350 /* In Mocklisp code, symbols at the front of the progn arglist | |
351 are to be bound to zero. */ | |
352 if (!EQ (Vmocklisp_arguments, Qt)) | |
353 { | |
354 val = make_number (0); | |
9148
e7ab930bb7eb
(Fprogn, Finteractive_p, Fuser_variable_p, FletX, Flet, Fmacroexpand,
Karl Heuer <kwzh@gnu.org>
parents:
8980
diff
changeset
|
355 while (!NILP (args) && (tem = Fcar (args), SYMBOLP (tem))) |
272 | 356 { |
357 QUIT; | |
358 specbind (tem, val), args = Fcdr (args); | |
359 } | |
360 } | |
361 | |
485 | 362 if (NILP(args)) |
272 | 363 return Qnil; |
364 | |
365 args_left = args; | |
366 GCPRO1 (args_left); | |
367 | |
368 do | |
369 { | |
370 val = Feval (Fcar (args_left)); | |
371 args_left = Fcdr (args_left); | |
372 } | |
485 | 373 while (!NILP(args_left)); |
272 | 374 |
375 UNGCPRO; | |
376 return val; | |
377 } | |
378 | |
379 DEFUN ("prog1", Fprog1, Sprog1, 1, UNEVALLED, 0, | |
380 "(prog1 FIRST BODY...): eval FIRST and BODY sequentially; value from FIRST.\n\ | |
381 The value of FIRST is saved during the evaluation of the remaining args,\n\ | |
382 whose values are discarded.") | |
383 (args) | |
384 Lisp_Object args; | |
385 { | |
386 Lisp_Object val; | |
387 register Lisp_Object args_left; | |
388 struct gcpro gcpro1, gcpro2; | |
389 register int argnum = 0; | |
390 | |
485 | 391 if (NILP(args)) |
272 | 392 return Qnil; |
393 | |
394 args_left = args; | |
395 val = Qnil; | |
396 GCPRO2 (args, val); | |
397 | |
398 do | |
399 { | |
400 if (!(argnum++)) | |
401 val = Feval (Fcar (args_left)); | |
402 else | |
403 Feval (Fcar (args_left)); | |
404 args_left = Fcdr (args_left); | |
405 } | |
485 | 406 while (!NILP(args_left)); |
272 | 407 |
408 UNGCPRO; | |
409 return val; | |
410 } | |
411 | |
412 DEFUN ("prog2", Fprog2, Sprog2, 2, UNEVALLED, 0, | |
8412 | 413 "(prog2 X Y BODY...): eval X, Y and BODY sequentially; value from Y.\n\ |
272 | 414 The value of Y is saved during the evaluation of the remaining args,\n\ |
415 whose values are discarded.") | |
416 (args) | |
417 Lisp_Object args; | |
418 { | |
419 Lisp_Object val; | |
420 register Lisp_Object args_left; | |
421 struct gcpro gcpro1, gcpro2; | |
422 register int argnum = -1; | |
423 | |
424 val = Qnil; | |
425 | |
6803 | 426 if (NILP (args)) |
272 | 427 return Qnil; |
428 | |
429 args_left = args; | |
430 val = Qnil; | |
431 GCPRO2 (args, val); | |
432 | |
433 do | |
434 { | |
435 if (!(argnum++)) | |
436 val = Feval (Fcar (args_left)); | |
437 else | |
438 Feval (Fcar (args_left)); | |
439 args_left = Fcdr (args_left); | |
440 } | |
6803 | 441 while (!NILP (args_left)); |
272 | 442 |
443 UNGCPRO; | |
444 return val; | |
445 } | |
446 | |
447 DEFUN ("setq", Fsetq, Ssetq, 0, UNEVALLED, 0, | |
448 "(setq SYM VAL SYM VAL ...): set each SYM to the value of its VAL.\n\ | |
6918 | 449 The symbols SYM are variables; they are literal (not evaluated).\n\ |
450 The values VAL are expressions; they are evaluated.\n\ | |
451 Thus, (setq x (1+ y)) sets `x' to the value of `(1+ y)'.\n\ | |
452 The second VAL is not computed until after the first SYM is set, and so on;\n\ | |
453 each VAL can use the new value of variables set earlier in the `setq'.\n\ | |
6713 | 454 The return value of the `setq' form is the value of the last VAL.") |
272 | 455 (args) |
456 Lisp_Object args; | |
457 { | |
458 register Lisp_Object args_left; | |
459 register Lisp_Object val, sym; | |
460 struct gcpro gcpro1; | |
461 | |
485 | 462 if (NILP(args)) |
272 | 463 return Qnil; |
464 | |
465 args_left = args; | |
466 GCPRO1 (args); | |
467 | |
468 do | |
469 { | |
470 val = Feval (Fcar (Fcdr (args_left))); | |
471 sym = Fcar (args_left); | |
472 Fset (sym, val); | |
473 args_left = Fcdr (Fcdr (args_left)); | |
474 } | |
485 | 475 while (!NILP(args_left)); |
272 | 476 |
477 UNGCPRO; | |
478 return val; | |
479 } | |
480 | |
481 DEFUN ("quote", Fquote, Squote, 1, UNEVALLED, 0, | |
482 "Return the argument, without evaluating it. `(quote x)' yields `x'.") | |
483 (args) | |
484 Lisp_Object args; | |
485 { | |
486 return Fcar (args); | |
487 } | |
488 | |
489 DEFUN ("function", Ffunction, Sfunction, 1, UNEVALLED, 0, | |
490 "Like `quote', but preferred for objects which are functions.\n\ | |
491 In byte compilation, `function' causes its argument to be compiled.\n\ | |
492 `quote' cannot do that.") | |
493 (args) | |
494 Lisp_Object args; | |
495 { | |
496 return Fcar (args); | |
497 } | |
498 | |
499 DEFUN ("interactive-p", Finteractive_p, Sinteractive_p, 0, 0, 0, | |
500 "Return t if function in which this appears was called interactively.\n\ | |
501 This means that the function was called with call-interactively (which\n\ | |
502 includes being called as the binding of a key)\n\ | |
503 and input is currently coming from the keyboard (not in keyboard macro).") | |
504 () | |
505 { | |
506 register struct backtrace *btp; | |
507 register Lisp_Object fun; | |
508 | |
509 if (!INTERACTIVE) | |
510 return Qnil; | |
511 | |
512 btp = backtrace_list; | |
727 | 513 |
514 /* If this isn't a byte-compiled function, there may be a frame at | |
515 the top for Finteractive_p itself. If so, skip it. */ | |
516 fun = Findirect_function (*btp->function); | |
9959
c942c7e6ebbd
(Finteractive_p): Use XSUBR instead of its expansion.
Karl Heuer <kwzh@gnu.org>
parents:
9306
diff
changeset
|
517 if (SUBRP (fun) && XSUBR (fun) == &Sinteractive_p) |
323 | 518 btp = btp->next; |
519 | |
727 | 520 /* If we're running an Emacs 18-style byte-compiled function, there |
521 may be a frame for Fbytecode. Now, given the strictest | |
522 definition, this function isn't really being called | |
523 interactively, but because that's the way Emacs 18 always builds | |
524 byte-compiled functions, we'll accept it for now. */ | |
525 if (EQ (*btp->function, Qbytecode)) | |
526 btp = btp->next; | |
527 | |
528 /* If this isn't a byte-compiled function, then we may now be | |
529 looking at several frames for special forms. Skip past them. */ | |
530 while (btp && | |
531 btp->nargs == UNEVALLED) | |
532 btp = btp->next; | |
533 | |
534 /* btp now points at the frame of the innermost function that isn't | |
535 a special form, ignoring frames for Finteractive_p and/or | |
536 Fbytecode at the top. If this frame is for a built-in function | |
537 (such as load or eval-region) return nil. */ | |
648 | 538 fun = Findirect_function (*btp->function); |
9148
e7ab930bb7eb
(Fprogn, Finteractive_p, Fuser_variable_p, FletX, Flet, Fmacroexpand,
Karl Heuer <kwzh@gnu.org>
parents:
8980
diff
changeset
|
539 if (SUBRP (fun)) |
272 | 540 return Qnil; |
541 /* btp points to the frame of a Lisp function that called interactive-p. | |
542 Return t if that function was called interactively. */ | |
543 if (btp && btp->next && EQ (*btp->next->function, Qcall_interactively)) | |
544 return Qt; | |
545 return Qnil; | |
546 } | |
547 | |
548 DEFUN ("defun", Fdefun, Sdefun, 2, UNEVALLED, 0, | |
549 "(defun NAME ARGLIST [DOCSTRING] BODY...): define NAME as a function.\n\ | |
550 The definition is (lambda ARGLIST [DOCSTRING] BODY...).\n\ | |
551 See also the function `interactive'.") | |
552 (args) | |
553 Lisp_Object args; | |
554 { | |
555 register Lisp_Object fn_name; | |
556 register Lisp_Object defn; | |
557 | |
558 fn_name = Fcar (args); | |
559 defn = Fcons (Qlambda, Fcdr (args)); | |
485 | 560 if (!NILP (Vpurify_flag)) |
272 | 561 defn = Fpurecopy (defn); |
562 Ffset (fn_name, defn); | |
2547
c73c68a87cd5
(defun, defmacro, defvar, defconst):
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
563 LOADHIST_ATTACH (fn_name); |
272 | 564 return fn_name; |
565 } | |
566 | |
567 DEFUN ("defmacro", Fdefmacro, Sdefmacro, 2, UNEVALLED, 0, | |
568 "(defmacro NAME ARGLIST [DOCSTRING] BODY...): define NAME as a macro.\n\ | |
569 The definition is (macro lambda ARGLIST [DOCSTRING] BODY...).\n\ | |
570 When the macro is called, as in (NAME ARGS...),\n\ | |
571 the function (lambda ARGLIST BODY...) is applied to\n\ | |
572 the list ARGS... as it appears in the expression,\n\ | |
573 and the result should be a form to be evaluated instead of the original.") | |
574 (args) | |
575 Lisp_Object args; | |
576 { | |
577 register Lisp_Object fn_name; | |
578 register Lisp_Object defn; | |
579 | |
580 fn_name = Fcar (args); | |
581 defn = Fcons (Qmacro, Fcons (Qlambda, Fcdr (args))); | |
485 | 582 if (!NILP (Vpurify_flag)) |
272 | 583 defn = Fpurecopy (defn); |
584 Ffset (fn_name, defn); | |
2547
c73c68a87cd5
(defun, defmacro, defvar, defconst):
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
585 LOADHIST_ATTACH (fn_name); |
272 | 586 return fn_name; |
587 } | |
588 | |
589 DEFUN ("defvar", Fdefvar, Sdefvar, 1, UNEVALLED, 0, | |
590 "(defvar SYMBOL INITVALUE DOCSTRING): define SYMBOL as a variable.\n\ | |
591 You are not required to define a variable in order to use it,\n\ | |
592 but the definition can supply documentation and an initial value\n\ | |
593 in a way that tags can recognize.\n\n\ | |
594 INITVALUE is evaluated, and used to set SYMBOL, only if SYMBOL's value is void.\n\ | |
687
e2b747dd6a6e
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
684
diff
changeset
|
595 If SYMBOL is buffer-local, its default value is what is set;\n\ |
e2b747dd6a6e
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
684
diff
changeset
|
596 buffer-local values are not affected.\n\ |
272 | 597 INITVALUE and DOCSTRING are optional.\n\ |
598 If DOCSTRING starts with *, this variable is identified as a user option.\n\ | |
599 This means that M-x set-variable and M-x edit-options recognize it.\n\ | |
600 If INITVALUE is missing, SYMBOL's value is not set.") | |
601 (args) | |
602 Lisp_Object args; | |
603 { | |
10161
512a84fb3c75
(Fdefconst, Fdefvar): Error if too many arguments.
Richard M. Stallman <rms@gnu.org>
parents:
9959
diff
changeset
|
604 register Lisp_Object sym, tem, tail; |
272 | 605 |
606 sym = Fcar (args); | |
10161
512a84fb3c75
(Fdefconst, Fdefvar): Error if too many arguments.
Richard M. Stallman <rms@gnu.org>
parents:
9959
diff
changeset
|
607 tail = Fcdr (args); |
512a84fb3c75
(Fdefconst, Fdefvar): Error if too many arguments.
Richard M. Stallman <rms@gnu.org>
parents:
9959
diff
changeset
|
608 if (!NILP (Fcdr (Fcdr (tail)))) |
512a84fb3c75
(Fdefconst, Fdefvar): Error if too many arguments.
Richard M. Stallman <rms@gnu.org>
parents:
9959
diff
changeset
|
609 error ("too many arguments"); |
512a84fb3c75
(Fdefconst, Fdefvar): Error if too many arguments.
Richard M. Stallman <rms@gnu.org>
parents:
9959
diff
changeset
|
610 |
512a84fb3c75
(Fdefconst, Fdefvar): Error if too many arguments.
Richard M. Stallman <rms@gnu.org>
parents:
9959
diff
changeset
|
611 if (!NILP (tail)) |
272 | 612 { |
613 tem = Fdefault_boundp (sym); | |
485 | 614 if (NILP (tem)) |
272 | 615 Fset_default (sym, Feval (Fcar (Fcdr (args)))); |
616 } | |
10161
512a84fb3c75
(Fdefconst, Fdefvar): Error if too many arguments.
Richard M. Stallman <rms@gnu.org>
parents:
9959
diff
changeset
|
617 tail = Fcdr (Fcdr (args)); |
512a84fb3c75
(Fdefconst, Fdefvar): Error if too many arguments.
Richard M. Stallman <rms@gnu.org>
parents:
9959
diff
changeset
|
618 if (!NILP (Fcar (tail))) |
272 | 619 { |
10201
03f3a1f4264a
(Fdefvar): Fix minor error in previous change.
Richard M. Stallman <rms@gnu.org>
parents:
10161
diff
changeset
|
620 tem = Fcar (tail); |
485 | 621 if (!NILP (Vpurify_flag)) |
272 | 622 tem = Fpurecopy (tem); |
623 Fput (sym, Qvariable_documentation, tem); | |
624 } | |
2547
c73c68a87cd5
(defun, defmacro, defvar, defconst):
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
625 LOADHIST_ATTACH (sym); |
272 | 626 return sym; |
627 } | |
628 | |
629 DEFUN ("defconst", Fdefconst, Sdefconst, 2, UNEVALLED, 0, | |
630 "(defconst SYMBOL INITVALUE DOCSTRING): define SYMBOL as a constant variable.\n\ | |
24427 | 631 The intent is that neither programs nor users should ever change this value.\n\ |
272 | 632 Always sets the value of SYMBOL to the result of evalling INITVALUE.\n\ |
687
e2b747dd6a6e
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
684
diff
changeset
|
633 If SYMBOL is buffer-local, its default value is what is set;\n\ |
e2b747dd6a6e
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
684
diff
changeset
|
634 buffer-local values are not affected.\n\ |
24391 | 635 DOCSTRING is optional.") |
272 | 636 (args) |
637 Lisp_Object args; | |
638 { | |
639 register Lisp_Object sym, tem; | |
640 | |
641 sym = Fcar (args); | |
10161
512a84fb3c75
(Fdefconst, Fdefvar): Error if too many arguments.
Richard M. Stallman <rms@gnu.org>
parents:
9959
diff
changeset
|
642 if (!NILP (Fcdr (Fcdr (Fcdr (args))))) |
512a84fb3c75
(Fdefconst, Fdefvar): Error if too many arguments.
Richard M. Stallman <rms@gnu.org>
parents:
9959
diff
changeset
|
643 error ("too many arguments"); |
512a84fb3c75
(Fdefconst, Fdefvar): Error if too many arguments.
Richard M. Stallman <rms@gnu.org>
parents:
9959
diff
changeset
|
644 |
272 | 645 Fset_default (sym, Feval (Fcar (Fcdr (args)))); |
646 tem = Fcar (Fcdr (Fcdr (args))); | |
485 | 647 if (!NILP (tem)) |
272 | 648 { |
485 | 649 if (!NILP (Vpurify_flag)) |
272 | 650 tem = Fpurecopy (tem); |
651 Fput (sym, Qvariable_documentation, tem); | |
652 } | |
2547
c73c68a87cd5
(defun, defmacro, defvar, defconst):
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
653 LOADHIST_ATTACH (sym); |
272 | 654 return sym; |
655 } | |
656 | |
657 DEFUN ("user-variable-p", Fuser_variable_p, Suser_variable_p, 1, 1, 0, | |
658 "Returns t if VARIABLE is intended to be set and modified by users.\n\ | |
659 \(The alternative is a variable used internally in a Lisp program.)\n\ | |
660 Determined by whether the first character of the documentation\n\ | |
11251
f6bc91242185
(Fuser_variable_p): For (STRING . INTEGER), test sign.
Richard M. Stallman <rms@gnu.org>
parents:
11205
diff
changeset
|
661 for the variable is `*'.") |
272 | 662 (variable) |
663 Lisp_Object variable; | |
664 { | |
665 Lisp_Object documentation; | |
666 | |
17275
03f89f7e614e
(Fuser_variable_p): If not a symbol, return nil.
Richard M. Stallman <rms@gnu.org>
parents:
17061
diff
changeset
|
667 if (!SYMBOLP (variable)) |
03f89f7e614e
(Fuser_variable_p): If not a symbol, return nil.
Richard M. Stallman <rms@gnu.org>
parents:
17061
diff
changeset
|
668 return Qnil; |
03f89f7e614e
(Fuser_variable_p): If not a symbol, return nil.
Richard M. Stallman <rms@gnu.org>
parents:
17061
diff
changeset
|
669 |
272 | 670 documentation = Fget (variable, Qvariable_documentation); |
9148
e7ab930bb7eb
(Fprogn, Finteractive_p, Fuser_variable_p, FletX, Flet, Fmacroexpand,
Karl Heuer <kwzh@gnu.org>
parents:
8980
diff
changeset
|
671 if (INTEGERP (documentation) && XINT (documentation) < 0) |
272 | 672 return Qt; |
11251
f6bc91242185
(Fuser_variable_p): For (STRING . INTEGER), test sign.
Richard M. Stallman <rms@gnu.org>
parents:
11205
diff
changeset
|
673 if (STRINGP (documentation) |
f6bc91242185
(Fuser_variable_p): For (STRING . INTEGER), test sign.
Richard M. Stallman <rms@gnu.org>
parents:
11205
diff
changeset
|
674 && ((unsigned char) XSTRING (documentation)->data[0] == '*')) |
f6bc91242185
(Fuser_variable_p): For (STRING . INTEGER), test sign.
Richard M. Stallman <rms@gnu.org>
parents:
11205
diff
changeset
|
675 return Qt; |
f6bc91242185
(Fuser_variable_p): For (STRING . INTEGER), test sign.
Richard M. Stallman <rms@gnu.org>
parents:
11205
diff
changeset
|
676 /* If it is (STRING . INTEGER), a negative integer means a user variable. */ |
f6bc91242185
(Fuser_variable_p): For (STRING . INTEGER), test sign.
Richard M. Stallman <rms@gnu.org>
parents:
11205
diff
changeset
|
677 if (CONSP (documentation) |
25662
0a7261c1d487
Use XCAR, XCDR, and XFLOAT_DATA instead of explicit member access.
Ken Raeburn <raeburn@raeburn.org>
parents:
25314
diff
changeset
|
678 && STRINGP (XCAR (documentation)) |
0a7261c1d487
Use XCAR, XCDR, and XFLOAT_DATA instead of explicit member access.
Ken Raeburn <raeburn@raeburn.org>
parents:
25314
diff
changeset
|
679 && INTEGERP (XCDR (documentation)) |
0a7261c1d487
Use XCAR, XCDR, and XFLOAT_DATA instead of explicit member access.
Ken Raeburn <raeburn@raeburn.org>
parents:
25314
diff
changeset
|
680 && XINT (XCDR (documentation)) < 0) |
272 | 681 return Qt; |
682 return Qnil; | |
683 } | |
684 | |
685 DEFUN ("let*", FletX, SletX, 1, UNEVALLED, 0, | |
686 "(let* VARLIST BODY...): bind variables according to VARLIST then eval BODY.\n\ | |
687 The value of the last form in BODY is returned.\n\ | |
688 Each element of VARLIST is a symbol (which is bound to nil)\n\ | |
689 or a list (SYMBOL VALUEFORM) (which binds SYMBOL to the value of VALUEFORM).\n\ | |
690 Each VALUEFORM can refer to the symbols already bound by this VARLIST.") | |
691 (args) | |
692 Lisp_Object args; | |
693 { | |
694 Lisp_Object varlist, val, elt; | |
695 int count = specpdl_ptr - specpdl; | |
696 struct gcpro gcpro1, gcpro2, gcpro3; | |
697 | |
698 GCPRO3 (args, elt, varlist); | |
699 | |
700 varlist = Fcar (args); | |
485 | 701 while (!NILP (varlist)) |
272 | 702 { |
703 QUIT; | |
704 elt = Fcar (varlist); | |
9148
e7ab930bb7eb
(Fprogn, Finteractive_p, Fuser_variable_p, FletX, Flet, Fmacroexpand,
Karl Heuer <kwzh@gnu.org>
parents:
8980
diff
changeset
|
705 if (SYMBOLP (elt)) |
272 | 706 specbind (elt, Qnil); |
604 | 707 else if (! NILP (Fcdr (Fcdr (elt)))) |
708 Fsignal (Qerror, | |
709 Fcons (build_string ("`let' bindings can have only one value-form"), | |
710 elt)); | |
272 | 711 else |
712 { | |
713 val = Feval (Fcar (Fcdr (elt))); | |
714 specbind (Fcar (elt), val); | |
715 } | |
716 varlist = Fcdr (varlist); | |
717 } | |
718 UNGCPRO; | |
719 val = Fprogn (Fcdr (args)); | |
720 return unbind_to (count, val); | |
721 } | |
722 | |
723 DEFUN ("let", Flet, Slet, 1, UNEVALLED, 0, | |
724 "(let VARLIST BODY...): bind variables according to VARLIST then eval BODY.\n\ | |
725 The value of the last form in BODY is returned.\n\ | |
726 Each element of VARLIST is a symbol (which is bound to nil)\n\ | |
727 or a list (SYMBOL VALUEFORM) (which binds SYMBOL to the value of VALUEFORM).\n\ | |
728 All the VALUEFORMs are evalled before any symbols are bound.") | |
729 (args) | |
730 Lisp_Object args; | |
731 { | |
732 Lisp_Object *temps, tem; | |
733 register Lisp_Object elt, varlist; | |
734 int count = specpdl_ptr - specpdl; | |
735 register int argnum; | |
736 struct gcpro gcpro1, gcpro2; | |
737 | |
738 varlist = Fcar (args); | |
739 | |
740 /* Make space to hold the values to give the bound variables */ | |
741 elt = Flength (varlist); | |
742 temps = (Lisp_Object *) alloca (XFASTINT (elt) * sizeof (Lisp_Object)); | |
743 | |
744 /* Compute the values and store them in `temps' */ | |
745 | |
746 GCPRO2 (args, *temps); | |
747 gcpro2.nvars = 0; | |
748 | |
485 | 749 for (argnum = 0; !NILP (varlist); varlist = Fcdr (varlist)) |
272 | 750 { |
751 QUIT; | |
752 elt = Fcar (varlist); | |
9148
e7ab930bb7eb
(Fprogn, Finteractive_p, Fuser_variable_p, FletX, Flet, Fmacroexpand,
Karl Heuer <kwzh@gnu.org>
parents:
8980
diff
changeset
|
753 if (SYMBOLP (elt)) |
272 | 754 temps [argnum++] = Qnil; |
604 | 755 else if (! NILP (Fcdr (Fcdr (elt)))) |
756 Fsignal (Qerror, | |
757 Fcons (build_string ("`let' bindings can have only one value-form"), | |
758 elt)); | |
272 | 759 else |
760 temps [argnum++] = Feval (Fcar (Fcdr (elt))); | |
761 gcpro2.nvars = argnum; | |
762 } | |
763 UNGCPRO; | |
764 | |
765 varlist = Fcar (args); | |
485 | 766 for (argnum = 0; !NILP (varlist); varlist = Fcdr (varlist)) |
272 | 767 { |
768 elt = Fcar (varlist); | |
769 tem = temps[argnum++]; | |
9148
e7ab930bb7eb
(Fprogn, Finteractive_p, Fuser_variable_p, FletX, Flet, Fmacroexpand,
Karl Heuer <kwzh@gnu.org>
parents:
8980
diff
changeset
|
770 if (SYMBOLP (elt)) |
272 | 771 specbind (elt, tem); |
772 else | |
773 specbind (Fcar (elt), tem); | |
774 } | |
775 | |
776 elt = Fprogn (Fcdr (args)); | |
777 return unbind_to (count, elt); | |
778 } | |
779 | |
780 DEFUN ("while", Fwhile, Swhile, 1, UNEVALLED, 0, | |
781 "(while TEST BODY...): if TEST yields non-nil, eval BODY... and repeat.\n\ | |
782 The order of execution is thus TEST, BODY, TEST, BODY and so on\n\ | |
783 until TEST returns nil.") | |
784 (args) | |
785 Lisp_Object args; | |
786 { | |
787 Lisp_Object test, body, tem; | |
788 struct gcpro gcpro1, gcpro2; | |
789 | |
790 GCPRO2 (test, body); | |
791 | |
792 test = Fcar (args); | |
793 body = Fcdr (args); | |
4167
f037b1f51320
(Fwhile): If mocklisp, test for nonzeroness.
Richard M. Stallman <rms@gnu.org>
parents:
3973
diff
changeset
|
794 while (tem = Feval (test), |
f037b1f51320
(Fwhile): If mocklisp, test for nonzeroness.
Richard M. Stallman <rms@gnu.org>
parents:
3973
diff
changeset
|
795 (!EQ (Vmocklisp_arguments, Qt) ? XINT (tem) : !NILP (tem))) |
272 | 796 { |
797 QUIT; | |
798 Fprogn (body); | |
799 } | |
800 | |
801 UNGCPRO; | |
802 return Qnil; | |
803 } | |
804 | |
805 DEFUN ("macroexpand", Fmacroexpand, Smacroexpand, 1, 2, 0, | |
806 "Return result of expanding macros at top level of FORM.\n\ | |
807 If FORM is not a macro call, it is returned unchanged.\n\ | |
808 Otherwise, the macro is expanded and the expansion is considered\n\ | |
809 in place of FORM. When a non-macro-call results, it is returned.\n\n\ | |
810 The second optional arg ENVIRONMENT species an environment of macro\n\ | |
811 definitions to shadow the loaded ones for use in file byte-compilation.") | |
14073
0df4b4f2a2a1
(Fmacroexpand, Fthrow, Fbacktrace_frame): Harmonize arguments with
Erik Naggum <erik@naggum.no>
parents:
13945
diff
changeset
|
812 (form, environment) |
16113
df832a303ce5
(Fmacroexpand): Don't declare `form' as register.
Richard M. Stallman <rms@gnu.org>
parents:
16108
diff
changeset
|
813 Lisp_Object form; |
14073
0df4b4f2a2a1
(Fmacroexpand, Fthrow, Fbacktrace_frame): Harmonize arguments with
Erik Naggum <erik@naggum.no>
parents:
13945
diff
changeset
|
814 Lisp_Object environment; |
272 | 815 { |
753 | 816 /* With cleanups from Hallvard Furuseth. */ |
272 | 817 register Lisp_Object expander, sym, def, tem; |
818 | |
819 while (1) | |
820 { | |
821 /* Come back here each time we expand a macro call, | |
822 in case it expands into another macro call. */ | |
9148
e7ab930bb7eb
(Fprogn, Finteractive_p, Fuser_variable_p, FletX, Flet, Fmacroexpand,
Karl Heuer <kwzh@gnu.org>
parents:
8980
diff
changeset
|
823 if (!CONSP (form)) |
272 | 824 break; |
753 | 825 /* Set SYM, give DEF and TEM right values in case SYM is not a symbol. */ |
25662
0a7261c1d487
Use XCAR, XCDR, and XFLOAT_DATA instead of explicit member access.
Ken Raeburn <raeburn@raeburn.org>
parents:
25314
diff
changeset
|
826 def = sym = XCAR (form); |
753 | 827 tem = Qnil; |
272 | 828 /* Trace symbols aliases to other symbols |
829 until we get a symbol that is not an alias. */ | |
9148
e7ab930bb7eb
(Fprogn, Finteractive_p, Fuser_variable_p, FletX, Flet, Fmacroexpand,
Karl Heuer <kwzh@gnu.org>
parents:
8980
diff
changeset
|
830 while (SYMBOLP (def)) |
272 | 831 { |
832 QUIT; | |
753 | 833 sym = def; |
14073
0df4b4f2a2a1
(Fmacroexpand, Fthrow, Fbacktrace_frame): Harmonize arguments with
Erik Naggum <erik@naggum.no>
parents:
13945
diff
changeset
|
834 tem = Fassq (sym, environment); |
485 | 835 if (NILP (tem)) |
272 | 836 { |
837 def = XSYMBOL (sym)->function; | |
753 | 838 if (!EQ (def, Qunbound)) |
839 continue; | |
272 | 840 } |
753 | 841 break; |
272 | 842 } |
14073
0df4b4f2a2a1
(Fmacroexpand, Fthrow, Fbacktrace_frame): Harmonize arguments with
Erik Naggum <erik@naggum.no>
parents:
13945
diff
changeset
|
843 /* Right now TEM is the result from SYM in ENVIRONMENT, |
272 | 844 and if TEM is nil then DEF is SYM's function definition. */ |
485 | 845 if (NILP (tem)) |
272 | 846 { |
14073
0df4b4f2a2a1
(Fmacroexpand, Fthrow, Fbacktrace_frame): Harmonize arguments with
Erik Naggum <erik@naggum.no>
parents:
13945
diff
changeset
|
847 /* SYM is not mentioned in ENVIRONMENT. |
272 | 848 Look at its function definition. */ |
9148
e7ab930bb7eb
(Fprogn, Finteractive_p, Fuser_variable_p, FletX, Flet, Fmacroexpand,
Karl Heuer <kwzh@gnu.org>
parents:
8980
diff
changeset
|
849 if (EQ (def, Qunbound) || !CONSP (def)) |
272 | 850 /* Not defined or definition not suitable */ |
851 break; | |
25662
0a7261c1d487
Use XCAR, XCDR, and XFLOAT_DATA instead of explicit member access.
Ken Raeburn <raeburn@raeburn.org>
parents:
25314
diff
changeset
|
852 if (EQ (XCAR (def), Qautoload)) |
272 | 853 { |
854 /* Autoloading function: will it be a macro when loaded? */ | |
1564
b327816041d1
* eval.c (Fautoload): Renamed fifth argument TYPE. Document the
Jim Blandy <jimb@redhat.com>
parents:
1452
diff
changeset
|
855 tem = Fnth (make_number (4), def); |
5254
b38b74fe1722
(Fmacroexpand): For an autoload definition,
Richard M. Stallman <rms@gnu.org>
parents:
4782
diff
changeset
|
856 if (EQ (tem, Qt) || EQ (tem, Qmacro)) |
1564
b327816041d1
* eval.c (Fautoload): Renamed fifth argument TYPE. Document the
Jim Blandy <jimb@redhat.com>
parents:
1452
diff
changeset
|
857 /* Yes, load it and try again. */ |
b327816041d1
* eval.c (Fautoload): Renamed fifth argument TYPE. Document the
Jim Blandy <jimb@redhat.com>
parents:
1452
diff
changeset
|
858 { |
16108
2c9c0c867e00
(Fmacroexpand): gcpro form while calling do_autoload.
Richard M. Stallman <rms@gnu.org>
parents:
15275
diff
changeset
|
859 struct gcpro gcpro1; |
2c9c0c867e00
(Fmacroexpand): gcpro form while calling do_autoload.
Richard M. Stallman <rms@gnu.org>
parents:
15275
diff
changeset
|
860 GCPRO1 (form); |
1564
b327816041d1
* eval.c (Fautoload): Renamed fifth argument TYPE. Document the
Jim Blandy <jimb@redhat.com>
parents:
1452
diff
changeset
|
861 do_autoload (def, sym); |
16108
2c9c0c867e00
(Fmacroexpand): gcpro form while calling do_autoload.
Richard M. Stallman <rms@gnu.org>
parents:
15275
diff
changeset
|
862 UNGCPRO; |
1564
b327816041d1
* eval.c (Fautoload): Renamed fifth argument TYPE. Document the
Jim Blandy <jimb@redhat.com>
parents:
1452
diff
changeset
|
863 continue; |
b327816041d1
* eval.c (Fautoload): Renamed fifth argument TYPE. Document the
Jim Blandy <jimb@redhat.com>
parents:
1452
diff
changeset
|
864 } |
b327816041d1
* eval.c (Fautoload): Renamed fifth argument TYPE. Document the
Jim Blandy <jimb@redhat.com>
parents:
1452
diff
changeset
|
865 else |
272 | 866 break; |
867 } | |
25662
0a7261c1d487
Use XCAR, XCDR, and XFLOAT_DATA instead of explicit member access.
Ken Raeburn <raeburn@raeburn.org>
parents:
25314
diff
changeset
|
868 else if (!EQ (XCAR (def), Qmacro)) |
272 | 869 break; |
25662
0a7261c1d487
Use XCAR, XCDR, and XFLOAT_DATA instead of explicit member access.
Ken Raeburn <raeburn@raeburn.org>
parents:
25314
diff
changeset
|
870 else expander = XCDR (def); |
272 | 871 } |
872 else | |
873 { | |
25662
0a7261c1d487
Use XCAR, XCDR, and XFLOAT_DATA instead of explicit member access.
Ken Raeburn <raeburn@raeburn.org>
parents:
25314
diff
changeset
|
874 expander = XCDR (tem); |
485 | 875 if (NILP (expander)) |
272 | 876 break; |
877 } | |
25662
0a7261c1d487
Use XCAR, XCDR, and XFLOAT_DATA instead of explicit member access.
Ken Raeburn <raeburn@raeburn.org>
parents:
25314
diff
changeset
|
878 form = apply1 (expander, XCDR (form)); |
272 | 879 } |
880 return form; | |
881 } | |
882 | |
883 DEFUN ("catch", Fcatch, Scatch, 1, UNEVALLED, 0, | |
884 "(catch TAG BODY...): eval BODY allowing nonlocal exits using `throw'.\n\ | |
21589 | 885 TAG is evalled to get the tag to use; it must not be nil.\n\ |
886 \n\ | |
887 Then the BODY is executed.\n\ | |
272 | 888 Within BODY, (throw TAG) with same tag exits BODY and exits this `catch'.\n\ |
889 If no throw happens, `catch' returns the value of the last BODY form.\n\ | |
890 If a throw happens, it specifies the value to return from `catch'.") | |
891 (args) | |
892 Lisp_Object args; | |
893 { | |
894 register Lisp_Object tag; | |
895 struct gcpro gcpro1; | |
896 | |
897 GCPRO1 (args); | |
898 tag = Feval (Fcar (args)); | |
899 UNGCPRO; | |
900 return internal_catch (tag, Fprogn, Fcdr (args)); | |
901 } | |
902 | |
903 /* Set up a catch, then call C function FUNC on argument ARG. | |
904 FUNC should return a Lisp_Object. | |
905 This is how catches are done from within C code. */ | |
906 | |
907 Lisp_Object | |
908 internal_catch (tag, func, arg) | |
909 Lisp_Object tag; | |
910 Lisp_Object (*func) (); | |
911 Lisp_Object arg; | |
912 { | |
913 /* This structure is made part of the chain `catchlist'. */ | |
914 struct catchtag c; | |
915 | |
916 /* Fill in the components of c, and put it on the list. */ | |
917 c.next = catchlist; | |
918 c.tag = tag; | |
919 c.val = Qnil; | |
920 c.backlist = backtrace_list; | |
921 c.handlerlist = handlerlist; | |
922 c.lisp_eval_depth = lisp_eval_depth; | |
923 c.pdlcount = specpdl_ptr - specpdl; | |
924 c.poll_suppress_count = poll_suppress_count; | |
925 c.gcpro = gcprolist; | |
26365
6527989cb214
(struct catchtag): Add member byte_stack.
Gerd Moellmann <gerd@gnu.org>
parents:
26307
diff
changeset
|
926 c.byte_stack = byte_stack_list; |
272 | 927 catchlist = &c; |
928 | |
929 /* Call FUNC. */ | |
930 if (! _setjmp (c.jmp)) | |
931 c.val = (*func) (arg); | |
932 | |
933 /* Throw works by a longjmp that comes right here. */ | |
934 catchlist = c.next; | |
935 return c.val; | |
936 } | |
937 | |
1199
ab2d88e2505b
* eval.c (unbind_catch): Do the long-jump here. Take a VALUE
Jim Blandy <jimb@redhat.com>
parents:
1196
diff
changeset
|
938 /* Unwind the specbind, catch, and handler stacks back to CATCH, and |
ab2d88e2505b
* eval.c (unbind_catch): Do the long-jump here. Take a VALUE
Jim Blandy <jimb@redhat.com>
parents:
1196
diff
changeset
|
939 jump to that CATCH, returning VALUE as the value of that catch. |
ab2d88e2505b
* eval.c (unbind_catch): Do the long-jump here. Take a VALUE
Jim Blandy <jimb@redhat.com>
parents:
1196
diff
changeset
|
940 |
ab2d88e2505b
* eval.c (unbind_catch): Do the long-jump here. Take a VALUE
Jim Blandy <jimb@redhat.com>
parents:
1196
diff
changeset
|
941 This is the guts Fthrow and Fsignal; they differ only in the way |
ab2d88e2505b
* eval.c (unbind_catch): Do the long-jump here. Take a VALUE
Jim Blandy <jimb@redhat.com>
parents:
1196
diff
changeset
|
942 they choose the catch tag to throw to. A catch tag for a |
ab2d88e2505b
* eval.c (unbind_catch): Do the long-jump here. Take a VALUE
Jim Blandy <jimb@redhat.com>
parents:
1196
diff
changeset
|
943 condition-case form has a TAG of Qnil. |
272 | 944 |
1199
ab2d88e2505b
* eval.c (unbind_catch): Do the long-jump here. Take a VALUE
Jim Blandy <jimb@redhat.com>
parents:
1196
diff
changeset
|
945 Before each catch is discarded, unbind all special bindings and |
ab2d88e2505b
* eval.c (unbind_catch): Do the long-jump here. Take a VALUE
Jim Blandy <jimb@redhat.com>
parents:
1196
diff
changeset
|
946 execute all unwind-protect clauses made above that catch. Unwind |
ab2d88e2505b
* eval.c (unbind_catch): Do the long-jump here. Take a VALUE
Jim Blandy <jimb@redhat.com>
parents:
1196
diff
changeset
|
947 the handler stack as we go, so that the proper handlers are in |
ab2d88e2505b
* eval.c (unbind_catch): Do the long-jump here. Take a VALUE
Jim Blandy <jimb@redhat.com>
parents:
1196
diff
changeset
|
948 effect for each unwind-protect clause we run. At the end, restore |
ab2d88e2505b
* eval.c (unbind_catch): Do the long-jump here. Take a VALUE
Jim Blandy <jimb@redhat.com>
parents:
1196
diff
changeset
|
949 some static info saved in CATCH, and longjmp to the location |
ab2d88e2505b
* eval.c (unbind_catch): Do the long-jump here. Take a VALUE
Jim Blandy <jimb@redhat.com>
parents:
1196
diff
changeset
|
950 specified in the |
272 | 951 |
1199
ab2d88e2505b
* eval.c (unbind_catch): Do the long-jump here. Take a VALUE
Jim Blandy <jimb@redhat.com>
parents:
1196
diff
changeset
|
952 This is used for correct unwinding in Fthrow and Fsignal. */ |
272 | 953 |
954 static void | |
1199
ab2d88e2505b
* eval.c (unbind_catch): Do the long-jump here. Take a VALUE
Jim Blandy <jimb@redhat.com>
parents:
1196
diff
changeset
|
955 unwind_to_catch (catch, value) |
272 | 956 struct catchtag *catch; |
1199
ab2d88e2505b
* eval.c (unbind_catch): Do the long-jump here. Take a VALUE
Jim Blandy <jimb@redhat.com>
parents:
1196
diff
changeset
|
957 Lisp_Object value; |
272 | 958 { |
959 register int last_time; | |
960 | |
1199
ab2d88e2505b
* eval.c (unbind_catch): Do the long-jump here. Take a VALUE
Jim Blandy <jimb@redhat.com>
parents:
1196
diff
changeset
|
961 /* Save the value in the tag. */ |
ab2d88e2505b
* eval.c (unbind_catch): Do the long-jump here. Take a VALUE
Jim Blandy <jimb@redhat.com>
parents:
1196
diff
changeset
|
962 catch->val = value; |
ab2d88e2505b
* eval.c (unbind_catch): Do the long-jump here. Take a VALUE
Jim Blandy <jimb@redhat.com>
parents:
1196
diff
changeset
|
963 |
1196
65e2edefe748
* eval.c (Fcondition_case): Rearranged for clarity. Don't worry
Jim Blandy <jimb@redhat.com>
parents:
940
diff
changeset
|
964 /* Restore the polling-suppression count. */ |
4474
23d5b09bd218
(unwind_to_catch): Call set_poll_suppress_count.
Richard M. Stallman <rms@gnu.org>
parents:
4462
diff
changeset
|
965 set_poll_suppress_count (catch->poll_suppress_count); |
1196
65e2edefe748
* eval.c (Fcondition_case): Rearranged for clarity. Don't worry
Jim Blandy <jimb@redhat.com>
parents:
940
diff
changeset
|
966 |
272 | 967 do |
968 { | |
969 last_time = catchlist == catch; | |
1196
65e2edefe748
* eval.c (Fcondition_case): Rearranged for clarity. Don't worry
Jim Blandy <jimb@redhat.com>
parents:
940
diff
changeset
|
970 |
65e2edefe748
* eval.c (Fcondition_case): Rearranged for clarity. Don't worry
Jim Blandy <jimb@redhat.com>
parents:
940
diff
changeset
|
971 /* Unwind the specpdl stack, and then restore the proper set of |
65e2edefe748
* eval.c (Fcondition_case): Rearranged for clarity. Don't worry
Jim Blandy <jimb@redhat.com>
parents:
940
diff
changeset
|
972 handlers. */ |
272 | 973 unbind_to (catchlist->pdlcount, Qnil); |
974 handlerlist = catchlist->handlerlist; | |
975 catchlist = catchlist->next; | |
976 } | |
977 while (! last_time); | |
978 | |
26365
6527989cb214
(struct catchtag): Add member byte_stack.
Gerd Moellmann <gerd@gnu.org>
parents:
26307
diff
changeset
|
979 byte_stack_list = catch->byte_stack; |
272 | 980 gcprolist = catch->gcpro; |
26297
4d1e267efd41
[DEBUG_GCPRO] (gcpro_level): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
26088
diff
changeset
|
981 #ifdef DEBUG_GCPRO |
4d1e267efd41
[DEBUG_GCPRO] (gcpro_level): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
26088
diff
changeset
|
982 if (gcprolist != 0) |
4d1e267efd41
[DEBUG_GCPRO] (gcpro_level): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
26088
diff
changeset
|
983 gcpro_level = gcprolist->level + 1; |
4d1e267efd41
[DEBUG_GCPRO] (gcpro_level): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
26088
diff
changeset
|
984 else |
4d1e267efd41
[DEBUG_GCPRO] (gcpro_level): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
26088
diff
changeset
|
985 gcpro_level = 0; |
4d1e267efd41
[DEBUG_GCPRO] (gcpro_level): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
26088
diff
changeset
|
986 #endif |
272 | 987 backtrace_list = catch->backlist; |
988 lisp_eval_depth = catch->lisp_eval_depth; | |
1199
ab2d88e2505b
* eval.c (unbind_catch): Do the long-jump here. Take a VALUE
Jim Blandy <jimb@redhat.com>
parents:
1196
diff
changeset
|
989 |
ab2d88e2505b
* eval.c (unbind_catch): Do the long-jump here. Take a VALUE
Jim Blandy <jimb@redhat.com>
parents:
1196
diff
changeset
|
990 _longjmp (catch->jmp, 1); |
272 | 991 } |
992 | |
993 DEFUN ("throw", Fthrow, Sthrow, 2, 2, 0, | |
994 "(throw TAG VALUE): throw to the catch for TAG and return VALUE from it.\n\ | |
995 Both TAG and VALUE are evalled.") | |
14073
0df4b4f2a2a1
(Fmacroexpand, Fthrow, Fbacktrace_frame): Harmonize arguments with
Erik Naggum <erik@naggum.no>
parents:
13945
diff
changeset
|
996 (tag, value) |
0df4b4f2a2a1
(Fmacroexpand, Fthrow, Fbacktrace_frame): Harmonize arguments with
Erik Naggum <erik@naggum.no>
parents:
13945
diff
changeset
|
997 register Lisp_Object tag, value; |
272 | 998 { |
999 register struct catchtag *c; | |
1000 | |
1001 while (1) | |
1002 { | |
485 | 1003 if (!NILP (tag)) |
272 | 1004 for (c = catchlist; c; c = c->next) |
1005 { | |
1006 if (EQ (c->tag, tag)) | |
14073
0df4b4f2a2a1
(Fmacroexpand, Fthrow, Fbacktrace_frame): Harmonize arguments with
Erik Naggum <erik@naggum.no>
parents:
13945
diff
changeset
|
1007 unwind_to_catch (c, value); |
272 | 1008 } |
14073
0df4b4f2a2a1
(Fmacroexpand, Fthrow, Fbacktrace_frame): Harmonize arguments with
Erik Naggum <erik@naggum.no>
parents:
13945
diff
changeset
|
1009 tag = Fsignal (Qno_catch, Fcons (tag, Fcons (value, Qnil))); |
272 | 1010 } |
1011 } | |
1012 | |
1013 | |
1014 DEFUN ("unwind-protect", Funwind_protect, Sunwind_protect, 1, UNEVALLED, 0, | |
1015 "Do BODYFORM, protecting with UNWINDFORMS.\n\ | |
1016 Usage looks like (unwind-protect BODYFORM UNWINDFORMS...).\n\ | |
1017 If BODYFORM completes normally, its value is returned\n\ | |
1018 after executing the UNWINDFORMS.\n\ | |
1019 If BODYFORM exits nonlocally, the UNWINDFORMS are executed anyway.") | |
1020 (args) | |
1021 Lisp_Object args; | |
1022 { | |
1023 Lisp_Object val; | |
1024 int count = specpdl_ptr - specpdl; | |
1025 | |
1026 record_unwind_protect (0, Fcdr (args)); | |
1027 val = Feval (Fcar (args)); | |
1028 return unbind_to (count, val); | |
1029 } | |
1030 | |
1031 /* Chain of condition handlers currently in effect. | |
1032 The elements of this chain are contained in the stack frames | |
1033 of Fcondition_case and internal_condition_case. | |
1034 When an error is signaled (by calling Fsignal, below), | |
1035 this chain is searched for an element that applies. */ | |
1036 | |
1037 struct handler *handlerlist; | |
1038 | |
1039 DEFUN ("condition-case", Fcondition_case, Scondition_case, 2, UNEVALLED, 0, | |
1040 "Regain control when an error is signaled.\n\ | |
1041 Usage looks like (condition-case VAR BODYFORM HANDLERS...).\n\ | |
1042 executes BODYFORM and returns its value if no error happens.\n\ | |
1043 Each element of HANDLERS looks like (CONDITION-NAME BODY...)\n\ | |
1044 where the BODY is made of Lisp expressions.\n\n\ | |
1045 A handler is applicable to an error\n\ | |
1046 if CONDITION-NAME is one of the error's condition names.\n\ | |
1047 If an error happens, the first applicable handler is run.\n\ | |
1048 \n\ | |
5567
c61f49e4283a
(Fcondition_case): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
5566
diff
changeset
|
1049 The car of a handler may be a list of condition names\n\ |
c61f49e4283a
(Fcondition_case): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
5566
diff
changeset
|
1050 instead of a single condition name.\n\ |
c61f49e4283a
(Fcondition_case): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
5566
diff
changeset
|
1051 \n\ |
272 | 1052 When a handler handles an error,\n\ |
1053 control returns to the condition-case and the handler BODY... is executed\n\ | |
1054 with VAR bound to (SIGNALED-CONDITIONS . SIGNAL-DATA).\n\ | |
1055 VAR may be nil; then you do not get access to the signal information.\n\ | |
1056 \n\ | |
1057 The value of the last BODY form is returned from the condition-case.\n\ | |
1058 See also the function `signal' for more info.") | |
1059 (args) | |
1060 Lisp_Object args; | |
1061 { | |
1062 Lisp_Object val; | |
1063 struct catchtag c; | |
1064 struct handler h; | |
1196
65e2edefe748
* eval.c (Fcondition_case): Rearranged for clarity. Don't worry
Jim Blandy <jimb@redhat.com>
parents:
940
diff
changeset
|
1065 register Lisp_Object var, bodyform, handlers; |
65e2edefe748
* eval.c (Fcondition_case): Rearranged for clarity. Don't worry
Jim Blandy <jimb@redhat.com>
parents:
940
diff
changeset
|
1066 |
65e2edefe748
* eval.c (Fcondition_case): Rearranged for clarity. Don't worry
Jim Blandy <jimb@redhat.com>
parents:
940
diff
changeset
|
1067 var = Fcar (args); |
65e2edefe748
* eval.c (Fcondition_case): Rearranged for clarity. Don't worry
Jim Blandy <jimb@redhat.com>
parents:
940
diff
changeset
|
1068 bodyform = Fcar (Fcdr (args)); |
65e2edefe748
* eval.c (Fcondition_case): Rearranged for clarity. Don't worry
Jim Blandy <jimb@redhat.com>
parents:
940
diff
changeset
|
1069 handlers = Fcdr (Fcdr (args)); |
65e2edefe748
* eval.c (Fcondition_case): Rearranged for clarity. Don't worry
Jim Blandy <jimb@redhat.com>
parents:
940
diff
changeset
|
1070 CHECK_SYMBOL (var, 0); |
272 | 1071 |
1196
65e2edefe748
* eval.c (Fcondition_case): Rearranged for clarity. Don't worry
Jim Blandy <jimb@redhat.com>
parents:
940
diff
changeset
|
1072 for (val = handlers; ! NILP (val); val = Fcdr (val)) |
65e2edefe748
* eval.c (Fcondition_case): Rearranged for clarity. Don't worry
Jim Blandy <jimb@redhat.com>
parents:
940
diff
changeset
|
1073 { |
65e2edefe748
* eval.c (Fcondition_case): Rearranged for clarity. Don't worry
Jim Blandy <jimb@redhat.com>
parents:
940
diff
changeset
|
1074 Lisp_Object tem; |
65e2edefe748
* eval.c (Fcondition_case): Rearranged for clarity. Don't worry
Jim Blandy <jimb@redhat.com>
parents:
940
diff
changeset
|
1075 tem = Fcar (val); |
5563
50ada322de3e
(Fcondition_case): Allow a list of condition names in a handler.
Richard M. Stallman <rms@gnu.org>
parents:
5254
diff
changeset
|
1076 if (! (NILP (tem) |
50ada322de3e
(Fcondition_case): Allow a list of condition names in a handler.
Richard M. Stallman <rms@gnu.org>
parents:
5254
diff
changeset
|
1077 || (CONSP (tem) |
25662
0a7261c1d487
Use XCAR, XCDR, and XFLOAT_DATA instead of explicit member access.
Ken Raeburn <raeburn@raeburn.org>
parents:
25314
diff
changeset
|
1078 && (SYMBOLP (XCAR (tem)) |
0a7261c1d487
Use XCAR, XCDR, and XFLOAT_DATA instead of explicit member access.
Ken Raeburn <raeburn@raeburn.org>
parents:
25314
diff
changeset
|
1079 || CONSP (XCAR (tem)))))) |
1196
65e2edefe748
* eval.c (Fcondition_case): Rearranged for clarity. Don't worry
Jim Blandy <jimb@redhat.com>
parents:
940
diff
changeset
|
1080 error ("Invalid condition handler", tem); |
65e2edefe748
* eval.c (Fcondition_case): Rearranged for clarity. Don't worry
Jim Blandy <jimb@redhat.com>
parents:
940
diff
changeset
|
1081 } |
272 | 1082 |
1083 c.tag = Qnil; | |
1084 c.val = Qnil; | |
1085 c.backlist = backtrace_list; | |
1086 c.handlerlist = handlerlist; | |
1087 c.lisp_eval_depth = lisp_eval_depth; | |
1088 c.pdlcount = specpdl_ptr - specpdl; | |
1089 c.poll_suppress_count = poll_suppress_count; | |
1090 c.gcpro = gcprolist; | |
26365
6527989cb214
(struct catchtag): Add member byte_stack.
Gerd Moellmann <gerd@gnu.org>
parents:
26307
diff
changeset
|
1091 c.byte_stack = byte_stack_list; |
272 | 1092 if (_setjmp (c.jmp)) |
1093 { | |
485 | 1094 if (!NILP (h.var)) |
6132
ddf57829cf03
(Fsignal): If DATA is memory_signal_data, don't add to it.
Richard M. Stallman <rms@gnu.org>
parents:
5807
diff
changeset
|
1095 specbind (h.var, c.val); |
ddf57829cf03
(Fsignal): If DATA is memory_signal_data, don't add to it.
Richard M. Stallman <rms@gnu.org>
parents:
5807
diff
changeset
|
1096 val = Fprogn (Fcdr (h.chosen_clause)); |
1196
65e2edefe748
* eval.c (Fcondition_case): Rearranged for clarity. Don't worry
Jim Blandy <jimb@redhat.com>
parents:
940
diff
changeset
|
1097 |
65e2edefe748
* eval.c (Fcondition_case): Rearranged for clarity. Don't worry
Jim Blandy <jimb@redhat.com>
parents:
940
diff
changeset
|
1098 /* Note that this just undoes the binding of h.var; whoever |
65e2edefe748
* eval.c (Fcondition_case): Rearranged for clarity. Don't worry
Jim Blandy <jimb@redhat.com>
parents:
940
diff
changeset
|
1099 longjumped to us unwound the stack to c.pdlcount before |
65e2edefe748
* eval.c (Fcondition_case): Rearranged for clarity. Don't worry
Jim Blandy <jimb@redhat.com>
parents:
940
diff
changeset
|
1100 throwing. */ |
272 | 1101 unbind_to (c.pdlcount, Qnil); |
1102 return val; | |
1103 } | |
1104 c.next = catchlist; | |
1105 catchlist = &c; | |
1106 | |
1196
65e2edefe748
* eval.c (Fcondition_case): Rearranged for clarity. Don't worry
Jim Blandy <jimb@redhat.com>
parents:
940
diff
changeset
|
1107 h.var = var; |
65e2edefe748
* eval.c (Fcondition_case): Rearranged for clarity. Don't worry
Jim Blandy <jimb@redhat.com>
parents:
940
diff
changeset
|
1108 h.handler = handlers; |
272 | 1109 h.next = handlerlist; |
1110 h.tag = &c; | |
1111 handlerlist = &h; | |
1112 | |
1196
65e2edefe748
* eval.c (Fcondition_case): Rearranged for clarity. Don't worry
Jim Blandy <jimb@redhat.com>
parents:
940
diff
changeset
|
1113 val = Feval (bodyform); |
272 | 1114 catchlist = c.next; |
1115 handlerlist = h.next; | |
1116 return val; | |
1117 } | |
1118 | |
14218
346d4cf758f5
(run_hook_with_args): Do nothing if Vrun_hooks is nil.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
1119 /* Call the function BFUN with no arguments, catching errors within it |
346d4cf758f5
(run_hook_with_args): Do nothing if Vrun_hooks is nil.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
1120 according to HANDLERS. If there is an error, call HFUN with |
346d4cf758f5
(run_hook_with_args): Do nothing if Vrun_hooks is nil.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
1121 one argument which is the data that describes the error: |
346d4cf758f5
(run_hook_with_args): Do nothing if Vrun_hooks is nil.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
1122 (SIGNALNAME . DATA) |
346d4cf758f5
(run_hook_with_args): Do nothing if Vrun_hooks is nil.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
1123 |
346d4cf758f5
(run_hook_with_args): Do nothing if Vrun_hooks is nil.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
1124 HANDLERS can be a list of conditions to catch. |
346d4cf758f5
(run_hook_with_args): Do nothing if Vrun_hooks is nil.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
1125 If HANDLERS is Qt, catch all errors. |
346d4cf758f5
(run_hook_with_args): Do nothing if Vrun_hooks is nil.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
1126 If HANDLERS is Qerror, catch all errors |
346d4cf758f5
(run_hook_with_args): Do nothing if Vrun_hooks is nil.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
1127 but allow the debugger to run if that is enabled. */ |
346d4cf758f5
(run_hook_with_args): Do nothing if Vrun_hooks is nil.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
1128 |
272 | 1129 Lisp_Object |
1130 internal_condition_case (bfun, handlers, hfun) | |
1131 Lisp_Object (*bfun) (); | |
1132 Lisp_Object handlers; | |
1133 Lisp_Object (*hfun) (); | |
1134 { | |
1135 Lisp_Object val; | |
1136 struct catchtag c; | |
1137 struct handler h; | |
1138 | |
11365
1e2290c04cce
(internal_condition_case): Abort if interrupt_input_blocked>0.
Richard M. Stallman <rms@gnu.org>
parents:
11251
diff
changeset
|
1139 /* Since Fsignal resets this to 0, it had better be 0 now |
1e2290c04cce
(internal_condition_case): Abort if interrupt_input_blocked>0.
Richard M. Stallman <rms@gnu.org>
parents:
11251
diff
changeset
|
1140 or else we have a potential bug. */ |
1e2290c04cce
(internal_condition_case): Abort if interrupt_input_blocked>0.
Richard M. Stallman <rms@gnu.org>
parents:
11251
diff
changeset
|
1141 if (interrupt_input_blocked != 0) |
1e2290c04cce
(internal_condition_case): Abort if interrupt_input_blocked>0.
Richard M. Stallman <rms@gnu.org>
parents:
11251
diff
changeset
|
1142 abort (); |
1e2290c04cce
(internal_condition_case): Abort if interrupt_input_blocked>0.
Richard M. Stallman <rms@gnu.org>
parents:
11251
diff
changeset
|
1143 |
272 | 1144 c.tag = Qnil; |
1145 c.val = Qnil; | |
1146 c.backlist = backtrace_list; | |
1147 c.handlerlist = handlerlist; | |
1148 c.lisp_eval_depth = lisp_eval_depth; | |
1149 c.pdlcount = specpdl_ptr - specpdl; | |
1150 c.poll_suppress_count = poll_suppress_count; | |
1151 c.gcpro = gcprolist; | |
26365
6527989cb214
(struct catchtag): Add member byte_stack.
Gerd Moellmann <gerd@gnu.org>
parents:
26307
diff
changeset
|
1152 c.byte_stack = byte_stack_list; |
272 | 1153 if (_setjmp (c.jmp)) |
1154 { | |
6132
ddf57829cf03
(Fsignal): If DATA is memory_signal_data, don't add to it.
Richard M. Stallman <rms@gnu.org>
parents:
5807
diff
changeset
|
1155 return (*hfun) (c.val); |
272 | 1156 } |
1157 c.next = catchlist; | |
1158 catchlist = &c; | |
1159 h.handler = handlers; | |
1160 h.var = Qnil; | |
1161 h.next = handlerlist; | |
1162 h.tag = &c; | |
1163 handlerlist = &h; | |
1164 | |
1165 val = (*bfun) (); | |
1166 catchlist = c.next; | |
1167 handlerlist = h.next; | |
1168 return val; | |
1169 } | |
1170 | |
14218
346d4cf758f5
(run_hook_with_args): Do nothing if Vrun_hooks is nil.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
1171 /* Like internal_condition_case but call HFUN with ARG as its argument. */ |
346d4cf758f5
(run_hook_with_args): Do nothing if Vrun_hooks is nil.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
1172 |
5807
cc9d9ab24008
(internal_condition_case_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5567
diff
changeset
|
1173 Lisp_Object |
cc9d9ab24008
(internal_condition_case_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5567
diff
changeset
|
1174 internal_condition_case_1 (bfun, arg, handlers, hfun) |
cc9d9ab24008
(internal_condition_case_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5567
diff
changeset
|
1175 Lisp_Object (*bfun) (); |
cc9d9ab24008
(internal_condition_case_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5567
diff
changeset
|
1176 Lisp_Object arg; |
cc9d9ab24008
(internal_condition_case_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5567
diff
changeset
|
1177 Lisp_Object handlers; |
cc9d9ab24008
(internal_condition_case_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5567
diff
changeset
|
1178 Lisp_Object (*hfun) (); |
cc9d9ab24008
(internal_condition_case_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5567
diff
changeset
|
1179 { |
cc9d9ab24008
(internal_condition_case_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5567
diff
changeset
|
1180 Lisp_Object val; |
cc9d9ab24008
(internal_condition_case_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5567
diff
changeset
|
1181 struct catchtag c; |
cc9d9ab24008
(internal_condition_case_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5567
diff
changeset
|
1182 struct handler h; |
cc9d9ab24008
(internal_condition_case_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5567
diff
changeset
|
1183 |
cc9d9ab24008
(internal_condition_case_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5567
diff
changeset
|
1184 c.tag = Qnil; |
cc9d9ab24008
(internal_condition_case_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5567
diff
changeset
|
1185 c.val = Qnil; |
cc9d9ab24008
(internal_condition_case_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5567
diff
changeset
|
1186 c.backlist = backtrace_list; |
cc9d9ab24008
(internal_condition_case_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5567
diff
changeset
|
1187 c.handlerlist = handlerlist; |
cc9d9ab24008
(internal_condition_case_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5567
diff
changeset
|
1188 c.lisp_eval_depth = lisp_eval_depth; |
cc9d9ab24008
(internal_condition_case_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5567
diff
changeset
|
1189 c.pdlcount = specpdl_ptr - specpdl; |
cc9d9ab24008
(internal_condition_case_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5567
diff
changeset
|
1190 c.poll_suppress_count = poll_suppress_count; |
cc9d9ab24008
(internal_condition_case_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5567
diff
changeset
|
1191 c.gcpro = gcprolist; |
26365
6527989cb214
(struct catchtag): Add member byte_stack.
Gerd Moellmann <gerd@gnu.org>
parents:
26307
diff
changeset
|
1192 c.byte_stack = byte_stack_list; |
5807
cc9d9ab24008
(internal_condition_case_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5567
diff
changeset
|
1193 if (_setjmp (c.jmp)) |
cc9d9ab24008
(internal_condition_case_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5567
diff
changeset
|
1194 { |
6132
ddf57829cf03
(Fsignal): If DATA is memory_signal_data, don't add to it.
Richard M. Stallman <rms@gnu.org>
parents:
5807
diff
changeset
|
1195 return (*hfun) (c.val); |
5807
cc9d9ab24008
(internal_condition_case_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5567
diff
changeset
|
1196 } |
cc9d9ab24008
(internal_condition_case_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5567
diff
changeset
|
1197 c.next = catchlist; |
cc9d9ab24008
(internal_condition_case_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5567
diff
changeset
|
1198 catchlist = &c; |
cc9d9ab24008
(internal_condition_case_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5567
diff
changeset
|
1199 h.handler = handlers; |
cc9d9ab24008
(internal_condition_case_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5567
diff
changeset
|
1200 h.var = Qnil; |
cc9d9ab24008
(internal_condition_case_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5567
diff
changeset
|
1201 h.next = handlerlist; |
cc9d9ab24008
(internal_condition_case_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5567
diff
changeset
|
1202 h.tag = &c; |
cc9d9ab24008
(internal_condition_case_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5567
diff
changeset
|
1203 handlerlist = &h; |
cc9d9ab24008
(internal_condition_case_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5567
diff
changeset
|
1204 |
cc9d9ab24008
(internal_condition_case_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5567
diff
changeset
|
1205 val = (*bfun) (arg); |
cc9d9ab24008
(internal_condition_case_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5567
diff
changeset
|
1206 catchlist = c.next; |
cc9d9ab24008
(internal_condition_case_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5567
diff
changeset
|
1207 handlerlist = h.next; |
cc9d9ab24008
(internal_condition_case_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5567
diff
changeset
|
1208 return val; |
cc9d9ab24008
(internal_condition_case_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5567
diff
changeset
|
1209 } |
cc9d9ab24008
(internal_condition_case_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5567
diff
changeset
|
1210 |
272 | 1211 static Lisp_Object find_handler_clause (); |
1212 | |
1213 DEFUN ("signal", Fsignal, Ssignal, 2, 2, 0, | |
5566
e2925466c923
(Fsignal): Rename 1st arg to error_symbol.
Richard M. Stallman <rms@gnu.org>
parents:
5563
diff
changeset
|
1214 "Signal an error. Args are ERROR-SYMBOL and associated DATA.\n\ |
272 | 1215 This function does not return.\n\n\ |
5566
e2925466c923
(Fsignal): Rename 1st arg to error_symbol.
Richard M. Stallman <rms@gnu.org>
parents:
5563
diff
changeset
|
1216 An error symbol is a symbol with an `error-conditions' property\n\ |
272 | 1217 that is a list of condition names.\n\ |
1218 A handler for any of those names will get to handle this signal.\n\ | |
1219 The symbol `error' should normally be one of them.\n\ | |
1220 \n\ | |
1221 DATA should be a list. Its elements are printed as part of the error message.\n\ | |
1222 If the signal is handled, DATA is made available to the handler.\n\ | |
1223 See also the function `condition-case'.") | |
5566
e2925466c923
(Fsignal): Rename 1st arg to error_symbol.
Richard M. Stallman <rms@gnu.org>
parents:
5563
diff
changeset
|
1224 (error_symbol, data) |
e2925466c923
(Fsignal): Rename 1st arg to error_symbol.
Richard M. Stallman <rms@gnu.org>
parents:
5563
diff
changeset
|
1225 Lisp_Object error_symbol, data; |
272 | 1226 { |
24171
44241f56675a
(Fsignal): Move comment to avoid confusing make-docfile.
Andreas Schwab <schwab@suse.de>
parents:
24054
diff
changeset
|
1227 /* When memory is full, ERROR-SYMBOL is nil, |
44241f56675a
(Fsignal): Move comment to avoid confusing make-docfile.
Andreas Schwab <schwab@suse.de>
parents:
24054
diff
changeset
|
1228 and DATA is (REAL-ERROR-SYMBOL . REAL-DATA). */ |
272 | 1229 register struct handler *allhandlers = handlerlist; |
1230 Lisp_Object conditions; | |
1231 extern int gc_in_progress; | |
1232 extern int waiting_for_input; | |
1233 Lisp_Object debugger_value; | |
16895
32945f27ed20
(Fsignal): Call fatal if no error handlers and no catch.
Richard M. Stallman <rms@gnu.org>
parents:
16485
diff
changeset
|
1234 Lisp_Object string; |
18636
b3f3cd32fa70
(Fsignal, find_handler_clause): If ERROR_SYMBOL
Richard M. Stallman <rms@gnu.org>
parents:
18018
diff
changeset
|
1235 Lisp_Object real_error_symbol; |
25008
39dd5c98a114
(Fsignal): Reset redisplaying_p to zero.
Gerd Moellmann <gerd@gnu.org>
parents:
24605
diff
changeset
|
1236 extern int display_busy_cursor_p; |
39dd5c98a114
(Fsignal): Reset redisplaying_p to zero.
Gerd Moellmann <gerd@gnu.org>
parents:
24605
diff
changeset
|
1237 |
272 | 1238 immediate_quit = 0; |
1239 if (gc_in_progress || waiting_for_input) | |
1240 abort (); | |
1241 | |
1242 TOTALLY_UNBLOCK_INPUT; | |
1243 | |
18636
b3f3cd32fa70
(Fsignal, find_handler_clause): If ERROR_SYMBOL
Richard M. Stallman <rms@gnu.org>
parents:
18018
diff
changeset
|
1244 if (NILP (error_symbol)) |
b3f3cd32fa70
(Fsignal, find_handler_clause): If ERROR_SYMBOL
Richard M. Stallman <rms@gnu.org>
parents:
18018
diff
changeset
|
1245 real_error_symbol = Fcar (data); |
b3f3cd32fa70
(Fsignal, find_handler_clause): If ERROR_SYMBOL
Richard M. Stallman <rms@gnu.org>
parents:
18018
diff
changeset
|
1246 else |
b3f3cd32fa70
(Fsignal, find_handler_clause): If ERROR_SYMBOL
Richard M. Stallman <rms@gnu.org>
parents:
18018
diff
changeset
|
1247 real_error_symbol = error_symbol; |
b3f3cd32fa70
(Fsignal, find_handler_clause): If ERROR_SYMBOL
Richard M. Stallman <rms@gnu.org>
parents:
18018
diff
changeset
|
1248 |
25008
39dd5c98a114
(Fsignal): Reset redisplaying_p to zero.
Gerd Moellmann <gerd@gnu.org>
parents:
24605
diff
changeset
|
1249 #ifdef HAVE_X_WINDOWS |
39dd5c98a114
(Fsignal): Reset redisplaying_p to zero.
Gerd Moellmann <gerd@gnu.org>
parents:
24605
diff
changeset
|
1250 if (display_busy_cursor_p) |
39dd5c98a114
(Fsignal): Reset redisplaying_p to zero.
Gerd Moellmann <gerd@gnu.org>
parents:
24605
diff
changeset
|
1251 Fx_hide_busy_cursor (Qt); |
39dd5c98a114
(Fsignal): Reset redisplaying_p to zero.
Gerd Moellmann <gerd@gnu.org>
parents:
24605
diff
changeset
|
1252 #endif |
39dd5c98a114
(Fsignal): Reset redisplaying_p to zero.
Gerd Moellmann <gerd@gnu.org>
parents:
24605
diff
changeset
|
1253 |
16355
1d85b2698564
(Vdebug_force): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
16296
diff
changeset
|
1254 /* This hook is used by edebug. */ |
1d85b2698564
(Vdebug_force): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
16296
diff
changeset
|
1255 if (! NILP (Vsignal_hook_function)) |
18018
2a11f1e4bd6b
(Fsignal): Use call2 to call Vsignal_hook_function.
Richard M. Stallman <rms@gnu.org>
parents:
17872
diff
changeset
|
1256 call2 (Vsignal_hook_function, error_symbol, data); |
16355
1d85b2698564
(Vdebug_force): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
16296
diff
changeset
|
1257 |
18636
b3f3cd32fa70
(Fsignal, find_handler_clause): If ERROR_SYMBOL
Richard M. Stallman <rms@gnu.org>
parents:
18018
diff
changeset
|
1258 conditions = Fget (real_error_symbol, Qerror_conditions); |
272 | 1259 |
1260 for (; handlerlist; handlerlist = handlerlist->next) | |
1261 { | |
1262 register Lisp_Object clause; | |
1263 clause = find_handler_clause (handlerlist->handler, conditions, | |
5566
e2925466c923
(Fsignal): Rename 1st arg to error_symbol.
Richard M. Stallman <rms@gnu.org>
parents:
5563
diff
changeset
|
1264 error_symbol, data, &debugger_value); |
272 | 1265 |
1266 #if 0 /* Most callers are not prepared to handle gc if this returns. | |
1267 So, since this feature is not very useful, take it out. */ | |
1268 /* If have called debugger and user wants to continue, | |
1269 just return nil. */ | |
1270 if (EQ (clause, Qlambda)) | |
1271 return debugger_value; | |
1272 #else | |
1273 if (EQ (clause, Qlambda)) | |
1196
65e2edefe748
* eval.c (Fcondition_case): Rearranged for clarity. Don't worry
Jim Blandy <jimb@redhat.com>
parents:
940
diff
changeset
|
1274 { |
13945
6a653c300631
(syms_of_eval): Doc fix for inhibit-quit.
Karl Heuer <kwzh@gnu.org>
parents:
13768
diff
changeset
|
1275 /* We can't return values to code which signaled an error, but we |
6a653c300631
(syms_of_eval): Doc fix for inhibit-quit.
Karl Heuer <kwzh@gnu.org>
parents:
13768
diff
changeset
|
1276 can continue code which has signaled a quit. */ |
18636
b3f3cd32fa70
(Fsignal, find_handler_clause): If ERROR_SYMBOL
Richard M. Stallman <rms@gnu.org>
parents:
18018
diff
changeset
|
1277 if (EQ (real_error_symbol, Qquit)) |
1196
65e2edefe748
* eval.c (Fcondition_case): Rearranged for clarity. Don't worry
Jim Blandy <jimb@redhat.com>
parents:
940
diff
changeset
|
1278 return Qnil; |
65e2edefe748
* eval.c (Fcondition_case): Rearranged for clarity. Don't worry
Jim Blandy <jimb@redhat.com>
parents:
940
diff
changeset
|
1279 else |
3973
ab06b106c490
(Fsignal): Clarify error message.
Richard M. Stallman <rms@gnu.org>
parents:
3703
diff
changeset
|
1280 error ("Cannot return from the debugger in an error"); |
1196
65e2edefe748
* eval.c (Fcondition_case): Rearranged for clarity. Don't worry
Jim Blandy <jimb@redhat.com>
parents:
940
diff
changeset
|
1281 } |
272 | 1282 #endif |
1283 | |
485 | 1284 if (!NILP (clause)) |
272 | 1285 { |
6132
ddf57829cf03
(Fsignal): If DATA is memory_signal_data, don't add to it.
Richard M. Stallman <rms@gnu.org>
parents:
5807
diff
changeset
|
1286 Lisp_Object unwind_data; |
272 | 1287 struct handler *h = handlerlist; |
6132
ddf57829cf03
(Fsignal): If DATA is memory_signal_data, don't add to it.
Richard M. Stallman <rms@gnu.org>
parents:
5807
diff
changeset
|
1288 |
272 | 1289 handlerlist = allhandlers; |
18636
b3f3cd32fa70
(Fsignal, find_handler_clause): If ERROR_SYMBOL
Richard M. Stallman <rms@gnu.org>
parents:
18018
diff
changeset
|
1290 |
b3f3cd32fa70
(Fsignal, find_handler_clause): If ERROR_SYMBOL
Richard M. Stallman <rms@gnu.org>
parents:
18018
diff
changeset
|
1291 if (NILP (error_symbol)) |
b3f3cd32fa70
(Fsignal, find_handler_clause): If ERROR_SYMBOL
Richard M. Stallman <rms@gnu.org>
parents:
18018
diff
changeset
|
1292 unwind_data = data; |
6132
ddf57829cf03
(Fsignal): If DATA is memory_signal_data, don't add to it.
Richard M. Stallman <rms@gnu.org>
parents:
5807
diff
changeset
|
1293 else |
ddf57829cf03
(Fsignal): If DATA is memory_signal_data, don't add to it.
Richard M. Stallman <rms@gnu.org>
parents:
5807
diff
changeset
|
1294 unwind_data = Fcons (error_symbol, data); |
ddf57829cf03
(Fsignal): If DATA is memory_signal_data, don't add to it.
Richard M. Stallman <rms@gnu.org>
parents:
5807
diff
changeset
|
1295 h->chosen_clause = clause; |
ddf57829cf03
(Fsignal): If DATA is memory_signal_data, don't add to it.
Richard M. Stallman <rms@gnu.org>
parents:
5807
diff
changeset
|
1296 unwind_to_catch (h->tag, unwind_data); |
272 | 1297 } |
1298 } | |
1299 | |
1300 handlerlist = allhandlers; | |
1301 /* If no handler is present now, try to run the debugger, | |
1302 and if that fails, throw to top level. */ | |
5566
e2925466c923
(Fsignal): Rename 1st arg to error_symbol.
Richard M. Stallman <rms@gnu.org>
parents:
5563
diff
changeset
|
1303 find_handler_clause (Qerror, conditions, error_symbol, data, &debugger_value); |
16895
32945f27ed20
(Fsignal): Call fatal if no error handlers and no catch.
Richard M. Stallman <rms@gnu.org>
parents:
16485
diff
changeset
|
1304 if (catchlist != 0) |
32945f27ed20
(Fsignal): Call fatal if no error handlers and no catch.
Richard M. Stallman <rms@gnu.org>
parents:
16485
diff
changeset
|
1305 Fthrow (Qtop_level, Qt); |
32945f27ed20
(Fsignal): Call fatal if no error handlers and no catch.
Richard M. Stallman <rms@gnu.org>
parents:
16485
diff
changeset
|
1306 |
18636
b3f3cd32fa70
(Fsignal, find_handler_clause): If ERROR_SYMBOL
Richard M. Stallman <rms@gnu.org>
parents:
18018
diff
changeset
|
1307 if (! NILP (error_symbol)) |
16895
32945f27ed20
(Fsignal): Call fatal if no error handlers and no catch.
Richard M. Stallman <rms@gnu.org>
parents:
16485
diff
changeset
|
1308 data = Fcons (error_symbol, data); |
32945f27ed20
(Fsignal): Call fatal if no error handlers and no catch.
Richard M. Stallman <rms@gnu.org>
parents:
16485
diff
changeset
|
1309 |
32945f27ed20
(Fsignal): Call fatal if no error handlers and no catch.
Richard M. Stallman <rms@gnu.org>
parents:
16485
diff
changeset
|
1310 string = Ferror_message_string (data); |
23578
a4b29402f761
(Fsignal): Use a separate format string when passing
Andreas Schwab <schwab@suse.de>
parents:
23206
diff
changeset
|
1311 fatal ("%s", XSTRING (string)->data, 0); |
272 | 1312 } |
1313 | |
684 | 1314 /* Return nonzero iff LIST is a non-nil atom or |
1315 a list containing one of CONDITIONS. */ | |
1316 | |
1317 static int | |
1318 wants_debugger (list, conditions) | |
1319 Lisp_Object list, conditions; | |
1320 { | |
706
86cb5db0b6c3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
687
diff
changeset
|
1321 if (NILP (list)) |
684 | 1322 return 0; |
1323 if (! CONSP (list)) | |
1324 return 1; | |
1325 | |
878
5b1c5b4286e7
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
863
diff
changeset
|
1326 while (CONSP (conditions)) |
684 | 1327 { |
878
5b1c5b4286e7
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
863
diff
changeset
|
1328 Lisp_Object this, tail; |
25662
0a7261c1d487
Use XCAR, XCDR, and XFLOAT_DATA instead of explicit member access.
Ken Raeburn <raeburn@raeburn.org>
parents:
25314
diff
changeset
|
1329 this = XCAR (conditions); |
0a7261c1d487
Use XCAR, XCDR, and XFLOAT_DATA instead of explicit member access.
Ken Raeburn <raeburn@raeburn.org>
parents:
25314
diff
changeset
|
1330 for (tail = list; CONSP (tail); tail = XCDR (tail)) |
0a7261c1d487
Use XCAR, XCDR, and XFLOAT_DATA instead of explicit member access.
Ken Raeburn <raeburn@raeburn.org>
parents:
25314
diff
changeset
|
1331 if (EQ (XCAR (tail), this)) |
684 | 1332 return 1; |
25662
0a7261c1d487
Use XCAR, XCDR, and XFLOAT_DATA instead of explicit member access.
Ken Raeburn <raeburn@raeburn.org>
parents:
25314
diff
changeset
|
1333 conditions = XCDR (conditions); |
684 | 1334 } |
878
5b1c5b4286e7
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
863
diff
changeset
|
1335 return 0; |
684 | 1336 } |
1337 | |
13768 | 1338 /* Return 1 if an error with condition-symbols CONDITIONS, |
1339 and described by SIGNAL-DATA, should skip the debugger | |
1340 according to debugger-ignore-errors. */ | |
1341 | |
1342 static int | |
1343 skip_debugger (conditions, data) | |
1344 Lisp_Object conditions, data; | |
1345 { | |
1346 Lisp_Object tail; | |
1347 int first_string = 1; | |
1348 Lisp_Object error_message; | |
1349 | |
1350 for (tail = Vdebug_ignored_errors; CONSP (tail); | |
25662
0a7261c1d487
Use XCAR, XCDR, and XFLOAT_DATA instead of explicit member access.
Ken Raeburn <raeburn@raeburn.org>
parents:
25314
diff
changeset
|
1351 tail = XCDR (tail)) |
13768 | 1352 { |
25662
0a7261c1d487
Use XCAR, XCDR, and XFLOAT_DATA instead of explicit member access.
Ken Raeburn <raeburn@raeburn.org>
parents:
25314
diff
changeset
|
1353 if (STRINGP (XCAR (tail))) |
13768 | 1354 { |
1355 if (first_string) | |
1356 { | |
1357 error_message = Ferror_message_string (data); | |
1358 first_string = 0; | |
1359 } | |
25662
0a7261c1d487
Use XCAR, XCDR, and XFLOAT_DATA instead of explicit member access.
Ken Raeburn <raeburn@raeburn.org>
parents:
25314
diff
changeset
|
1360 if (fast_string_match (XCAR (tail), error_message) >= 0) |
13768 | 1361 return 1; |
1362 } | |
1363 else | |
1364 { | |
1365 Lisp_Object contail; | |
1366 | |
1367 for (contail = conditions; CONSP (contail); | |
25662
0a7261c1d487
Use XCAR, XCDR, and XFLOAT_DATA instead of explicit member access.
Ken Raeburn <raeburn@raeburn.org>
parents:
25314
diff
changeset
|
1368 contail = XCDR (contail)) |
0a7261c1d487
Use XCAR, XCDR, and XFLOAT_DATA instead of explicit member access.
Ken Raeburn <raeburn@raeburn.org>
parents:
25314
diff
changeset
|
1369 if (EQ (XCAR (tail), XCAR (contail))) |
13768 | 1370 return 1; |
1371 } | |
1372 } | |
1373 | |
1374 return 0; | |
1375 } | |
1376 | |
684 | 1377 /* Value of Qlambda means we have called debugger and user has continued. |
18636
b3f3cd32fa70
(Fsignal, find_handler_clause): If ERROR_SYMBOL
Richard M. Stallman <rms@gnu.org>
parents:
18018
diff
changeset
|
1378 There are two ways to pass SIG and DATA: |
24054
19ff7845d5f7
(find_handler_clause): If SIG is nil (memory full error),
Richard M. Stallman <rms@gnu.org>
parents:
23578
diff
changeset
|
1379 = SIG is the error symbol, and DATA is the rest of the data. |
18636
b3f3cd32fa70
(Fsignal, find_handler_clause): If ERROR_SYMBOL
Richard M. Stallman <rms@gnu.org>
parents:
18018
diff
changeset
|
1380 = SIG is nil, and DATA is (SYMBOL . REST-OF-DATA). |
24054
19ff7845d5f7
(find_handler_clause): If SIG is nil (memory full error),
Richard M. Stallman <rms@gnu.org>
parents:
23578
diff
changeset
|
1381 This is for memory-full errors only. |
18636
b3f3cd32fa70
(Fsignal, find_handler_clause): If ERROR_SYMBOL
Richard M. Stallman <rms@gnu.org>
parents:
18018
diff
changeset
|
1382 |
684 | 1383 Store value returned from debugger into *DEBUGGER_VALUE_PTR. */ |
272 | 1384 |
1385 static Lisp_Object | |
1386 find_handler_clause (handlers, conditions, sig, data, debugger_value_ptr) | |
1387 Lisp_Object handlers, conditions, sig, data; | |
1388 Lisp_Object *debugger_value_ptr; | |
1389 { | |
1390 register Lisp_Object h; | |
1391 register Lisp_Object tem; | |
1392 | |
1393 if (EQ (handlers, Qt)) /* t is used by handlers for all conditions, set up by C code. */ | |
1394 return Qt; | |
16355
1d85b2698564
(Vdebug_force): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
16296
diff
changeset
|
1395 /* error is used similarly, but means print an error message |
1d85b2698564
(Vdebug_force): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
16296
diff
changeset
|
1396 and run the debugger if that is enabled. */ |
1d85b2698564
(Vdebug_force): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
16296
diff
changeset
|
1397 if (EQ (handlers, Qerror) |
16443
0128b923d281
(Vdebug_on_signal): Renamed from Vdebug_force.
Richard M. Stallman <rms@gnu.org>
parents:
16355
diff
changeset
|
1398 || !NILP (Vdebug_on_signal)) /* This says call debugger even if |
0128b923d281
(Vdebug_on_signal): Renamed from Vdebug_force.
Richard M. Stallman <rms@gnu.org>
parents:
16355
diff
changeset
|
1399 there is a handler. */ |
272 | 1400 { |
16355
1d85b2698564
(Vdebug_force): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
16296
diff
changeset
|
1401 int count = specpdl_ptr - specpdl; |
1d85b2698564
(Vdebug_force): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
16296
diff
changeset
|
1402 int debugger_called = 0; |
18636
b3f3cd32fa70
(Fsignal, find_handler_clause): If ERROR_SYMBOL
Richard M. Stallman <rms@gnu.org>
parents:
18018
diff
changeset
|
1403 Lisp_Object sig_symbol, combined_data; |
24054
19ff7845d5f7
(find_handler_clause): If SIG is nil (memory full error),
Richard M. Stallman <rms@gnu.org>
parents:
23578
diff
changeset
|
1404 /* This is set to 1 if we are handling a memory-full error, |
19ff7845d5f7
(find_handler_clause): If SIG is nil (memory full error),
Richard M. Stallman <rms@gnu.org>
parents:
23578
diff
changeset
|
1405 because these must not run the debugger. |
19ff7845d5f7
(find_handler_clause): If SIG is nil (memory full error),
Richard M. Stallman <rms@gnu.org>
parents:
23578
diff
changeset
|
1406 (There is no room in memory to do that!) */ |
19ff7845d5f7
(find_handler_clause): If SIG is nil (memory full error),
Richard M. Stallman <rms@gnu.org>
parents:
23578
diff
changeset
|
1407 int no_debugger = 0; |
18636
b3f3cd32fa70
(Fsignal, find_handler_clause): If ERROR_SYMBOL
Richard M. Stallman <rms@gnu.org>
parents:
18018
diff
changeset
|
1408 |
b3f3cd32fa70
(Fsignal, find_handler_clause): If ERROR_SYMBOL
Richard M. Stallman <rms@gnu.org>
parents:
18018
diff
changeset
|
1409 if (NILP (sig)) |
b3f3cd32fa70
(Fsignal, find_handler_clause): If ERROR_SYMBOL
Richard M. Stallman <rms@gnu.org>
parents:
18018
diff
changeset
|
1410 { |
b3f3cd32fa70
(Fsignal, find_handler_clause): If ERROR_SYMBOL
Richard M. Stallman <rms@gnu.org>
parents:
18018
diff
changeset
|
1411 combined_data = data; |
b3f3cd32fa70
(Fsignal, find_handler_clause): If ERROR_SYMBOL
Richard M. Stallman <rms@gnu.org>
parents:
18018
diff
changeset
|
1412 sig_symbol = Fcar (data); |
24054
19ff7845d5f7
(find_handler_clause): If SIG is nil (memory full error),
Richard M. Stallman <rms@gnu.org>
parents:
23578
diff
changeset
|
1413 no_debugger = 1; |
18636
b3f3cd32fa70
(Fsignal, find_handler_clause): If ERROR_SYMBOL
Richard M. Stallman <rms@gnu.org>
parents:
18018
diff
changeset
|
1414 } |
b3f3cd32fa70
(Fsignal, find_handler_clause): If ERROR_SYMBOL
Richard M. Stallman <rms@gnu.org>
parents:
18018
diff
changeset
|
1415 else |
b3f3cd32fa70
(Fsignal, find_handler_clause): If ERROR_SYMBOL
Richard M. Stallman <rms@gnu.org>
parents:
18018
diff
changeset
|
1416 { |
b3f3cd32fa70
(Fsignal, find_handler_clause): If ERROR_SYMBOL
Richard M. Stallman <rms@gnu.org>
parents:
18018
diff
changeset
|
1417 combined_data = Fcons (sig, data); |
b3f3cd32fa70
(Fsignal, find_handler_clause): If ERROR_SYMBOL
Richard M. Stallman <rms@gnu.org>
parents:
18018
diff
changeset
|
1418 sig_symbol = sig; |
b3f3cd32fa70
(Fsignal, find_handler_clause): If ERROR_SYMBOL
Richard M. Stallman <rms@gnu.org>
parents:
18018
diff
changeset
|
1419 } |
16355
1d85b2698564
(Vdebug_force): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
16296
diff
changeset
|
1420 |
684 | 1421 if (wants_debugger (Vstack_trace_on_error, conditions)) |
21853
6e93713b7d30
(find_handler_clause): Cast Fbacktrace to proper type.
Richard M. Stallman <rms@gnu.org>
parents:
21699
diff
changeset
|
1422 { |
6e93713b7d30
(find_handler_clause): Cast Fbacktrace to proper type.
Richard M. Stallman <rms@gnu.org>
parents:
21699
diff
changeset
|
1423 #ifdef __STDC__ |
6e93713b7d30
(find_handler_clause): Cast Fbacktrace to proper type.
Richard M. Stallman <rms@gnu.org>
parents:
21699
diff
changeset
|
1424 internal_with_output_to_temp_buffer ("*Backtrace*", |
6e93713b7d30
(find_handler_clause): Cast Fbacktrace to proper type.
Richard M. Stallman <rms@gnu.org>
parents:
21699
diff
changeset
|
1425 (Lisp_Object (*) (Lisp_Object)) Fbacktrace, |
6e93713b7d30
(find_handler_clause): Cast Fbacktrace to proper type.
Richard M. Stallman <rms@gnu.org>
parents:
21699
diff
changeset
|
1426 Qnil); |
6e93713b7d30
(find_handler_clause): Cast Fbacktrace to proper type.
Richard M. Stallman <rms@gnu.org>
parents:
21699
diff
changeset
|
1427 #else |
6e93713b7d30
(find_handler_clause): Cast Fbacktrace to proper type.
Richard M. Stallman <rms@gnu.org>
parents:
21699
diff
changeset
|
1428 internal_with_output_to_temp_buffer ("*Backtrace*", |
6e93713b7d30
(find_handler_clause): Cast Fbacktrace to proper type.
Richard M. Stallman <rms@gnu.org>
parents:
21699
diff
changeset
|
1429 Fbacktrace, Qnil); |
6e93713b7d30
(find_handler_clause): Cast Fbacktrace to proper type.
Richard M. Stallman <rms@gnu.org>
parents:
21699
diff
changeset
|
1430 #endif |
6e93713b7d30
(find_handler_clause): Cast Fbacktrace to proper type.
Richard M. Stallman <rms@gnu.org>
parents:
21699
diff
changeset
|
1431 } |
24054
19ff7845d5f7
(find_handler_clause): If SIG is nil (memory full error),
Richard M. Stallman <rms@gnu.org>
parents:
23578
diff
changeset
|
1432 if (! no_debugger |
19ff7845d5f7
(find_handler_clause): If SIG is nil (memory full error),
Richard M. Stallman <rms@gnu.org>
parents:
23578
diff
changeset
|
1433 && (EQ (sig_symbol, Qquit) |
19ff7845d5f7
(find_handler_clause): If SIG is nil (memory full error),
Richard M. Stallman <rms@gnu.org>
parents:
23578
diff
changeset
|
1434 ? debug_on_quit |
19ff7845d5f7
(find_handler_clause): If SIG is nil (memory full error),
Richard M. Stallman <rms@gnu.org>
parents:
23578
diff
changeset
|
1435 : wants_debugger (Vdebug_on_error, conditions)) |
18636
b3f3cd32fa70
(Fsignal, find_handler_clause): If ERROR_SYMBOL
Richard M. Stallman <rms@gnu.org>
parents:
18018
diff
changeset
|
1436 && ! skip_debugger (conditions, combined_data) |
17872
31b2c6763574
(num_nonmacro_input_events):
Richard M. Stallman <rms@gnu.org>
parents:
17275
diff
changeset
|
1437 && when_entered_debugger < num_nonmacro_input_events) |
272 | 1438 { |
1439 specbind (Qdebug_on_error, Qnil); | |
13768 | 1440 *debugger_value_ptr |
1441 = call_debugger (Fcons (Qerror, | |
18636
b3f3cd32fa70
(Fsignal, find_handler_clause): If ERROR_SYMBOL
Richard M. Stallman <rms@gnu.org>
parents:
18018
diff
changeset
|
1442 Fcons (combined_data, Qnil))); |
16355
1d85b2698564
(Vdebug_force): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
16296
diff
changeset
|
1443 debugger_called = 1; |
272 | 1444 } |
16355
1d85b2698564
(Vdebug_force): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
16296
diff
changeset
|
1445 /* If there is no handler, return saying whether we ran the debugger. */ |
1d85b2698564
(Vdebug_force): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
16296
diff
changeset
|
1446 if (EQ (handlers, Qerror)) |
1d85b2698564
(Vdebug_force): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
16296
diff
changeset
|
1447 { |
1d85b2698564
(Vdebug_force): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
16296
diff
changeset
|
1448 if (debugger_called) |
1d85b2698564
(Vdebug_force): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
16296
diff
changeset
|
1449 return unbind_to (count, Qlambda); |
1d85b2698564
(Vdebug_force): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
16296
diff
changeset
|
1450 return Qt; |
1d85b2698564
(Vdebug_force): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
16296
diff
changeset
|
1451 } |
272 | 1452 } |
1453 for (h = handlers; CONSP (h); h = Fcdr (h)) | |
1454 { | |
5563
50ada322de3e
(Fcondition_case): Allow a list of condition names in a handler.
Richard M. Stallman <rms@gnu.org>
parents:
5254
diff
changeset
|
1455 Lisp_Object handler, condit; |
50ada322de3e
(Fcondition_case): Allow a list of condition names in a handler.
Richard M. Stallman <rms@gnu.org>
parents:
5254
diff
changeset
|
1456 |
50ada322de3e
(Fcondition_case): Allow a list of condition names in a handler.
Richard M. Stallman <rms@gnu.org>
parents:
5254
diff
changeset
|
1457 handler = Fcar (h); |
50ada322de3e
(Fcondition_case): Allow a list of condition names in a handler.
Richard M. Stallman <rms@gnu.org>
parents:
5254
diff
changeset
|
1458 if (!CONSP (handler)) |
272 | 1459 continue; |
5563
50ada322de3e
(Fcondition_case): Allow a list of condition names in a handler.
Richard M. Stallman <rms@gnu.org>
parents:
5254
diff
changeset
|
1460 condit = Fcar (handler); |
50ada322de3e
(Fcondition_case): Allow a list of condition names in a handler.
Richard M. Stallman <rms@gnu.org>
parents:
5254
diff
changeset
|
1461 /* Handle a single condition name in handler HANDLER. */ |
50ada322de3e
(Fcondition_case): Allow a list of condition names in a handler.
Richard M. Stallman <rms@gnu.org>
parents:
5254
diff
changeset
|
1462 if (SYMBOLP (condit)) |
50ada322de3e
(Fcondition_case): Allow a list of condition names in a handler.
Richard M. Stallman <rms@gnu.org>
parents:
5254
diff
changeset
|
1463 { |
50ada322de3e
(Fcondition_case): Allow a list of condition names in a handler.
Richard M. Stallman <rms@gnu.org>
parents:
5254
diff
changeset
|
1464 tem = Fmemq (Fcar (handler), conditions); |
50ada322de3e
(Fcondition_case): Allow a list of condition names in a handler.
Richard M. Stallman <rms@gnu.org>
parents:
5254
diff
changeset
|
1465 if (!NILP (tem)) |
50ada322de3e
(Fcondition_case): Allow a list of condition names in a handler.
Richard M. Stallman <rms@gnu.org>
parents:
5254
diff
changeset
|
1466 return handler; |
50ada322de3e
(Fcondition_case): Allow a list of condition names in a handler.
Richard M. Stallman <rms@gnu.org>
parents:
5254
diff
changeset
|
1467 } |
50ada322de3e
(Fcondition_case): Allow a list of condition names in a handler.
Richard M. Stallman <rms@gnu.org>
parents:
5254
diff
changeset
|
1468 /* Handle a list of condition names in handler HANDLER. */ |
50ada322de3e
(Fcondition_case): Allow a list of condition names in a handler.
Richard M. Stallman <rms@gnu.org>
parents:
5254
diff
changeset
|
1469 else if (CONSP (condit)) |
50ada322de3e
(Fcondition_case): Allow a list of condition names in a handler.
Richard M. Stallman <rms@gnu.org>
parents:
5254
diff
changeset
|
1470 { |
50ada322de3e
(Fcondition_case): Allow a list of condition names in a handler.
Richard M. Stallman <rms@gnu.org>
parents:
5254
diff
changeset
|
1471 while (CONSP (condit)) |
50ada322de3e
(Fcondition_case): Allow a list of condition names in a handler.
Richard M. Stallman <rms@gnu.org>
parents:
5254
diff
changeset
|
1472 { |
50ada322de3e
(Fcondition_case): Allow a list of condition names in a handler.
Richard M. Stallman <rms@gnu.org>
parents:
5254
diff
changeset
|
1473 tem = Fmemq (Fcar (condit), conditions); |
50ada322de3e
(Fcondition_case): Allow a list of condition names in a handler.
Richard M. Stallman <rms@gnu.org>
parents:
5254
diff
changeset
|
1474 if (!NILP (tem)) |
50ada322de3e
(Fcondition_case): Allow a list of condition names in a handler.
Richard M. Stallman <rms@gnu.org>
parents:
5254
diff
changeset
|
1475 return handler; |
25662
0a7261c1d487
Use XCAR, XCDR, and XFLOAT_DATA instead of explicit member access.
Ken Raeburn <raeburn@raeburn.org>
parents:
25314
diff
changeset
|
1476 condit = XCDR (condit); |
5563
50ada322de3e
(Fcondition_case): Allow a list of condition names in a handler.
Richard M. Stallman <rms@gnu.org>
parents:
5254
diff
changeset
|
1477 } |
50ada322de3e
(Fcondition_case): Allow a list of condition names in a handler.
Richard M. Stallman <rms@gnu.org>
parents:
5254
diff
changeset
|
1478 } |
272 | 1479 } |
1480 return Qnil; | |
1481 } | |
1482 | |
1483 /* dump an error message; called like printf */ | |
1484 | |
1485 /* VARARGS 1 */ | |
1486 void | |
1487 error (m, a1, a2, a3) | |
1488 char *m; | |
6225
8f92cf89ed7c
(error): Use doprnt. Make buffer larger as necessary.
Richard M. Stallman <rms@gnu.org>
parents:
6132
diff
changeset
|
1489 char *a1, *a2, *a3; |
272 | 1490 { |
1491 char buf[200]; | |
6225
8f92cf89ed7c
(error): Use doprnt. Make buffer larger as necessary.
Richard M. Stallman <rms@gnu.org>
parents:
6132
diff
changeset
|
1492 int size = 200; |
8f92cf89ed7c
(error): Use doprnt. Make buffer larger as necessary.
Richard M. Stallman <rms@gnu.org>
parents:
6132
diff
changeset
|
1493 int mlen; |
8f92cf89ed7c
(error): Use doprnt. Make buffer larger as necessary.
Richard M. Stallman <rms@gnu.org>
parents:
6132
diff
changeset
|
1494 char *buffer = buf; |
8f92cf89ed7c
(error): Use doprnt. Make buffer larger as necessary.
Richard M. Stallman <rms@gnu.org>
parents:
6132
diff
changeset
|
1495 char *args[3]; |
8f92cf89ed7c
(error): Use doprnt. Make buffer larger as necessary.
Richard M. Stallman <rms@gnu.org>
parents:
6132
diff
changeset
|
1496 int allocated = 0; |
8f92cf89ed7c
(error): Use doprnt. Make buffer larger as necessary.
Richard M. Stallman <rms@gnu.org>
parents:
6132
diff
changeset
|
1497 Lisp_Object string; |
8f92cf89ed7c
(error): Use doprnt. Make buffer larger as necessary.
Richard M. Stallman <rms@gnu.org>
parents:
6132
diff
changeset
|
1498 |
8f92cf89ed7c
(error): Use doprnt. Make buffer larger as necessary.
Richard M. Stallman <rms@gnu.org>
parents:
6132
diff
changeset
|
1499 args[0] = a1; |
8f92cf89ed7c
(error): Use doprnt. Make buffer larger as necessary.
Richard M. Stallman <rms@gnu.org>
parents:
6132
diff
changeset
|
1500 args[1] = a2; |
8f92cf89ed7c
(error): Use doprnt. Make buffer larger as necessary.
Richard M. Stallman <rms@gnu.org>
parents:
6132
diff
changeset
|
1501 args[2] = a3; |
8f92cf89ed7c
(error): Use doprnt. Make buffer larger as necessary.
Richard M. Stallman <rms@gnu.org>
parents:
6132
diff
changeset
|
1502 |
8f92cf89ed7c
(error): Use doprnt. Make buffer larger as necessary.
Richard M. Stallman <rms@gnu.org>
parents:
6132
diff
changeset
|
1503 mlen = strlen (m); |
272 | 1504 |
1505 while (1) | |
6225
8f92cf89ed7c
(error): Use doprnt. Make buffer larger as necessary.
Richard M. Stallman <rms@gnu.org>
parents:
6132
diff
changeset
|
1506 { |
23206
a9090a71e969
(error): After enlarging buffer, write to it, not to buf.
Karl Heuer <kwzh@gnu.org>
parents:
21853
diff
changeset
|
1507 int used = doprnt (buffer, size, m, m + mlen, 3, args); |
6225
8f92cf89ed7c
(error): Use doprnt. Make buffer larger as necessary.
Richard M. Stallman <rms@gnu.org>
parents:
6132
diff
changeset
|
1508 if (used < size) |
8f92cf89ed7c
(error): Use doprnt. Make buffer larger as necessary.
Richard M. Stallman <rms@gnu.org>
parents:
6132
diff
changeset
|
1509 break; |
8f92cf89ed7c
(error): Use doprnt. Make buffer larger as necessary.
Richard M. Stallman <rms@gnu.org>
parents:
6132
diff
changeset
|
1510 size *= 2; |
8f92cf89ed7c
(error): Use doprnt. Make buffer larger as necessary.
Richard M. Stallman <rms@gnu.org>
parents:
6132
diff
changeset
|
1511 if (allocated) |
8f92cf89ed7c
(error): Use doprnt. Make buffer larger as necessary.
Richard M. Stallman <rms@gnu.org>
parents:
6132
diff
changeset
|
1512 buffer = (char *) xrealloc (buffer, size); |
7353
334cececa42d
(error): Fix logic in call to xmalloc/xrealloc.
Richard M. Stallman <rms@gnu.org>
parents:
7307
diff
changeset
|
1513 else |
334cececa42d
(error): Fix logic in call to xmalloc/xrealloc.
Richard M. Stallman <rms@gnu.org>
parents:
7307
diff
changeset
|
1514 { |
334cececa42d
(error): Fix logic in call to xmalloc/xrealloc.
Richard M. Stallman <rms@gnu.org>
parents:
7307
diff
changeset
|
1515 buffer = (char *) xmalloc (size); |
334cececa42d
(error): Fix logic in call to xmalloc/xrealloc.
Richard M. Stallman <rms@gnu.org>
parents:
7307
diff
changeset
|
1516 allocated = 1; |
334cececa42d
(error): Fix logic in call to xmalloc/xrealloc.
Richard M. Stallman <rms@gnu.org>
parents:
7307
diff
changeset
|
1517 } |
6225
8f92cf89ed7c
(error): Use doprnt. Make buffer larger as necessary.
Richard M. Stallman <rms@gnu.org>
parents:
6132
diff
changeset
|
1518 } |
8f92cf89ed7c
(error): Use doprnt. Make buffer larger as necessary.
Richard M. Stallman <rms@gnu.org>
parents:
6132
diff
changeset
|
1519 |
23206
a9090a71e969
(error): After enlarging buffer, write to it, not to buf.
Karl Heuer <kwzh@gnu.org>
parents:
21853
diff
changeset
|
1520 string = build_string (buffer); |
6225
8f92cf89ed7c
(error): Use doprnt. Make buffer larger as necessary.
Richard M. Stallman <rms@gnu.org>
parents:
6132
diff
changeset
|
1521 if (allocated) |
8f92cf89ed7c
(error): Use doprnt. Make buffer larger as necessary.
Richard M. Stallman <rms@gnu.org>
parents:
6132
diff
changeset
|
1522 free (buffer); |
8f92cf89ed7c
(error): Use doprnt. Make buffer larger as necessary.
Richard M. Stallman <rms@gnu.org>
parents:
6132
diff
changeset
|
1523 |
8f92cf89ed7c
(error): Use doprnt. Make buffer larger as necessary.
Richard M. Stallman <rms@gnu.org>
parents:
6132
diff
changeset
|
1524 Fsignal (Qerror, Fcons (string, Qnil)); |
272 | 1525 } |
1526 | |
1527 DEFUN ("commandp", Fcommandp, Scommandp, 1, 1, 0, | |
1528 "T if FUNCTION makes provisions for interactive calling.\n\ | |
1529 This means it contains a description for how to read arguments to give it.\n\ | |
1530 The value is nil for an invalid function or a symbol with no function\n\ | |
1531 definition.\n\ | |
1532 \n\ | |
1533 Interactively callable functions include strings and vectors (treated\n\ | |
1534 as keyboard macros), lambda-expressions that contain a top-level call\n\ | |
1535 to `interactive', autoload definitions made by `autoload' with non-nil\n\ | |
1536 fourth argument, and some of the built-in functions of Lisp.\n\ | |
1537 \n\ | |
1538 Also, a symbol satisfies `commandp' if its function definition does so.") | |
1539 (function) | |
1540 Lisp_Object function; | |
1541 { | |
1542 register Lisp_Object fun; | |
1543 register Lisp_Object funcar; | |
1544 | |
1545 fun = function; | |
1546 | |
648 | 1547 fun = indirect_function (fun); |
1548 if (EQ (fun, Qunbound)) | |
1549 return Qnil; | |
272 | 1550 |
1551 /* Emacs primitives are interactive if their DEFUN specifies an | |
1552 interactive spec. */ | |
9148
e7ab930bb7eb
(Fprogn, Finteractive_p, Fuser_variable_p, FletX, Flet, Fmacroexpand,
Karl Heuer <kwzh@gnu.org>
parents:
8980
diff
changeset
|
1553 if (SUBRP (fun)) |
272 | 1554 { |
1555 if (XSUBR (fun)->prompt) | |
1556 return Qt; | |
1557 else | |
1558 return Qnil; | |
1559 } | |
1560 | |
1561 /* Bytecode objects are interactive if they are long enough to | |
1562 have an element whose index is COMPILED_INTERACTIVE, which is | |
1563 where the interactive spec is stored. */ | |
9148
e7ab930bb7eb
(Fprogn, Finteractive_p, Fuser_variable_p, FletX, Flet, Fmacroexpand,
Karl Heuer <kwzh@gnu.org>
parents:
8980
diff
changeset
|
1564 else if (COMPILEDP (fun)) |
10345 | 1565 return ((XVECTOR (fun)->size & PSEUDOVECTOR_SIZE_MASK) > COMPILED_INTERACTIVE |
272 | 1566 ? Qt : Qnil); |
1567 | |
1568 /* Strings and vectors are keyboard macros. */ | |
9148
e7ab930bb7eb
(Fprogn, Finteractive_p, Fuser_variable_p, FletX, Flet, Fmacroexpand,
Karl Heuer <kwzh@gnu.org>
parents:
8980
diff
changeset
|
1569 if (STRINGP (fun) || VECTORP (fun)) |
272 | 1570 return Qt; |
1571 | |
1572 /* Lists may represent commands. */ | |
1573 if (!CONSP (fun)) | |
1574 return Qnil; | |
1575 funcar = Fcar (fun); | |
9148
e7ab930bb7eb
(Fprogn, Finteractive_p, Fuser_variable_p, FletX, Flet, Fmacroexpand,
Karl Heuer <kwzh@gnu.org>
parents:
8980
diff
changeset
|
1576 if (!SYMBOLP (funcar)) |
272 | 1577 return Fsignal (Qinvalid_function, Fcons (fun, Qnil)); |
1578 if (EQ (funcar, Qlambda)) | |
1579 return Fassq (Qinteractive, Fcdr (Fcdr (fun))); | |
1580 if (EQ (funcar, Qmocklisp)) | |
1581 return Qt; /* All mocklisp functions can be called interactively */ | |
1582 if (EQ (funcar, Qautoload)) | |
1583 return Fcar (Fcdr (Fcdr (Fcdr (fun)))); | |
1584 else | |
1585 return Qnil; | |
1586 } | |
1587 | |
1588 /* ARGSUSED */ | |
1589 DEFUN ("autoload", Fautoload, Sautoload, 2, 5, 0, | |
1590 "Define FUNCTION to autoload from FILE.\n\ | |
1591 FUNCTION is a symbol; FILE is a file name string to pass to `load'.\n\ | |
1592 Third arg DOCSTRING is documentation for the function.\n\ | |
1593 Fourth arg INTERACTIVE if non-nil says function can be called interactively.\n\ | |
1564
b327816041d1
* eval.c (Fautoload): Renamed fifth argument TYPE. Document the
Jim Blandy <jimb@redhat.com>
parents:
1452
diff
changeset
|
1594 Fifth arg TYPE indicates the type of the object:\n\ |
b327816041d1
* eval.c (Fautoload): Renamed fifth argument TYPE. Document the
Jim Blandy <jimb@redhat.com>
parents:
1452
diff
changeset
|
1595 nil or omitted says FUNCTION is a function,\n\ |
b327816041d1
* eval.c (Fautoload): Renamed fifth argument TYPE. Document the
Jim Blandy <jimb@redhat.com>
parents:
1452
diff
changeset
|
1596 `keymap' says FUNCTION is really a keymap, and\n\ |
b327816041d1
* eval.c (Fautoload): Renamed fifth argument TYPE. Document the
Jim Blandy <jimb@redhat.com>
parents:
1452
diff
changeset
|
1597 `macro' or t says FUNCTION is really a macro.\n\ |
272 | 1598 Third through fifth args give info about the real definition.\n\ |
1599 They default to nil.\n\ | |
1600 If FUNCTION is already defined other than as an autoload,\n\ | |
1601 this does nothing and returns nil.") | |
1564
b327816041d1
* eval.c (Fautoload): Renamed fifth argument TYPE. Document the
Jim Blandy <jimb@redhat.com>
parents:
1452
diff
changeset
|
1602 (function, file, docstring, interactive, type) |
b327816041d1
* eval.c (Fautoload): Renamed fifth argument TYPE. Document the
Jim Blandy <jimb@redhat.com>
parents:
1452
diff
changeset
|
1603 Lisp_Object function, file, docstring, interactive, type; |
272 | 1604 { |
1605 #ifdef NO_ARG_ARRAY | |
1606 Lisp_Object args[4]; | |
1607 #endif | |
1608 | |
1609 CHECK_SYMBOL (function, 0); | |
1610 CHECK_STRING (file, 1); | |
1611 | |
1612 /* If function is defined and not as an autoload, don't override */ | |
1613 if (!EQ (XSYMBOL (function)->function, Qunbound) | |
9148
e7ab930bb7eb
(Fprogn, Finteractive_p, Fuser_variable_p, FletX, Flet, Fmacroexpand,
Karl Heuer <kwzh@gnu.org>
parents:
8980
diff
changeset
|
1614 && !(CONSP (XSYMBOL (function)->function) |
25662
0a7261c1d487
Use XCAR, XCDR, and XFLOAT_DATA instead of explicit member access.
Ken Raeburn <raeburn@raeburn.org>
parents:
25314
diff
changeset
|
1615 && EQ (XCAR (XSYMBOL (function)->function), Qautoload))) |
272 | 1616 return Qnil; |
1617 | |
1618 #ifdef NO_ARG_ARRAY | |
1619 args[0] = file; | |
1620 args[1] = docstring; | |
1621 args[2] = interactive; | |
1564
b327816041d1
* eval.c (Fautoload): Renamed fifth argument TYPE. Document the
Jim Blandy <jimb@redhat.com>
parents:
1452
diff
changeset
|
1622 args[3] = type; |
272 | 1623 |
1624 return Ffset (function, Fcons (Qautoload, Flist (4, &args[0]))); | |
1625 #else /* NO_ARG_ARRAY */ | |
1626 return Ffset (function, Fcons (Qautoload, Flist (4, &file))); | |
1627 #endif /* not NO_ARG_ARRAY */ | |
1628 } | |
1629 | |
1630 Lisp_Object | |
1631 un_autoload (oldqueue) | |
1632 Lisp_Object oldqueue; | |
1633 { | |
1634 register Lisp_Object queue, first, second; | |
1635 | |
1636 /* Queue to unwind is current value of Vautoload_queue. | |
1637 oldqueue is the shadowed value to leave in Vautoload_queue. */ | |
1638 queue = Vautoload_queue; | |
1639 Vautoload_queue = oldqueue; | |
1640 while (CONSP (queue)) | |
1641 { | |
1642 first = Fcar (queue); | |
1643 second = Fcdr (first); | |
1644 first = Fcar (first); | |
1645 if (EQ (second, Qnil)) | |
1646 Vfeatures = first; | |
1647 else | |
1648 Ffset (first, second); | |
1649 queue = Fcdr (queue); | |
1650 } | |
1651 return Qnil; | |
1652 } | |
1653 | |
16108
2c9c0c867e00
(Fmacroexpand): gcpro form while calling do_autoload.
Richard M. Stallman <rms@gnu.org>
parents:
15275
diff
changeset
|
1654 /* Load an autoloaded function. |
2c9c0c867e00
(Fmacroexpand): gcpro form while calling do_autoload.
Richard M. Stallman <rms@gnu.org>
parents:
15275
diff
changeset
|
1655 FUNNAME is the symbol which is the function's name. |
2c9c0c867e00
(Fmacroexpand): gcpro form while calling do_autoload.
Richard M. Stallman <rms@gnu.org>
parents:
15275
diff
changeset
|
1656 FUNDEF is the autoload definition (a list). */ |
2c9c0c867e00
(Fmacroexpand): gcpro form while calling do_autoload.
Richard M. Stallman <rms@gnu.org>
parents:
15275
diff
changeset
|
1657 |
20378
cf1b52f5c34a
(do_autoload): Return void.
Andreas Schwab <schwab@suse.de>
parents:
20312
diff
changeset
|
1658 void |
272 | 1659 do_autoload (fundef, funname) |
1660 Lisp_Object fundef, funname; | |
1661 { | |
1662 int count = specpdl_ptr - specpdl; | |
25783
17eb5827f07b
(Fsignal): Remove unused variables.
Gerd Moellmann <gerd@gnu.org>
parents:
25662
diff
changeset
|
1663 Lisp_Object fun, queue, first, second; |
16108
2c9c0c867e00
(Fmacroexpand): gcpro form while calling do_autoload.
Richard M. Stallman <rms@gnu.org>
parents:
15275
diff
changeset
|
1664 struct gcpro gcpro1, gcpro2, gcpro3; |
272 | 1665 |
1666 fun = funname; | |
1667 CHECK_SYMBOL (funname, 0); | |
16108
2c9c0c867e00
(Fmacroexpand): gcpro form while calling do_autoload.
Richard M. Stallman <rms@gnu.org>
parents:
15275
diff
changeset
|
1668 GCPRO3 (fun, funname, fundef); |
272 | 1669 |
24605
f378efa4aa8a
(do_autoload): Preserve match data.
Richard M. Stallman <rms@gnu.org>
parents:
24427
diff
changeset
|
1670 /* Preserve the match data. */ |
f378efa4aa8a
(do_autoload): Preserve match data.
Richard M. Stallman <rms@gnu.org>
parents:
24427
diff
changeset
|
1671 record_unwind_protect (Fset_match_data, Fmatch_data (Qnil, Qnil)); |
f378efa4aa8a
(do_autoload): Preserve match data.
Richard M. Stallman <rms@gnu.org>
parents:
24427
diff
changeset
|
1672 |
f378efa4aa8a
(do_autoload): Preserve match data.
Richard M. Stallman <rms@gnu.org>
parents:
24427
diff
changeset
|
1673 /* Value saved here is to be restored into Vautoload_queue. */ |
272 | 1674 record_unwind_protect (un_autoload, Vautoload_queue); |
1675 Vautoload_queue = Qt; | |
19237
42cc2b7bc6c6
(do_autoload): Require a suffix for the file.
Richard M. Stallman <rms@gnu.org>
parents:
19116
diff
changeset
|
1676 Fload (Fcar (Fcdr (fundef)), Qnil, noninteractive ? Qt : Qnil, Qnil, Qt); |
2547
c73c68a87cd5
(defun, defmacro, defvar, defconst):
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
1677 |
24605
f378efa4aa8a
(do_autoload): Preserve match data.
Richard M. Stallman <rms@gnu.org>
parents:
24427
diff
changeset
|
1678 /* Save the old autoloads, in case we ever do an unload. */ |
2547
c73c68a87cd5
(defun, defmacro, defvar, defconst):
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
1679 queue = Vautoload_queue; |
c73c68a87cd5
(defun, defmacro, defvar, defconst):
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
1680 while (CONSP (queue)) |
c73c68a87cd5
(defun, defmacro, defvar, defconst):
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
1681 { |
c73c68a87cd5
(defun, defmacro, defvar, defconst):
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
1682 first = Fcar (queue); |
c73c68a87cd5
(defun, defmacro, defvar, defconst):
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
1683 second = Fcdr (first); |
c73c68a87cd5
(defun, defmacro, defvar, defconst):
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
1684 first = Fcar (first); |
2599
5122736c0a03
(do_autoload): Fixed the bug in the autoload-saving code.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2596
diff
changeset
|
1685 |
5122736c0a03
(do_autoload): Fixed the bug in the autoload-saving code.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2596
diff
changeset
|
1686 /* Note: This test is subtle. The cdr of an autoload-queue entry |
5122736c0a03
(do_autoload): Fixed the bug in the autoload-saving code.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2596
diff
changeset
|
1687 may be an atom if the autoload entry was generated by a defalias |
24605
f378efa4aa8a
(do_autoload): Preserve match data.
Richard M. Stallman <rms@gnu.org>
parents:
24427
diff
changeset
|
1688 or fset. */ |
2599
5122736c0a03
(do_autoload): Fixed the bug in the autoload-saving code.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2596
diff
changeset
|
1689 if (CONSP (second)) |
4782 | 1690 Fput (first, Qautoload, (Fcdr (second))); |
2599
5122736c0a03
(do_autoload): Fixed the bug in the autoload-saving code.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2596
diff
changeset
|
1691 |
2547
c73c68a87cd5
(defun, defmacro, defvar, defconst):
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
1692 queue = Fcdr (queue); |
c73c68a87cd5
(defun, defmacro, defvar, defconst):
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
1693 } |
c73c68a87cd5
(defun, defmacro, defvar, defconst):
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
1694 |
272 | 1695 /* Once loading finishes, don't undo it. */ |
1696 Vautoload_queue = Qt; | |
1697 unbind_to (count, Qnil); | |
1698 | |
648 | 1699 fun = Findirect_function (fun); |
1700 | |
4462
9fbc6c74cab5
(do_autoload): Don't report autoload failure
Richard M. Stallman <rms@gnu.org>
parents:
4167
diff
changeset
|
1701 if (!NILP (Fequal (fun, fundef))) |
272 | 1702 error ("Autoloading failed to define function %s", |
1703 XSYMBOL (funname)->name->data); | |
16108
2c9c0c867e00
(Fmacroexpand): gcpro form while calling do_autoload.
Richard M. Stallman <rms@gnu.org>
parents:
15275
diff
changeset
|
1704 UNGCPRO; |
272 | 1705 } |
1706 | |
1707 DEFUN ("eval", Feval, Seval, 1, 1, 0, | |
1708 "Evaluate FORM and return its value.") | |
1709 (form) | |
1710 Lisp_Object form; | |
1711 { | |
1712 Lisp_Object fun, val, original_fun, original_args; | |
1713 Lisp_Object funcar; | |
1714 struct backtrace backtrace; | |
1715 struct gcpro gcpro1, gcpro2, gcpro3; | |
1716 | |
25008
39dd5c98a114
(Fsignal): Reset redisplaying_p to zero.
Gerd Moellmann <gerd@gnu.org>
parents:
24605
diff
changeset
|
1717 /* Since Fsignal resets this to 0, it had better be 0 now |
39dd5c98a114
(Fsignal): Reset redisplaying_p to zero.
Gerd Moellmann <gerd@gnu.org>
parents:
24605
diff
changeset
|
1718 or else we have a potential bug. */ |
39dd5c98a114
(Fsignal): Reset redisplaying_p to zero.
Gerd Moellmann <gerd@gnu.org>
parents:
24605
diff
changeset
|
1719 if (interrupt_input_blocked != 0) |
39dd5c98a114
(Fsignal): Reset redisplaying_p to zero.
Gerd Moellmann <gerd@gnu.org>
parents:
24605
diff
changeset
|
1720 abort (); |
39dd5c98a114
(Fsignal): Reset redisplaying_p to zero.
Gerd Moellmann <gerd@gnu.org>
parents:
24605
diff
changeset
|
1721 |
9148
e7ab930bb7eb
(Fprogn, Finteractive_p, Fuser_variable_p, FletX, Flet, Fmacroexpand,
Karl Heuer <kwzh@gnu.org>
parents:
8980
diff
changeset
|
1722 if (SYMBOLP (form)) |
272 | 1723 { |
1724 if (EQ (Vmocklisp_arguments, Qt)) | |
1725 return Fsymbol_value (form); | |
1726 val = Fsymbol_value (form); | |
485 | 1727 if (NILP (val)) |
9306
ac852c183fa1
(Feval, Ffuncall, funcall_lambda, Fbacktrace): Don't use XFASTINT as an
Karl Heuer <kwzh@gnu.org>
parents:
9148
diff
changeset
|
1728 XSETFASTINT (val, 0); |
272 | 1729 else if (EQ (val, Qt)) |
9306
ac852c183fa1
(Feval, Ffuncall, funcall_lambda, Fbacktrace): Don't use XFASTINT as an
Karl Heuer <kwzh@gnu.org>
parents:
9148
diff
changeset
|
1730 XSETFASTINT (val, 1); |
272 | 1731 return val; |
1732 } | |
1733 if (!CONSP (form)) | |
1734 return form; | |
1735 | |
1736 QUIT; | |
1737 if (consing_since_gc > gc_cons_threshold) | |
1738 { | |
1739 GCPRO1 (form); | |
1740 Fgarbage_collect (); | |
1741 UNGCPRO; | |
1742 } | |
1743 | |
1744 if (++lisp_eval_depth > max_lisp_eval_depth) | |
1745 { | |
1746 if (max_lisp_eval_depth < 100) | |
1747 max_lisp_eval_depth = 100; | |
1748 if (lisp_eval_depth > max_lisp_eval_depth) | |
1749 error ("Lisp nesting exceeds max-lisp-eval-depth"); | |
1750 } | |
1751 | |
1752 original_fun = Fcar (form); | |
1753 original_args = Fcdr (form); | |
1754 | |
1755 backtrace.next = backtrace_list; | |
1756 backtrace_list = &backtrace; | |
1757 backtrace.function = &original_fun; /* This also protects them from gc */ | |
1758 backtrace.args = &original_args; | |
1759 backtrace.nargs = UNEVALLED; | |
1760 backtrace.evalargs = 1; | |
1761 backtrace.debug_on_exit = 0; | |
1762 | |
1763 if (debug_on_next_call) | |
1764 do_debug_on_call (Qt); | |
1765 | |
1766 /* At this point, only original_fun and original_args | |
1767 have values that will be used below */ | |
1768 retry: | |
648 | 1769 fun = Findirect_function (original_fun); |
272 | 1770 |
9148
e7ab930bb7eb
(Fprogn, Finteractive_p, Fuser_variable_p, FletX, Flet, Fmacroexpand,
Karl Heuer <kwzh@gnu.org>
parents:
8980
diff
changeset
|
1771 if (SUBRP (fun)) |
272 | 1772 { |
1773 Lisp_Object numargs; | |
19544
fc0bb24597ba
(Feval): Handle a subr which takes 8 arguments.
Kenichi Handa <handa@m17n.org>
parents:
19237
diff
changeset
|
1774 Lisp_Object argvals[8]; |
272 | 1775 Lisp_Object args_left; |
1776 register int i, maxargs; | |
1777 | |
1778 args_left = original_args; | |
1779 numargs = Flength (args_left); | |
1780 | |
1781 if (XINT (numargs) < XSUBR (fun)->min_args || | |
1782 (XSUBR (fun)->max_args >= 0 && XSUBR (fun)->max_args < XINT (numargs))) | |
1783 return Fsignal (Qwrong_number_of_arguments, Fcons (fun, Fcons (numargs, Qnil))); | |
1784 | |
1785 if (XSUBR (fun)->max_args == UNEVALLED) | |
1786 { | |
1787 backtrace.evalargs = 0; | |
1788 val = (*XSUBR (fun)->function) (args_left); | |
1789 goto done; | |
1790 } | |
1791 | |
1792 if (XSUBR (fun)->max_args == MANY) | |
1793 { | |
1794 /* Pass a vector of evaluated arguments */ | |
1795 Lisp_Object *vals; | |
1796 register int argnum = 0; | |
1797 | |
1798 vals = (Lisp_Object *) alloca (XINT (numargs) * sizeof (Lisp_Object)); | |
1799 | |
1800 GCPRO3 (args_left, fun, fun); | |
1801 gcpro3.var = vals; | |
1802 gcpro3.nvars = 0; | |
1803 | |
485 | 1804 while (!NILP (args_left)) |
272 | 1805 { |
1806 vals[argnum++] = Feval (Fcar (args_left)); | |
1807 args_left = Fcdr (args_left); | |
1808 gcpro3.nvars = argnum; | |
1809 } | |
1810 | |
1811 backtrace.args = vals; | |
1812 backtrace.nargs = XINT (numargs); | |
1813 | |
1814 val = (*XSUBR (fun)->function) (XINT (numargs), vals); | |
323 | 1815 UNGCPRO; |
272 | 1816 goto done; |
1817 } | |
1818 | |
1819 GCPRO3 (args_left, fun, fun); | |
1820 gcpro3.var = argvals; | |
1821 gcpro3.nvars = 0; | |
1822 | |
1823 maxargs = XSUBR (fun)->max_args; | |
1824 for (i = 0; i < maxargs; args_left = Fcdr (args_left)) | |
1825 { | |
1826 argvals[i] = Feval (Fcar (args_left)); | |
1827 gcpro3.nvars = ++i; | |
1828 } | |
1829 | |
1830 UNGCPRO; | |
1831 | |
1832 backtrace.args = argvals; | |
1833 backtrace.nargs = XINT (numargs); | |
1834 | |
1835 switch (i) | |
1836 { | |
1837 case 0: | |
1838 val = (*XSUBR (fun)->function) (); | |
1839 goto done; | |
1840 case 1: | |
1841 val = (*XSUBR (fun)->function) (argvals[0]); | |
1842 goto done; | |
1843 case 2: | |
1844 val = (*XSUBR (fun)->function) (argvals[0], argvals[1]); | |
1845 goto done; | |
1846 case 3: | |
1847 val = (*XSUBR (fun)->function) (argvals[0], argvals[1], | |
1848 argvals[2]); | |
1849 goto done; | |
1850 case 4: | |
1851 val = (*XSUBR (fun)->function) (argvals[0], argvals[1], | |
1852 argvals[2], argvals[3]); | |
1853 goto done; | |
1854 case 5: | |
1855 val = (*XSUBR (fun)->function) (argvals[0], argvals[1], argvals[2], | |
1856 argvals[3], argvals[4]); | |
1857 goto done; | |
1858 case 6: | |
1859 val = (*XSUBR (fun)->function) (argvals[0], argvals[1], argvals[2], | |
1860 argvals[3], argvals[4], argvals[5]); | |
1861 goto done; | |
863
427299469901
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
753
diff
changeset
|
1862 case 7: |
427299469901
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
753
diff
changeset
|
1863 val = (*XSUBR (fun)->function) (argvals[0], argvals[1], argvals[2], |
427299469901
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
753
diff
changeset
|
1864 argvals[3], argvals[4], argvals[5], |
427299469901
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
753
diff
changeset
|
1865 argvals[6]); |
427299469901
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
753
diff
changeset
|
1866 goto done; |
272 | 1867 |
19544
fc0bb24597ba
(Feval): Handle a subr which takes 8 arguments.
Kenichi Handa <handa@m17n.org>
parents:
19237
diff
changeset
|
1868 case 8: |
fc0bb24597ba
(Feval): Handle a subr which takes 8 arguments.
Kenichi Handa <handa@m17n.org>
parents:
19237
diff
changeset
|
1869 val = (*XSUBR (fun)->function) (argvals[0], argvals[1], argvals[2], |
fc0bb24597ba
(Feval): Handle a subr which takes 8 arguments.
Kenichi Handa <handa@m17n.org>
parents:
19237
diff
changeset
|
1870 argvals[3], argvals[4], argvals[5], |
fc0bb24597ba
(Feval): Handle a subr which takes 8 arguments.
Kenichi Handa <handa@m17n.org>
parents:
19237
diff
changeset
|
1871 argvals[6], argvals[7]); |
fc0bb24597ba
(Feval): Handle a subr which takes 8 arguments.
Kenichi Handa <handa@m17n.org>
parents:
19237
diff
changeset
|
1872 goto done; |
fc0bb24597ba
(Feval): Handle a subr which takes 8 arguments.
Kenichi Handa <handa@m17n.org>
parents:
19237
diff
changeset
|
1873 |
272 | 1874 default: |
604 | 1875 /* Someone has created a subr that takes more arguments than |
1876 is supported by this code. We need to either rewrite the | |
1877 subr to use a different argument protocol, or add more | |
1878 cases to this switch. */ | |
1879 abort (); | |
272 | 1880 } |
1881 } | |
9148
e7ab930bb7eb
(Fprogn, Finteractive_p, Fuser_variable_p, FletX, Flet, Fmacroexpand,
Karl Heuer <kwzh@gnu.org>
parents:
8980
diff
changeset
|
1882 if (COMPILEDP (fun)) |
272 | 1883 val = apply_lambda (fun, original_args, 1); |
1884 else | |
1885 { | |
1886 if (!CONSP (fun)) | |
1887 return Fsignal (Qinvalid_function, Fcons (fun, Qnil)); | |
1888 funcar = Fcar (fun); | |
9148
e7ab930bb7eb
(Fprogn, Finteractive_p, Fuser_variable_p, FletX, Flet, Fmacroexpand,
Karl Heuer <kwzh@gnu.org>
parents:
8980
diff
changeset
|
1889 if (!SYMBOLP (funcar)) |
272 | 1890 return Fsignal (Qinvalid_function, Fcons (fun, Qnil)); |
1891 if (EQ (funcar, Qautoload)) | |
1892 { | |
1893 do_autoload (fun, original_fun); | |
1894 goto retry; | |
1895 } | |
1896 if (EQ (funcar, Qmacro)) | |
1897 val = Feval (apply1 (Fcdr (fun), original_args)); | |
1898 else if (EQ (funcar, Qlambda)) | |
1899 val = apply_lambda (fun, original_args, 1); | |
1900 else if (EQ (funcar, Qmocklisp)) | |
1901 val = ml_apply (fun, original_args); | |
1902 else | |
1903 return Fsignal (Qinvalid_function, Fcons (fun, Qnil)); | |
1904 } | |
1905 done: | |
1906 if (!EQ (Vmocklisp_arguments, Qt)) | |
1907 { | |
485 | 1908 if (NILP (val)) |
9306
ac852c183fa1
(Feval, Ffuncall, funcall_lambda, Fbacktrace): Don't use XFASTINT as an
Karl Heuer <kwzh@gnu.org>
parents:
9148
diff
changeset
|
1909 XSETFASTINT (val, 0); |
272 | 1910 else if (EQ (val, Qt)) |
9306
ac852c183fa1
(Feval, Ffuncall, funcall_lambda, Fbacktrace): Don't use XFASTINT as an
Karl Heuer <kwzh@gnu.org>
parents:
9148
diff
changeset
|
1911 XSETFASTINT (val, 1); |
272 | 1912 } |
1913 lisp_eval_depth--; | |
1914 if (backtrace.debug_on_exit) | |
1915 val = call_debugger (Fcons (Qexit, Fcons (val, Qnil))); | |
1916 backtrace_list = backtrace.next; | |
1917 return val; | |
1918 } | |
1919 | |
1920 DEFUN ("apply", Fapply, Sapply, 2, MANY, 0, | |
1921 "Call FUNCTION with our remaining args, using our last arg as list of args.\n\ | |
12583
73ac42b9be24
(Ffuncall, Fapply): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
11481
diff
changeset
|
1922 Then return the value FUNCTION returns.\n\ |
272 | 1923 Thus, (apply '+ 1 2 '(3 4)) returns 10.") |
1924 (nargs, args) | |
1925 int nargs; | |
1926 Lisp_Object *args; | |
1927 { | |
1928 register int i, numargs; | |
1929 register Lisp_Object spread_arg; | |
1930 register Lisp_Object *funcall_args; | |
1931 Lisp_Object fun; | |
323 | 1932 struct gcpro gcpro1; |
272 | 1933 |
1934 fun = args [0]; | |
1935 funcall_args = 0; | |
1936 spread_arg = args [nargs - 1]; | |
1937 CHECK_LIST (spread_arg, nargs); | |
1938 | |
1939 numargs = XINT (Flength (spread_arg)); | |
1940 | |
1941 if (numargs == 0) | |
1942 return Ffuncall (nargs - 1, args); | |
1943 else if (numargs == 1) | |
1944 { | |
25662
0a7261c1d487
Use XCAR, XCDR, and XFLOAT_DATA instead of explicit member access.
Ken Raeburn <raeburn@raeburn.org>
parents:
25314
diff
changeset
|
1945 args [nargs - 1] = XCAR (spread_arg); |
272 | 1946 return Ffuncall (nargs, args); |
1947 } | |
1948 | |
323 | 1949 numargs += nargs - 2; |
272 | 1950 |
648 | 1951 fun = indirect_function (fun); |
1952 if (EQ (fun, Qunbound)) | |
272 | 1953 { |
648 | 1954 /* Let funcall get the error */ |
1955 fun = args[0]; | |
1956 goto funcall; | |
272 | 1957 } |
1958 | |
9148
e7ab930bb7eb
(Fprogn, Finteractive_p, Fuser_variable_p, FletX, Flet, Fmacroexpand,
Karl Heuer <kwzh@gnu.org>
parents:
8980
diff
changeset
|
1959 if (SUBRP (fun)) |
272 | 1960 { |
1961 if (numargs < XSUBR (fun)->min_args | |
1962 || (XSUBR (fun)->max_args >= 0 && XSUBR (fun)->max_args < numargs)) | |
1963 goto funcall; /* Let funcall get the error */ | |
1964 else if (XSUBR (fun)->max_args > numargs) | |
1965 { | |
1966 /* Avoid making funcall cons up a yet another new vector of arguments | |
1967 by explicitly supplying nil's for optional values */ | |
1968 funcall_args = (Lisp_Object *) alloca ((1 + XSUBR (fun)->max_args) | |
1969 * sizeof (Lisp_Object)); | |
1970 for (i = numargs; i < XSUBR (fun)->max_args;) | |
1971 funcall_args[++i] = Qnil; | |
323 | 1972 GCPRO1 (*funcall_args); |
1973 gcpro1.nvars = 1 + XSUBR (fun)->max_args; | |
272 | 1974 } |
1975 } | |
1976 funcall: | |
1977 /* We add 1 to numargs because funcall_args includes the | |
1978 function itself as well as its arguments. */ | |
1979 if (!funcall_args) | |
323 | 1980 { |
1981 funcall_args = (Lisp_Object *) alloca ((1 + numargs) | |
1982 * sizeof (Lisp_Object)); | |
1983 GCPRO1 (*funcall_args); | |
1984 gcpro1.nvars = 1 + numargs; | |
1985 } | |
1986 | |
272 | 1987 bcopy (args, funcall_args, nargs * sizeof (Lisp_Object)); |
1988 /* Spread the last arg we got. Its first element goes in | |
1989 the slot that it used to occupy, hence this value of I. */ | |
1990 i = nargs - 1; | |
485 | 1991 while (!NILP (spread_arg)) |
272 | 1992 { |
25662
0a7261c1d487
Use XCAR, XCDR, and XFLOAT_DATA instead of explicit member access.
Ken Raeburn <raeburn@raeburn.org>
parents:
25314
diff
changeset
|
1993 funcall_args [i++] = XCAR (spread_arg); |
0a7261c1d487
Use XCAR, XCDR, and XFLOAT_DATA instead of explicit member access.
Ken Raeburn <raeburn@raeburn.org>
parents:
25314
diff
changeset
|
1994 spread_arg = XCDR (spread_arg); |
272 | 1995 } |
323 | 1996 |
1997 RETURN_UNGCPRO (Ffuncall (gcpro1.nvars, funcall_args)); | |
272 | 1998 } |
1999 | |
12732
981b924c832b
Add Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success, Frun_hook_with_args_until_failure in terms of run_hook_with_args.
Simon Marshall <simon@gnu.org>
parents:
12711
diff
changeset
|
2000 /* Run hook variables in various ways. */ |
981b924c832b
Add Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success, Frun_hook_with_args_until_failure in terms of run_hook_with_args.
Simon Marshall <simon@gnu.org>
parents:
12711
diff
changeset
|
2001 |
981b924c832b
Add Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success, Frun_hook_with_args_until_failure in terms of run_hook_with_args.
Simon Marshall <simon@gnu.org>
parents:
12711
diff
changeset
|
2002 enum run_hooks_condition {to_completion, until_success, until_failure}; |
981b924c832b
Add Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success, Frun_hook_with_args_until_failure in terms of run_hook_with_args.
Simon Marshall <simon@gnu.org>
parents:
12711
diff
changeset
|
2003 |
981b924c832b
Add Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success, Frun_hook_with_args_until_failure in terms of run_hook_with_args.
Simon Marshall <simon@gnu.org>
parents:
12711
diff
changeset
|
2004 DEFUN ("run-hooks", Frun_hooks, Srun_hooks, 1, MANY, 0, |
981b924c832b
Add Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success, Frun_hook_with_args_until_failure in terms of run_hook_with_args.
Simon Marshall <simon@gnu.org>
parents:
12711
diff
changeset
|
2005 "Run each hook in HOOKS. Major mode functions use this.\n\ |
981b924c832b
Add Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success, Frun_hook_with_args_until_failure in terms of run_hook_with_args.
Simon Marshall <simon@gnu.org>
parents:
12711
diff
changeset
|
2006 Each argument should be a symbol, a hook variable.\n\ |
981b924c832b
Add Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success, Frun_hook_with_args_until_failure in terms of run_hook_with_args.
Simon Marshall <simon@gnu.org>
parents:
12711
diff
changeset
|
2007 These symbols are processed in the order specified.\n\ |
981b924c832b
Add Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success, Frun_hook_with_args_until_failure in terms of run_hook_with_args.
Simon Marshall <simon@gnu.org>
parents:
12711
diff
changeset
|
2008 If a hook symbol has a non-nil value, that value may be a function\n\ |
981b924c832b
Add Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success, Frun_hook_with_args_until_failure in terms of run_hook_with_args.
Simon Marshall <simon@gnu.org>
parents:
12711
diff
changeset
|
2009 or a list of functions to be called to run the hook.\n\ |
981b924c832b
Add Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success, Frun_hook_with_args_until_failure in terms of run_hook_with_args.
Simon Marshall <simon@gnu.org>
parents:
12711
diff
changeset
|
2010 If the value is a function, it is called with no arguments.\n\ |
981b924c832b
Add Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success, Frun_hook_with_args_until_failure in terms of run_hook_with_args.
Simon Marshall <simon@gnu.org>
parents:
12711
diff
changeset
|
2011 If it is a list, the elements are called, in order, with no arguments.\n\ |
981b924c832b
Add Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success, Frun_hook_with_args_until_failure in terms of run_hook_with_args.
Simon Marshall <simon@gnu.org>
parents:
12711
diff
changeset
|
2012 \n\ |
981b924c832b
Add Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success, Frun_hook_with_args_until_failure in terms of run_hook_with_args.
Simon Marshall <simon@gnu.org>
parents:
12711
diff
changeset
|
2013 To make a hook variable buffer-local, use `make-local-hook',\n\ |
981b924c832b
Add Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success, Frun_hook_with_args_until_failure in terms of run_hook_with_args.
Simon Marshall <simon@gnu.org>
parents:
12711
diff
changeset
|
2014 not `make-local-variable'.") |
981b924c832b
Add Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success, Frun_hook_with_args_until_failure in terms of run_hook_with_args.
Simon Marshall <simon@gnu.org>
parents:
12711
diff
changeset
|
2015 (nargs, args) |
981b924c832b
Add Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success, Frun_hook_with_args_until_failure in terms of run_hook_with_args.
Simon Marshall <simon@gnu.org>
parents:
12711
diff
changeset
|
2016 int nargs; |
981b924c832b
Add Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success, Frun_hook_with_args_until_failure in terms of run_hook_with_args.
Simon Marshall <simon@gnu.org>
parents:
12711
diff
changeset
|
2017 Lisp_Object *args; |
981b924c832b
Add Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success, Frun_hook_with_args_until_failure in terms of run_hook_with_args.
Simon Marshall <simon@gnu.org>
parents:
12711
diff
changeset
|
2018 { |
981b924c832b
Add Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success, Frun_hook_with_args_until_failure in terms of run_hook_with_args.
Simon Marshall <simon@gnu.org>
parents:
12711
diff
changeset
|
2019 Lisp_Object hook[1]; |
981b924c832b
Add Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success, Frun_hook_with_args_until_failure in terms of run_hook_with_args.
Simon Marshall <simon@gnu.org>
parents:
12711
diff
changeset
|
2020 register int i; |
981b924c832b
Add Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success, Frun_hook_with_args_until_failure in terms of run_hook_with_args.
Simon Marshall <simon@gnu.org>
parents:
12711
diff
changeset
|
2021 |
981b924c832b
Add Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success, Frun_hook_with_args_until_failure in terms of run_hook_with_args.
Simon Marshall <simon@gnu.org>
parents:
12711
diff
changeset
|
2022 for (i = 0; i < nargs; i++) |
981b924c832b
Add Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success, Frun_hook_with_args_until_failure in terms of run_hook_with_args.
Simon Marshall <simon@gnu.org>
parents:
12711
diff
changeset
|
2023 { |
981b924c832b
Add Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success, Frun_hook_with_args_until_failure in terms of run_hook_with_args.
Simon Marshall <simon@gnu.org>
parents:
12711
diff
changeset
|
2024 hook[0] = args[i]; |
981b924c832b
Add Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success, Frun_hook_with_args_until_failure in terms of run_hook_with_args.
Simon Marshall <simon@gnu.org>
parents:
12711
diff
changeset
|
2025 run_hook_with_args (1, hook, to_completion); |
981b924c832b
Add Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success, Frun_hook_with_args_until_failure in terms of run_hook_with_args.
Simon Marshall <simon@gnu.org>
parents:
12711
diff
changeset
|
2026 } |
981b924c832b
Add Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success, Frun_hook_with_args_until_failure in terms of run_hook_with_args.
Simon Marshall <simon@gnu.org>
parents:
12711
diff
changeset
|
2027 |
981b924c832b
Add Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success, Frun_hook_with_args_until_failure in terms of run_hook_with_args.
Simon Marshall <simon@gnu.org>
parents:
12711
diff
changeset
|
2028 return Qnil; |
981b924c832b
Add Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success, Frun_hook_with_args_until_failure in terms of run_hook_with_args.
Simon Marshall <simon@gnu.org>
parents:
12711
diff
changeset
|
2029 } |
981b924c832b
Add Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success, Frun_hook_with_args_until_failure in terms of run_hook_with_args.
Simon Marshall <simon@gnu.org>
parents:
12711
diff
changeset
|
2030 |
16485
9b919c5464a4
Reorganize function definitions so etags finds them.
Erik Naggum <erik@naggum.no>
parents:
16443
diff
changeset
|
2031 DEFUN ("run-hook-with-args", Frun_hook_with_args, |
9b919c5464a4
Reorganize function definitions so etags finds them.
Erik Naggum <erik@naggum.no>
parents:
16443
diff
changeset
|
2032 Srun_hook_with_args, 1, MANY, 0, |
12654
14721fd8dcc1
(Frun_hook_with_args): New C function, formerly in subr.el.
Karl Heuer <kwzh@gnu.org>
parents:
12583
diff
changeset
|
2033 "Run HOOK with the specified arguments ARGS.\n\ |
14721fd8dcc1
(Frun_hook_with_args): New C function, formerly in subr.el.
Karl Heuer <kwzh@gnu.org>
parents:
12583
diff
changeset
|
2034 HOOK should be a symbol, a hook variable. If HOOK has a non-nil\n\ |
14721fd8dcc1
(Frun_hook_with_args): New C function, formerly in subr.el.
Karl Heuer <kwzh@gnu.org>
parents:
12583
diff
changeset
|
2035 value, that value may be a function or a list of functions to be\n\ |
14721fd8dcc1
(Frun_hook_with_args): New C function, formerly in subr.el.
Karl Heuer <kwzh@gnu.org>
parents:
12583
diff
changeset
|
2036 called to run the hook. If the value is a function, it is called with\n\ |
14721fd8dcc1
(Frun_hook_with_args): New C function, formerly in subr.el.
Karl Heuer <kwzh@gnu.org>
parents:
12583
diff
changeset
|
2037 the given arguments and its return value is returned. If it is a list\n\ |
14721fd8dcc1
(Frun_hook_with_args): New C function, formerly in subr.el.
Karl Heuer <kwzh@gnu.org>
parents:
12583
diff
changeset
|
2038 of functions, those functions are called, in order,\n\ |
14721fd8dcc1
(Frun_hook_with_args): New C function, formerly in subr.el.
Karl Heuer <kwzh@gnu.org>
parents:
12583
diff
changeset
|
2039 with the given arguments ARGS.\n\ |
14721fd8dcc1
(Frun_hook_with_args): New C function, formerly in subr.el.
Karl Heuer <kwzh@gnu.org>
parents:
12583
diff
changeset
|
2040 It is best not to depend on the value return by `run-hook-with-args',\n\ |
14721fd8dcc1
(Frun_hook_with_args): New C function, formerly in subr.el.
Karl Heuer <kwzh@gnu.org>
parents:
12583
diff
changeset
|
2041 as that may change.\n\ |
14721fd8dcc1
(Frun_hook_with_args): New C function, formerly in subr.el.
Karl Heuer <kwzh@gnu.org>
parents:
12583
diff
changeset
|
2042 \n\ |
12732
981b924c832b
Add Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success, Frun_hook_with_args_until_failure in terms of run_hook_with_args.
Simon Marshall <simon@gnu.org>
parents:
12711
diff
changeset
|
2043 To make a hook variable buffer-local, use `make-local-hook',\n\ |
981b924c832b
Add Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success, Frun_hook_with_args_until_failure in terms of run_hook_with_args.
Simon Marshall <simon@gnu.org>
parents:
12711
diff
changeset
|
2044 not `make-local-variable'.") |
981b924c832b
Add Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success, Frun_hook_with_args_until_failure in terms of run_hook_with_args.
Simon Marshall <simon@gnu.org>
parents:
12711
diff
changeset
|
2045 (nargs, args) |
981b924c832b
Add Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success, Frun_hook_with_args_until_failure in terms of run_hook_with_args.
Simon Marshall <simon@gnu.org>
parents:
12711
diff
changeset
|
2046 int nargs; |
981b924c832b
Add Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success, Frun_hook_with_args_until_failure in terms of run_hook_with_args.
Simon Marshall <simon@gnu.org>
parents:
12711
diff
changeset
|
2047 Lisp_Object *args; |
981b924c832b
Add Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success, Frun_hook_with_args_until_failure in terms of run_hook_with_args.
Simon Marshall <simon@gnu.org>
parents:
12711
diff
changeset
|
2048 { |
981b924c832b
Add Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success, Frun_hook_with_args_until_failure in terms of run_hook_with_args.
Simon Marshall <simon@gnu.org>
parents:
12711
diff
changeset
|
2049 return run_hook_with_args (nargs, args, to_completion); |
981b924c832b
Add Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success, Frun_hook_with_args_until_failure in terms of run_hook_with_args.
Simon Marshall <simon@gnu.org>
parents:
12711
diff
changeset
|
2050 } |
981b924c832b
Add Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success, Frun_hook_with_args_until_failure in terms of run_hook_with_args.
Simon Marshall <simon@gnu.org>
parents:
12711
diff
changeset
|
2051 |
16485
9b919c5464a4
Reorganize function definitions so etags finds them.
Erik Naggum <erik@naggum.no>
parents:
16443
diff
changeset
|
2052 DEFUN ("run-hook-with-args-until-success", Frun_hook_with_args_until_success, |
9b919c5464a4
Reorganize function definitions so etags finds them.
Erik Naggum <erik@naggum.no>
parents:
16443
diff
changeset
|
2053 Srun_hook_with_args_until_success, 1, MANY, 0, |
12732
981b924c832b
Add Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success, Frun_hook_with_args_until_failure in terms of run_hook_with_args.
Simon Marshall <simon@gnu.org>
parents:
12711
diff
changeset
|
2054 "Run HOOK with the specified arguments ARGS.\n\ |
981b924c832b
Add Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success, Frun_hook_with_args_until_failure in terms of run_hook_with_args.
Simon Marshall <simon@gnu.org>
parents:
12711
diff
changeset
|
2055 HOOK should be a symbol, a hook variable. Its value should\n\ |
981b924c832b
Add Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success, Frun_hook_with_args_until_failure in terms of run_hook_with_args.
Simon Marshall <simon@gnu.org>
parents:
12711
diff
changeset
|
2056 be a list of functions. We call those functions, one by one,\n\ |
981b924c832b
Add Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success, Frun_hook_with_args_until_failure in terms of run_hook_with_args.
Simon Marshall <simon@gnu.org>
parents:
12711
diff
changeset
|
2057 passing arguments ARGS to each of them, until one of them\n\ |
981b924c832b
Add Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success, Frun_hook_with_args_until_failure in terms of run_hook_with_args.
Simon Marshall <simon@gnu.org>
parents:
12711
diff
changeset
|
2058 returns a non-nil value. Then we return that value.\n\ |
981b924c832b
Add Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success, Frun_hook_with_args_until_failure in terms of run_hook_with_args.
Simon Marshall <simon@gnu.org>
parents:
12711
diff
changeset
|
2059 If all the functions return nil, we return nil.\n\ |
981b924c832b
Add Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success, Frun_hook_with_args_until_failure in terms of run_hook_with_args.
Simon Marshall <simon@gnu.org>
parents:
12711
diff
changeset
|
2060 \n\ |
981b924c832b
Add Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success, Frun_hook_with_args_until_failure in terms of run_hook_with_args.
Simon Marshall <simon@gnu.org>
parents:
12711
diff
changeset
|
2061 To make a hook variable buffer-local, use `make-local-hook',\n\ |
981b924c832b
Add Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success, Frun_hook_with_args_until_failure in terms of run_hook_with_args.
Simon Marshall <simon@gnu.org>
parents:
12711
diff
changeset
|
2062 not `make-local-variable'.") |
12654
14721fd8dcc1
(Frun_hook_with_args): New C function, formerly in subr.el.
Karl Heuer <kwzh@gnu.org>
parents:
12583
diff
changeset
|
2063 (nargs, args) |
14721fd8dcc1
(Frun_hook_with_args): New C function, formerly in subr.el.
Karl Heuer <kwzh@gnu.org>
parents:
12583
diff
changeset
|
2064 int nargs; |
14721fd8dcc1
(Frun_hook_with_args): New C function, formerly in subr.el.
Karl Heuer <kwzh@gnu.org>
parents:
12583
diff
changeset
|
2065 Lisp_Object *args; |
14721fd8dcc1
(Frun_hook_with_args): New C function, formerly in subr.el.
Karl Heuer <kwzh@gnu.org>
parents:
12583
diff
changeset
|
2066 { |
12732
981b924c832b
Add Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success, Frun_hook_with_args_until_failure in terms of run_hook_with_args.
Simon Marshall <simon@gnu.org>
parents:
12711
diff
changeset
|
2067 return run_hook_with_args (nargs, args, until_success); |
981b924c832b
Add Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success, Frun_hook_with_args_until_failure in terms of run_hook_with_args.
Simon Marshall <simon@gnu.org>
parents:
12711
diff
changeset
|
2068 } |
981b924c832b
Add Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success, Frun_hook_with_args_until_failure in terms of run_hook_with_args.
Simon Marshall <simon@gnu.org>
parents:
12711
diff
changeset
|
2069 |
16485
9b919c5464a4
Reorganize function definitions so etags finds them.
Erik Naggum <erik@naggum.no>
parents:
16443
diff
changeset
|
2070 DEFUN ("run-hook-with-args-until-failure", Frun_hook_with_args_until_failure, |
9b919c5464a4
Reorganize function definitions so etags finds them.
Erik Naggum <erik@naggum.no>
parents:
16443
diff
changeset
|
2071 Srun_hook_with_args_until_failure, 1, MANY, 0, |
12732
981b924c832b
Add Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success, Frun_hook_with_args_until_failure in terms of run_hook_with_args.
Simon Marshall <simon@gnu.org>
parents:
12711
diff
changeset
|
2072 "Run HOOK with the specified arguments ARGS.\n\ |
981b924c832b
Add Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success, Frun_hook_with_args_until_failure in terms of run_hook_with_args.
Simon Marshall <simon@gnu.org>
parents:
12711
diff
changeset
|
2073 HOOK should be a symbol, a hook variable. Its value should\n\ |
981b924c832b
Add Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success, Frun_hook_with_args_until_failure in terms of run_hook_with_args.
Simon Marshall <simon@gnu.org>
parents:
12711
diff
changeset
|
2074 be a list of functions. We call those functions, one by one,\n\ |
981b924c832b
Add Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success, Frun_hook_with_args_until_failure in terms of run_hook_with_args.
Simon Marshall <simon@gnu.org>
parents:
12711
diff
changeset
|
2075 passing arguments ARGS to each of them, until one of them\n\ |
981b924c832b
Add Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success, Frun_hook_with_args_until_failure in terms of run_hook_with_args.
Simon Marshall <simon@gnu.org>
parents:
12711
diff
changeset
|
2076 returns nil. Then we return nil.\n\ |
981b924c832b
Add Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success, Frun_hook_with_args_until_failure in terms of run_hook_with_args.
Simon Marshall <simon@gnu.org>
parents:
12711
diff
changeset
|
2077 If all the functions return non-nil, we return non-nil.\n\ |
981b924c832b
Add Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success, Frun_hook_with_args_until_failure in terms of run_hook_with_args.
Simon Marshall <simon@gnu.org>
parents:
12711
diff
changeset
|
2078 \n\ |
981b924c832b
Add Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success, Frun_hook_with_args_until_failure in terms of run_hook_with_args.
Simon Marshall <simon@gnu.org>
parents:
12711
diff
changeset
|
2079 To make a hook variable buffer-local, use `make-local-hook',\n\ |
981b924c832b
Add Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success, Frun_hook_with_args_until_failure in terms of run_hook_with_args.
Simon Marshall <simon@gnu.org>
parents:
12711
diff
changeset
|
2080 not `make-local-variable'.") |
981b924c832b
Add Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success, Frun_hook_with_args_until_failure in terms of run_hook_with_args.
Simon Marshall <simon@gnu.org>
parents:
12711
diff
changeset
|
2081 (nargs, args) |
981b924c832b
Add Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success, Frun_hook_with_args_until_failure in terms of run_hook_with_args.
Simon Marshall <simon@gnu.org>
parents:
12711
diff
changeset
|
2082 int nargs; |
981b924c832b
Add Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success, Frun_hook_with_args_until_failure in terms of run_hook_with_args.
Simon Marshall <simon@gnu.org>
parents:
12711
diff
changeset
|
2083 Lisp_Object *args; |
981b924c832b
Add Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success, Frun_hook_with_args_until_failure in terms of run_hook_with_args.
Simon Marshall <simon@gnu.org>
parents:
12711
diff
changeset
|
2084 { |
981b924c832b
Add Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success, Frun_hook_with_args_until_failure in terms of run_hook_with_args.
Simon Marshall <simon@gnu.org>
parents:
12711
diff
changeset
|
2085 return run_hook_with_args (nargs, args, until_failure); |
981b924c832b
Add Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success, Frun_hook_with_args_until_failure in terms of run_hook_with_args.
Simon Marshall <simon@gnu.org>
parents:
12711
diff
changeset
|
2086 } |
981b924c832b
Add Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success, Frun_hook_with_args_until_failure in terms of run_hook_with_args.
Simon Marshall <simon@gnu.org>
parents:
12711
diff
changeset
|
2087 |
12781
2a8036f0b585
(run_hook_with_args): Add gcpros.
Richard M. Stallman <rms@gnu.org>
parents:
12732
diff
changeset
|
2088 /* ARGS[0] should be a hook symbol. |
2a8036f0b585
(run_hook_with_args): Add gcpros.
Richard M. Stallman <rms@gnu.org>
parents:
12732
diff
changeset
|
2089 Call each of the functions in the hook value, passing each of them |
2a8036f0b585
(run_hook_with_args): Add gcpros.
Richard M. Stallman <rms@gnu.org>
parents:
12732
diff
changeset
|
2090 as arguments all the rest of ARGS (all NARGS - 1 elements). |
2a8036f0b585
(run_hook_with_args): Add gcpros.
Richard M. Stallman <rms@gnu.org>
parents:
12732
diff
changeset
|
2091 COND specifies a condition to test after each call |
2a8036f0b585
(run_hook_with_args): Add gcpros.
Richard M. Stallman <rms@gnu.org>
parents:
12732
diff
changeset
|
2092 to decide whether to stop. |
2a8036f0b585
(run_hook_with_args): Add gcpros.
Richard M. Stallman <rms@gnu.org>
parents:
12732
diff
changeset
|
2093 The caller (or its caller, etc) must gcpro all of ARGS, |
2a8036f0b585
(run_hook_with_args): Add gcpros.
Richard M. Stallman <rms@gnu.org>
parents:
12732
diff
changeset
|
2094 except that it isn't necessary to gcpro ARGS[0]. */ |
2a8036f0b585
(run_hook_with_args): Add gcpros.
Richard M. Stallman <rms@gnu.org>
parents:
12732
diff
changeset
|
2095 |
12732
981b924c832b
Add Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success, Frun_hook_with_args_until_failure in terms of run_hook_with_args.
Simon Marshall <simon@gnu.org>
parents:
12711
diff
changeset
|
2096 Lisp_Object |
981b924c832b
Add Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success, Frun_hook_with_args_until_failure in terms of run_hook_with_args.
Simon Marshall <simon@gnu.org>
parents:
12711
diff
changeset
|
2097 run_hook_with_args (nargs, args, cond) |
981b924c832b
Add Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success, Frun_hook_with_args_until_failure in terms of run_hook_with_args.
Simon Marshall <simon@gnu.org>
parents:
12711
diff
changeset
|
2098 int nargs; |
981b924c832b
Add Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success, Frun_hook_with_args_until_failure in terms of run_hook_with_args.
Simon Marshall <simon@gnu.org>
parents:
12711
diff
changeset
|
2099 Lisp_Object *args; |
981b924c832b
Add Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success, Frun_hook_with_args_until_failure in terms of run_hook_with_args.
Simon Marshall <simon@gnu.org>
parents:
12711
diff
changeset
|
2100 enum run_hooks_condition cond; |
981b924c832b
Add Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success, Frun_hook_with_args_until_failure in terms of run_hook_with_args.
Simon Marshall <simon@gnu.org>
parents:
12711
diff
changeset
|
2101 { |
981b924c832b
Add Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success, Frun_hook_with_args_until_failure in terms of run_hook_with_args.
Simon Marshall <simon@gnu.org>
parents:
12711
diff
changeset
|
2102 Lisp_Object sym, val, ret; |
25257
0be923a80096
(run_hook_list_with_args): Gcpro `globals'.
Karl Heuer <kwzh@gnu.org>
parents:
25008
diff
changeset
|
2103 Lisp_Object globals; |
0be923a80096
(run_hook_list_with_args): Gcpro `globals'.
Karl Heuer <kwzh@gnu.org>
parents:
25008
diff
changeset
|
2104 struct gcpro gcpro1, gcpro2, gcpro3; |
12654
14721fd8dcc1
(Frun_hook_with_args): New C function, formerly in subr.el.
Karl Heuer <kwzh@gnu.org>
parents:
12583
diff
changeset
|
2105 |
14218
346d4cf758f5
(run_hook_with_args): Do nothing if Vrun_hooks is nil.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
2106 /* If we are dying or still initializing, |
346d4cf758f5
(run_hook_with_args): Do nothing if Vrun_hooks is nil.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
2107 don't do anything--it would probably crash if we tried. */ |
346d4cf758f5
(run_hook_with_args): Do nothing if Vrun_hooks is nil.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
2108 if (NILP (Vrun_hooks)) |
346d4cf758f5
(run_hook_with_args): Do nothing if Vrun_hooks is nil.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
2109 return; |
346d4cf758f5
(run_hook_with_args): Do nothing if Vrun_hooks is nil.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
2110 |
12654
14721fd8dcc1
(Frun_hook_with_args): New C function, formerly in subr.el.
Karl Heuer <kwzh@gnu.org>
parents:
12583
diff
changeset
|
2111 sym = args[0]; |
12663
14d407b83eb3
(run-hook-with-args): Fix previous code.
Karl Heuer <kwzh@gnu.org>
parents:
12654
diff
changeset
|
2112 val = find_symbol_value (sym); |
12732
981b924c832b
Add Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success, Frun_hook_with_args_until_failure in terms of run_hook_with_args.
Simon Marshall <simon@gnu.org>
parents:
12711
diff
changeset
|
2113 ret = (cond == until_failure ? Qt : Qnil); |
981b924c832b
Add Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success, Frun_hook_with_args_until_failure in terms of run_hook_with_args.
Simon Marshall <simon@gnu.org>
parents:
12711
diff
changeset
|
2114 |
12654
14721fd8dcc1
(Frun_hook_with_args): New C function, formerly in subr.el.
Karl Heuer <kwzh@gnu.org>
parents:
12583
diff
changeset
|
2115 if (EQ (val, Qunbound) || NILP (val)) |
12732
981b924c832b
Add Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success, Frun_hook_with_args_until_failure in terms of run_hook_with_args.
Simon Marshall <simon@gnu.org>
parents:
12711
diff
changeset
|
2116 return ret; |
25662
0a7261c1d487
Use XCAR, XCDR, and XFLOAT_DATA instead of explicit member access.
Ken Raeburn <raeburn@raeburn.org>
parents:
25314
diff
changeset
|
2117 else if (!CONSP (val) || EQ (XCAR (val), Qlambda)) |
12654
14721fd8dcc1
(Frun_hook_with_args): New C function, formerly in subr.el.
Karl Heuer <kwzh@gnu.org>
parents:
12583
diff
changeset
|
2118 { |
14721fd8dcc1
(Frun_hook_with_args): New C function, formerly in subr.el.
Karl Heuer <kwzh@gnu.org>
parents:
12583
diff
changeset
|
2119 args[0] = val; |
14721fd8dcc1
(Frun_hook_with_args): New C function, formerly in subr.el.
Karl Heuer <kwzh@gnu.org>
parents:
12583
diff
changeset
|
2120 return Ffuncall (nargs, args); |
14721fd8dcc1
(Frun_hook_with_args): New C function, formerly in subr.el.
Karl Heuer <kwzh@gnu.org>
parents:
12583
diff
changeset
|
2121 } |
14721fd8dcc1
(Frun_hook_with_args): New C function, formerly in subr.el.
Karl Heuer <kwzh@gnu.org>
parents:
12583
diff
changeset
|
2122 else |
14721fd8dcc1
(Frun_hook_with_args): New C function, formerly in subr.el.
Karl Heuer <kwzh@gnu.org>
parents:
12583
diff
changeset
|
2123 { |
25257
0be923a80096
(run_hook_list_with_args): Gcpro `globals'.
Karl Heuer <kwzh@gnu.org>
parents:
25008
diff
changeset
|
2124 globals = Qnil; |
0be923a80096
(run_hook_list_with_args): Gcpro `globals'.
Karl Heuer <kwzh@gnu.org>
parents:
25008
diff
changeset
|
2125 GCPRO3 (sym, val, globals); |
12788
eceb3f25e115
(run_hook_with_args): Move the GCPRO2; add UNGCPRO.
Richard M. Stallman <rms@gnu.org>
parents:
12781
diff
changeset
|
2126 |
12732
981b924c832b
Add Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success, Frun_hook_with_args_until_failure in terms of run_hook_with_args.
Simon Marshall <simon@gnu.org>
parents:
12711
diff
changeset
|
2127 for (; |
981b924c832b
Add Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success, Frun_hook_with_args_until_failure in terms of run_hook_with_args.
Simon Marshall <simon@gnu.org>
parents:
12711
diff
changeset
|
2128 CONSP (val) && ((cond == to_completion) |
981b924c832b
Add Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success, Frun_hook_with_args_until_failure in terms of run_hook_with_args.
Simon Marshall <simon@gnu.org>
parents:
12711
diff
changeset
|
2129 || (cond == until_success ? NILP (ret) |
981b924c832b
Add Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success, Frun_hook_with_args_until_failure in terms of run_hook_with_args.
Simon Marshall <simon@gnu.org>
parents:
12711
diff
changeset
|
2130 : !NILP (ret))); |
25662
0a7261c1d487
Use XCAR, XCDR, and XFLOAT_DATA instead of explicit member access.
Ken Raeburn <raeburn@raeburn.org>
parents:
25314
diff
changeset
|
2131 val = XCDR (val)) |
12654
14721fd8dcc1
(Frun_hook_with_args): New C function, formerly in subr.el.
Karl Heuer <kwzh@gnu.org>
parents:
12583
diff
changeset
|
2132 { |
25662
0a7261c1d487
Use XCAR, XCDR, and XFLOAT_DATA instead of explicit member access.
Ken Raeburn <raeburn@raeburn.org>
parents:
25314
diff
changeset
|
2133 if (EQ (XCAR (val), Qt)) |
12654
14721fd8dcc1
(Frun_hook_with_args): New C function, formerly in subr.el.
Karl Heuer <kwzh@gnu.org>
parents:
12583
diff
changeset
|
2134 { |
14721fd8dcc1
(Frun_hook_with_args): New C function, formerly in subr.el.
Karl Heuer <kwzh@gnu.org>
parents:
12583
diff
changeset
|
2135 /* t indicates this hook has a local binding; |
14721fd8dcc1
(Frun_hook_with_args): New C function, formerly in subr.el.
Karl Heuer <kwzh@gnu.org>
parents:
12583
diff
changeset
|
2136 it means to run the global binding too. */ |
14721fd8dcc1
(Frun_hook_with_args): New C function, formerly in subr.el.
Karl Heuer <kwzh@gnu.org>
parents:
12583
diff
changeset
|
2137 |
12732
981b924c832b
Add Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success, Frun_hook_with_args_until_failure in terms of run_hook_with_args.
Simon Marshall <simon@gnu.org>
parents:
12711
diff
changeset
|
2138 for (globals = Fdefault_value (sym); |
981b924c832b
Add Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success, Frun_hook_with_args_until_failure in terms of run_hook_with_args.
Simon Marshall <simon@gnu.org>
parents:
12711
diff
changeset
|
2139 CONSP (globals) && ((cond == to_completion) |
981b924c832b
Add Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success, Frun_hook_with_args_until_failure in terms of run_hook_with_args.
Simon Marshall <simon@gnu.org>
parents:
12711
diff
changeset
|
2140 || (cond == until_success ? NILP (ret) |
981b924c832b
Add Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success, Frun_hook_with_args_until_failure in terms of run_hook_with_args.
Simon Marshall <simon@gnu.org>
parents:
12711
diff
changeset
|
2141 : !NILP (ret))); |
25662
0a7261c1d487
Use XCAR, XCDR, and XFLOAT_DATA instead of explicit member access.
Ken Raeburn <raeburn@raeburn.org>
parents:
25314
diff
changeset
|
2142 globals = XCDR (globals)) |
12654
14721fd8dcc1
(Frun_hook_with_args): New C function, formerly in subr.el.
Karl Heuer <kwzh@gnu.org>
parents:
12583
diff
changeset
|
2143 { |
25662
0a7261c1d487
Use XCAR, XCDR, and XFLOAT_DATA instead of explicit member access.
Ken Raeburn <raeburn@raeburn.org>
parents:
25314
diff
changeset
|
2144 args[0] = XCAR (globals); |
13444
17f3f1c1bdf8
(run-hook-with-args, run-hook-list-with-args): Safeguard
Richard M. Stallman <rms@gnu.org>
parents:
13314
diff
changeset
|
2145 /* In a global value, t should not occur. If it does, we |
17f3f1c1bdf8
(run-hook-with-args, run-hook-list-with-args): Safeguard
Richard M. Stallman <rms@gnu.org>
parents:
13314
diff
changeset
|
2146 must ignore it to avoid an endless loop. */ |
17f3f1c1bdf8
(run-hook-with-args, run-hook-list-with-args): Safeguard
Richard M. Stallman <rms@gnu.org>
parents:
13314
diff
changeset
|
2147 if (!EQ (args[0], Qt)) |
17f3f1c1bdf8
(run-hook-with-args, run-hook-list-with-args): Safeguard
Richard M. Stallman <rms@gnu.org>
parents:
13314
diff
changeset
|
2148 ret = Ffuncall (nargs, args); |
12654
14721fd8dcc1
(Frun_hook_with_args): New C function, formerly in subr.el.
Karl Heuer <kwzh@gnu.org>
parents:
12583
diff
changeset
|
2149 } |
14721fd8dcc1
(Frun_hook_with_args): New C function, formerly in subr.el.
Karl Heuer <kwzh@gnu.org>
parents:
12583
diff
changeset
|
2150 } |
14721fd8dcc1
(Frun_hook_with_args): New C function, formerly in subr.el.
Karl Heuer <kwzh@gnu.org>
parents:
12583
diff
changeset
|
2151 else |
14721fd8dcc1
(Frun_hook_with_args): New C function, formerly in subr.el.
Karl Heuer <kwzh@gnu.org>
parents:
12583
diff
changeset
|
2152 { |
25662
0a7261c1d487
Use XCAR, XCDR, and XFLOAT_DATA instead of explicit member access.
Ken Raeburn <raeburn@raeburn.org>
parents:
25314
diff
changeset
|
2153 args[0] = XCAR (val); |
12732
981b924c832b
Add Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success, Frun_hook_with_args_until_failure in terms of run_hook_with_args.
Simon Marshall <simon@gnu.org>
parents:
12711
diff
changeset
|
2154 ret = Ffuncall (nargs, args); |
12654
14721fd8dcc1
(Frun_hook_with_args): New C function, formerly in subr.el.
Karl Heuer <kwzh@gnu.org>
parents:
12583
diff
changeset
|
2155 } |
14721fd8dcc1
(Frun_hook_with_args): New C function, formerly in subr.el.
Karl Heuer <kwzh@gnu.org>
parents:
12583
diff
changeset
|
2156 } |
12788
eceb3f25e115
(run_hook_with_args): Move the GCPRO2; add UNGCPRO.
Richard M. Stallman <rms@gnu.org>
parents:
12781
diff
changeset
|
2157 |
eceb3f25e115
(run_hook_with_args): Move the GCPRO2; add UNGCPRO.
Richard M. Stallman <rms@gnu.org>
parents:
12781
diff
changeset
|
2158 UNGCPRO; |
12732
981b924c832b
Add Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success, Frun_hook_with_args_until_failure in terms of run_hook_with_args.
Simon Marshall <simon@gnu.org>
parents:
12711
diff
changeset
|
2159 return ret; |
12654
14721fd8dcc1
(Frun_hook_with_args): New C function, formerly in subr.el.
Karl Heuer <kwzh@gnu.org>
parents:
12583
diff
changeset
|
2160 } |
14721fd8dcc1
(Frun_hook_with_args): New C function, formerly in subr.el.
Karl Heuer <kwzh@gnu.org>
parents:
12583
diff
changeset
|
2161 } |
12781
2a8036f0b585
(run_hook_with_args): Add gcpros.
Richard M. Stallman <rms@gnu.org>
parents:
12732
diff
changeset
|
2162 |
2a8036f0b585
(run_hook_with_args): Add gcpros.
Richard M. Stallman <rms@gnu.org>
parents:
12732
diff
changeset
|
2163 /* Run a hook symbol ARGS[0], but use FUNLIST instead of the actual |
2a8036f0b585
(run_hook_with_args): Add gcpros.
Richard M. Stallman <rms@gnu.org>
parents:
12732
diff
changeset
|
2164 present value of that symbol. |
2a8036f0b585
(run_hook_with_args): Add gcpros.
Richard M. Stallman <rms@gnu.org>
parents:
12732
diff
changeset
|
2165 Call each element of FUNLIST, |
2a8036f0b585
(run_hook_with_args): Add gcpros.
Richard M. Stallman <rms@gnu.org>
parents:
12732
diff
changeset
|
2166 passing each of them the rest of ARGS. |
2a8036f0b585
(run_hook_with_args): Add gcpros.
Richard M. Stallman <rms@gnu.org>
parents:
12732
diff
changeset
|
2167 The caller (or its caller, etc) must gcpro all of ARGS, |
2a8036f0b585
(run_hook_with_args): Add gcpros.
Richard M. Stallman <rms@gnu.org>
parents:
12732
diff
changeset
|
2168 except that it isn't necessary to gcpro ARGS[0]. */ |
2a8036f0b585
(run_hook_with_args): Add gcpros.
Richard M. Stallman <rms@gnu.org>
parents:
12732
diff
changeset
|
2169 |
2a8036f0b585
(run_hook_with_args): Add gcpros.
Richard M. Stallman <rms@gnu.org>
parents:
12732
diff
changeset
|
2170 Lisp_Object |
2a8036f0b585
(run_hook_with_args): Add gcpros.
Richard M. Stallman <rms@gnu.org>
parents:
12732
diff
changeset
|
2171 run_hook_list_with_args (funlist, nargs, args) |
2a8036f0b585
(run_hook_with_args): Add gcpros.
Richard M. Stallman <rms@gnu.org>
parents:
12732
diff
changeset
|
2172 Lisp_Object funlist; |
2a8036f0b585
(run_hook_with_args): Add gcpros.
Richard M. Stallman <rms@gnu.org>
parents:
12732
diff
changeset
|
2173 int nargs; |
2a8036f0b585
(run_hook_with_args): Add gcpros.
Richard M. Stallman <rms@gnu.org>
parents:
12732
diff
changeset
|
2174 Lisp_Object *args; |
2a8036f0b585
(run_hook_with_args): Add gcpros.
Richard M. Stallman <rms@gnu.org>
parents:
12732
diff
changeset
|
2175 { |
2a8036f0b585
(run_hook_with_args): Add gcpros.
Richard M. Stallman <rms@gnu.org>
parents:
12732
diff
changeset
|
2176 Lisp_Object sym; |
2a8036f0b585
(run_hook_with_args): Add gcpros.
Richard M. Stallman <rms@gnu.org>
parents:
12732
diff
changeset
|
2177 Lisp_Object val; |
25257
0be923a80096
(run_hook_list_with_args): Gcpro `globals'.
Karl Heuer <kwzh@gnu.org>
parents:
25008
diff
changeset
|
2178 Lisp_Object globals; |
0be923a80096
(run_hook_list_with_args): Gcpro `globals'.
Karl Heuer <kwzh@gnu.org>
parents:
25008
diff
changeset
|
2179 struct gcpro gcpro1, gcpro2, gcpro3; |
12781
2a8036f0b585
(run_hook_with_args): Add gcpros.
Richard M. Stallman <rms@gnu.org>
parents:
12732
diff
changeset
|
2180 |
2a8036f0b585
(run_hook_with_args): Add gcpros.
Richard M. Stallman <rms@gnu.org>
parents:
12732
diff
changeset
|
2181 sym = args[0]; |
25257
0be923a80096
(run_hook_list_with_args): Gcpro `globals'.
Karl Heuer <kwzh@gnu.org>
parents:
25008
diff
changeset
|
2182 globals = Qnil; |
0be923a80096
(run_hook_list_with_args): Gcpro `globals'.
Karl Heuer <kwzh@gnu.org>
parents:
25008
diff
changeset
|
2183 GCPRO3 (sym, val, globals); |
12781
2a8036f0b585
(run_hook_with_args): Add gcpros.
Richard M. Stallman <rms@gnu.org>
parents:
12732
diff
changeset
|
2184 |
25662
0a7261c1d487
Use XCAR, XCDR, and XFLOAT_DATA instead of explicit member access.
Ken Raeburn <raeburn@raeburn.org>
parents:
25314
diff
changeset
|
2185 for (val = funlist; CONSP (val); val = XCDR (val)) |
12781
2a8036f0b585
(run_hook_with_args): Add gcpros.
Richard M. Stallman <rms@gnu.org>
parents:
12732
diff
changeset
|
2186 { |
25662
0a7261c1d487
Use XCAR, XCDR, and XFLOAT_DATA instead of explicit member access.
Ken Raeburn <raeburn@raeburn.org>
parents:
25314
diff
changeset
|
2187 if (EQ (XCAR (val), Qt)) |
12781
2a8036f0b585
(run_hook_with_args): Add gcpros.
Richard M. Stallman <rms@gnu.org>
parents:
12732
diff
changeset
|
2188 { |
2a8036f0b585
(run_hook_with_args): Add gcpros.
Richard M. Stallman <rms@gnu.org>
parents:
12732
diff
changeset
|
2189 /* t indicates this hook has a local binding; |
2a8036f0b585
(run_hook_with_args): Add gcpros.
Richard M. Stallman <rms@gnu.org>
parents:
12732
diff
changeset
|
2190 it means to run the global binding too. */ |
2a8036f0b585
(run_hook_with_args): Add gcpros.
Richard M. Stallman <rms@gnu.org>
parents:
12732
diff
changeset
|
2191 |
2a8036f0b585
(run_hook_with_args): Add gcpros.
Richard M. Stallman <rms@gnu.org>
parents:
12732
diff
changeset
|
2192 for (globals = Fdefault_value (sym); |
2a8036f0b585
(run_hook_with_args): Add gcpros.
Richard M. Stallman <rms@gnu.org>
parents:
12732
diff
changeset
|
2193 CONSP (globals); |
25662
0a7261c1d487
Use XCAR, XCDR, and XFLOAT_DATA instead of explicit member access.
Ken Raeburn <raeburn@raeburn.org>
parents:
25314
diff
changeset
|
2194 globals = XCDR (globals)) |
12781
2a8036f0b585
(run_hook_with_args): Add gcpros.
Richard M. Stallman <rms@gnu.org>
parents:
12732
diff
changeset
|
2195 { |
25662
0a7261c1d487
Use XCAR, XCDR, and XFLOAT_DATA instead of explicit member access.
Ken Raeburn <raeburn@raeburn.org>
parents:
25314
diff
changeset
|
2196 args[0] = XCAR (globals); |
13444
17f3f1c1bdf8
(run-hook-with-args, run-hook-list-with-args): Safeguard
Richard M. Stallman <rms@gnu.org>
parents:
13314
diff
changeset
|
2197 /* In a global value, t should not occur. If it does, we |
17f3f1c1bdf8
(run-hook-with-args, run-hook-list-with-args): Safeguard
Richard M. Stallman <rms@gnu.org>
parents:
13314
diff
changeset
|
2198 must ignore it to avoid an endless loop. */ |
17f3f1c1bdf8
(run-hook-with-args, run-hook-list-with-args): Safeguard
Richard M. Stallman <rms@gnu.org>
parents:
13314
diff
changeset
|
2199 if (!EQ (args[0], Qt)) |
17f3f1c1bdf8
(run-hook-with-args, run-hook-list-with-args): Safeguard
Richard M. Stallman <rms@gnu.org>
parents:
13314
diff
changeset
|
2200 Ffuncall (nargs, args); |
12781
2a8036f0b585
(run_hook_with_args): Add gcpros.
Richard M. Stallman <rms@gnu.org>
parents:
12732
diff
changeset
|
2201 } |
2a8036f0b585
(run_hook_with_args): Add gcpros.
Richard M. Stallman <rms@gnu.org>
parents:
12732
diff
changeset
|
2202 } |
2a8036f0b585
(run_hook_with_args): Add gcpros.
Richard M. Stallman <rms@gnu.org>
parents:
12732
diff
changeset
|
2203 else |
2a8036f0b585
(run_hook_with_args): Add gcpros.
Richard M. Stallman <rms@gnu.org>
parents:
12732
diff
changeset
|
2204 { |
25662
0a7261c1d487
Use XCAR, XCDR, and XFLOAT_DATA instead of explicit member access.
Ken Raeburn <raeburn@raeburn.org>
parents:
25314
diff
changeset
|
2205 args[0] = XCAR (val); |
12781
2a8036f0b585
(run_hook_with_args): Add gcpros.
Richard M. Stallman <rms@gnu.org>
parents:
12732
diff
changeset
|
2206 Ffuncall (nargs, args); |
2a8036f0b585
(run_hook_with_args): Add gcpros.
Richard M. Stallman <rms@gnu.org>
parents:
12732
diff
changeset
|
2207 } |
2a8036f0b585
(run_hook_with_args): Add gcpros.
Richard M. Stallman <rms@gnu.org>
parents:
12732
diff
changeset
|
2208 } |
2a8036f0b585
(run_hook_with_args): Add gcpros.
Richard M. Stallman <rms@gnu.org>
parents:
12732
diff
changeset
|
2209 UNGCPRO; |
2a8036f0b585
(run_hook_with_args): Add gcpros.
Richard M. Stallman <rms@gnu.org>
parents:
12732
diff
changeset
|
2210 return Qnil; |
2a8036f0b585
(run_hook_with_args): Add gcpros.
Richard M. Stallman <rms@gnu.org>
parents:
12732
diff
changeset
|
2211 } |
13103
a537b52d6668
(run_hook_with_args_2): New function.
Richard M. Stallman <rms@gnu.org>
parents:
12788
diff
changeset
|
2212 |
a537b52d6668
(run_hook_with_args_2): New function.
Richard M. Stallman <rms@gnu.org>
parents:
12788
diff
changeset
|
2213 /* Run the hook HOOK, giving each function the two args ARG1 and ARG2. */ |
a537b52d6668
(run_hook_with_args_2): New function.
Richard M. Stallman <rms@gnu.org>
parents:
12788
diff
changeset
|
2214 |
a537b52d6668
(run_hook_with_args_2): New function.
Richard M. Stallman <rms@gnu.org>
parents:
12788
diff
changeset
|
2215 void |
a537b52d6668
(run_hook_with_args_2): New function.
Richard M. Stallman <rms@gnu.org>
parents:
12788
diff
changeset
|
2216 run_hook_with_args_2 (hook, arg1, arg2) |
a537b52d6668
(run_hook_with_args_2): New function.
Richard M. Stallman <rms@gnu.org>
parents:
12788
diff
changeset
|
2217 Lisp_Object hook, arg1, arg2; |
a537b52d6668
(run_hook_with_args_2): New function.
Richard M. Stallman <rms@gnu.org>
parents:
12788
diff
changeset
|
2218 { |
a537b52d6668
(run_hook_with_args_2): New function.
Richard M. Stallman <rms@gnu.org>
parents:
12788
diff
changeset
|
2219 Lisp_Object temp[3]; |
a537b52d6668
(run_hook_with_args_2): New function.
Richard M. Stallman <rms@gnu.org>
parents:
12788
diff
changeset
|
2220 temp[0] = hook; |
a537b52d6668
(run_hook_with_args_2): New function.
Richard M. Stallman <rms@gnu.org>
parents:
12788
diff
changeset
|
2221 temp[1] = arg1; |
a537b52d6668
(run_hook_with_args_2): New function.
Richard M. Stallman <rms@gnu.org>
parents:
12788
diff
changeset
|
2222 temp[2] = arg2; |
a537b52d6668
(run_hook_with_args_2): New function.
Richard M. Stallman <rms@gnu.org>
parents:
12788
diff
changeset
|
2223 |
a537b52d6668
(run_hook_with_args_2): New function.
Richard M. Stallman <rms@gnu.org>
parents:
12788
diff
changeset
|
2224 Frun_hook_with_args (3, temp); |
a537b52d6668
(run_hook_with_args_2): New function.
Richard M. Stallman <rms@gnu.org>
parents:
12788
diff
changeset
|
2225 } |
12732
981b924c832b
Add Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success, Frun_hook_with_args_until_failure in terms of run_hook_with_args.
Simon Marshall <simon@gnu.org>
parents:
12711
diff
changeset
|
2226 |
272 | 2227 /* Apply fn to arg */ |
2228 Lisp_Object | |
2229 apply1 (fn, arg) | |
2230 Lisp_Object fn, arg; | |
2231 { | |
323 | 2232 struct gcpro gcpro1; |
2233 | |
2234 GCPRO1 (fn); | |
485 | 2235 if (NILP (arg)) |
323 | 2236 RETURN_UNGCPRO (Ffuncall (1, &fn)); |
2237 gcpro1.nvars = 2; | |
272 | 2238 #ifdef NO_ARG_ARRAY |
2239 { | |
2240 Lisp_Object args[2]; | |
2241 args[0] = fn; | |
2242 args[1] = arg; | |
323 | 2243 gcpro1.var = args; |
2244 RETURN_UNGCPRO (Fapply (2, args)); | |
272 | 2245 } |
2246 #else /* not NO_ARG_ARRAY */ | |
323 | 2247 RETURN_UNGCPRO (Fapply (2, &fn)); |
272 | 2248 #endif /* not NO_ARG_ARRAY */ |
2249 } | |
2250 | |
2251 /* Call function fn on no arguments */ | |
2252 Lisp_Object | |
2253 call0 (fn) | |
2254 Lisp_Object fn; | |
2255 { | |
323 | 2256 struct gcpro gcpro1; |
2257 | |
2258 GCPRO1 (fn); | |
2259 RETURN_UNGCPRO (Ffuncall (1, &fn)); | |
272 | 2260 } |
2261 | |
3703
6930e8f81c88
(call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
2262 /* Call function fn with 1 argument arg1 */ |
272 | 2263 /* ARGSUSED */ |
2264 Lisp_Object | |
3703
6930e8f81c88
(call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
2265 call1 (fn, arg1) |
6930e8f81c88
(call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
2266 Lisp_Object fn, arg1; |
272 | 2267 { |
323 | 2268 struct gcpro gcpro1; |
272 | 2269 #ifdef NO_ARG_ARRAY |
323 | 2270 Lisp_Object args[2]; |
2271 | |
272 | 2272 args[0] = fn; |
3703
6930e8f81c88
(call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
2273 args[1] = arg1; |
323 | 2274 GCPRO1 (args[0]); |
2275 gcpro1.nvars = 2; | |
2276 RETURN_UNGCPRO (Ffuncall (2, args)); | |
272 | 2277 #else /* not NO_ARG_ARRAY */ |
323 | 2278 GCPRO1 (fn); |
2279 gcpro1.nvars = 2; | |
2280 RETURN_UNGCPRO (Ffuncall (2, &fn)); | |
272 | 2281 #endif /* not NO_ARG_ARRAY */ |
2282 } | |
2283 | |
3703
6930e8f81c88
(call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
2284 /* Call function fn with 2 arguments arg1, arg2 */ |
272 | 2285 /* ARGSUSED */ |
2286 Lisp_Object | |
3703
6930e8f81c88
(call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
2287 call2 (fn, arg1, arg2) |
6930e8f81c88
(call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
2288 Lisp_Object fn, arg1, arg2; |
272 | 2289 { |
323 | 2290 struct gcpro gcpro1; |
272 | 2291 #ifdef NO_ARG_ARRAY |
2292 Lisp_Object args[3]; | |
2293 args[0] = fn; | |
3703
6930e8f81c88
(call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
2294 args[1] = arg1; |
6930e8f81c88
(call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
2295 args[2] = arg2; |
323 | 2296 GCPRO1 (args[0]); |
2297 gcpro1.nvars = 3; | |
2298 RETURN_UNGCPRO (Ffuncall (3, args)); | |
272 | 2299 #else /* not NO_ARG_ARRAY */ |
323 | 2300 GCPRO1 (fn); |
2301 gcpro1.nvars = 3; | |
2302 RETURN_UNGCPRO (Ffuncall (3, &fn)); | |
272 | 2303 #endif /* not NO_ARG_ARRAY */ |
2304 } | |
2305 | |
3703
6930e8f81c88
(call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
2306 /* Call function fn with 3 arguments arg1, arg2, arg3 */ |
272 | 2307 /* ARGSUSED */ |
2308 Lisp_Object | |
3703
6930e8f81c88
(call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
2309 call3 (fn, arg1, arg2, arg3) |
6930e8f81c88
(call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
2310 Lisp_Object fn, arg1, arg2, arg3; |
272 | 2311 { |
323 | 2312 struct gcpro gcpro1; |
272 | 2313 #ifdef NO_ARG_ARRAY |
2314 Lisp_Object args[4]; | |
2315 args[0] = fn; | |
3703
6930e8f81c88
(call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
2316 args[1] = arg1; |
6930e8f81c88
(call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
2317 args[2] = arg2; |
6930e8f81c88
(call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
2318 args[3] = arg3; |
323 | 2319 GCPRO1 (args[0]); |
2320 gcpro1.nvars = 4; | |
2321 RETURN_UNGCPRO (Ffuncall (4, args)); | |
272 | 2322 #else /* not NO_ARG_ARRAY */ |
323 | 2323 GCPRO1 (fn); |
2324 gcpro1.nvars = 4; | |
2325 RETURN_UNGCPRO (Ffuncall (4, &fn)); | |
272 | 2326 #endif /* not NO_ARG_ARRAY */ |
2327 } | |
2328 | |
3703
6930e8f81c88
(call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
2329 /* Call function fn with 4 arguments arg1, arg2, arg3, arg4 */ |
3598
3c4b5489d2b4
* fileio.c (Frename_file): Pass all arguments to the file name handler.
Jim Blandy <jimb@redhat.com>
parents:
2961
diff
changeset
|
2330 /* ARGSUSED */ |
3c4b5489d2b4
* fileio.c (Frename_file): Pass all arguments to the file name handler.
Jim Blandy <jimb@redhat.com>
parents:
2961
diff
changeset
|
2331 Lisp_Object |
3703
6930e8f81c88
(call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
2332 call4 (fn, arg1, arg2, arg3, arg4) |
6930e8f81c88
(call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
2333 Lisp_Object fn, arg1, arg2, arg3, arg4; |
3598
3c4b5489d2b4
* fileio.c (Frename_file): Pass all arguments to the file name handler.
Jim Blandy <jimb@redhat.com>
parents:
2961
diff
changeset
|
2334 { |
3c4b5489d2b4
* fileio.c (Frename_file): Pass all arguments to the file name handler.
Jim Blandy <jimb@redhat.com>
parents:
2961
diff
changeset
|
2335 struct gcpro gcpro1; |
3c4b5489d2b4
* fileio.c (Frename_file): Pass all arguments to the file name handler.
Jim Blandy <jimb@redhat.com>
parents:
2961
diff
changeset
|
2336 #ifdef NO_ARG_ARRAY |
3c4b5489d2b4
* fileio.c (Frename_file): Pass all arguments to the file name handler.
Jim Blandy <jimb@redhat.com>
parents:
2961
diff
changeset
|
2337 Lisp_Object args[5]; |
3c4b5489d2b4
* fileio.c (Frename_file): Pass all arguments to the file name handler.
Jim Blandy <jimb@redhat.com>
parents:
2961
diff
changeset
|
2338 args[0] = fn; |
3703
6930e8f81c88
(call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
2339 args[1] = arg1; |
6930e8f81c88
(call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
2340 args[2] = arg2; |
6930e8f81c88
(call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
2341 args[3] = arg3; |
6930e8f81c88
(call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
2342 args[4] = arg4; |
3598
3c4b5489d2b4
* fileio.c (Frename_file): Pass all arguments to the file name handler.
Jim Blandy <jimb@redhat.com>
parents:
2961
diff
changeset
|
2343 GCPRO1 (args[0]); |
3c4b5489d2b4
* fileio.c (Frename_file): Pass all arguments to the file name handler.
Jim Blandy <jimb@redhat.com>
parents:
2961
diff
changeset
|
2344 gcpro1.nvars = 5; |
3c4b5489d2b4
* fileio.c (Frename_file): Pass all arguments to the file name handler.
Jim Blandy <jimb@redhat.com>
parents:
2961
diff
changeset
|
2345 RETURN_UNGCPRO (Ffuncall (5, args)); |
3c4b5489d2b4
* fileio.c (Frename_file): Pass all arguments to the file name handler.
Jim Blandy <jimb@redhat.com>
parents:
2961
diff
changeset
|
2346 #else /* not NO_ARG_ARRAY */ |
3c4b5489d2b4
* fileio.c (Frename_file): Pass all arguments to the file name handler.
Jim Blandy <jimb@redhat.com>
parents:
2961
diff
changeset
|
2347 GCPRO1 (fn); |
3c4b5489d2b4
* fileio.c (Frename_file): Pass all arguments to the file name handler.
Jim Blandy <jimb@redhat.com>
parents:
2961
diff
changeset
|
2348 gcpro1.nvars = 5; |
3c4b5489d2b4
* fileio.c (Frename_file): Pass all arguments to the file name handler.
Jim Blandy <jimb@redhat.com>
parents:
2961
diff
changeset
|
2349 RETURN_UNGCPRO (Ffuncall (5, &fn)); |
3c4b5489d2b4
* fileio.c (Frename_file): Pass all arguments to the file name handler.
Jim Blandy <jimb@redhat.com>
parents:
2961
diff
changeset
|
2350 #endif /* not NO_ARG_ARRAY */ |
3c4b5489d2b4
* fileio.c (Frename_file): Pass all arguments to the file name handler.
Jim Blandy <jimb@redhat.com>
parents:
2961
diff
changeset
|
2351 } |
3c4b5489d2b4
* fileio.c (Frename_file): Pass all arguments to the file name handler.
Jim Blandy <jimb@redhat.com>
parents:
2961
diff
changeset
|
2352 |
3703
6930e8f81c88
(call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
2353 /* Call function fn with 5 arguments arg1, arg2, arg3, arg4, arg5 */ |
6930e8f81c88
(call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
2354 /* ARGSUSED */ |
6930e8f81c88
(call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
2355 Lisp_Object |
6930e8f81c88
(call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
2356 call5 (fn, arg1, arg2, arg3, arg4, arg5) |
6930e8f81c88
(call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
2357 Lisp_Object fn, arg1, arg2, arg3, arg4, arg5; |
6930e8f81c88
(call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
2358 { |
6930e8f81c88
(call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
2359 struct gcpro gcpro1; |
6930e8f81c88
(call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
2360 #ifdef NO_ARG_ARRAY |
6930e8f81c88
(call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
2361 Lisp_Object args[6]; |
6930e8f81c88
(call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
2362 args[0] = fn; |
6930e8f81c88
(call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
2363 args[1] = arg1; |
6930e8f81c88
(call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
2364 args[2] = arg2; |
6930e8f81c88
(call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
2365 args[3] = arg3; |
6930e8f81c88
(call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
2366 args[4] = arg4; |
6930e8f81c88
(call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
2367 args[5] = arg5; |
6930e8f81c88
(call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
2368 GCPRO1 (args[0]); |
6930e8f81c88
(call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
2369 gcpro1.nvars = 6; |
6930e8f81c88
(call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
2370 RETURN_UNGCPRO (Ffuncall (6, args)); |
6930e8f81c88
(call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
2371 #else /* not NO_ARG_ARRAY */ |
6930e8f81c88
(call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
2372 GCPRO1 (fn); |
6930e8f81c88
(call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
2373 gcpro1.nvars = 6; |
6930e8f81c88
(call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
2374 RETURN_UNGCPRO (Ffuncall (6, &fn)); |
6930e8f81c88
(call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
2375 #endif /* not NO_ARG_ARRAY */ |
6930e8f81c88
(call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
2376 } |
6930e8f81c88
(call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
2377 |
6930e8f81c88
(call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
2378 /* Call function fn with 6 arguments arg1, arg2, arg3, arg4, arg5, arg6 */ |
6930e8f81c88
(call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
2379 /* ARGSUSED */ |
6930e8f81c88
(call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
2380 Lisp_Object |
6930e8f81c88
(call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
2381 call6 (fn, arg1, arg2, arg3, arg4, arg5, arg6) |
6930e8f81c88
(call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
2382 Lisp_Object fn, arg1, arg2, arg3, arg4, arg5, arg6; |
6930e8f81c88
(call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
2383 { |
6930e8f81c88
(call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
2384 struct gcpro gcpro1; |
6930e8f81c88
(call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
2385 #ifdef NO_ARG_ARRAY |
6930e8f81c88
(call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
2386 Lisp_Object args[7]; |
6930e8f81c88
(call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
2387 args[0] = fn; |
6930e8f81c88
(call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
2388 args[1] = arg1; |
6930e8f81c88
(call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
2389 args[2] = arg2; |
6930e8f81c88
(call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
2390 args[3] = arg3; |
6930e8f81c88
(call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
2391 args[4] = arg4; |
6930e8f81c88
(call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
2392 args[5] = arg5; |
6930e8f81c88
(call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
2393 args[6] = arg6; |
6930e8f81c88
(call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
2394 GCPRO1 (args[0]); |
6930e8f81c88
(call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
2395 gcpro1.nvars = 7; |
6930e8f81c88
(call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
2396 RETURN_UNGCPRO (Ffuncall (7, args)); |
6930e8f81c88
(call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
2397 #else /* not NO_ARG_ARRAY */ |
6930e8f81c88
(call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
2398 GCPRO1 (fn); |
6930e8f81c88
(call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
2399 gcpro1.nvars = 7; |
6930e8f81c88
(call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
2400 RETURN_UNGCPRO (Ffuncall (7, &fn)); |
6930e8f81c88
(call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
2401 #endif /* not NO_ARG_ARRAY */ |
6930e8f81c88
(call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
2402 } |
6930e8f81c88
(call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
2403 |
272 | 2404 DEFUN ("funcall", Ffuncall, Sfuncall, 1, MANY, 0, |
2405 "Call first argument as a function, passing remaining arguments to it.\n\ | |
12583
73ac42b9be24
(Ffuncall, Fapply): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
11481
diff
changeset
|
2406 Return the value that function returns.\n\ |
272 | 2407 Thus, (funcall 'cons 'x 'y) returns (x . y).") |
2408 (nargs, args) | |
2409 int nargs; | |
2410 Lisp_Object *args; | |
2411 { | |
2412 Lisp_Object fun; | |
2413 Lisp_Object funcar; | |
2414 int numargs = nargs - 1; | |
2415 Lisp_Object lisp_numargs; | |
2416 Lisp_Object val; | |
2417 struct backtrace backtrace; | |
2418 register Lisp_Object *internal_args; | |
2419 register int i; | |
2420 | |
2421 QUIT; | |
2422 if (consing_since_gc > gc_cons_threshold) | |
323 | 2423 Fgarbage_collect (); |
272 | 2424 |
2425 if (++lisp_eval_depth > max_lisp_eval_depth) | |
2426 { | |
2427 if (max_lisp_eval_depth < 100) | |
2428 max_lisp_eval_depth = 100; | |
2429 if (lisp_eval_depth > max_lisp_eval_depth) | |
2430 error ("Lisp nesting exceeds max-lisp-eval-depth"); | |
2431 } | |
2432 | |
2433 backtrace.next = backtrace_list; | |
2434 backtrace_list = &backtrace; | |
2435 backtrace.function = &args[0]; | |
2436 backtrace.args = &args[1]; | |
2437 backtrace.nargs = nargs - 1; | |
2438 backtrace.evalargs = 0; | |
2439 backtrace.debug_on_exit = 0; | |
2440 | |
2441 if (debug_on_next_call) | |
2442 do_debug_on_call (Qlambda); | |
2443 | |
2444 retry: | |
2445 | |
2446 fun = args[0]; | |
648 | 2447 |
2448 fun = Findirect_function (fun); | |
272 | 2449 |
9148
e7ab930bb7eb
(Fprogn, Finteractive_p, Fuser_variable_p, FletX, Flet, Fmacroexpand,
Karl Heuer <kwzh@gnu.org>
parents:
8980
diff
changeset
|
2450 if (SUBRP (fun)) |
272 | 2451 { |
2452 if (numargs < XSUBR (fun)->min_args | |
2453 || (XSUBR (fun)->max_args >= 0 && XSUBR (fun)->max_args < numargs)) | |
2454 { | |
9306
ac852c183fa1
(Feval, Ffuncall, funcall_lambda, Fbacktrace): Don't use XFASTINT as an
Karl Heuer <kwzh@gnu.org>
parents:
9148
diff
changeset
|
2455 XSETFASTINT (lisp_numargs, numargs); |
272 | 2456 return Fsignal (Qwrong_number_of_arguments, Fcons (fun, Fcons (lisp_numargs, Qnil))); |
2457 } | |
2458 | |
2459 if (XSUBR (fun)->max_args == UNEVALLED) | |
2460 return Fsignal (Qinvalid_function, Fcons (fun, Qnil)); | |
2461 | |
2462 if (XSUBR (fun)->max_args == MANY) | |
2463 { | |
2464 val = (*XSUBR (fun)->function) (numargs, args + 1); | |
2465 goto done; | |
2466 } | |
2467 | |
2468 if (XSUBR (fun)->max_args > numargs) | |
2469 { | |
2470 internal_args = (Lisp_Object *) alloca (XSUBR (fun)->max_args * sizeof (Lisp_Object)); | |
2471 bcopy (args + 1, internal_args, numargs * sizeof (Lisp_Object)); | |
2472 for (i = numargs; i < XSUBR (fun)->max_args; i++) | |
2473 internal_args[i] = Qnil; | |
2474 } | |
2475 else | |
2476 internal_args = args + 1; | |
2477 switch (XSUBR (fun)->max_args) | |
2478 { | |
2479 case 0: | |
2480 val = (*XSUBR (fun)->function) (); | |
2481 goto done; | |
2482 case 1: | |
2483 val = (*XSUBR (fun)->function) (internal_args[0]); | |
2484 goto done; | |
2485 case 2: | |
2486 val = (*XSUBR (fun)->function) (internal_args[0], | |
2487 internal_args[1]); | |
2488 goto done; | |
2489 case 3: | |
2490 val = (*XSUBR (fun)->function) (internal_args[0], internal_args[1], | |
2491 internal_args[2]); | |
2492 goto done; | |
2493 case 4: | |
2494 val = (*XSUBR (fun)->function) (internal_args[0], internal_args[1], | |
2495 internal_args[2], | |
2496 internal_args[3]); | |
2497 goto done; | |
2498 case 5: | |
2499 val = (*XSUBR (fun)->function) (internal_args[0], internal_args[1], | |
2500 internal_args[2], internal_args[3], | |
2501 internal_args[4]); | |
2502 goto done; | |
2503 case 6: | |
2504 val = (*XSUBR (fun)->function) (internal_args[0], internal_args[1], | |
2505 internal_args[2], internal_args[3], | |
2506 internal_args[4], internal_args[5]); | |
2507 goto done; | |
863
427299469901
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
753
diff
changeset
|
2508 case 7: |
427299469901
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
753
diff
changeset
|
2509 val = (*XSUBR (fun)->function) (internal_args[0], internal_args[1], |
427299469901
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
753
diff
changeset
|
2510 internal_args[2], internal_args[3], |
427299469901
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
753
diff
changeset
|
2511 internal_args[4], internal_args[5], |
427299469901
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
753
diff
changeset
|
2512 internal_args[6]); |
427299469901
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
753
diff
changeset
|
2513 goto done; |
272 | 2514 |
19544
fc0bb24597ba
(Feval): Handle a subr which takes 8 arguments.
Kenichi Handa <handa@m17n.org>
parents:
19237
diff
changeset
|
2515 case 8: |
fc0bb24597ba
(Feval): Handle a subr which takes 8 arguments.
Kenichi Handa <handa@m17n.org>
parents:
19237
diff
changeset
|
2516 val = (*XSUBR (fun)->function) (internal_args[0], internal_args[1], |
fc0bb24597ba
(Feval): Handle a subr which takes 8 arguments.
Kenichi Handa <handa@m17n.org>
parents:
19237
diff
changeset
|
2517 internal_args[2], internal_args[3], |
fc0bb24597ba
(Feval): Handle a subr which takes 8 arguments.
Kenichi Handa <handa@m17n.org>
parents:
19237
diff
changeset
|
2518 internal_args[4], internal_args[5], |
fc0bb24597ba
(Feval): Handle a subr which takes 8 arguments.
Kenichi Handa <handa@m17n.org>
parents:
19237
diff
changeset
|
2519 internal_args[6], internal_args[7]); |
fc0bb24597ba
(Feval): Handle a subr which takes 8 arguments.
Kenichi Handa <handa@m17n.org>
parents:
19237
diff
changeset
|
2520 goto done; |
fc0bb24597ba
(Feval): Handle a subr which takes 8 arguments.
Kenichi Handa <handa@m17n.org>
parents:
19237
diff
changeset
|
2521 |
272 | 2522 default: |
573 | 2523 |
19544
fc0bb24597ba
(Feval): Handle a subr which takes 8 arguments.
Kenichi Handa <handa@m17n.org>
parents:
19237
diff
changeset
|
2524 /* If a subr takes more than 8 arguments without using MANY |
573 | 2525 or UNEVALLED, we need to extend this function to support it. |
2526 Until this is done, there is no way to call the function. */ | |
2527 abort (); | |
272 | 2528 } |
2529 } | |
9148
e7ab930bb7eb
(Fprogn, Finteractive_p, Fuser_variable_p, FletX, Flet, Fmacroexpand,
Karl Heuer <kwzh@gnu.org>
parents:
8980
diff
changeset
|
2530 if (COMPILEDP (fun)) |
272 | 2531 val = funcall_lambda (fun, numargs, args + 1); |
2532 else | |
2533 { | |
2534 if (!CONSP (fun)) | |
2535 return Fsignal (Qinvalid_function, Fcons (fun, Qnil)); | |
2536 funcar = Fcar (fun); | |
9148
e7ab930bb7eb
(Fprogn, Finteractive_p, Fuser_variable_p, FletX, Flet, Fmacroexpand,
Karl Heuer <kwzh@gnu.org>
parents:
8980
diff
changeset
|
2537 if (!SYMBOLP (funcar)) |
272 | 2538 return Fsignal (Qinvalid_function, Fcons (fun, Qnil)); |
2539 if (EQ (funcar, Qlambda)) | |
2540 val = funcall_lambda (fun, numargs, args + 1); | |
2541 else if (EQ (funcar, Qmocklisp)) | |
2542 val = ml_apply (fun, Flist (numargs, args + 1)); | |
2543 else if (EQ (funcar, Qautoload)) | |
2544 { | |
2545 do_autoload (fun, args[0]); | |
2546 goto retry; | |
2547 } | |
2548 else | |
2549 return Fsignal (Qinvalid_function, Fcons (fun, Qnil)); | |
2550 } | |
2551 done: | |
2552 lisp_eval_depth--; | |
2553 if (backtrace.debug_on_exit) | |
2554 val = call_debugger (Fcons (Qexit, Fcons (val, Qnil))); | |
2555 backtrace_list = backtrace.next; | |
2556 return val; | |
2557 } | |
2558 | |
2559 Lisp_Object | |
2560 apply_lambda (fun, args, eval_flag) | |
2561 Lisp_Object fun, args; | |
2562 int eval_flag; | |
2563 { | |
2564 Lisp_Object args_left; | |
2565 Lisp_Object numargs; | |
2566 register Lisp_Object *arg_vector; | |
2567 struct gcpro gcpro1, gcpro2, gcpro3; | |
2568 register int i; | |
2569 register Lisp_Object tem; | |
2570 | |
2571 numargs = Flength (args); | |
2572 arg_vector = (Lisp_Object *) alloca (XINT (numargs) * sizeof (Lisp_Object)); | |
2573 args_left = args; | |
2574 | |
2575 GCPRO3 (*arg_vector, args_left, fun); | |
2576 gcpro1.nvars = 0; | |
2577 | |
2578 for (i = 0; i < XINT (numargs);) | |
2579 { | |
2580 tem = Fcar (args_left), args_left = Fcdr (args_left); | |
2581 if (eval_flag) tem = Feval (tem); | |
2582 arg_vector[i++] = tem; | |
2583 gcpro1.nvars = i; | |
2584 } | |
2585 | |
2586 UNGCPRO; | |
2587 | |
2588 if (eval_flag) | |
2589 { | |
2590 backtrace_list->args = arg_vector; | |
2591 backtrace_list->nargs = i; | |
2592 } | |
2593 backtrace_list->evalargs = 0; | |
2594 tem = funcall_lambda (fun, XINT (numargs), arg_vector); | |
2595 | |
2596 /* Do the debug-on-exit now, while arg_vector still exists. */ | |
2597 if (backtrace_list->debug_on_exit) | |
2598 tem = call_debugger (Fcons (Qexit, Fcons (tem, Qnil))); | |
2599 /* Don't do it again when we return to eval. */ | |
2600 backtrace_list->debug_on_exit = 0; | |
2601 return tem; | |
2602 } | |
2603 | |
2604 /* Apply a Lisp function FUN to the NARGS evaluated arguments in ARG_VECTOR | |
2605 and return the result of evaluation. | |
2606 FUN must be either a lambda-expression or a compiled-code object. */ | |
2607 | |
2608 Lisp_Object | |
2609 funcall_lambda (fun, nargs, arg_vector) | |
2610 Lisp_Object fun; | |
2611 int nargs; | |
2612 register Lisp_Object *arg_vector; | |
2613 { | |
2614 Lisp_Object val, tem; | |
2615 register Lisp_Object syms_left; | |
2616 Lisp_Object numargs; | |
2617 register Lisp_Object next; | |
2618 int count = specpdl_ptr - specpdl; | |
2619 register int i; | |
2620 int optional = 0, rest = 0; | |
2621 | |
2622 specbind (Qmocklisp_arguments, Qt); /* t means NOT mocklisp! */ | |
2623 | |
9306
ac852c183fa1
(Feval, Ffuncall, funcall_lambda, Fbacktrace): Don't use XFASTINT as an
Karl Heuer <kwzh@gnu.org>
parents:
9148
diff
changeset
|
2624 XSETFASTINT (numargs, nargs); |
272 | 2625 |
9148
e7ab930bb7eb
(Fprogn, Finteractive_p, Fuser_variable_p, FletX, Flet, Fmacroexpand,
Karl Heuer <kwzh@gnu.org>
parents:
8980
diff
changeset
|
2626 if (CONSP (fun)) |
272 | 2627 syms_left = Fcar (Fcdr (fun)); |
9148
e7ab930bb7eb
(Fprogn, Finteractive_p, Fuser_variable_p, FletX, Flet, Fmacroexpand,
Karl Heuer <kwzh@gnu.org>
parents:
8980
diff
changeset
|
2628 else if (COMPILEDP (fun)) |
272 | 2629 syms_left = XVECTOR (fun)->contents[COMPILED_ARGLIST]; |
2630 else abort (); | |
2631 | |
2632 i = 0; | |
485 | 2633 for (; !NILP (syms_left); syms_left = Fcdr (syms_left)) |
272 | 2634 { |
2635 QUIT; | |
2636 next = Fcar (syms_left); | |
9148
e7ab930bb7eb
(Fprogn, Finteractive_p, Fuser_variable_p, FletX, Flet, Fmacroexpand,
Karl Heuer <kwzh@gnu.org>
parents:
8980
diff
changeset
|
2637 while (!SYMBOLP (next)) |
431 | 2638 next = Fsignal (Qinvalid_function, Fcons (fun, Qnil)); |
272 | 2639 if (EQ (next, Qand_rest)) |
2640 rest = 1; | |
2641 else if (EQ (next, Qand_optional)) | |
2642 optional = 1; | |
2643 else if (rest) | |
2644 { | |
431 | 2645 specbind (next, Flist (nargs - i, &arg_vector[i])); |
272 | 2646 i = nargs; |
2647 } | |
2648 else if (i < nargs) | |
2649 { | |
2650 tem = arg_vector[i++]; | |
2651 specbind (next, tem); | |
2652 } | |
2653 else if (!optional) | |
2654 return Fsignal (Qwrong_number_of_arguments, Fcons (fun, Fcons (numargs, Qnil))); | |
2655 else | |
2656 specbind (next, Qnil); | |
2657 } | |
2658 | |
2659 if (i < nargs) | |
2660 return Fsignal (Qwrong_number_of_arguments, Fcons (fun, Fcons (numargs, Qnil))); | |
2661 | |
9148
e7ab930bb7eb
(Fprogn, Finteractive_p, Fuser_variable_p, FletX, Flet, Fmacroexpand,
Karl Heuer <kwzh@gnu.org>
parents:
8980
diff
changeset
|
2662 if (CONSP (fun)) |
272 | 2663 val = Fprogn (Fcdr (Fcdr (fun))); |
2664 else | |
10201
03f3a1f4264a
(Fdefvar): Fix minor error in previous change.
Richard M. Stallman <rms@gnu.org>
parents:
10161
diff
changeset
|
2665 { |
03f3a1f4264a
(Fdefvar): Fix minor error in previous change.
Richard M. Stallman <rms@gnu.org>
parents:
10161
diff
changeset
|
2666 /* If we have not actually read the bytecode string |
03f3a1f4264a
(Fdefvar): Fix minor error in previous change.
Richard M. Stallman <rms@gnu.org>
parents:
10161
diff
changeset
|
2667 and constants vector yet, fetch them from the file. */ |
03f3a1f4264a
(Fdefvar): Fix minor error in previous change.
Richard M. Stallman <rms@gnu.org>
parents:
10161
diff
changeset
|
2668 if (CONSP (XVECTOR (fun)->contents[COMPILED_BYTECODE])) |
11205
81a008df9184
(Ffetch_bytecode): New function.
Karl Heuer <kwzh@gnu.org>
parents:
11007
diff
changeset
|
2669 Ffetch_bytecode (fun); |
10201
03f3a1f4264a
(Fdefvar): Fix minor error in previous change.
Richard M. Stallman <rms@gnu.org>
parents:
10161
diff
changeset
|
2670 val = Fbyte_code (XVECTOR (fun)->contents[COMPILED_BYTECODE], |
03f3a1f4264a
(Fdefvar): Fix minor error in previous change.
Richard M. Stallman <rms@gnu.org>
parents:
10161
diff
changeset
|
2671 XVECTOR (fun)->contents[COMPILED_CONSTANTS], |
03f3a1f4264a
(Fdefvar): Fix minor error in previous change.
Richard M. Stallman <rms@gnu.org>
parents:
10161
diff
changeset
|
2672 XVECTOR (fun)->contents[COMPILED_STACK_DEPTH]); |
03f3a1f4264a
(Fdefvar): Fix minor error in previous change.
Richard M. Stallman <rms@gnu.org>
parents:
10161
diff
changeset
|
2673 } |
272 | 2674 return unbind_to (count, val); |
2675 } | |
11205
81a008df9184
(Ffetch_bytecode): New function.
Karl Heuer <kwzh@gnu.org>
parents:
11007
diff
changeset
|
2676 |
81a008df9184
(Ffetch_bytecode): New function.
Karl Heuer <kwzh@gnu.org>
parents:
11007
diff
changeset
|
2677 DEFUN ("fetch-bytecode", Ffetch_bytecode, Sfetch_bytecode, |
81a008df9184
(Ffetch_bytecode): New function.
Karl Heuer <kwzh@gnu.org>
parents:
11007
diff
changeset
|
2678 1, 1, 0, |
81a008df9184
(Ffetch_bytecode): New function.
Karl Heuer <kwzh@gnu.org>
parents:
11007
diff
changeset
|
2679 "If byte-compiled OBJECT is lazy-loaded, fetch it now.") |
81a008df9184
(Ffetch_bytecode): New function.
Karl Heuer <kwzh@gnu.org>
parents:
11007
diff
changeset
|
2680 (object) |
81a008df9184
(Ffetch_bytecode): New function.
Karl Heuer <kwzh@gnu.org>
parents:
11007
diff
changeset
|
2681 Lisp_Object object; |
81a008df9184
(Ffetch_bytecode): New function.
Karl Heuer <kwzh@gnu.org>
parents:
11007
diff
changeset
|
2682 { |
81a008df9184
(Ffetch_bytecode): New function.
Karl Heuer <kwzh@gnu.org>
parents:
11007
diff
changeset
|
2683 Lisp_Object tem; |
81a008df9184
(Ffetch_bytecode): New function.
Karl Heuer <kwzh@gnu.org>
parents:
11007
diff
changeset
|
2684 |
81a008df9184
(Ffetch_bytecode): New function.
Karl Heuer <kwzh@gnu.org>
parents:
11007
diff
changeset
|
2685 if (COMPILEDP (object) |
81a008df9184
(Ffetch_bytecode): New function.
Karl Heuer <kwzh@gnu.org>
parents:
11007
diff
changeset
|
2686 && CONSP (XVECTOR (object)->contents[COMPILED_BYTECODE])) |
81a008df9184
(Ffetch_bytecode): New function.
Karl Heuer <kwzh@gnu.org>
parents:
11007
diff
changeset
|
2687 { |
81a008df9184
(Ffetch_bytecode): New function.
Karl Heuer <kwzh@gnu.org>
parents:
11007
diff
changeset
|
2688 tem = read_doc_string (XVECTOR (object)->contents[COMPILED_BYTECODE]); |
11481
af7833ecb551
(Ffetch_bytecode): Check the type of the object being read from the file.
Richard M. Stallman <rms@gnu.org>
parents:
11365
diff
changeset
|
2689 if (!CONSP (tem)) |
af7833ecb551
(Ffetch_bytecode): Check the type of the object being read from the file.
Richard M. Stallman <rms@gnu.org>
parents:
11365
diff
changeset
|
2690 error ("invalid byte code"); |
25662
0a7261c1d487
Use XCAR, XCDR, and XFLOAT_DATA instead of explicit member access.
Ken Raeburn <raeburn@raeburn.org>
parents:
25314
diff
changeset
|
2691 XVECTOR (object)->contents[COMPILED_BYTECODE] = XCAR (tem); |
0a7261c1d487
Use XCAR, XCDR, and XFLOAT_DATA instead of explicit member access.
Ken Raeburn <raeburn@raeburn.org>
parents:
25314
diff
changeset
|
2692 XVECTOR (object)->contents[COMPILED_CONSTANTS] = XCDR (tem); |
11205
81a008df9184
(Ffetch_bytecode): New function.
Karl Heuer <kwzh@gnu.org>
parents:
11007
diff
changeset
|
2693 } |
81a008df9184
(Ffetch_bytecode): New function.
Karl Heuer <kwzh@gnu.org>
parents:
11007
diff
changeset
|
2694 return object; |
81a008df9184
(Ffetch_bytecode): New function.
Karl Heuer <kwzh@gnu.org>
parents:
11007
diff
changeset
|
2695 } |
272 | 2696 |
2697 void | |
2698 grow_specpdl () | |
2699 { | |
2700 register int count = specpdl_ptr - specpdl; | |
2701 if (specpdl_size >= max_specpdl_size) | |
2702 { | |
2703 if (max_specpdl_size < 400) | |
2704 max_specpdl_size = 400; | |
2705 if (specpdl_size >= max_specpdl_size) | |
2706 { | |
1452
ed79bb8047e8
(grow_specpdl): Increase max_specpdl_size before Fsignal.
Richard M. Stallman <rms@gnu.org>
parents:
1199
diff
changeset
|
2707 if (!NILP (Vdebug_on_error)) |
ed79bb8047e8
(grow_specpdl): Increase max_specpdl_size before Fsignal.
Richard M. Stallman <rms@gnu.org>
parents:
1199
diff
changeset
|
2708 /* Leave room for some specpdl in the debugger. */ |
ed79bb8047e8
(grow_specpdl): Increase max_specpdl_size before Fsignal.
Richard M. Stallman <rms@gnu.org>
parents:
1199
diff
changeset
|
2709 max_specpdl_size = specpdl_size + 100; |
272 | 2710 Fsignal (Qerror, |
2711 Fcons (build_string ("Variable binding depth exceeds max-specpdl-size"), Qnil)); | |
2712 } | |
2713 } | |
2714 specpdl_size *= 2; | |
2715 if (specpdl_size > max_specpdl_size) | |
2716 specpdl_size = max_specpdl_size; | |
2717 specpdl = (struct specbinding *) xrealloc (specpdl, specpdl_size * sizeof (struct specbinding)); | |
2718 specpdl_ptr = specpdl + count; | |
2719 } | |
2720 | |
2721 void | |
2722 specbind (symbol, value) | |
2723 Lisp_Object symbol, value; | |
2724 { | |
2725 Lisp_Object ovalue; | |
2726 | |
431 | 2727 CHECK_SYMBOL (symbol, 0); |
2728 | |
272 | 2729 if (specpdl_ptr == specpdl + specpdl_size) |
2730 grow_specpdl (); | |
2731 specpdl_ptr->symbol = symbol; | |
2732 specpdl_ptr->func = 0; | |
6826
903d03ddf99c
(specbind): Use find_symbol_value.
Richard M. Stallman <rms@gnu.org>
parents:
6803
diff
changeset
|
2733 specpdl_ptr->old_value = ovalue = find_symbol_value (symbol); |
272 | 2734 specpdl_ptr++; |
11007
433d4013f39b
(specbind): Rename perdisplay to kboard.
Karl Heuer <kwzh@gnu.org>
parents:
10604
diff
changeset
|
2735 if (BUFFER_OBJFWDP (ovalue) || KBOARD_OBJFWDP (ovalue)) |
272 | 2736 store_symval_forwarding (symbol, ovalue, value); |
2737 else | |
16930
e1aba4a05388
(unbind_to, specbind): Use set_internal.
Richard M. Stallman <rms@gnu.org>
parents:
16895
diff
changeset
|
2738 set_internal (symbol, value, 1); |
272 | 2739 } |
2740 | |
2741 void | |
2742 record_unwind_protect (function, arg) | |
20312
d75a1b915e20
(record_unwind_protect): Protoize parameter.
Andreas Schwab <schwab@suse.de>
parents:
19544
diff
changeset
|
2743 Lisp_Object (*function) P_ ((Lisp_Object)); |
272 | 2744 Lisp_Object arg; |
2745 { | |
2746 if (specpdl_ptr == specpdl + specpdl_size) | |
2747 grow_specpdl (); | |
2748 specpdl_ptr->func = function; | |
2749 specpdl_ptr->symbol = Qnil; | |
2750 specpdl_ptr->old_value = arg; | |
2751 specpdl_ptr++; | |
2752 } | |
2753 | |
2754 Lisp_Object | |
2755 unbind_to (count, value) | |
2756 int count; | |
2757 Lisp_Object value; | |
2758 { | |
485 | 2759 int quitf = !NILP (Vquit_flag); |
272 | 2760 struct gcpro gcpro1; |
2761 | |
2762 GCPRO1 (value); | |
2763 | |
2764 Vquit_flag = Qnil; | |
2765 | |
2766 while (specpdl_ptr != specpdl + count) | |
2767 { | |
2768 --specpdl_ptr; | |
2769 if (specpdl_ptr->func != 0) | |
2770 (*specpdl_ptr->func) (specpdl_ptr->old_value); | |
2771 /* Note that a "binding" of nil is really an unwind protect, | |
2772 so in that case the "old value" is a list of forms to evaluate. */ | |
485 | 2773 else if (NILP (specpdl_ptr->symbol)) |
272 | 2774 Fprogn (specpdl_ptr->old_value); |
2775 else | |
16930
e1aba4a05388
(unbind_to, specbind): Use set_internal.
Richard M. Stallman <rms@gnu.org>
parents:
16895
diff
changeset
|
2776 set_internal (specpdl_ptr->symbol, specpdl_ptr->old_value, 1); |
272 | 2777 } |
485 | 2778 if (NILP (Vquit_flag) && quitf) Vquit_flag = Qt; |
272 | 2779 |
2780 UNGCPRO; | |
2781 | |
2782 return value; | |
2783 } | |
2784 | |
2785 #if 0 | |
2786 | |
2787 /* Get the value of symbol's global binding, even if that binding | |
2788 is not now dynamically visible. */ | |
2789 | |
2790 Lisp_Object | |
2791 top_level_value (symbol) | |
2792 Lisp_Object symbol; | |
2793 { | |
2794 register struct specbinding *ptr = specpdl; | |
2795 | |
2796 CHECK_SYMBOL (symbol, 0); | |
2797 for (; ptr != specpdl_ptr; ptr++) | |
2798 { | |
2799 if (EQ (ptr->symbol, symbol)) | |
2800 return ptr->old_value; | |
2801 } | |
2802 return Fsymbol_value (symbol); | |
2803 } | |
2804 | |
2805 Lisp_Object | |
2806 top_level_set (symbol, newval) | |
2807 Lisp_Object symbol, newval; | |
2808 { | |
2809 register struct specbinding *ptr = specpdl; | |
2810 | |
2811 CHECK_SYMBOL (symbol, 0); | |
2812 for (; ptr != specpdl_ptr; ptr++) | |
2813 { | |
2814 if (EQ (ptr->symbol, symbol)) | |
2815 { | |
2816 ptr->old_value = newval; | |
2817 return newval; | |
2818 } | |
2819 } | |
2820 return Fset (symbol, newval); | |
2821 } | |
2822 | |
2823 #endif /* 0 */ | |
2824 | |
2825 DEFUN ("backtrace-debug", Fbacktrace_debug, Sbacktrace_debug, 2, 2, 0, | |
2826 "Set the debug-on-exit flag of eval frame LEVEL levels down to FLAG.\n\ | |
2827 The debugger is entered when that frame exits, if the flag is non-nil.") | |
2828 (level, flag) | |
2829 Lisp_Object level, flag; | |
2830 { | |
2831 register struct backtrace *backlist = backtrace_list; | |
2832 register int i; | |
2833 | |
2834 CHECK_NUMBER (level, 0); | |
2835 | |
2836 for (i = 0; backlist && i < XINT (level); i++) | |
2837 { | |
2838 backlist = backlist->next; | |
2839 } | |
2840 | |
2841 if (backlist) | |
485 | 2842 backlist->debug_on_exit = !NILP (flag); |
272 | 2843 |
2844 return flag; | |
2845 } | |
2846 | |
2847 DEFUN ("backtrace", Fbacktrace, Sbacktrace, 0, 0, "", | |
2848 "Print a trace of Lisp function calls currently active.\n\ | |
2849 Output stream used is value of `standard-output'.") | |
2850 () | |
2851 { | |
2852 register struct backtrace *backlist = backtrace_list; | |
2853 register int i; | |
2854 Lisp_Object tail; | |
2855 Lisp_Object tem; | |
2856 extern Lisp_Object Vprint_level; | |
2857 struct gcpro gcpro1; | |
2858 | |
9306
ac852c183fa1
(Feval, Ffuncall, funcall_lambda, Fbacktrace): Don't use XFASTINT as an
Karl Heuer <kwzh@gnu.org>
parents:
9148
diff
changeset
|
2859 XSETFASTINT (Vprint_level, 3); |
272 | 2860 |
2861 tail = Qnil; | |
2862 GCPRO1 (tail); | |
2863 | |
2864 while (backlist) | |
2865 { | |
2866 write_string (backlist->debug_on_exit ? "* " : " ", 2); | |
2867 if (backlist->nargs == UNEVALLED) | |
2868 { | |
2869 Fprin1 (Fcons (*backlist->function, *backlist->args), Qnil); | |
7533
62e3e25bc8f6
(Fbacktrace): Properly nest parentheses.
Karl Heuer <kwzh@gnu.org>
parents:
7511
diff
changeset
|
2870 write_string ("\n", -1); |
272 | 2871 } |
2872 else | |
2873 { | |
2874 tem = *backlist->function; | |
2875 Fprin1 (tem, Qnil); /* This can QUIT */ | |
2876 write_string ("(", -1); | |
2877 if (backlist->nargs == MANY) | |
2878 { | |
2879 for (tail = *backlist->args, i = 0; | |
485 | 2880 !NILP (tail); |
272 | 2881 tail = Fcdr (tail), i++) |
2882 { | |
2883 if (i) write_string (" ", -1); | |
2884 Fprin1 (Fcar (tail), Qnil); | |
2885 } | |
2886 } | |
2887 else | |
2888 { | |
2889 for (i = 0; i < backlist->nargs; i++) | |
2890 { | |
2891 if (i) write_string (" ", -1); | |
2892 Fprin1 (backlist->args[i], Qnil); | |
2893 } | |
2894 } | |
7533
62e3e25bc8f6
(Fbacktrace): Properly nest parentheses.
Karl Heuer <kwzh@gnu.org>
parents:
7511
diff
changeset
|
2895 write_string (")\n", -1); |
272 | 2896 } |
2897 backlist = backlist->next; | |
2898 } | |
2899 | |
2900 Vprint_level = Qnil; | |
2901 UNGCPRO; | |
2902 return Qnil; | |
2903 } | |
2904 | |
2905 DEFUN ("backtrace-frame", Fbacktrace_frame, Sbacktrace_frame, 1, 1, "", | |
14073
0df4b4f2a2a1
(Fmacroexpand, Fthrow, Fbacktrace_frame): Harmonize arguments with
Erik Naggum <erik@naggum.no>
parents:
13945
diff
changeset
|
2906 "Return the function and arguments NFRAMES up from current execution point.\n\ |
272 | 2907 If that frame has not evaluated the arguments yet (or is a special form),\n\ |
2908 the value is (nil FUNCTION ARG-FORMS...).\n\ | |
2909 If that frame has evaluated its arguments and called its function already,\n\ | |
2910 the value is (t FUNCTION ARG-VALUES...).\n\ | |
2911 A &rest arg is represented as the tail of the list ARG-VALUES.\n\ | |
2912 FUNCTION is whatever was supplied as car of evaluated list,\n\ | |
2913 or a lambda expression for macro calls.\n\ | |
14073
0df4b4f2a2a1
(Fmacroexpand, Fthrow, Fbacktrace_frame): Harmonize arguments with
Erik Naggum <erik@naggum.no>
parents:
13945
diff
changeset
|
2914 If NFRAMES is more than the number of frames, the value is nil.") |
272 | 2915 (nframes) |
2916 Lisp_Object nframes; | |
2917 { | |
2918 register struct backtrace *backlist = backtrace_list; | |
2919 register int i; | |
2920 Lisp_Object tem; | |
2921 | |
2922 CHECK_NATNUM (nframes, 0); | |
2923 | |
2924 /* Find the frame requested. */ | |
7533
62e3e25bc8f6
(Fbacktrace): Properly nest parentheses.
Karl Heuer <kwzh@gnu.org>
parents:
7511
diff
changeset
|
2925 for (i = 0; backlist && i < XFASTINT (nframes); i++) |
272 | 2926 backlist = backlist->next; |
2927 | |
2928 if (!backlist) | |
2929 return Qnil; | |
2930 if (backlist->nargs == UNEVALLED) | |
2931 return Fcons (Qnil, Fcons (*backlist->function, *backlist->args)); | |
2932 else | |
2933 { | |
2934 if (backlist->nargs == MANY) | |
2935 tem = *backlist->args; | |
2936 else | |
2937 tem = Flist (backlist->nargs, backlist->args); | |
2938 | |
2939 return Fcons (Qt, Fcons (*backlist->function, tem)); | |
2940 } | |
2941 } | |
2942 | |
21514 | 2943 void |
272 | 2944 syms_of_eval () |
2945 { | |
2946 DEFVAR_INT ("max-specpdl-size", &max_specpdl_size, | |
18920
9c03cae980ed
(syms_of_eval): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
18636
diff
changeset
|
2947 "*Limit on number of Lisp variable bindings & unwind-protects.\n\ |
9c03cae980ed
(syms_of_eval): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
18636
diff
changeset
|
2948 If Lisp code tries to make more than this many at once,\n\ |
9c03cae980ed
(syms_of_eval): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
18636
diff
changeset
|
2949 an error is signaled."); |
272 | 2950 |
2951 DEFVAR_INT ("max-lisp-eval-depth", &max_lisp_eval_depth, | |
18920
9c03cae980ed
(syms_of_eval): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
18636
diff
changeset
|
2952 "*Limit on depth in `eval', `apply' and `funcall' before error.\n\ |
272 | 2953 This limit is to catch infinite recursions for you before they cause\n\ |
2954 actual stack overflow in C, which would be fatal for Emacs.\n\ | |
2955 You can safely make it considerably larger than its default value,\n\ | |
2956 if that proves inconveniently small."); | |
2957 | |
2958 DEFVAR_LISP ("quit-flag", &Vquit_flag, | |
2959 "Non-nil causes `eval' to abort, unless `inhibit-quit' is non-nil.\n\ | |
7511
9ec3fc16ab3a
(syms_of_eval): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
7353
diff
changeset
|
2960 Typing C-g sets `quit-flag' non-nil, regardless of `inhibit-quit'."); |
272 | 2961 Vquit_flag = Qnil; |
2962 | |
2963 DEFVAR_LISP ("inhibit-quit", &Vinhibit_quit, | |
2964 "Non-nil inhibits C-g quitting from happening immediately.\n\ | |
2965 Note that `quit-flag' will still be set by typing C-g,\n\ | |
13945
6a653c300631
(syms_of_eval): Doc fix for inhibit-quit.
Karl Heuer <kwzh@gnu.org>
parents:
13768
diff
changeset
|
2966 so a quit will be signaled as soon as `inhibit-quit' is nil.\n\ |
272 | 2967 To prevent this happening, set `quit-flag' to nil\n\ |
2968 before making `inhibit-quit' nil."); | |
2969 Vinhibit_quit = Qnil; | |
2970 | |
381 | 2971 Qinhibit_quit = intern ("inhibit-quit"); |
2972 staticpro (&Qinhibit_quit); | |
2973 | |
272 | 2974 Qautoload = intern ("autoload"); |
2975 staticpro (&Qautoload); | |
2976 | |
2977 Qdebug_on_error = intern ("debug-on-error"); | |
2978 staticpro (&Qdebug_on_error); | |
2979 | |
2980 Qmacro = intern ("macro"); | |
2981 staticpro (&Qmacro); | |
2982 | |
2983 /* Note that the process handling also uses Qexit, but we don't want | |
2984 to staticpro it twice, so we just do it here. */ | |
2985 Qexit = intern ("exit"); | |
2986 staticpro (&Qexit); | |
2987 | |
2988 Qinteractive = intern ("interactive"); | |
2989 staticpro (&Qinteractive); | |
2990 | |
2991 Qcommandp = intern ("commandp"); | |
2992 staticpro (&Qcommandp); | |
2993 | |
2994 Qdefun = intern ("defun"); | |
2995 staticpro (&Qdefun); | |
2996 | |
2997 Qand_rest = intern ("&rest"); | |
2998 staticpro (&Qand_rest); | |
2999 | |
3000 Qand_optional = intern ("&optional"); | |
3001 staticpro (&Qand_optional); | |
3002 | |
684 | 3003 DEFVAR_LISP ("stack-trace-on-error", &Vstack_trace_on_error, |
272 | 3004 "*Non-nil means automatically display a backtrace buffer\n\ |
684 | 3005 after any error that is handled by the editor command loop.\n\ |
3006 If the value is a list, an error only means to display a backtrace\n\ | |
3007 if one of its condition symbols appears in the list."); | |
3008 Vstack_trace_on_error = Qnil; | |
272 | 3009 |
684 | 3010 DEFVAR_LISP ("debug-on-error", &Vdebug_on_error, |
272 | 3011 "*Non-nil means enter debugger if an error is signaled.\n\ |
3012 Does not apply to errors handled by `condition-case'.\n\ | |
684 | 3013 If the value is a list, an error only means to enter the debugger\n\ |
3014 if one of its condition symbols appears in the list.\n\ | |
272 | 3015 See also variable `debug-on-quit'."); |
684 | 3016 Vdebug_on_error = Qnil; |
272 | 3017 |
13768 | 3018 DEFVAR_LISP ("debug-ignored-errors", &Vdebug_ignored_errors, |
3019 "*List of errors for which the debugger should not be called.\n\ | |
3020 Each element may be a condition-name or a regexp that matches error messages.\n\ | |
3021 If any element applies to a given error, that error skips the debugger\n\ | |
3022 and just returns to top level.\n\ | |
3023 This overrides the variable `debug-on-error'.\n\ | |
3024 It does not apply to errors handled by `condition-case'."); | |
3025 Vdebug_ignored_errors = Qnil; | |
3026 | |
272 | 3027 DEFVAR_BOOL ("debug-on-quit", &debug_on_quit, |
7511
9ec3fc16ab3a
(syms_of_eval): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
7353
diff
changeset
|
3028 "*Non-nil means enter debugger if quit is signaled (C-g, for example).\n\ |
940 | 3029 Does not apply if quit is handled by a `condition-case'."); |
272 | 3030 debug_on_quit = 0; |
3031 | |
3032 DEFVAR_BOOL ("debug-on-next-call", &debug_on_next_call, | |
3033 "Non-nil means enter debugger before next `eval', `apply' or `funcall'."); | |
3034 | |
3035 DEFVAR_LISP ("debugger", &Vdebugger, | |
3036 "Function to call to invoke debugger.\n\ | |
3037 If due to frame exit, args are `exit' and the value being returned;\n\ | |
3038 this function's value will be returned instead of that.\n\ | |
3039 If due to error, args are `error' and a list of the args to `signal'.\n\ | |
3040 If due to `apply' or `funcall' entry, one arg, `lambda'.\n\ | |
3041 If due to `eval' entry, one arg, t."); | |
3042 Vdebugger = Qnil; | |
3043 | |
16355
1d85b2698564
(Vdebug_force): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
16296
diff
changeset
|
3044 DEFVAR_LISP ("signal-hook-function", &Vsignal_hook_function, |
1d85b2698564
(Vdebug_force): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
16296
diff
changeset
|
3045 "If non-nil, this is a function for `signal' to call.\n\ |
1d85b2698564
(Vdebug_force): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
16296
diff
changeset
|
3046 It receives the same arguments that `signal' was given.\n\ |
1d85b2698564
(Vdebug_force): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
16296
diff
changeset
|
3047 The Edebug package uses this to regain control."); |
1d85b2698564
(Vdebug_force): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
16296
diff
changeset
|
3048 Vsignal_hook_function = Qnil; |
1d85b2698564
(Vdebug_force): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
16296
diff
changeset
|
3049 |
272 | 3050 Qmocklisp_arguments = intern ("mocklisp-arguments"); |
3051 staticpro (&Qmocklisp_arguments); | |
3052 DEFVAR_LISP ("mocklisp-arguments", &Vmocklisp_arguments, | |
3053 "While in a mocklisp function, the list of its unevaluated args."); | |
3054 Vmocklisp_arguments = Qt; | |
3055 | |
16443
0128b923d281
(Vdebug_on_signal): Renamed from Vdebug_force.
Richard M. Stallman <rms@gnu.org>
parents:
16355
diff
changeset
|
3056 DEFVAR_LISP ("debug-on-signal", &Vdebug_on_signal, |
16355
1d85b2698564
(Vdebug_force): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
16296
diff
changeset
|
3057 "*Non-nil means call the debugger regardless of condition handlers.\n\ |
1d85b2698564
(Vdebug_force): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
16296
diff
changeset
|
3058 Note that `debug-on-error', `debug-on-quit' and friends\n\ |
1d85b2698564
(Vdebug_force): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
16296
diff
changeset
|
3059 still determine whether to handle the particular condition."); |
16443
0128b923d281
(Vdebug_on_signal): Renamed from Vdebug_force.
Richard M. Stallman <rms@gnu.org>
parents:
16355
diff
changeset
|
3060 Vdebug_on_signal = Qnil; |
16355
1d85b2698564
(Vdebug_force): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
16296
diff
changeset
|
3061 |
16296
584310941e70
(syms_of_eval): Initialize Vrun_hooks here.
Richard M. Stallman <rms@gnu.org>
parents:
16113
diff
changeset
|
3062 Vrun_hooks = intern ("run-hooks"); |
584310941e70
(syms_of_eval): Initialize Vrun_hooks here.
Richard M. Stallman <rms@gnu.org>
parents:
16113
diff
changeset
|
3063 staticpro (&Vrun_hooks); |
272 | 3064 |
3065 staticpro (&Vautoload_queue); | |
3066 Vautoload_queue = Qnil; | |
3067 | |
3068 defsubr (&Sor); | |
3069 defsubr (&Sand); | |
3070 defsubr (&Sif); | |
3071 defsubr (&Scond); | |
3072 defsubr (&Sprogn); | |
3073 defsubr (&Sprog1); | |
3074 defsubr (&Sprog2); | |
3075 defsubr (&Ssetq); | |
3076 defsubr (&Squote); | |
3077 defsubr (&Sfunction); | |
3078 defsubr (&Sdefun); | |
3079 defsubr (&Sdefmacro); | |
3080 defsubr (&Sdefvar); | |
3081 defsubr (&Sdefconst); | |
3082 defsubr (&Suser_variable_p); | |
3083 defsubr (&Slet); | |
3084 defsubr (&SletX); | |
3085 defsubr (&Swhile); | |
3086 defsubr (&Smacroexpand); | |
3087 defsubr (&Scatch); | |
3088 defsubr (&Sthrow); | |
3089 defsubr (&Sunwind_protect); | |
3090 defsubr (&Scondition_case); | |
3091 defsubr (&Ssignal); | |
3092 defsubr (&Sinteractive_p); | |
3093 defsubr (&Scommandp); | |
3094 defsubr (&Sautoload); | |
3095 defsubr (&Seval); | |
3096 defsubr (&Sapply); | |
12732
981b924c832b
Add Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success, Frun_hook_with_args_until_failure in terms of run_hook_with_args.
Simon Marshall <simon@gnu.org>
parents:
12711
diff
changeset
|
3097 defsubr (&Sfuncall); |
981b924c832b
Add Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success, Frun_hook_with_args_until_failure in terms of run_hook_with_args.
Simon Marshall <simon@gnu.org>
parents:
12711
diff
changeset
|
3098 defsubr (&Srun_hooks); |
12711
a8feaa42d775
(syms_of_eval): Add missing defsubr.
Karl Heuer <kwzh@gnu.org>
parents:
12663
diff
changeset
|
3099 defsubr (&Srun_hook_with_args); |
12732
981b924c832b
Add Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success, Frun_hook_with_args_until_failure in terms of run_hook_with_args.
Simon Marshall <simon@gnu.org>
parents:
12711
diff
changeset
|
3100 defsubr (&Srun_hook_with_args_until_success); |
981b924c832b
Add Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success, Frun_hook_with_args_until_failure in terms of run_hook_with_args.
Simon Marshall <simon@gnu.org>
parents:
12711
diff
changeset
|
3101 defsubr (&Srun_hook_with_args_until_failure); |
11205
81a008df9184
(Ffetch_bytecode): New function.
Karl Heuer <kwzh@gnu.org>
parents:
11007
diff
changeset
|
3102 defsubr (&Sfetch_bytecode); |
272 | 3103 defsubr (&Sbacktrace_debug); |
3104 defsubr (&Sbacktrace); | |
3105 defsubr (&Sbacktrace_frame); | |
3106 } |