428
|
1 /* Evaluator for XEmacs Lisp interpreter.
|
|
2 Copyright (C) 1985-1987, 1992-1994 Free Software Foundation, Inc.
|
|
3 Copyright (C) 1995 Sun Microsystems, Inc.
|
2421
|
4 Copyright (C) 2000, 2001, 2002, 2003, 2004 Ben Wing.
|
428
|
5
|
|
6 This file is part of XEmacs.
|
|
7
|
|
8 XEmacs is free software; you can redistribute it and/or modify it
|
|
9 under the terms of the GNU General Public License as published by the
|
|
10 Free Software Foundation; either version 2, or (at your option) any
|
|
11 later version.
|
|
12
|
|
13 XEmacs is distributed in the hope that it will be useful, but WITHOUT
|
|
14 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
15 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
|
16 for more details.
|
|
17
|
|
18 You should have received a copy of the GNU General Public License
|
|
19 along with XEmacs; see the file COPYING. If not, write to
|
|
20 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
21 Boston, MA 02111-1307, USA. */
|
|
22
|
|
23 /* Synched up with: FSF 19.30 (except for Fsignal), Mule 2.0. */
|
|
24
|
853
|
25 /* Authorship:
|
|
26
|
|
27 Based on code from pre-release FSF 19, c. 1991.
|
|
28 Some work by Richard Mlynarik long ago (c. 1993?) --
|
|
29 added call-with-condition-handler; synch. up to released FSF 19.7
|
|
30 for lemacs 19.8. some signal changes.
|
|
31 Various work by Ben Wing, 1995-1996:
|
|
32 added all stuff dealing with trapping errors, suspended-errors, etc.
|
|
33 added most Fsignal front ends.
|
|
34 added warning code.
|
|
35 reworked the Fsignal code and synched the rest up to FSF 19.30.
|
|
36 Some changes by Martin Buchholz c. 1999?
|
|
37 e.g. PRIMITIVE_FUNCALL macros.
|
|
38 New call_trapping_problems code and large comments below
|
|
39 by Ben Wing, Mar-Apr 2000.
|
|
40 */
|
|
41
|
|
42 /* This file has been Mule-ized. */
|
|
43
|
|
44 /* What is in this file?
|
|
45
|
|
46 This file contains the engine for the ELisp interpreter in XEmacs.
|
|
47 The engine does the actual work of implementing function calls,
|
|
48 form evaluation, non-local exits (catch, throw, signal,
|
|
49 condition-case, call-with-condition-handler), unwind-protects,
|
|
50 dynamic bindings, let constructs, backtraces, etc. You might say
|
|
51 that this module is the very heart of XEmacs, and everything else
|
|
52 in XEmacs is merely an auxiliary module implementing some specific
|
|
53 functionality that may be called from the heart at an appropriate
|
|
54 time.
|
|
55
|
|
56 The only exception is the alloc.c module, which implements the
|
|
57 framework upon which this module (eval.c) works. alloc.c works
|
|
58 with creating the actual Lisp objects themselves and garbage
|
1960
|
59 collecting them as necessary, presenting a nice, high-level
|
853
|
60 interface for object creation, deletion, access, and modification.
|
|
61
|
|
62 The only other exception that could be cited is the event-handling
|
|
63 module in event-stream.c. From its perspective, it is also the
|
|
64 heart of XEmacs, and controls exactly what gets done at what time.
|
|
65 From its perspective, eval.c is merely one of the auxiliary modules
|
|
66 out there that can be invoked by event-stream.c.
|
|
67
|
|
68 Although the event-stream-centric view is a convenient fiction that
|
|
69 makes sense particularly from the user's perspective and from the
|
|
70 perspective of time, the engine-centric view is actually closest to
|
|
71 the truth, because anywhere within the event-stream module, you are
|
|
72 still somewhere in a Lisp backtrace, and event-loops are begun by
|
|
73 functions such as `command-loop-1', a Lisp function.
|
|
74
|
|
75 As the Lisp engine is doing its thing, it maintains the state of
|
1960
|
76 the engine primarily in five list-like items, which are:
|
853
|
77
|
|
78 -- the backtrace list
|
|
79 -- the catchtag list
|
|
80 -- the condition-handler list
|
|
81 -- the specbind list
|
|
82 -- the GCPRO list.
|
|
83
|
|
84 These are described in detail in the next comment.
|
|
85
|
|
86 --ben
|
|
87 */
|
|
88
|
|
89 /* Note that there are five separate lists used to maintain state in
|
|
90 the evaluator. All of them conceptually are stacks (last-in,
|
|
91 first-out). All non-local exits happen ultimately through the
|
|
92 catch/throw mechanism, which uses one of the five lists (the
|
|
93 catchtag list) and records the current state of the others in each
|
|
94 frame of the list (some other information is recorded and restored
|
|
95 as well, such as the current eval depth), so that all the state of
|
|
96 the evaluator is restored properly when a non-local exit occurs.
|
|
97 (Note that the current state of the condition-handler list is not
|
|
98 recorded in the catchtag list. Instead, when a condition-case or
|
|
99 call-with-condition-handler is set up, it installs an
|
|
100 unwind-protect on the specbind list to restore the appropriate
|
|
101 setting for the condition-handler list. During the course of
|
|
102 handling the non-local exit, all entries on the specbind list that
|
|
103 are past the location stored in the catch frame are "unwound"
|
|
104 (i.e. variable bindings are restored and unwind-protects are
|
|
105 executed), so the condition-handler list gets reset properly.
|
|
106
|
|
107 The five lists are
|
|
108
|
|
109 1. The backtrace list, which is chained through `struct backtrace's
|
|
110 declared in the stack frames of various primitives, and keeps
|
|
111 track of all Lisp function call entries and exits.
|
|
112 2. The catchtag list, which is chained through `struct catchtag's
|
|
113 declared in the stack frames of internal_catch and condition_case_1,
|
|
114 and keeps track of information needed to reset the internal state
|
|
115 of the evaluator to the state that was current when the catch or
|
|
116 condition-case were established, in the event of a non-local exit.
|
|
117 3. The condition-handler list, which is a simple Lisp list with new
|
|
118 entries consed onto the front of the list. It records condition-cases
|
|
119 and call-with-condition-handlers established either from C or from
|
|
120 Lisp. Unlike with the other lists (but similar to everything else
|
|
121 of a similar nature in the rest of the C and Lisp code), it takes care
|
|
122 of restoring itself appropriately in the event of a non-local exit
|
|
123 through the use of the unwind-protect mechanism.
|
|
124 4. The specbind list, which is a contiguous array of `struct specbinding's,
|
|
125 expanded as necessary using realloc(). It holds dynamic variable
|
|
126 bindings (the only kind we currently have in ELisp) and unwind-protects.
|
|
127 5. The GCPRO list, which is chained through `struct gcpro's declared in
|
|
128 the stack frames of any functions that need to GC-protect Lisp_Objects
|
|
129 declared on the stack. This is one of the most fragile areas of the
|
|
130 entire scheme -- you must not forget to UNGCPRO at the end of your
|
|
131 function, you must make sure you GCPRO in many circumstances you don't
|
|
132 think you have to, etc. See the internals manual for more information
|
|
133 about this.
|
|
134
|
|
135 --ben
|
|
136 */
|
|
137
|
428
|
138 #include <config.h>
|
|
139 #include "lisp.h"
|
|
140
|
|
141 #include "commands.h"
|
|
142 #include "backtrace.h"
|
|
143 #include "bytecode.h"
|
|
144 #include "buffer.h"
|
872
|
145 #include "console-impl.h"
|
853
|
146 #include "device.h"
|
|
147 #include "frame.h"
|
|
148 #include "lstream.h"
|
428
|
149 #include "opaque.h"
|
1292
|
150 #include "profile.h"
|
853
|
151 #include "window.h"
|
428
|
152
|
|
153 struct backtrace *backtrace_list;
|
|
154
|
|
155 /* Macros for calling subrs with an argument list whose length is only
|
|
156 known at runtime. See EXFUN and DEFUN for similar hackery. */
|
|
157
|
|
158 #define AV_0(av)
|
|
159 #define AV_1(av) av[0]
|
|
160 #define AV_2(av) AV_1(av), av[1]
|
|
161 #define AV_3(av) AV_2(av), av[2]
|
|
162 #define AV_4(av) AV_3(av), av[3]
|
|
163 #define AV_5(av) AV_4(av), av[4]
|
|
164 #define AV_6(av) AV_5(av), av[5]
|
|
165 #define AV_7(av) AV_6(av), av[6]
|
|
166 #define AV_8(av) AV_7(av), av[7]
|
|
167
|
|
168 #define PRIMITIVE_FUNCALL_1(fn, av, ac) \
|
444
|
169 (((Lisp_Object (*)(EXFUN_##ac)) (fn)) (AV_##ac (av)))
|
428
|
170
|
|
171 /* If subrs take more than 8 arguments, more cases need to be added
|
|
172 to this switch. (But wait - don't do it - if you really need
|
|
173 a SUBR with more than 8 arguments, use max_args == MANY.
|
853
|
174 Or better, considering using a property list as one of your args.
|
428
|
175 See the DEFUN macro in lisp.h) */
|
|
176 #define PRIMITIVE_FUNCALL(rv, fn, av, ac) do { \
|
|
177 void (*PF_fn)(void) = (void (*)(void)) fn; \
|
|
178 Lisp_Object *PF_av = (av); \
|
|
179 switch (ac) \
|
|
180 { \
|
436
|
181 default:rv = PRIMITIVE_FUNCALL_1(PF_fn, PF_av, 0); break; \
|
428
|
182 case 1: rv = PRIMITIVE_FUNCALL_1(PF_fn, PF_av, 1); break; \
|
|
183 case 2: rv = PRIMITIVE_FUNCALL_1(PF_fn, PF_av, 2); break; \
|
|
184 case 3: rv = PRIMITIVE_FUNCALL_1(PF_fn, PF_av, 3); break; \
|
|
185 case 4: rv = PRIMITIVE_FUNCALL_1(PF_fn, PF_av, 4); break; \
|
|
186 case 5: rv = PRIMITIVE_FUNCALL_1(PF_fn, PF_av, 5); break; \
|
|
187 case 6: rv = PRIMITIVE_FUNCALL_1(PF_fn, PF_av, 6); break; \
|
|
188 case 7: rv = PRIMITIVE_FUNCALL_1(PF_fn, PF_av, 7); break; \
|
|
189 case 8: rv = PRIMITIVE_FUNCALL_1(PF_fn, PF_av, 8); break; \
|
|
190 } \
|
|
191 } while (0)
|
|
192
|
|
193 #define FUNCALL_SUBR(rv, subr, av, ac) \
|
|
194 PRIMITIVE_FUNCALL (rv, subr_function (subr), av, ac);
|
|
195
|
|
196
|
|
197 /* This is the list of current catches (and also condition-cases).
|
853
|
198 This is a stack: the most recent catch is at the head of the list.
|
|
199 The list is threaded through the stack frames of the C functions
|
|
200 that set up the catches; this is similar to the way the GCPRO list
|
|
201 is handled, but different from the condition-handler list (which is
|
|
202 a simple Lisp list) and the specbind stack, which is a contiguous
|
|
203 array of `struct specbinding's, grown (using realloc()) as
|
|
204 necessary. (Note that all four of these lists behave as a stacks.)
|
|
205
|
|
206 Catches are created by declaring a 'struct catchtag' locally,
|
|
207 filling the .TAG field in with the tag, and doing a setjmp() on
|
|
208 .JMP. Fthrow() will store the value passed to it in .VAL and
|
|
209 longjmp() back to .JMP, back to the function that established the
|
|
210 catch. This will always be either internal_catch() (catches
|
|
211 established internally or through `catch') or condition_case_1
|
|
212 (condition-cases established internally or through
|
|
213 `condition-case').
|
428
|
214
|
|
215 The catchtag also records the current position in the
|
|
216 call stack (stored in BACKTRACE_LIST), the current position
|
|
217 in the specpdl stack (used for variable bindings and
|
|
218 unwind-protects), the value of LISP_EVAL_DEPTH, and the
|
|
219 current position in the GCPRO stack. All of these are
|
|
220 restored by Fthrow().
|
853
|
221 */
|
428
|
222
|
|
223 struct catchtag *catchlist;
|
|
224
|
853
|
225 /* A special tag that can be used internally from C code to catch
|
|
226 every attempt to throw past this level. */
|
|
227 Lisp_Object Vcatch_everything_tag;
|
|
228
|
428
|
229 Lisp_Object Qautoload, Qmacro, Qexit;
|
|
230 Lisp_Object Qinteractive, Qcommandp, Qdefun, Qprogn, Qvalues;
|
|
231 Lisp_Object Vquit_flag, Vinhibit_quit;
|
|
232 Lisp_Object Qand_rest, Qand_optional;
|
|
233 Lisp_Object Qdebug_on_error, Qstack_trace_on_error;
|
|
234 Lisp_Object Qdebug_on_signal, Qstack_trace_on_signal;
|
|
235 Lisp_Object Qdebugger;
|
|
236 Lisp_Object Qinhibit_quit;
|
887
|
237 Lisp_Object Qfinalize_list;
|
428
|
238 Lisp_Object Qrun_hooks;
|
|
239 Lisp_Object Qsetq;
|
|
240 Lisp_Object Qdisplay_warning;
|
|
241 Lisp_Object Vpending_warnings, Vpending_warnings_tail;
|
|
242 Lisp_Object Qif;
|
|
243
|
853
|
244 /* Flags specifying which operations are currently inhibited. */
|
|
245 int inhibit_flags;
|
|
246
|
|
247 /* Buffers, frames, windows, devices, and consoles created since most
|
|
248 recent active
|
|
249 call_trapping_problems (INHIBIT_EXISTING_PERMANENT_DISPLAY_OBJECT_DELETION).
|
|
250 */
|
|
251 Lisp_Object Vdeletable_permanent_display_objects;
|
|
252
|
|
253 /* Buffers created since most recent active
|
|
254 call_trapping_problems (INHIBIT_EXISTING_BUFFER_TEXT_MODIFICATION). */
|
|
255 Lisp_Object Vmodifiable_buffers;
|
793
|
256
|
|
257 /* Minimum level at which warnings are logged. Below this, they're ignored
|
|
258 entirely -- not even generated. */
|
|
259 Lisp_Object Vlog_warning_minimum_level;
|
|
260
|
428
|
261 /* Non-nil means record all fset's and provide's, to be undone
|
|
262 if the file being autoloaded is not fully loaded.
|
|
263 They are recorded by being consed onto the front of Vautoload_queue:
|
|
264 (FUN . ODEF) for a defun, (OFEATURES . nil) for a provide. */
|
|
265 Lisp_Object Vautoload_queue;
|
|
266
|
|
267 /* Current number of specbindings allocated in specpdl. */
|
|
268 int specpdl_size;
|
|
269
|
|
270 /* Pointer to beginning of specpdl. */
|
|
271 struct specbinding *specpdl;
|
|
272
|
|
273 /* Pointer to first unused element in specpdl. */
|
|
274 struct specbinding *specpdl_ptr;
|
|
275
|
|
276 /* specpdl_ptr - specpdl */
|
|
277 int specpdl_depth_counter;
|
|
278
|
|
279 /* Maximum size allowed for specpdl allocation */
|
458
|
280 Fixnum max_specpdl_size;
|
428
|
281
|
|
282 /* Depth in Lisp evaluations and function calls. */
|
1292
|
283 int lisp_eval_depth;
|
428
|
284
|
|
285 /* Maximum allowed depth in Lisp evaluations and function calls. */
|
458
|
286 Fixnum max_lisp_eval_depth;
|
428
|
287
|
|
288 /* Nonzero means enter debugger before next function call */
|
|
289 static int debug_on_next_call;
|
|
290
|
1292
|
291 int backtrace_with_internal_sections;
|
|
292
|
428
|
293 /* List of conditions (non-nil atom means all) which cause a backtrace
|
|
294 if an error is handled by the command loop's error handler. */
|
|
295 Lisp_Object Vstack_trace_on_error;
|
|
296
|
|
297 /* List of conditions (non-nil atom means all) which enter the debugger
|
|
298 if an error is handled by the command loop's error handler. */
|
|
299 Lisp_Object Vdebug_on_error;
|
|
300
|
|
301 /* List of conditions and regexps specifying error messages which
|
|
302 do not enter the debugger even if Vdebug_on_error says they should. */
|
|
303 Lisp_Object Vdebug_ignored_errors;
|
|
304
|
|
305 /* List of conditions (non-nil atom means all) which cause a backtrace
|
|
306 if any error is signalled. */
|
|
307 Lisp_Object Vstack_trace_on_signal;
|
|
308
|
|
309 /* List of conditions (non-nil atom means all) which enter the debugger
|
|
310 if any error is signalled. */
|
|
311 Lisp_Object Vdebug_on_signal;
|
|
312
|
|
313 /* Nonzero means enter debugger if a quit signal
|
|
314 is handled by the command loop's error handler.
|
|
315
|
|
316 From lisp, this is a boolean variable and may have the values 0 and 1.
|
|
317 But, eval.c temporarily uses the second bit of this variable to indicate
|
|
318 that a critical_quit is in progress. The second bit is reset immediately
|
|
319 after it is processed in signal_call_debugger(). */
|
|
320 int debug_on_quit;
|
|
321
|
|
322 #if 0 /* FSFmacs */
|
|
323 /* entering_debugger is basically equivalent */
|
|
324 /* The value of num_nonmacro_input_chars as of the last time we
|
|
325 started to enter the debugger. If we decide to enter the debugger
|
|
326 again when this is still equal to num_nonmacro_input_chars, then we
|
|
327 know that the debugger itself has an error, and we should just
|
|
328 signal the error instead of entering an infinite loop of debugger
|
|
329 invocations. */
|
|
330 int when_entered_debugger;
|
|
331 #endif
|
|
332
|
|
333 /* Nonzero means we are trying to enter the debugger.
|
|
334 This is to prevent recursive attempts.
|
|
335 Cleared by the debugger calling Fbacktrace */
|
|
336 static int entering_debugger;
|
|
337
|
|
338 /* Function to call to invoke the debugger */
|
|
339 Lisp_Object Vdebugger;
|
|
340
|
853
|
341 /* List of condition handlers currently in effect.
|
|
342 The elements of this lists were at one point in the past
|
|
343 threaded through the stack frames of Fcondition_case and
|
|
344 related functions, but now are stored separately in a normal
|
|
345 stack. When an error is signaled (by calling Fsignal, below),
|
|
346 this list is searched for an element that applies.
|
428
|
347
|
|
348 Each element of this list is one of the following:
|
|
349
|
853
|
350 -- A list of a handler function and possibly args to pass to the
|
|
351 function. This is a handler established with the Lisp primitive
|
|
352 `call-with-condition-handler' or related C function
|
|
353 call_with_condition_handler():
|
|
354
|
|
355 If the handler function is an opaque ptr object, it is a handler
|
|
356 that was established in C using call_with_condition_handler(),
|
|
357 and the contents of the object are a function pointer which takes
|
|
358 three arguments, the signal name and signal data (same arguments
|
|
359 passed to `signal') and a third Lisp_Object argument, specified
|
|
360 in the call to call_with_condition_handler() and stored as the
|
|
361 second element of the list containing the handler functionl.
|
|
362
|
|
363 If the handler function is a regular Lisp_Object, it is a handler
|
|
364 that was established using `call-with-condition-handler'.
|
|
365 Currently there are no more arguments in the list containing the
|
|
366 handler function, and only one argument is passed to the handler
|
|
367 function: a cons of the signal name and signal data arguments
|
|
368 passed to `signal'.
|
|
369
|
|
370 -- A list whose car is Qunbound and whose cdr is Qt. This is a
|
|
371 special condition-case handler established by C code with
|
|
372 condition_case_1(). All errors are trapped; the debugger is not
|
|
373 invoked even if `debug-on-error' was set.
|
|
374
|
|
375 -- A list whose car is Qunbound and whose cdr is Qerror. This is a
|
|
376 special condition-case handler established by C code with
|
|
377 condition_case_1(). It is like Qt except that the debugger is
|
|
378 invoked normally if it is called for.
|
|
379
|
|
380 -- A list whose car is Qunbound and whose cdr is a list of lists
|
|
381 (CONDITION-NAME BODY ...) exactly as in `condition-case'. This is
|
|
382 a normal `condition-case' handler.
|
|
383
|
|
384 Note that in all cases *except* the first, there is a corresponding
|
|
385 catch, whose TAG is the value of Vcondition_handlers just after the
|
|
386 handler data just described is pushed onto it. The reason is that
|
|
387 `condition-case' handlers need to throw back to the place where the
|
|
388 handler was installed before invoking it, while
|
|
389 `call-with-condition-handler' handlers are invoked in the
|
|
390 environment that `signal' was invoked in. */
|
|
391
|
|
392
|
428
|
393 static Lisp_Object Vcondition_handlers;
|
|
394
|
853
|
395 /* I think we should keep this enabled all the time, not just when
|
|
396 error checking is enabled, because if one of these puppies pops up,
|
|
397 it will trash the stack if not caught, making it that much harder to
|
|
398 debug. It doesn't cause speed loss. */
|
442
|
399 #define DEFEND_AGAINST_THROW_RECURSION
|
|
400
|
|
401 #ifdef DEFEND_AGAINST_THROW_RECURSION
|
428
|
402 /* Used for error catching purposes by throw_or_bomb_out */
|
|
403 static int throw_level;
|
442
|
404 #endif
|
|
405
|
1123
|
406 static int warning_will_be_discarded (Lisp_Object level);
|
2532
|
407 static Lisp_Object maybe_get_trapping_problems_backtrace (void);
|
1123
|
408
|
428
|
409
|
|
410 /************************************************************************/
|
|
411 /* The subr object type */
|
|
412 /************************************************************************/
|
|
413
|
|
414 static void
|
2286
|
415 print_subr (Lisp_Object obj, Lisp_Object printcharfun, int UNUSED (escapeflag))
|
428
|
416 {
|
|
417 Lisp_Subr *subr = XSUBR (obj);
|
867
|
418 const CIbyte *header =
|
428
|
419 (subr->max_args == UNEVALLED) ? "#<special-form " : "#<subr ";
|
867
|
420 const CIbyte *name = subr_name (subr);
|
|
421 const CIbyte *trailer = subr->prompt ? " (interactive)>" : ">";
|
428
|
422
|
|
423 if (print_readably)
|
563
|
424 printing_unreadable_object ("%s%s%s", header, name, trailer);
|
428
|
425
|
826
|
426 write_c_string (printcharfun, header);
|
|
427 write_c_string (printcharfun, name);
|
|
428 write_c_string (printcharfun, trailer);
|
428
|
429 }
|
|
430
|
1204
|
431 static const struct memory_description subr_description[] = {
|
2551
|
432 { XD_DOC_STRING, offsetof (Lisp_Subr, doc), 0, { 0 }, XD_FLAG_NO_KKCC },
|
428
|
433 { XD_END }
|
|
434 };
|
|
435
|
938
|
436 DEFINE_BASIC_LRECORD_IMPLEMENTATION ("subr", subr,
|
|
437 1, /*dumpable-flag*/
|
|
438 0, print_subr, 0, 0, 0,
|
|
439 subr_description,
|
|
440 Lisp_Subr);
|
428
|
441
|
|
442 /************************************************************************/
|
|
443 /* Entering the debugger */
|
|
444 /************************************************************************/
|
|
445
|
853
|
446 static Lisp_Object
|
|
447 current_warning_level (void)
|
|
448 {
|
|
449 if (inhibit_flags & ISSUE_WARNINGS_AT_DEBUG_LEVEL)
|
|
450 return Qdebug;
|
|
451 else
|
|
452 return Qwarning;
|
|
453 }
|
|
454
|
428
|
455 /* Actually call the debugger. ARG is a list of args that will be
|
|
456 passed to the debugger function, as follows;
|
|
457
|
|
458 If due to frame exit, args are `exit' and the value being returned;
|
|
459 this function's value will be returned instead of that.
|
|
460 If due to error, args are `error' and a list of the args to `signal'.
|
|
461 If due to `apply' or `funcall' entry, one arg, `lambda'.
|
|
462 If due to `eval' entry, one arg, t.
|
|
463
|
|
464 */
|
|
465
|
|
466 static Lisp_Object
|
|
467 call_debugger_259 (Lisp_Object arg)
|
|
468 {
|
|
469 return apply1 (Vdebugger, arg);
|
|
470 }
|
|
471
|
|
472 /* Call the debugger, doing some encapsulation. We make sure we have
|
|
473 some room on the eval and specpdl stacks, and bind entering_debugger
|
|
474 to 1 during this call. This is used to trap errors that may occur
|
|
475 when entering the debugger (e.g. the value of `debugger' is invalid),
|
|
476 so that the debugger will not be recursively entered if debug-on-error
|
|
477 is set. (Otherwise, XEmacs would infinitely recurse, attempting to
|
|
478 enter the debugger.) entering_debugger gets reset to 0 as soon
|
|
479 as a backtrace is displayed, so that further errors can indeed be
|
|
480 handled normally.
|
|
481
|
|
482 We also establish a catch for 'debugger. If the debugger function
|
|
483 throws to this instead of returning a value, it means that the user
|
|
484 pressed 'c' (pretend like the debugger was never entered). The
|
|
485 function then returns Qunbound. (If the user pressed 'r', for
|
|
486 return a value, then the debugger function returns normally with
|
|
487 this value.)
|
|
488
|
|
489 The difference between 'c' and 'r' is as follows:
|
|
490
|
|
491 debug-on-call:
|
|
492 No difference. The call proceeds as normal.
|
|
493 debug-on-exit:
|
|
494 With 'r', the specified value is returned as the function's
|
|
495 return value. With 'c', the value that would normally be
|
|
496 returned is returned.
|
|
497 signal:
|
|
498 With 'r', the specified value is returned as the return
|
|
499 value of `signal'. (This is the only time that `signal'
|
|
500 can return, instead of making a non-local exit.) With `c',
|
|
501 `signal' will continue looking for handlers as if the
|
|
502 debugger was never entered, and will probably end up
|
|
503 throwing to a handler or to top-level.
|
|
504 */
|
|
505
|
|
506 static Lisp_Object
|
|
507 call_debugger (Lisp_Object arg)
|
|
508 {
|
|
509 int threw;
|
|
510 Lisp_Object val;
|
|
511 int speccount;
|
|
512
|
853
|
513 debug_on_next_call = 0;
|
|
514
|
|
515 if (inhibit_flags & INHIBIT_ENTERING_DEBUGGER)
|
|
516 {
|
|
517 if (!(inhibit_flags & INHIBIT_WARNING_ISSUE))
|
|
518 warn_when_safe
|
|
519 (Qdebugger, current_warning_level (),
|
|
520 "Unable to enter debugger within critical section");
|
|
521 return Qunbound;
|
|
522 }
|
|
523
|
428
|
524 if (lisp_eval_depth + 20 > max_lisp_eval_depth)
|
|
525 max_lisp_eval_depth = lisp_eval_depth + 20;
|
|
526 if (specpdl_size + 40 > max_specpdl_size)
|
|
527 max_specpdl_size = specpdl_size + 40;
|
853
|
528
|
|
529 speccount = internal_bind_int (&entering_debugger, 1);
|
2532
|
530 val = internal_catch (Qdebugger, call_debugger_259, arg, &threw, 0, 0);
|
428
|
531
|
771
|
532 return unbind_to_1 (speccount, ((threw)
|
428
|
533 ? Qunbound /* Not returning a value */
|
|
534 : val));
|
|
535 }
|
|
536
|
|
537 /* Called when debug-on-exit behavior is called for. Enter the debugger
|
|
538 with the appropriate args for this. VAL is the exit value that is
|
|
539 about to be returned. */
|
|
540
|
|
541 static Lisp_Object
|
|
542 do_debug_on_exit (Lisp_Object val)
|
|
543 {
|
|
544 /* This is falsified by call_debugger */
|
|
545 Lisp_Object v = call_debugger (list2 (Qexit, val));
|
|
546
|
|
547 return !UNBOUNDP (v) ? v : val;
|
|
548 }
|
|
549
|
|
550 /* Called when debug-on-call behavior is called for. Enter the debugger
|
|
551 with the appropriate args for this. VAL is either t for a call
|
|
552 through `eval' or 'lambda for a call through `funcall'.
|
|
553
|
|
554 #### The differentiation here between EVAL and FUNCALL is bogus.
|
|
555 FUNCALL can be defined as
|
|
556
|
|
557 (defmacro func (fun &rest args)
|
|
558 (cons (eval fun) args))
|
|
559
|
|
560 and should be treated as such.
|
|
561 */
|
|
562
|
|
563 static void
|
|
564 do_debug_on_call (Lisp_Object code)
|
|
565 {
|
|
566 debug_on_next_call = 0;
|
|
567 backtrace_list->debug_on_exit = 1;
|
|
568 call_debugger (list1 (code));
|
|
569 }
|
|
570
|
|
571 /* LIST is the value of one of the variables `debug-on-error',
|
|
572 `debug-on-signal', `stack-trace-on-error', or `stack-trace-on-signal',
|
|
573 and CONDITIONS is the list of error conditions associated with
|
|
574 the error being signalled. This returns non-nil if LIST
|
|
575 matches CONDITIONS. (A nil value for LIST does not match
|
|
576 CONDITIONS. A non-list value for LIST does match CONDITIONS.
|
|
577 A list matches CONDITIONS when one of the symbols in LIST is the
|
|
578 same as one of the symbols in CONDITIONS.) */
|
|
579
|
|
580 static int
|
|
581 wants_debugger (Lisp_Object list, Lisp_Object conditions)
|
|
582 {
|
|
583 if (NILP (list))
|
|
584 return 0;
|
|
585 if (! CONSP (list))
|
|
586 return 1;
|
|
587
|
|
588 while (CONSP (conditions))
|
|
589 {
|
2552
|
590 Lisp_Object curr, tail;
|
|
591 curr = XCAR (conditions);
|
428
|
592 for (tail = list; CONSP (tail); tail = XCDR (tail))
|
2552
|
593 if (EQ (XCAR (tail), curr))
|
428
|
594 return 1;
|
|
595 conditions = XCDR (conditions);
|
|
596 }
|
|
597 return 0;
|
|
598 }
|
|
599
|
|
600
|
|
601 /* Return 1 if an error with condition-symbols CONDITIONS,
|
|
602 and described by SIGNAL-DATA, should skip the debugger
|
|
603 according to debugger-ignore-errors. */
|
|
604
|
|
605 static int
|
|
606 skip_debugger (Lisp_Object conditions, Lisp_Object data)
|
|
607 {
|
|
608 /* This function can GC */
|
|
609 Lisp_Object tail;
|
|
610 int first_string = 1;
|
|
611 Lisp_Object error_message = Qnil;
|
|
612
|
|
613 for (tail = Vdebug_ignored_errors; CONSP (tail); tail = XCDR (tail))
|
|
614 {
|
|
615 if (STRINGP (XCAR (tail)))
|
|
616 {
|
|
617 if (first_string)
|
|
618 {
|
|
619 error_message = Ferror_message_string (data);
|
|
620 first_string = 0;
|
|
621 }
|
|
622 if (fast_lisp_string_match (XCAR (tail), error_message) >= 0)
|
|
623 return 1;
|
|
624 }
|
|
625 else
|
|
626 {
|
|
627 Lisp_Object contail;
|
|
628
|
|
629 for (contail = conditions; CONSP (contail); contail = XCDR (contail))
|
|
630 if (EQ (XCAR (tail), XCAR (contail)))
|
|
631 return 1;
|
|
632 }
|
|
633 }
|
|
634
|
|
635 return 0;
|
|
636 }
|
|
637
|
|
638 /* Actually generate a backtrace on STREAM. */
|
|
639
|
|
640 static Lisp_Object
|
|
641 backtrace_259 (Lisp_Object stream)
|
|
642 {
|
|
643 return Fbacktrace (stream, Qt);
|
|
644 }
|
|
645
|
1130
|
646 #ifdef DEBUG_XEMACS
|
|
647
|
|
648 static void
|
|
649 trace_out_and_die (Lisp_Object err)
|
|
650 {
|
|
651 Fdisplay_error (err, Qt);
|
|
652 backtrace_259 (Qnil);
|
|
653 stderr_out ("XEmacs exiting to debugger.\n");
|
|
654 Fforce_debugging_signal (Qt);
|
|
655 /* Unlikely to be reached */
|
|
656 }
|
|
657
|
|
658 #endif
|
|
659
|
428
|
660 /* An error was signaled. Maybe call the debugger, if the `debug-on-error'
|
|
661 etc. variables call for this. CONDITIONS is the list of conditions
|
|
662 associated with the error being signalled. SIG is the actual error
|
|
663 being signalled, and DATA is the associated data (these are exactly
|
|
664 the same as the arguments to `signal'). ACTIVE_HANDLERS is the
|
|
665 list of error handlers that are to be put in place while the debugger
|
|
666 is called. This is generally the remaining handlers that are
|
|
667 outside of the innermost handler trapping this error. This way,
|
|
668 if the same error occurs inside of the debugger, you usually don't get
|
|
669 the debugger entered recursively.
|
|
670
|
|
671 This function returns Qunbound if it didn't call the debugger or if
|
|
672 the user asked (through 'c') that XEmacs should pretend like the
|
|
673 debugger was never entered. Otherwise, it returns the value
|
|
674 that the user specified with `r'. (Note that much of the time,
|
|
675 the user will abort with C-], and we will never have a chance to
|
|
676 return anything at all.)
|
|
677
|
|
678 SIGNAL_VARS_ONLY means we should only look at debug-on-signal
|
|
679 and stack-trace-on-signal to control whether we do anything.
|
|
680 This is so that debug-on-error doesn't make handled errors
|
|
681 cause the debugger to get invoked.
|
|
682
|
|
683 STACK_TRACE_DISPLAYED and DEBUGGER_ENTERED are used so that
|
|
684 those functions aren't done more than once in a single `signal'
|
|
685 session. */
|
|
686
|
|
687 static Lisp_Object
|
|
688 signal_call_debugger (Lisp_Object conditions,
|
|
689 Lisp_Object sig, Lisp_Object data,
|
|
690 Lisp_Object active_handlers,
|
|
691 int signal_vars_only,
|
|
692 int *stack_trace_displayed,
|
|
693 int *debugger_entered)
|
|
694 {
|
853
|
695 #ifdef PIGS_FLY_AND_ALL_C_CODE_CAN_HANDLE_GC_OCCURRING_ALMOST_ANYWHERE
|
428
|
696 /* This function can GC */
|
853
|
697 #else /* reality check */
|
|
698 /* This function cannot GC because it inhibits GC during its operation */
|
|
699 #endif
|
|
700
|
428
|
701 Lisp_Object val = Qunbound;
|
|
702 Lisp_Object all_handlers = Vcondition_handlers;
|
|
703 Lisp_Object temp_data = Qnil;
|
853
|
704 int outer_speccount = specpdl_depth();
|
|
705 int speccount;
|
|
706
|
|
707 #ifdef PIGS_FLY_AND_ALL_C_CODE_CAN_HANDLE_GC_OCCURRING_ALMOST_ANYWHERE
|
428
|
708 struct gcpro gcpro1, gcpro2;
|
|
709 GCPRO2 (all_handlers, temp_data);
|
853
|
710 #else
|
|
711 begin_gc_forbidden ();
|
|
712 #endif
|
|
713
|
|
714 speccount = specpdl_depth();
|
428
|
715
|
|
716 Vcondition_handlers = active_handlers;
|
|
717
|
|
718 temp_data = Fcons (sig, data); /* needed for skip_debugger */
|
|
719
|
|
720 if (!entering_debugger && !*stack_trace_displayed && !signal_vars_only
|
|
721 && wants_debugger (Vstack_trace_on_error, conditions)
|
|
722 && !skip_debugger (conditions, temp_data))
|
|
723 {
|
|
724 specbind (Qdebug_on_error, Qnil);
|
|
725 specbind (Qstack_trace_on_error, Qnil);
|
|
726 specbind (Qdebug_on_signal, Qnil);
|
|
727 specbind (Qstack_trace_on_signal, Qnil);
|
|
728
|
442
|
729 if (!noninteractive)
|
|
730 internal_with_output_to_temp_buffer (build_string ("*Backtrace*"),
|
|
731 backtrace_259,
|
|
732 Qnil,
|
|
733 Qnil);
|
|
734 else /* in batch mode, we want this going to stderr. */
|
|
735 backtrace_259 (Qnil);
|
771
|
736 unbind_to (speccount);
|
428
|
737 *stack_trace_displayed = 1;
|
|
738 }
|
|
739
|
|
740 if (!entering_debugger && !*debugger_entered && !signal_vars_only
|
|
741 && (EQ (sig, Qquit)
|
|
742 ? debug_on_quit
|
|
743 : wants_debugger (Vdebug_on_error, conditions))
|
|
744 && !skip_debugger (conditions, temp_data))
|
|
745 {
|
|
746 debug_on_quit &= ~2; /* reset critical bit */
|
1123
|
747
|
428
|
748 specbind (Qdebug_on_error, Qnil);
|
|
749 specbind (Qstack_trace_on_error, Qnil);
|
|
750 specbind (Qdebug_on_signal, Qnil);
|
|
751 specbind (Qstack_trace_on_signal, Qnil);
|
|
752
|
1130
|
753 #ifdef DEBUG_XEMACS
|
|
754 if (noninteractive)
|
|
755 trace_out_and_die (Fcons (sig, data));
|
|
756 #endif
|
|
757
|
428
|
758 val = call_debugger (list2 (Qerror, (Fcons (sig, data))));
|
853
|
759 unbind_to (speccount);
|
428
|
760 *debugger_entered = 1;
|
|
761 }
|
|
762
|
|
763 if (!entering_debugger && !*stack_trace_displayed
|
|
764 && wants_debugger (Vstack_trace_on_signal, conditions))
|
|
765 {
|
|
766 specbind (Qdebug_on_error, Qnil);
|
|
767 specbind (Qstack_trace_on_error, Qnil);
|
|
768 specbind (Qdebug_on_signal, Qnil);
|
|
769 specbind (Qstack_trace_on_signal, Qnil);
|
|
770
|
442
|
771 if (!noninteractive)
|
|
772 internal_with_output_to_temp_buffer (build_string ("*Backtrace*"),
|
|
773 backtrace_259,
|
|
774 Qnil,
|
|
775 Qnil);
|
|
776 else /* in batch mode, we want this going to stderr. */
|
|
777 backtrace_259 (Qnil);
|
771
|
778 unbind_to (speccount);
|
428
|
779 *stack_trace_displayed = 1;
|
|
780 }
|
|
781
|
|
782 if (!entering_debugger && !*debugger_entered
|
|
783 && (EQ (sig, Qquit)
|
|
784 ? debug_on_quit
|
|
785 : wants_debugger (Vdebug_on_signal, conditions)))
|
|
786 {
|
|
787 debug_on_quit &= ~2; /* reset critical bit */
|
1123
|
788
|
428
|
789 specbind (Qdebug_on_error, Qnil);
|
|
790 specbind (Qstack_trace_on_error, Qnil);
|
|
791 specbind (Qdebug_on_signal, Qnil);
|
|
792 specbind (Qstack_trace_on_signal, Qnil);
|
|
793
|
1130
|
794 #ifdef DEBUG_XEMACS
|
|
795 if (noninteractive)
|
|
796 trace_out_and_die (Fcons (sig, data));
|
|
797 #endif
|
|
798
|
428
|
799 val = call_debugger (list2 (Qerror, (Fcons (sig, data))));
|
|
800 *debugger_entered = 1;
|
|
801 }
|
|
802
|
853
|
803 #ifdef PIGS_FLY_AND_ALL_C_CODE_CAN_HANDLE_GC_OCCURRING_ALMOST_ANYWHERE
|
428
|
804 UNGCPRO;
|
853
|
805 #endif
|
428
|
806 Vcondition_handlers = all_handlers;
|
853
|
807 return unbind_to_1 (outer_speccount, val);
|
428
|
808 }
|
|
809
|
|
810
|
|
811 /************************************************************************/
|
|
812 /* The basic special forms */
|
|
813 /************************************************************************/
|
|
814
|
|
815 /* Except for Fprogn(), the basic special forms below are only called
|
|
816 from interpreted code. The byte compiler turns them into bytecodes. */
|
|
817
|
|
818 DEFUN ("or", For, 0, UNEVALLED, 0, /*
|
|
819 Eval args until one of them yields non-nil, then return that value.
|
|
820 The remaining args are not evalled at all.
|
|
821 If all args return nil, return nil.
|
|
822 */
|
|
823 (args))
|
|
824 {
|
|
825 /* This function can GC */
|
442
|
826 REGISTER Lisp_Object val;
|
428
|
827
|
|
828 LIST_LOOP_2 (arg, args)
|
|
829 {
|
|
830 if (!NILP (val = Feval (arg)))
|
|
831 return val;
|
|
832 }
|
|
833
|
|
834 return Qnil;
|
|
835 }
|
|
836
|
|
837 DEFUN ("and", Fand, 0, UNEVALLED, 0, /*
|
|
838 Eval args until one of them yields nil, then return nil.
|
|
839 The remaining args are not evalled at all.
|
|
840 If no arg yields nil, return the last arg's value.
|
|
841 */
|
|
842 (args))
|
|
843 {
|
|
844 /* This function can GC */
|
442
|
845 REGISTER Lisp_Object val = Qt;
|
428
|
846
|
|
847 LIST_LOOP_2 (arg, args)
|
|
848 {
|
|
849 if (NILP (val = Feval (arg)))
|
|
850 return val;
|
|
851 }
|
|
852
|
|
853 return val;
|
|
854 }
|
|
855
|
|
856 DEFUN ("if", Fif, 2, UNEVALLED, 0, /*
|
|
857 \(if COND THEN ELSE...): if COND yields non-nil, do THEN, else do ELSE...
|
|
858 Returns the value of THEN or the value of the last of the ELSE's.
|
|
859 THEN must be one expression, but ELSE... can be zero or more expressions.
|
|
860 If COND yields nil, and there are no ELSE's, the value is nil.
|
|
861 */
|
|
862 (args))
|
|
863 {
|
|
864 /* This function can GC */
|
|
865 Lisp_Object condition = XCAR (args);
|
|
866 Lisp_Object then_form = XCAR (XCDR (args));
|
|
867 Lisp_Object else_forms = XCDR (XCDR (args));
|
|
868
|
|
869 if (!NILP (Feval (condition)))
|
|
870 return Feval (then_form);
|
|
871 else
|
|
872 return Fprogn (else_forms);
|
|
873 }
|
|
874
|
|
875 /* Macros `when' and `unless' are trivially defined in Lisp,
|
|
876 but it helps for bootstrapping to have them ALWAYS defined. */
|
|
877
|
|
878 DEFUN ("when", Fwhen, 1, MANY, 0, /*
|
|
879 \(when COND BODY...): if COND yields non-nil, do BODY, else return nil.
|
|
880 BODY can be zero or more expressions. If BODY is nil, return nil.
|
|
881 */
|
|
882 (int nargs, Lisp_Object *args))
|
|
883 {
|
|
884 Lisp_Object cond = args[0];
|
|
885 Lisp_Object body;
|
853
|
886
|
428
|
887 switch (nargs)
|
|
888 {
|
|
889 case 1: body = Qnil; break;
|
|
890 case 2: body = args[1]; break;
|
|
891 default: body = Fcons (Qprogn, Flist (nargs-1, args+1)); break;
|
|
892 }
|
|
893
|
|
894 return list3 (Qif, cond, body);
|
|
895 }
|
|
896
|
|
897 DEFUN ("unless", Funless, 1, MANY, 0, /*
|
|
898 \(unless COND BODY...): if COND yields nil, do BODY, else return nil.
|
|
899 BODY can be zero or more expressions. If BODY is nil, return nil.
|
|
900 */
|
|
901 (int nargs, Lisp_Object *args))
|
|
902 {
|
|
903 Lisp_Object cond = args[0];
|
|
904 Lisp_Object body = Flist (nargs-1, args+1);
|
|
905 return Fcons (Qif, Fcons (cond, Fcons (Qnil, body)));
|
|
906 }
|
|
907
|
|
908 DEFUN ("cond", Fcond, 0, UNEVALLED, 0, /*
|
444
|
909 \(cond CLAUSES...): try each clause until one succeeds.
|
428
|
910 Each clause looks like (CONDITION BODY...). CONDITION is evaluated
|
|
911 and, if the value is non-nil, this clause succeeds:
|
|
912 then the expressions in BODY are evaluated and the last one's
|
|
913 value is the value of the cond-form.
|
|
914 If no clause succeeds, cond returns nil.
|
|
915 If a clause has one element, as in (CONDITION),
|
|
916 CONDITION's value if non-nil is returned from the cond-form.
|
|
917 */
|
|
918 (args))
|
|
919 {
|
|
920 /* This function can GC */
|
442
|
921 REGISTER Lisp_Object val;
|
428
|
922
|
|
923 LIST_LOOP_2 (clause, args)
|
|
924 {
|
|
925 CHECK_CONS (clause);
|
|
926 if (!NILP (val = Feval (XCAR (clause))))
|
|
927 {
|
|
928 if (!NILP (clause = XCDR (clause)))
|
|
929 {
|
|
930 CHECK_TRUE_LIST (clause);
|
|
931 val = Fprogn (clause);
|
|
932 }
|
|
933 return val;
|
|
934 }
|
|
935 }
|
|
936
|
|
937 return Qnil;
|
|
938 }
|
|
939
|
|
940 DEFUN ("progn", Fprogn, 0, UNEVALLED, 0, /*
|
|
941 \(progn BODY...): eval BODY forms sequentially and return value of last one.
|
|
942 */
|
|
943 (args))
|
|
944 {
|
|
945 /* This function can GC */
|
|
946 /* Caller must provide a true list in ARGS */
|
442
|
947 REGISTER Lisp_Object val = Qnil;
|
428
|
948 struct gcpro gcpro1;
|
|
949
|
|
950 GCPRO1 (args);
|
|
951
|
|
952 {
|
|
953 LIST_LOOP_2 (form, args)
|
|
954 val = Feval (form);
|
|
955 }
|
|
956
|
|
957 UNGCPRO;
|
|
958 return val;
|
|
959 }
|
|
960
|
|
961 /* Fprog1() is the canonical example of a function that must GCPRO a
|
|
962 Lisp_Object across calls to Feval(). */
|
|
963
|
|
964 DEFUN ("prog1", Fprog1, 1, UNEVALLED, 0, /*
|
|
965 Similar to `progn', but the value of the first form is returned.
|
|
966 \(prog1 FIRST BODY...): All the arguments are evaluated sequentially.
|
|
967 The value of FIRST is saved during evaluation of the remaining args,
|
|
968 whose values are discarded.
|
|
969 */
|
|
970 (args))
|
|
971 {
|
|
972 /* This function can GC */
|
1849
|
973 Lisp_Object val;
|
428
|
974 struct gcpro gcpro1;
|
|
975
|
|
976 val = Feval (XCAR (args));
|
|
977
|
|
978 GCPRO1 (val);
|
|
979
|
|
980 {
|
|
981 LIST_LOOP_2 (form, XCDR (args))
|
|
982 Feval (form);
|
|
983 }
|
|
984
|
|
985 UNGCPRO;
|
|
986 return val;
|
|
987 }
|
|
988
|
|
989 DEFUN ("prog2", Fprog2, 2, UNEVALLED, 0, /*
|
|
990 Similar to `progn', but the value of the second form is returned.
|
|
991 \(prog2 FIRST SECOND BODY...): All the arguments are evaluated sequentially.
|
|
992 The value of SECOND is saved during evaluation of the remaining args,
|
|
993 whose values are discarded.
|
|
994 */
|
|
995 (args))
|
|
996 {
|
|
997 /* This function can GC */
|
1849
|
998 Lisp_Object val;
|
428
|
999 struct gcpro gcpro1;
|
|
1000
|
|
1001 Feval (XCAR (args));
|
|
1002 args = XCDR (args);
|
|
1003 val = Feval (XCAR (args));
|
|
1004 args = XCDR (args);
|
|
1005
|
|
1006 GCPRO1 (val);
|
|
1007
|
442
|
1008 {
|
|
1009 LIST_LOOP_2 (form, args)
|
|
1010 Feval (form);
|
|
1011 }
|
428
|
1012
|
|
1013 UNGCPRO;
|
|
1014 return val;
|
|
1015 }
|
|
1016
|
|
1017 DEFUN ("let*", FletX, 1, UNEVALLED, 0, /*
|
|
1018 \(let* VARLIST BODY...): bind variables according to VARLIST then eval BODY.
|
|
1019 The value of the last form in BODY is returned.
|
|
1020 Each element of VARLIST is a symbol (which is bound to nil)
|
|
1021 or a list (SYMBOL VALUEFORM) (which binds SYMBOL to the value of VALUEFORM).
|
|
1022 Each VALUEFORM can refer to the symbols already bound by this VARLIST.
|
|
1023 */
|
|
1024 (args))
|
|
1025 {
|
|
1026 /* This function can GC */
|
|
1027 Lisp_Object varlist = XCAR (args);
|
|
1028 Lisp_Object body = XCDR (args);
|
|
1029 int speccount = specpdl_depth();
|
|
1030
|
|
1031 EXTERNAL_LIST_LOOP_3 (var, varlist, tail)
|
|
1032 {
|
|
1033 Lisp_Object symbol, value, tem;
|
|
1034 if (SYMBOLP (var))
|
|
1035 symbol = var, value = Qnil;
|
|
1036 else
|
|
1037 {
|
|
1038 CHECK_CONS (var);
|
|
1039 symbol = XCAR (var);
|
|
1040 tem = XCDR (var);
|
|
1041 if (NILP (tem))
|
|
1042 value = Qnil;
|
|
1043 else
|
|
1044 {
|
|
1045 CHECK_CONS (tem);
|
|
1046 value = Feval (XCAR (tem));
|
|
1047 if (!NILP (XCDR (tem)))
|
563
|
1048 sferror
|
428
|
1049 ("`let' bindings can have only one value-form", var);
|
|
1050 }
|
|
1051 }
|
|
1052 specbind (symbol, value);
|
|
1053 }
|
771
|
1054 return unbind_to_1 (speccount, Fprogn (body));
|
428
|
1055 }
|
|
1056
|
|
1057 DEFUN ("let", Flet, 1, UNEVALLED, 0, /*
|
|
1058 \(let VARLIST BODY...): bind variables according to VARLIST then eval BODY.
|
|
1059 The value of the last form in BODY is returned.
|
|
1060 Each element of VARLIST is a symbol (which is bound to nil)
|
|
1061 or a list (SYMBOL VALUEFORM) (which binds SYMBOL to the value of VALUEFORM).
|
|
1062 All the VALUEFORMs are evalled before any symbols are bound.
|
|
1063 */
|
|
1064 (args))
|
|
1065 {
|
|
1066 /* This function can GC */
|
|
1067 Lisp_Object varlist = XCAR (args);
|
|
1068 Lisp_Object body = XCDR (args);
|
|
1069 int speccount = specpdl_depth();
|
|
1070 Lisp_Object *temps;
|
|
1071 int idx;
|
|
1072 struct gcpro gcpro1;
|
|
1073
|
|
1074 /* Make space to hold the values to give the bound variables. */
|
|
1075 {
|
|
1076 int varcount;
|
|
1077 GET_EXTERNAL_LIST_LENGTH (varlist, varcount);
|
|
1078 temps = alloca_array (Lisp_Object, varcount);
|
|
1079 }
|
|
1080
|
|
1081 /* Compute the values and store them in `temps' */
|
|
1082 GCPRO1 (*temps);
|
|
1083 gcpro1.nvars = 0;
|
|
1084
|
|
1085 idx = 0;
|
442
|
1086 {
|
|
1087 LIST_LOOP_2 (var, varlist)
|
|
1088 {
|
|
1089 Lisp_Object *value = &temps[idx++];
|
|
1090 if (SYMBOLP (var))
|
|
1091 *value = Qnil;
|
|
1092 else
|
|
1093 {
|
|
1094 Lisp_Object tem;
|
|
1095 CHECK_CONS (var);
|
|
1096 tem = XCDR (var);
|
|
1097 if (NILP (tem))
|
|
1098 *value = Qnil;
|
|
1099 else
|
|
1100 {
|
|
1101 CHECK_CONS (tem);
|
|
1102 *value = Feval (XCAR (tem));
|
|
1103 gcpro1.nvars = idx;
|
|
1104
|
|
1105 if (!NILP (XCDR (tem)))
|
563
|
1106 sferror
|
442
|
1107 ("`let' bindings can have only one value-form", var);
|
|
1108 }
|
|
1109 }
|
|
1110 }
|
|
1111 }
|
428
|
1112
|
|
1113 idx = 0;
|
442
|
1114 {
|
|
1115 LIST_LOOP_2 (var, varlist)
|
|
1116 {
|
|
1117 specbind (SYMBOLP (var) ? var : XCAR (var), temps[idx++]);
|
|
1118 }
|
|
1119 }
|
428
|
1120
|
|
1121 UNGCPRO;
|
|
1122
|
771
|
1123 return unbind_to_1 (speccount, Fprogn (body));
|
428
|
1124 }
|
|
1125
|
|
1126 DEFUN ("while", Fwhile, 1, UNEVALLED, 0, /*
|
|
1127 \(while TEST BODY...): if TEST yields non-nil, eval BODY... and repeat.
|
|
1128 The order of execution is thus TEST, BODY, TEST, BODY and so on
|
|
1129 until TEST returns nil.
|
|
1130 */
|
|
1131 (args))
|
|
1132 {
|
|
1133 /* This function can GC */
|
|
1134 Lisp_Object test = XCAR (args);
|
|
1135 Lisp_Object body = XCDR (args);
|
|
1136
|
|
1137 while (!NILP (Feval (test)))
|
|
1138 {
|
|
1139 QUIT;
|
|
1140 Fprogn (body);
|
|
1141 }
|
|
1142
|
|
1143 return Qnil;
|
|
1144 }
|
|
1145
|
|
1146 DEFUN ("setq", Fsetq, 0, UNEVALLED, 0, /*
|
|
1147 \(setq SYM VAL SYM VAL ...): set each SYM to the value of its VAL.
|
|
1148 The symbols SYM are variables; they are literal (not evaluated).
|
|
1149 The values VAL are expressions; they are evaluated.
|
|
1150 Thus, (setq x (1+ y)) sets `x' to the value of `(1+ y)'.
|
|
1151 The second VAL is not computed until after the first SYM is set, and so on;
|
|
1152 each VAL can use the new value of variables set earlier in the `setq'.
|
|
1153 The return value of the `setq' form is the value of the last VAL.
|
|
1154 */
|
|
1155 (args))
|
|
1156 {
|
|
1157 /* This function can GC */
|
|
1158 int nargs;
|
2421
|
1159 Lisp_Object retval = Qnil;
|
428
|
1160
|
|
1161 GET_LIST_LENGTH (args, nargs);
|
|
1162
|
|
1163 if (nargs & 1) /* Odd number of arguments? */
|
|
1164 Fsignal (Qwrong_number_of_arguments, list2 (Qsetq, make_int (nargs)));
|
|
1165
|
2421
|
1166 GC_PROPERTY_LIST_LOOP_3 (symbol, val, args)
|
428
|
1167 {
|
|
1168 val = Feval (val);
|
|
1169 Fset (symbol, val);
|
2421
|
1170 retval = val;
|
428
|
1171 }
|
|
1172
|
2421
|
1173 END_GC_PROPERTY_LIST_LOOP (symbol);
|
|
1174
|
|
1175 return retval;
|
428
|
1176 }
|
|
1177
|
|
1178 DEFUN ("quote", Fquote, 1, UNEVALLED, 0, /*
|
|
1179 Return the argument, without evaluating it. `(quote x)' yields `x'.
|
|
1180 */
|
|
1181 (args))
|
|
1182 {
|
|
1183 return XCAR (args);
|
|
1184 }
|
|
1185
|
|
1186 DEFUN ("function", Ffunction, 1, UNEVALLED, 0, /*
|
|
1187 Like `quote', but preferred for objects which are functions.
|
|
1188 In byte compilation, `function' causes its argument to be compiled.
|
|
1189 `quote' cannot do that.
|
|
1190 */
|
|
1191 (args))
|
|
1192 {
|
|
1193 return XCAR (args);
|
|
1194 }
|
|
1195
|
|
1196
|
|
1197 /************************************************************************/
|
|
1198 /* Defining functions/variables */
|
|
1199 /************************************************************************/
|
|
1200 static Lisp_Object
|
|
1201 define_function (Lisp_Object name, Lisp_Object defn)
|
|
1202 {
|
|
1203 Ffset (name, defn);
|
|
1204 LOADHIST_ATTACH (name);
|
|
1205 return name;
|
|
1206 }
|
|
1207
|
|
1208 DEFUN ("defun", Fdefun, 2, UNEVALLED, 0, /*
|
|
1209 \(defun NAME ARGLIST [DOCSTRING] BODY...): define NAME as a function.
|
|
1210 The definition is (lambda ARGLIST [DOCSTRING] BODY...).
|
|
1211 See also the function `interactive'.
|
|
1212 */
|
|
1213 (args))
|
|
1214 {
|
|
1215 /* This function can GC */
|
|
1216 return define_function (XCAR (args),
|
|
1217 Fcons (Qlambda, XCDR (args)));
|
|
1218 }
|
|
1219
|
|
1220 DEFUN ("defmacro", Fdefmacro, 2, UNEVALLED, 0, /*
|
|
1221 \(defmacro NAME ARGLIST [DOCSTRING] BODY...): define NAME as a macro.
|
|
1222 The definition is (macro lambda ARGLIST [DOCSTRING] BODY...).
|
|
1223 When the macro is called, as in (NAME ARGS...),
|
|
1224 the function (lambda ARGLIST BODY...) is applied to
|
|
1225 the list ARGS... as it appears in the expression,
|
|
1226 and the result should be a form to be evaluated instead of the original.
|
|
1227 */
|
|
1228 (args))
|
|
1229 {
|
|
1230 /* This function can GC */
|
|
1231 return define_function (XCAR (args),
|
|
1232 Fcons (Qmacro, Fcons (Qlambda, XCDR (args))));
|
|
1233 }
|
|
1234
|
|
1235 DEFUN ("defvar", Fdefvar, 1, UNEVALLED, 0, /*
|
|
1236 \(defvar SYMBOL INITVALUE DOCSTRING): define SYMBOL as a variable.
|
|
1237 You are not required to define a variable in order to use it,
|
|
1238 but the definition can supply documentation and an initial value
|
|
1239 in a way that tags can recognize.
|
|
1240
|
|
1241 INITVALUE is evaluated, and used to set SYMBOL, only if SYMBOL's value is
|
|
1242 void. (However, when you evaluate a defvar interactively, it acts like a
|
|
1243 defconst: SYMBOL's value is always set regardless of whether it's currently
|
|
1244 void.)
|
|
1245 If SYMBOL is buffer-local, its default value is what is set;
|
|
1246 buffer-local values are not affected.
|
|
1247 INITVALUE and DOCSTRING are optional.
|
|
1248 If DOCSTRING starts with *, this variable is identified as a user option.
|
442
|
1249 This means that M-x set-variable recognizes it.
|
428
|
1250 If INITVALUE is missing, SYMBOL's value is not set.
|
|
1251
|
|
1252 In lisp-interaction-mode defvar is treated as defconst.
|
|
1253 */
|
|
1254 (args))
|
|
1255 {
|
|
1256 /* This function can GC */
|
|
1257 Lisp_Object sym = XCAR (args);
|
|
1258
|
|
1259 if (!NILP (args = XCDR (args)))
|
|
1260 {
|
|
1261 Lisp_Object val = XCAR (args);
|
|
1262
|
|
1263 if (NILP (Fdefault_boundp (sym)))
|
|
1264 {
|
|
1265 struct gcpro gcpro1;
|
|
1266 GCPRO1 (val);
|
|
1267 val = Feval (val);
|
|
1268 Fset_default (sym, val);
|
|
1269 UNGCPRO;
|
|
1270 }
|
|
1271
|
|
1272 if (!NILP (args = XCDR (args)))
|
|
1273 {
|
|
1274 Lisp_Object doc = XCAR (args);
|
|
1275 Fput (sym, Qvariable_documentation, doc);
|
|
1276 if (!NILP (args = XCDR (args)))
|
563
|
1277 signal_error (Qwrong_number_of_arguments, "too many arguments", Qunbound);
|
428
|
1278 }
|
|
1279 }
|
|
1280
|
|
1281 #ifdef I18N3
|
|
1282 if (!NILP (Vfile_domain))
|
|
1283 Fput (sym, Qvariable_domain, Vfile_domain);
|
|
1284 #endif
|
|
1285
|
|
1286 LOADHIST_ATTACH (sym);
|
|
1287 return sym;
|
|
1288 }
|
|
1289
|
|
1290 DEFUN ("defconst", Fdefconst, 2, UNEVALLED, 0, /*
|
|
1291 \(defconst SYMBOL INITVALUE DOCSTRING): define SYMBOL as a constant
|
|
1292 variable.
|
|
1293 The intent is that programs do not change this value, but users may.
|
|
1294 Always sets the value of SYMBOL to the result of evalling INITVALUE.
|
|
1295 If SYMBOL is buffer-local, its default value is what is set;
|
|
1296 buffer-local values are not affected.
|
|
1297 DOCSTRING is optional.
|
|
1298 If DOCSTRING starts with *, this variable is identified as a user option.
|
442
|
1299 This means that M-x set-variable recognizes it.
|
428
|
1300
|
|
1301 Note: do not use `defconst' for user options in libraries that are not
|
|
1302 normally loaded, since it is useful for users to be able to specify
|
|
1303 their own values for such variables before loading the library.
|
|
1304 Since `defconst' unconditionally assigns the variable,
|
|
1305 it would override the user's choice.
|
|
1306 */
|
|
1307 (args))
|
|
1308 {
|
|
1309 /* This function can GC */
|
|
1310 Lisp_Object sym = XCAR (args);
|
|
1311 Lisp_Object val = Feval (XCAR (args = XCDR (args)));
|
|
1312 struct gcpro gcpro1;
|
|
1313
|
|
1314 GCPRO1 (val);
|
|
1315
|
|
1316 Fset_default (sym, val);
|
|
1317
|
|
1318 UNGCPRO;
|
|
1319
|
|
1320 if (!NILP (args = XCDR (args)))
|
|
1321 {
|
|
1322 Lisp_Object doc = XCAR (args);
|
|
1323 Fput (sym, Qvariable_documentation, doc);
|
|
1324 if (!NILP (args = XCDR (args)))
|
563
|
1325 signal_error (Qwrong_number_of_arguments, "too many arguments", Qunbound);
|
428
|
1326 }
|
|
1327
|
|
1328 #ifdef I18N3
|
|
1329 if (!NILP (Vfile_domain))
|
|
1330 Fput (sym, Qvariable_domain, Vfile_domain);
|
|
1331 #endif
|
|
1332
|
|
1333 LOADHIST_ATTACH (sym);
|
|
1334 return sym;
|
|
1335 }
|
|
1336
|
|
1337 DEFUN ("user-variable-p", Fuser_variable_p, 1, 1, 0, /*
|
|
1338 Return t if VARIABLE is intended to be set and modified by users.
|
|
1339 \(The alternative is a variable used internally in a Lisp program.)
|
|
1340 Determined by whether the first character of the documentation
|
|
1341 for the variable is `*'.
|
|
1342 */
|
|
1343 (variable))
|
|
1344 {
|
|
1345 Lisp_Object documentation = Fget (variable, Qvariable_documentation, Qnil);
|
|
1346
|
|
1347 return
|
|
1348 ((INTP (documentation) && XINT (documentation) < 0) ||
|
|
1349
|
|
1350 (STRINGP (documentation) &&
|
826
|
1351 (string_byte (documentation, 0) == '*')) ||
|
428
|
1352
|
|
1353 /* If (STRING . INTEGER), a negative integer means a user variable. */
|
|
1354 (CONSP (documentation)
|
|
1355 && STRINGP (XCAR (documentation))
|
|
1356 && INTP (XCDR (documentation))
|
|
1357 && XINT (XCDR (documentation)) < 0)) ?
|
|
1358 Qt : Qnil;
|
|
1359 }
|
|
1360
|
|
1361 DEFUN ("macroexpand-internal", Fmacroexpand_internal, 1, 2, 0, /*
|
|
1362 Return result of expanding macros at top level of FORM.
|
|
1363 If FORM is not a macro call, it is returned unchanged.
|
|
1364 Otherwise, the macro is expanded and the expansion is considered
|
|
1365 in place of FORM. When a non-macro-call results, it is returned.
|
|
1366
|
442
|
1367 The second optional arg ENVIRONMENT specifies an environment of macro
|
428
|
1368 definitions to shadow the loaded ones for use in file byte-compilation.
|
|
1369 */
|
442
|
1370 (form, environment))
|
428
|
1371 {
|
|
1372 /* This function can GC */
|
|
1373 /* With cleanups from Hallvard Furuseth. */
|
|
1374 REGISTER Lisp_Object expander, sym, def, tem;
|
|
1375
|
|
1376 while (1)
|
|
1377 {
|
|
1378 /* Come back here each time we expand a macro call,
|
|
1379 in case it expands into another macro call. */
|
|
1380 if (!CONSP (form))
|
|
1381 break;
|
|
1382 /* Set SYM, give DEF and TEM right values in case SYM is not a symbol. */
|
|
1383 def = sym = XCAR (form);
|
|
1384 tem = Qnil;
|
|
1385 /* Trace symbols aliases to other symbols
|
|
1386 until we get a symbol that is not an alias. */
|
|
1387 while (SYMBOLP (def))
|
|
1388 {
|
|
1389 QUIT;
|
|
1390 sym = def;
|
442
|
1391 tem = Fassq (sym, environment);
|
428
|
1392 if (NILP (tem))
|
|
1393 {
|
|
1394 def = XSYMBOL (sym)->function;
|
|
1395 if (!UNBOUNDP (def))
|
|
1396 continue;
|
|
1397 }
|
|
1398 break;
|
|
1399 }
|
442
|
1400 /* Right now TEM is the result from SYM in ENVIRONMENT,
|
428
|
1401 and if TEM is nil then DEF is SYM's function definition. */
|
|
1402 if (NILP (tem))
|
|
1403 {
|
442
|
1404 /* SYM is not mentioned in ENVIRONMENT.
|
428
|
1405 Look at its function definition. */
|
|
1406 if (UNBOUNDP (def)
|
|
1407 || !CONSP (def))
|
|
1408 /* Not defined or definition not suitable */
|
|
1409 break;
|
|
1410 if (EQ (XCAR (def), Qautoload))
|
|
1411 {
|
|
1412 /* Autoloading function: will it be a macro when loaded? */
|
|
1413 tem = Felt (def, make_int (4));
|
|
1414 if (EQ (tem, Qt) || EQ (tem, Qmacro))
|
|
1415 {
|
|
1416 /* Yes, load it and try again. */
|
970
|
1417 /* do_autoload GCPROs both arguments */
|
428
|
1418 do_autoload (def, sym);
|
|
1419 continue;
|
|
1420 }
|
|
1421 else
|
|
1422 break;
|
|
1423 }
|
|
1424 else if (!EQ (XCAR (def), Qmacro))
|
|
1425 break;
|
|
1426 else expander = XCDR (def);
|
|
1427 }
|
|
1428 else
|
|
1429 {
|
|
1430 expander = XCDR (tem);
|
|
1431 if (NILP (expander))
|
|
1432 break;
|
|
1433 }
|
|
1434 form = apply1 (expander, XCDR (form));
|
|
1435 }
|
|
1436 return form;
|
|
1437 }
|
|
1438
|
|
1439
|
|
1440 /************************************************************************/
|
|
1441 /* Non-local exits */
|
|
1442 /************************************************************************/
|
|
1443
|
1318
|
1444 #ifdef ERROR_CHECK_TRAPPING_PROBLEMS
|
|
1445
|
|
1446 int
|
|
1447 proper_redisplay_wrapping_in_place (void)
|
|
1448 {
|
|
1449 return !in_display
|
|
1450 || ((get_inhibit_flags () & INTERNAL_INHIBIT_ERRORS)
|
|
1451 && (get_inhibit_flags () & INTERNAL_INHIBIT_THROWS));
|
|
1452 }
|
|
1453
|
|
1454 static void
|
|
1455 check_proper_critical_section_nonlocal_exit_protection (void)
|
|
1456 {
|
|
1457 assert_with_message
|
|
1458 (proper_redisplay_wrapping_in_place (),
|
|
1459 "Attempted non-local exit from within redisplay without being properly wrapped");
|
|
1460 }
|
|
1461
|
|
1462 static void
|
|
1463 check_proper_critical_section_lisp_protection (void)
|
|
1464 {
|
|
1465 assert_with_message
|
|
1466 (proper_redisplay_wrapping_in_place (),
|
|
1467 "Attempt to call Lisp code from within redisplay without being properly wrapped");
|
|
1468 }
|
|
1469
|
|
1470 #endif /* ERROR_CHECK_TRAPPING_PROBLEMS */
|
|
1471
|
428
|
1472 DEFUN ("catch", Fcatch, 1, UNEVALLED, 0, /*
|
|
1473 \(catch TAG BODY...): eval BODY allowing nonlocal exits using `throw'.
|
|
1474 TAG is evalled to get the tag to use. Then the BODY is executed.
|
2297
|
1475 Within BODY, (throw TAG) with same (`eq') tag exits BODY and this `catch'.
|
428
|
1476 If no throw happens, `catch' returns the value of the last BODY form.
|
|
1477 If a throw happens, it specifies the value to return from `catch'.
|
|
1478 */
|
|
1479 (args))
|
|
1480 {
|
|
1481 /* This function can GC */
|
|
1482 Lisp_Object tag = Feval (XCAR (args));
|
|
1483 Lisp_Object body = XCDR (args);
|
2532
|
1484 return internal_catch (tag, Fprogn, body, 0, 0, 0);
|
428
|
1485 }
|
|
1486
|
|
1487 /* Set up a catch, then call C function FUNC on argument ARG.
|
|
1488 FUNC should return a Lisp_Object.
|
|
1489 This is how catches are done from within C code. */
|
|
1490
|
|
1491 Lisp_Object
|
|
1492 internal_catch (Lisp_Object tag,
|
|
1493 Lisp_Object (*func) (Lisp_Object arg),
|
|
1494 Lisp_Object arg,
|
853
|
1495 int * volatile threw,
|
2532
|
1496 Lisp_Object * volatile thrown_tag,
|
|
1497 Lisp_Object * volatile backtrace_before_throw)
|
428
|
1498 {
|
|
1499 /* This structure is made part of the chain `catchlist'. */
|
|
1500 struct catchtag c;
|
|
1501
|
|
1502 /* Fill in the components of c, and put it on the list. */
|
|
1503 c.next = catchlist;
|
|
1504 c.tag = tag;
|
853
|
1505 c.actual_tag = Qnil;
|
2532
|
1506 c.backtrace = Qnil;
|
428
|
1507 c.val = Qnil;
|
|
1508 c.backlist = backtrace_list;
|
|
1509 #if 0 /* FSFmacs */
|
|
1510 /* #### */
|
|
1511 c.handlerlist = handlerlist;
|
|
1512 #endif
|
|
1513 c.lisp_eval_depth = lisp_eval_depth;
|
|
1514 c.pdlcount = specpdl_depth();
|
|
1515 #if 0 /* FSFmacs */
|
|
1516 c.poll_suppress_count = async_timer_suppress_count;
|
|
1517 #endif
|
|
1518 c.gcpro = gcprolist;
|
|
1519 catchlist = &c;
|
|
1520
|
|
1521 /* Call FUNC. */
|
|
1522 if (SETJMP (c.jmp))
|
|
1523 {
|
|
1524 /* Throw works by a longjmp that comes right here. */
|
|
1525 if (threw) *threw = 1;
|
853
|
1526 if (thrown_tag) *thrown_tag = c.actual_tag;
|
2532
|
1527 if (backtrace_before_throw) *backtrace_before_throw = c.backtrace;
|
428
|
1528 return c.val;
|
|
1529 }
|
|
1530 c.val = (*func) (arg);
|
|
1531 if (threw) *threw = 0;
|
853
|
1532 if (thrown_tag) *thrown_tag = Qnil;
|
428
|
1533 catchlist = c.next;
|
853
|
1534 check_catchlist_sanity ();
|
428
|
1535 return c.val;
|
|
1536 }
|
|
1537
|
|
1538
|
|
1539 /* Unwind the specbind, catch, and handler stacks back to CATCH, and
|
|
1540 jump to that CATCH, returning VALUE as the value of that catch.
|
|
1541
|
2297
|
1542 This is the guts of Fthrow and Fsignal; they differ only in the
|
|
1543 way they choose the catch tag to throw to. A catch tag for a
|
428
|
1544 condition-case form has a TAG of Qnil.
|
|
1545
|
|
1546 Before each catch is discarded, unbind all special bindings and
|
|
1547 execute all unwind-protect clauses made above that catch. Unwind
|
|
1548 the handler stack as we go, so that the proper handlers are in
|
|
1549 effect for each unwind-protect clause we run. At the end, restore
|
|
1550 some static info saved in CATCH, and longjmp to the location
|
|
1551 specified in the
|
|
1552
|
|
1553 This is used for correct unwinding in Fthrow and Fsignal. */
|
|
1554
|
2268
|
1555 static DECLARE_DOESNT_RETURN (unwind_to_catch (struct catchtag *, Lisp_Object,
|
|
1556 Lisp_Object));
|
|
1557
|
|
1558 static DOESNT_RETURN
|
853
|
1559 unwind_to_catch (struct catchtag *c, Lisp_Object val, Lisp_Object tag)
|
428
|
1560 {
|
|
1561 REGISTER int last_time;
|
|
1562
|
|
1563 /* Unwind the specbind, catch, and handler stacks back to CATCH
|
|
1564 Before each catch is discarded, unbind all special bindings
|
|
1565 and execute all unwind-protect clauses made above that catch.
|
|
1566 At the end, restore some static info saved in CATCH,
|
|
1567 and longjmp to the location specified.
|
|
1568 */
|
|
1569
|
|
1570 /* Save the value somewhere it will be GC'ed.
|
|
1571 (Can't overwrite tag slot because an unwind-protect may
|
|
1572 want to throw to this same tag, which isn't yet invalid.) */
|
|
1573 c->val = val;
|
853
|
1574 c->actual_tag = tag;
|
428
|
1575
|
|
1576 #if 0 /* FSFmacs */
|
|
1577 /* Restore the polling-suppression count. */
|
|
1578 set_poll_suppress_count (catch->poll_suppress_count);
|
|
1579 #endif
|
|
1580
|
617
|
1581 #if 1
|
428
|
1582 do
|
|
1583 {
|
|
1584 last_time = catchlist == c;
|
|
1585
|
|
1586 /* Unwind the specpdl stack, and then restore the proper set of
|
|
1587 handlers. */
|
771
|
1588 unbind_to (catchlist->pdlcount);
|
428
|
1589 catchlist = catchlist->next;
|
853
|
1590 check_catchlist_sanity ();
|
428
|
1591 }
|
|
1592 while (! last_time);
|
617
|
1593 #else
|
|
1594 /* Former XEmacs code. This is definitely not as correct because
|
|
1595 there may be a number of catches we're unwinding, and a number
|
|
1596 of unwind-protects in the process. By not undoing the catches till
|
|
1597 the end, there may be invalid catches still current. (This would
|
|
1598 be a particular problem with code like this:
|
|
1599
|
|
1600 (catch 'foo
|
|
1601 (call-some-code-which-does...
|
|
1602 (catch 'bar
|
|
1603 (unwind-protect
|
|
1604 (call-some-code-which-does...
|
|
1605 (catch 'bar
|
|
1606 (call-some-code-which-does...
|
|
1607 (throw 'foo nil))))
|
|
1608 (throw 'bar nil)))))
|
|
1609
|
|
1610 This would try to throw to the inner (catch 'bar)!
|
|
1611
|
|
1612 --ben
|
|
1613 */
|
428
|
1614 /* Unwind the specpdl stack */
|
771
|
1615 unbind_to (c->pdlcount);
|
428
|
1616 catchlist = c->next;
|
853
|
1617 check_catchlist_sanity ();
|
617
|
1618 #endif /* Former code */
|
428
|
1619
|
1204
|
1620 UNWIND_GCPRO_TO (c->gcpro);
|
1292
|
1621 if (profiling_active)
|
|
1622 {
|
|
1623 while (backtrace_list != c->backlist)
|
|
1624 {
|
|
1625 profile_record_unwind (backtrace_list);
|
|
1626 backtrace_list = backtrace_list->next;
|
|
1627 }
|
|
1628 }
|
|
1629 else
|
|
1630 backtrace_list = c->backlist;
|
428
|
1631 lisp_eval_depth = c->lisp_eval_depth;
|
|
1632
|
442
|
1633 #ifdef DEFEND_AGAINST_THROW_RECURSION
|
428
|
1634 throw_level = 0;
|
|
1635 #endif
|
|
1636 LONGJMP (c->jmp, 1);
|
|
1637 }
|
|
1638
|
2268
|
1639 static DECLARE_DOESNT_RETURN (throw_or_bomb_out (Lisp_Object, Lisp_Object, int,
|
|
1640 Lisp_Object, Lisp_Object));
|
|
1641
|
428
|
1642 static DOESNT_RETURN
|
|
1643 throw_or_bomb_out (Lisp_Object tag, Lisp_Object val, int bomb_out_p,
|
|
1644 Lisp_Object sig, Lisp_Object data)
|
|
1645 {
|
442
|
1646 #ifdef DEFEND_AGAINST_THROW_RECURSION
|
428
|
1647 /* die if we recurse more than is reasonable */
|
|
1648 if (++throw_level > 20)
|
2500
|
1649 ABORT ();
|
428
|
1650 #endif
|
|
1651
|
1318
|
1652 #ifdef ERROR_CHECK_TRAPPING_PROBLEMS
|
1123
|
1653 check_proper_critical_section_nonlocal_exit_protection ();
|
1318
|
1654 #endif
|
1123
|
1655
|
428
|
1656 /* If bomb_out_p is t, this is being called from Fsignal as a
|
|
1657 "last resort" when there is no handler for this error and
|
|
1658 the debugger couldn't be invoked, so we are throwing to
|
|
1659 'top-level. If this tag doesn't exist (happens during the
|
|
1660 initialization stages) we would get in an infinite recursive
|
|
1661 Fsignal/Fthrow loop, so instead we bomb out to the
|
|
1662 really-early-error-handler.
|
|
1663
|
|
1664 Note that in fact the only time that the "last resort"
|
|
1665 occurs is when there's no catch for 'top-level -- the
|
|
1666 'top-level catch and the catch-all error handler are
|
|
1667 established at the same time, in initial_command_loop/
|
|
1668 top_level_1.
|
|
1669
|
853
|
1670 [[#### Fix this horrifitude!]]
|
|
1671
|
|
1672 I don't think this is horrifitude, just defensive programming. --ben
|
428
|
1673 */
|
|
1674
|
|
1675 while (1)
|
|
1676 {
|
|
1677 REGISTER struct catchtag *c;
|
|
1678
|
|
1679 #if 0 /* FSFmacs */
|
|
1680 if (!NILP (tag)) /* #### */
|
|
1681 #endif
|
|
1682 for (c = catchlist; c; c = c->next)
|
|
1683 {
|
2532
|
1684 if (EQ (c->tag, Vcatch_everything_tag))
|
|
1685 c->backtrace = maybe_get_trapping_problems_backtrace ();
|
853
|
1686 if (EQ (c->tag, tag) || EQ (c->tag, Vcatch_everything_tag))
|
|
1687 unwind_to_catch (c, val, tag);
|
428
|
1688 }
|
|
1689 if (!bomb_out_p)
|
|
1690 tag = Fsignal (Qno_catch, list2 (tag, val));
|
|
1691 else
|
|
1692 call1 (Qreally_early_error_handler, Fcons (sig, data));
|
|
1693 }
|
|
1694 }
|
|
1695
|
|
1696 /* See above, where CATCHLIST is defined, for a description of how
|
|
1697 Fthrow() works.
|
|
1698
|
|
1699 Fthrow() is also called by Fsignal(), to do a non-local jump
|
|
1700 back to the appropriate condition-case handler after (maybe)
|
|
1701 the debugger is entered. In that case, TAG is the value
|
|
1702 of Vcondition_handlers that was in place just after the
|
|
1703 condition-case handler was set up. The car of this will be
|
|
1704 some data referring to the handler: Its car will be Qunbound
|
|
1705 (thus, this tag can never be generated by Lisp code), and
|
|
1706 its CDR will be the HANDLERS argument to condition_case_1()
|
|
1707 (either Qerror, Qt, or a list of handlers as in `condition-case').
|
|
1708 This works fine because Fthrow() does not care what TAG was
|
|
1709 passed to it: it just looks up the catch list for something
|
|
1710 that is EQ() to TAG. When it finds it, it will longjmp()
|
|
1711 back to the place that established the catch (in this case,
|
|
1712 condition_case_1). See below for more info.
|
|
1713 */
|
|
1714
|
2268
|
1715 DEFUN_NORETURN ("throw", Fthrow, 2, 2, 0, /*
|
444
|
1716 Throw to the catch for TAG and return VALUE from it.
|
2297
|
1717 Both TAG and VALUE are evalled. Tags are the same iff they are `eq'.
|
428
|
1718 */
|
444
|
1719 (tag, value))
|
|
1720 {
|
|
1721 throw_or_bomb_out (tag, value, 0, Qnil, Qnil); /* Doesn't return */
|
2268
|
1722 RETURN_NOT_REACHED (Qnil);
|
428
|
1723 }
|
|
1724
|
|
1725 DEFUN ("unwind-protect", Funwind_protect, 1, UNEVALLED, 0, /*
|
|
1726 Do BODYFORM, protecting with UNWINDFORMS.
|
|
1727 Usage looks like (unwind-protect BODYFORM UNWINDFORMS...).
|
|
1728 If BODYFORM completes normally, its value is returned
|
|
1729 after executing the UNWINDFORMS.
|
|
1730 If BODYFORM exits nonlocally, the UNWINDFORMS are executed anyway.
|
|
1731 */
|
|
1732 (args))
|
|
1733 {
|
|
1734 /* This function can GC */
|
|
1735 int speccount = specpdl_depth();
|
|
1736
|
|
1737 record_unwind_protect (Fprogn, XCDR (args));
|
771
|
1738 return unbind_to_1 (speccount, Feval (XCAR (args)));
|
428
|
1739 }
|
|
1740
|
|
1741
|
|
1742 /************************************************************************/
|
1292
|
1743 /* Trapping errors */
|
428
|
1744 /************************************************************************/
|
|
1745
|
|
1746 static Lisp_Object
|
|
1747 condition_bind_unwind (Lisp_Object loser)
|
|
1748 {
|
617
|
1749 /* There is no problem freeing stuff here like there is in
|
|
1750 condition_case_unwind(), because there are no outside pointers
|
|
1751 (like the tag below in the catchlist) pointing to the objects. */
|
853
|
1752
|
428
|
1753 /* ((handler-fun . handler-args) ... other handlers) */
|
|
1754 Lisp_Object tem = XCAR (loser);
|
853
|
1755 int first = 1;
|
428
|
1756
|
|
1757 while (CONSP (tem))
|
|
1758 {
|
853
|
1759 Lisp_Object victim = tem;
|
|
1760 if (first && OPAQUE_PTRP (XCAR (victim)))
|
|
1761 free_opaque_ptr (XCAR (victim));
|
|
1762 first = 0;
|
|
1763 tem = XCDR (victim);
|
428
|
1764 free_cons (victim);
|
|
1765 }
|
|
1766
|
|
1767 if (EQ (loser, Vcondition_handlers)) /* may have been rebound to some tail */
|
853
|
1768 Vcondition_handlers = XCDR (loser);
|
|
1769
|
|
1770 free_cons (loser);
|
428
|
1771 return Qnil;
|
|
1772 }
|
|
1773
|
|
1774 static Lisp_Object
|
|
1775 condition_case_unwind (Lisp_Object loser)
|
|
1776 {
|
|
1777 /* ((<unbound> . clauses) ... other handlers */
|
617
|
1778 /* NO! Doing this now leaves the tag deleted in a still-active
|
|
1779 catch. With the recent changes to unwind_to_catch(), the
|
|
1780 evil situation might not happen any more; it certainly could
|
|
1781 happen before because it did. But it's very precarious to rely
|
|
1782 on something like this. #### Instead we should rewrite, adopting
|
|
1783 the FSF's mechanism with a struct handler instead of
|
|
1784 Vcondition_handlers; then we have NO Lisp-object structures used
|
|
1785 to hold all of the values, and there's no possibility either of
|
|
1786 crashes from freeing objects too quickly, or objects not getting
|
|
1787 freed and hanging around till the next GC.
|
|
1788
|
|
1789 In practice, the extra consing here should not matter because
|
|
1790 it only happens when we throw past the condition-case, which almost
|
|
1791 always is the result of an error. Most of the time, there will be
|
|
1792 no error, and we will free the objects below in the main function.
|
|
1793
|
|
1794 --ben
|
|
1795
|
|
1796 DO NOT DO: free_cons (XCAR (loser));
|
|
1797 */
|
|
1798
|
428
|
1799 if (EQ (loser, Vcondition_handlers)) /* may have been rebound to some tail */
|
617
|
1800 Vcondition_handlers = XCDR (loser);
|
|
1801
|
|
1802 /* DO NOT DO: free_cons (loser); */
|
428
|
1803 return Qnil;
|
|
1804 }
|
|
1805
|
|
1806 /* Split out from condition_case_3 so that primitive C callers
|
|
1807 don't have to cons up a lisp handler form to be evaluated. */
|
|
1808
|
|
1809 /* Call a function BFUN of one argument BARG, trapping errors as
|
|
1810 specified by HANDLERS. If no error occurs that is indicated by
|
|
1811 HANDLERS as something to be caught, the return value of this
|
|
1812 function is the return value from BFUN. If such an error does
|
|
1813 occur, HFUN is called, and its return value becomes the
|
|
1814 return value of condition_case_1(). The second argument passed
|
|
1815 to HFUN will always be HARG. The first argument depends on
|
|
1816 HANDLERS:
|
|
1817
|
|
1818 If HANDLERS is Qt, all errors (this includes QUIT, but not
|
|
1819 non-local exits with `throw') cause HFUN to be invoked, and VAL
|
|
1820 (the first argument to HFUN) is a cons (SIG . DATA) of the
|
|
1821 arguments passed to `signal'. The debugger is not invoked even if
|
|
1822 `debug-on-error' was set.
|
|
1823
|
|
1824 A HANDLERS value of Qerror is the same as Qt except that the
|
|
1825 debugger is invoked if `debug-on-error' was set.
|
|
1826
|
|
1827 Otherwise, HANDLERS should be a list of lists (CONDITION-NAME BODY ...)
|
|
1828 exactly as in `condition-case', and errors will be trapped
|
|
1829 as indicated in HANDLERS. VAL (the first argument to HFUN) will
|
|
1830 be a cons whose car is the cons (SIG . DATA) and whose CDR is the
|
|
1831 list (BODY ...) from the appropriate slot in HANDLERS.
|
|
1832
|
|
1833 This function pushes HANDLERS onto the front of Vcondition_handlers
|
|
1834 (actually with a Qunbound marker as well -- see Fthrow() above
|
|
1835 for why), establishes a catch whose tag is this new value of
|
|
1836 Vcondition_handlers, and calls BFUN. When Fsignal() is called,
|
|
1837 it calls Fthrow(), setting TAG to this same new value of
|
|
1838 Vcondition_handlers and setting VAL to the same thing that will
|
|
1839 be passed to HFUN, as above. Fthrow() longjmp()s back to the
|
|
1840 jump point we just established, and we in turn just call the
|
|
1841 HFUN and return its value.
|
|
1842
|
|
1843 For a real condition-case, HFUN will always be
|
|
1844 run_condition_case_handlers() and HARG is the argument VAR
|
|
1845 to condition-case. That function just binds VAR to the cons
|
|
1846 (SIG . DATA) that is the CAR of VAL, and calls the handler
|
|
1847 (BODY ...) that is the CDR of VAL. Note that before calling
|
|
1848 Fthrow(), Fsignal() restored Vcondition_handlers to the value
|
|
1849 it had *before* condition_case_1() was called. This maintains
|
|
1850 consistency (so that the state of things at exit of
|
|
1851 condition_case_1() is the same as at entry), and implies
|
|
1852 that the handler can signal the same error again (possibly
|
|
1853 after processing of its own), without getting in an infinite
|
|
1854 loop. */
|
|
1855
|
|
1856 Lisp_Object
|
|
1857 condition_case_1 (Lisp_Object handlers,
|
|
1858 Lisp_Object (*bfun) (Lisp_Object barg),
|
|
1859 Lisp_Object barg,
|
|
1860 Lisp_Object (*hfun) (Lisp_Object val, Lisp_Object harg),
|
|
1861 Lisp_Object harg)
|
|
1862 {
|
|
1863 int speccount = specpdl_depth();
|
|
1864 struct catchtag c;
|
617
|
1865 struct gcpro gcpro1, gcpro2, gcpro3;
|
428
|
1866
|
|
1867 #if 0 /* FSFmacs */
|
|
1868 c.tag = Qnil;
|
|
1869 #else
|
|
1870 /* Do consing now so out-of-memory error happens up front */
|
|
1871 /* (unbound . stuff) is a special condition-case kludge marker
|
|
1872 which is known specially by Fsignal.
|
617
|
1873 [[ This is an abomination, but to fix it would require either
|
428
|
1874 making condition_case cons (a union of the conditions of the clauses)
|
617
|
1875 or changing the byte-compiler output (no thanks).]]
|
|
1876
|
|
1877 The above comment is clearly wrong. FSF does not do it this way
|
|
1878 and did not change the byte-compiler output. Instead they use a
|
|
1879 `struct handler' to hold the various values (in place of our
|
|
1880 Vcondition_handlers) and chain them together, with pointers from
|
|
1881 the `struct catchtag' to the `struct handler'. We should perhaps
|
|
1882 consider moving to something similar, but not before I merge my
|
|
1883 stderr-proc workspace, which contains changes to these
|
|
1884 functions. --ben */
|
428
|
1885 c.tag = noseeum_cons (noseeum_cons (Qunbound, handlers),
|
|
1886 Vcondition_handlers);
|
|
1887 #endif
|
|
1888 c.val = Qnil;
|
853
|
1889 c.actual_tag = Qnil;
|
2532
|
1890 c.backtrace = Qnil;
|
428
|
1891 c.backlist = backtrace_list;
|
|
1892 #if 0 /* FSFmacs */
|
|
1893 /* #### */
|
|
1894 c.handlerlist = handlerlist;
|
|
1895 #endif
|
|
1896 c.lisp_eval_depth = lisp_eval_depth;
|
|
1897 c.pdlcount = specpdl_depth();
|
|
1898 #if 0 /* FSFmacs */
|
|
1899 c.poll_suppress_count = async_timer_suppress_count;
|
|
1900 #endif
|
|
1901 c.gcpro = gcprolist;
|
|
1902 /* #### FSFmacs does the following statement *after* the setjmp(). */
|
|
1903 c.next = catchlist;
|
|
1904
|
|
1905 if (SETJMP (c.jmp))
|
|
1906 {
|
|
1907 /* throw does ungcpro, etc */
|
|
1908 return (*hfun) (c.val, harg);
|
|
1909 }
|
|
1910
|
|
1911 record_unwind_protect (condition_case_unwind, c.tag);
|
|
1912
|
|
1913 catchlist = &c;
|
|
1914 #if 0 /* FSFmacs */
|
|
1915 h.handler = handlers;
|
|
1916 h.var = Qnil;
|
|
1917 h.next = handlerlist;
|
|
1918 h.tag = &c;
|
|
1919 handlerlist = &h;
|
|
1920 #else
|
|
1921 Vcondition_handlers = c.tag;
|
|
1922 #endif
|
|
1923 GCPRO1 (harg); /* Somebody has to gc-protect */
|
|
1924 c.val = ((*bfun) (barg));
|
|
1925 UNGCPRO;
|
617
|
1926
|
|
1927 /* Once we change `catchlist' below, the stuff in c will not be GCPRO'd. */
|
|
1928 GCPRO3 (harg, c.val, c.tag);
|
|
1929
|
428
|
1930 catchlist = c.next;
|
853
|
1931 check_catchlist_sanity ();
|
617
|
1932 /* Note: The unbind also resets Vcondition_handlers. Maybe we should
|
|
1933 delete this here. */
|
428
|
1934 Vcondition_handlers = XCDR (c.tag);
|
771
|
1935 unbind_to (speccount);
|
617
|
1936
|
|
1937 UNGCPRO;
|
|
1938 /* free the conses *after* the unbind, because the unbind will run
|
|
1939 condition_case_unwind above. */
|
853
|
1940 free_cons (XCAR (c.tag));
|
|
1941 free_cons (c.tag);
|
617
|
1942 return c.val;
|
428
|
1943 }
|
|
1944
|
|
1945 static Lisp_Object
|
|
1946 run_condition_case_handlers (Lisp_Object val, Lisp_Object var)
|
|
1947 {
|
|
1948 /* This function can GC */
|
|
1949 #if 0 /* FSFmacs */
|
|
1950 if (!NILP (h.var))
|
|
1951 specbind (h.var, c.val);
|
|
1952 val = Fprogn (Fcdr (h.chosen_clause));
|
|
1953
|
|
1954 /* Note that this just undoes the binding of h.var; whoever
|
|
1955 longjmp()ed to us unwound the stack to c.pdlcount before
|
|
1956 throwing. */
|
771
|
1957 unbind_to (c.pdlcount);
|
428
|
1958 return val;
|
|
1959 #else
|
|
1960 int speccount;
|
|
1961
|
|
1962 CHECK_TRUE_LIST (val);
|
|
1963 if (NILP (var))
|
|
1964 return Fprogn (Fcdr (val)); /* tail call */
|
|
1965
|
|
1966 speccount = specpdl_depth();
|
|
1967 specbind (var, Fcar (val));
|
|
1968 val = Fprogn (Fcdr (val));
|
771
|
1969 return unbind_to_1 (speccount, val);
|
428
|
1970 #endif
|
|
1971 }
|
|
1972
|
|
1973 /* Here for bytecode to call non-consfully. This is exactly like
|
|
1974 condition-case except that it takes three arguments rather
|
|
1975 than a single list of arguments. */
|
|
1976 Lisp_Object
|
|
1977 condition_case_3 (Lisp_Object bodyform, Lisp_Object var, Lisp_Object handlers)
|
|
1978 {
|
|
1979 /* This function can GC */
|
|
1980 EXTERNAL_LIST_LOOP_2 (handler, handlers)
|
|
1981 {
|
|
1982 if (NILP (handler))
|
|
1983 ;
|
|
1984 else if (CONSP (handler))
|
|
1985 {
|
|
1986 Lisp_Object conditions = XCAR (handler);
|
|
1987 /* CONDITIONS must a condition name or a list of condition names */
|
|
1988 if (SYMBOLP (conditions))
|
|
1989 ;
|
|
1990 else
|
|
1991 {
|
|
1992 EXTERNAL_LIST_LOOP_2 (condition, conditions)
|
|
1993 if (!SYMBOLP (condition))
|
|
1994 goto invalid_condition_handler;
|
|
1995 }
|
|
1996 }
|
|
1997 else
|
|
1998 {
|
|
1999 invalid_condition_handler:
|
563
|
2000 sferror ("Invalid condition handler", handler);
|
428
|
2001 }
|
|
2002 }
|
|
2003
|
|
2004 CHECK_SYMBOL (var);
|
|
2005
|
|
2006 return condition_case_1 (handlers,
|
|
2007 Feval, bodyform,
|
|
2008 run_condition_case_handlers,
|
|
2009 var);
|
|
2010 }
|
|
2011
|
|
2012 DEFUN ("condition-case", Fcondition_case, 2, UNEVALLED, 0, /*
|
|
2013 Regain control when an error is signalled.
|
|
2014 Usage looks like (condition-case VAR BODYFORM HANDLERS...).
|
|
2015 Executes BODYFORM and returns its value if no error happens.
|
|
2016 Each element of HANDLERS looks like (CONDITION-NAME BODY...)
|
|
2017 where the BODY is made of Lisp expressions.
|
|
2018
|
771
|
2019 A typical usage of `condition-case' looks like this:
|
|
2020
|
|
2021 (condition-case nil
|
|
2022 ;; you need a progn here if you want more than one statement ...
|
|
2023 (progn
|
|
2024 (do-something)
|
|
2025 (do-something-else))
|
|
2026 (error
|
|
2027 (issue-warning-or)
|
|
2028 ;; but strangely, you don't need one here.
|
|
2029 (return-a-value-etc)
|
|
2030 ))
|
|
2031
|
428
|
2032 A handler is applicable to an error if CONDITION-NAME is one of the
|
|
2033 error's condition names. If an error happens, the first applicable
|
|
2034 handler is run. As a special case, a CONDITION-NAME of t matches
|
|
2035 all errors, even those without the `error' condition name on them
|
|
2036 \(e.g. `quit').
|
|
2037
|
|
2038 The car of a handler may be a list of condition names
|
|
2039 instead of a single condition name.
|
|
2040
|
|
2041 When a handler handles an error,
|
|
2042 control returns to the condition-case and the handler BODY... is executed
|
|
2043 with VAR bound to (SIGNALED-CONDITIONS . SIGNAL-DATA).
|
|
2044 VAR may be nil; then you do not get access to the signal information.
|
|
2045
|
|
2046 The value of the last BODY form is returned from the condition-case.
|
|
2047 See also the function `signal' for more info.
|
|
2048
|
|
2049 Note that at the time the condition handler is invoked, the Lisp stack
|
|
2050 and the current catches, condition-cases, and bindings have all been
|
|
2051 popped back to the state they were in just before the call to
|
|
2052 `condition-case'. This means that resignalling the error from
|
|
2053 within the handler will not result in an infinite loop.
|
|
2054
|
|
2055 If you want to establish an error handler that is called with the
|
|
2056 Lisp stack, bindings, etc. as they were when `signal' was called,
|
|
2057 rather than when the handler was set, use `call-with-condition-handler'.
|
|
2058 */
|
|
2059 (args))
|
|
2060 {
|
|
2061 /* This function can GC */
|
|
2062 Lisp_Object var = XCAR (args);
|
|
2063 Lisp_Object bodyform = XCAR (XCDR (args));
|
|
2064 Lisp_Object handlers = XCDR (XCDR (args));
|
|
2065 return condition_case_3 (bodyform, var, handlers);
|
|
2066 }
|
|
2067
|
|
2068 DEFUN ("call-with-condition-handler", Fcall_with_condition_handler, 2, MANY, 0, /*
|
|
2069 Regain control when an error is signalled, without popping the stack.
|
|
2070 Usage looks like (call-with-condition-handler HANDLER FUNCTION &rest ARGS).
|
|
2071 This function is similar to `condition-case', but the handler is invoked
|
|
2072 with the same environment (Lisp stack, bindings, catches, condition-cases)
|
|
2073 that was current when `signal' was called, rather than when the handler
|
|
2074 was established.
|
|
2075
|
|
2076 HANDLER should be a function of one argument, which is a cons of the args
|
|
2077 \(SIG . DATA) that were passed to `signal'. It is invoked whenever
|
|
2078 `signal' is called (this differs from `condition-case', which allows
|
|
2079 you to specify which errors are trapped). If the handler function
|
|
2080 returns, `signal' continues as if the handler were never invoked.
|
|
2081 \(It continues to look for handlers established earlier than this one,
|
|
2082 and invokes the standard error-handler if none is found.)
|
|
2083 */
|
|
2084 (int nargs, Lisp_Object *args)) /* Note! Args side-effected! */
|
|
2085 {
|
|
2086 /* This function can GC */
|
|
2087 int speccount = specpdl_depth();
|
|
2088 Lisp_Object tem;
|
|
2089
|
853
|
2090 tem = Ffunction_max_args (args[0]);
|
|
2091 if (! (XINT (Ffunction_min_args (args[0])) <= 1
|
|
2092 && (NILP (tem) || 1 <= XINT (tem))))
|
|
2093 invalid_argument ("Must be function of one argument", args[0]);
|
|
2094
|
|
2095 /* (handler-fun . handler-args) but currently there are no handler-args */
|
428
|
2096 tem = noseeum_cons (list1 (args[0]), Vcondition_handlers);
|
|
2097 record_unwind_protect (condition_bind_unwind, tem);
|
|
2098 Vcondition_handlers = tem;
|
|
2099
|
|
2100 /* Caller should have GC-protected args */
|
771
|
2101 return unbind_to_1 (speccount, Ffuncall (nargs - 1, args + 1));
|
428
|
2102 }
|
|
2103
|
853
|
2104 /* This is the C version of the above function. It calls FUN, passing it
|
|
2105 ARG, first setting up HANDLER to catch signals in the environment in
|
|
2106 which they were signalled. (HANDLER is only invoked if there was no
|
|
2107 handler (either from condition-case or call-with-condition-handler) set
|
|
2108 later on that handled the signal; therefore, this is a real error.
|
|
2109
|
|
2110 HANDLER is invoked with three arguments: the ERROR-SYMBOL and DATA as
|
|
2111 passed to `signal', and HANDLER_ARG. Originally I made HANDLER_ARG and
|
|
2112 ARG be void * to facilitate passing structures, but I changed to
|
|
2113 Lisp_Objects because all the other C interfaces to catch/condition-case/etc.
|
|
2114 take Lisp_Objects, and it is easy enough to use make_opaque_ptr() et al.
|
|
2115 to convert between Lisp_Objects and structure pointers. */
|
|
2116
|
|
2117 Lisp_Object
|
|
2118 call_with_condition_handler (Lisp_Object (*handler) (Lisp_Object, Lisp_Object,
|
|
2119 Lisp_Object),
|
|
2120 Lisp_Object handler_arg,
|
|
2121 Lisp_Object (*fun) (Lisp_Object),
|
|
2122 Lisp_Object arg)
|
|
2123 {
|
|
2124 /* This function can GC */
|
1111
|
2125 int speccount = specpdl_depth ();
|
853
|
2126 Lisp_Object tem;
|
|
2127
|
|
2128 /* ((handler-fun . (handler-arg . nil)) ... ) */
|
1111
|
2129 tem = noseeum_cons (noseeum_cons (make_opaque_ptr ((void *) handler),
|
853
|
2130 noseeum_cons (handler_arg, Qnil)),
|
|
2131 Vcondition_handlers);
|
|
2132 record_unwind_protect (condition_bind_unwind, tem);
|
|
2133 Vcondition_handlers = tem;
|
|
2134
|
|
2135 return unbind_to_1 (speccount, (*fun) (arg));
|
|
2136 }
|
|
2137
|
428
|
2138 static int
|
|
2139 condition_type_p (Lisp_Object type, Lisp_Object conditions)
|
|
2140 {
|
|
2141 if (EQ (type, Qt))
|
|
2142 /* (condition-case c # (t c)) catches -all- signals
|
|
2143 * Use with caution! */
|
|
2144 return 1;
|
|
2145
|
|
2146 if (SYMBOLP (type))
|
|
2147 return !NILP (Fmemq (type, conditions));
|
|
2148
|
|
2149 for (; CONSP (type); type = XCDR (type))
|
|
2150 if (!NILP (Fmemq (XCAR (type), conditions)))
|
|
2151 return 1;
|
|
2152
|
|
2153 return 0;
|
|
2154 }
|
|
2155
|
|
2156 static Lisp_Object
|
|
2157 return_from_signal (Lisp_Object value)
|
|
2158 {
|
|
2159 #if 1
|
|
2160 /* Most callers are not prepared to handle gc if this
|
|
2161 returns. So, since this feature is not very useful,
|
|
2162 take it out. */
|
|
2163 /* Have called debugger; return value to signaller */
|
|
2164 return value;
|
|
2165 #else /* But the reality is that that stinks, because: */
|
|
2166 /* GACK!!! Really want some way for debug-on-quit errors
|
|
2167 to be continuable!! */
|
563
|
2168 signal_error (Qunimplemented,
|
|
2169 "Returning a value from an error is no longer supported",
|
|
2170 Qunbound);
|
428
|
2171 #endif
|
|
2172 }
|
|
2173
|
|
2174
|
|
2175 /************************************************************************/
|
|
2176 /* the workhorse error-signaling function */
|
|
2177 /************************************************************************/
|
|
2178
|
853
|
2179 /* This exists only for debugging purposes, as a place to put a breakpoint
|
|
2180 that won't get signalled for errors occurring when
|
|
2181 call_with_suspended_errors() was invoked. */
|
|
2182
|
872
|
2183 /* Don't make static or it might be compiled away */
|
|
2184 void signal_1 (void);
|
|
2185
|
|
2186 void
|
853
|
2187 signal_1 (void)
|
|
2188 {
|
|
2189 }
|
|
2190
|
428
|
2191 /* #### This function has not been synched with FSF. It diverges
|
|
2192 significantly. */
|
|
2193
|
853
|
2194 /* The simplest external error function: it would be called
|
|
2195 signal_continuable_error() in the terminology below, but it's
|
|
2196 Lisp-callable. */
|
|
2197
|
|
2198 DEFUN ("signal", Fsignal, 2, 2, 0, /*
|
|
2199 Signal a continuable error. Args are ERROR-SYMBOL, and associated DATA.
|
|
2200 An error symbol is a symbol defined using `define-error'.
|
|
2201 DATA should be a list. Its elements are printed as part of the error message.
|
|
2202 If the signal is handled, DATA is made available to the handler.
|
|
2203 See also the function `signal-error', and the functions to handle errors:
|
|
2204 `condition-case' and `call-with-condition-handler'.
|
|
2205
|
|
2206 Note that this function can return, if the debugger is invoked and the
|
|
2207 user invokes the "return from signal" option.
|
|
2208 */
|
|
2209 (error_symbol, data))
|
428
|
2210 {
|
|
2211 /* This function can GC */
|
853
|
2212 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4;
|
|
2213 Lisp_Object conditions = Qnil;
|
|
2214 Lisp_Object handlers = Qnil;
|
428
|
2215 /* signal_call_debugger() could get called more than once
|
|
2216 (once when a call-with-condition-handler is about to
|
|
2217 be dealt with, and another when a condition-case handler
|
|
2218 is about to be invoked). So make sure the debugger and/or
|
|
2219 stack trace aren't done more than once. */
|
|
2220 int stack_trace_displayed = 0;
|
|
2221 int debugger_entered = 0;
|
853
|
2222
|
|
2223 /* Fsignal() is one of these functions that's called all the time
|
|
2224 with newly-created Lisp objects. We allow this; but we must GC-
|
|
2225 protect the objects because all sorts of weird stuff could
|
|
2226 happen. */
|
|
2227
|
|
2228 GCPRO4 (conditions, handlers, error_symbol, data);
|
|
2229
|
|
2230 if (!(inhibit_flags & CALL_WITH_SUSPENDED_ERRORS))
|
|
2231 signal_1 ();
|
428
|
2232
|
|
2233 if (!initialized)
|
|
2234 {
|
|
2235 /* who knows how much has been initialized? Safest bet is
|
|
2236 just to bomb out immediately. */
|
771
|
2237 stderr_out ("Error before initialization is complete!\n");
|
2500
|
2238 ABORT ();
|
428
|
2239 }
|
|
2240
|
1123
|
2241 assert (!gc_in_progress);
|
|
2242
|
|
2243 /* We abort if in_display and we are not protected, as garbage
|
|
2244 collections and non-local exits will invariably be fatal, but in
|
|
2245 messy, difficult-to-debug ways. See enter_redisplay_critical_section().
|
|
2246 */
|
|
2247
|
1318
|
2248 #ifdef ERROR_CHECK_TRAPPING_PROBLEMS
|
1123
|
2249 check_proper_critical_section_nonlocal_exit_protection ();
|
1318
|
2250 #endif
|
428
|
2251
|
853
|
2252 conditions = Fget (error_symbol, Qerror_conditions, Qnil);
|
428
|
2253
|
|
2254 for (handlers = Vcondition_handlers;
|
|
2255 CONSP (handlers);
|
|
2256 handlers = XCDR (handlers))
|
|
2257 {
|
|
2258 Lisp_Object handler_fun = XCAR (XCAR (handlers));
|
|
2259 Lisp_Object handler_data = XCDR (XCAR (handlers));
|
|
2260 Lisp_Object outer_handlers = XCDR (handlers);
|
|
2261
|
|
2262 if (!UNBOUNDP (handler_fun))
|
|
2263 {
|
|
2264 /* call-with-condition-handler */
|
|
2265 Lisp_Object tem;
|
|
2266 Lisp_Object all_handlers = Vcondition_handlers;
|
|
2267 struct gcpro ngcpro1;
|
|
2268 NGCPRO1 (all_handlers);
|
|
2269 Vcondition_handlers = outer_handlers;
|
|
2270
|
853
|
2271 tem = signal_call_debugger (conditions, error_symbol, data,
|
428
|
2272 outer_handlers, 1,
|
|
2273 &stack_trace_displayed,
|
|
2274 &debugger_entered);
|
|
2275 if (!UNBOUNDP (tem))
|
|
2276 RETURN_NUNGCPRO (return_from_signal (tem));
|
|
2277
|
853
|
2278 if (OPAQUE_PTRP (handler_fun))
|
|
2279 {
|
|
2280 if (NILP (handler_data))
|
|
2281 {
|
|
2282 Lisp_Object (*hfun) (Lisp_Object, Lisp_Object) =
|
|
2283 (Lisp_Object (*) (Lisp_Object, Lisp_Object))
|
|
2284 (get_opaque_ptr (handler_fun));
|
|
2285
|
|
2286 tem = (*hfun) (error_symbol, data);
|
|
2287 }
|
|
2288 else
|
|
2289 {
|
|
2290 Lisp_Object (*hfun) (Lisp_Object, Lisp_Object, Lisp_Object) =
|
|
2291 (Lisp_Object (*) (Lisp_Object, Lisp_Object, Lisp_Object))
|
|
2292 (get_opaque_ptr (handler_fun));
|
|
2293
|
|
2294 assert (NILP (XCDR (handler_data)));
|
|
2295 tem = (*hfun) (error_symbol, data, XCAR (handler_data));
|
|
2296 }
|
|
2297 }
|
|
2298 else
|
|
2299 {
|
|
2300 tem = Fcons (error_symbol, data);
|
|
2301 if (NILP (handler_data))
|
|
2302 tem = call1 (handler_fun, tem);
|
|
2303 else
|
|
2304 {
|
|
2305 /* (This code won't be used (for now?).) */
|
|
2306 struct gcpro nngcpro1;
|
|
2307 Lisp_Object args[3];
|
|
2308 NNGCPRO1 (args[0]);
|
|
2309 nngcpro1.nvars = 3;
|
|
2310 args[0] = handler_fun;
|
|
2311 args[1] = tem;
|
|
2312 args[2] = handler_data;
|
|
2313 nngcpro1.var = args;
|
|
2314 tem = Fapply (3, args);
|
|
2315 NNUNGCPRO;
|
|
2316 }
|
|
2317 }
|
428
|
2318 NUNGCPRO;
|
|
2319 #if 0
|
|
2320 if (!EQ (tem, Qsignal))
|
|
2321 return return_from_signal (tem);
|
|
2322 #endif
|
|
2323 /* If handler didn't throw, try another handler */
|
|
2324 Vcondition_handlers = all_handlers;
|
|
2325 }
|
|
2326
|
|
2327 /* It's a condition-case handler */
|
|
2328
|
|
2329 /* t is used by handlers for all conditions, set up by C code.
|
|
2330 * debugger is not called even if debug_on_error */
|
|
2331 else if (EQ (handler_data, Qt))
|
|
2332 {
|
|
2333 UNGCPRO;
|
853
|
2334 return Fthrow (handlers, Fcons (error_symbol, data));
|
428
|
2335 }
|
|
2336 /* `error' is used similarly to the way `t' is used, but in
|
|
2337 addition it invokes the debugger if debug_on_error.
|
|
2338 This is normally used for the outer command-loop error
|
|
2339 handler. */
|
|
2340 else if (EQ (handler_data, Qerror))
|
|
2341 {
|
853
|
2342 Lisp_Object tem = signal_call_debugger (conditions, error_symbol,
|
|
2343 data,
|
428
|
2344 outer_handlers, 0,
|
|
2345 &stack_trace_displayed,
|
|
2346 &debugger_entered);
|
|
2347
|
|
2348 UNGCPRO;
|
|
2349 if (!UNBOUNDP (tem))
|
|
2350 return return_from_signal (tem);
|
|
2351
|
853
|
2352 tem = Fcons (error_symbol, data);
|
428
|
2353 return Fthrow (handlers, tem);
|
|
2354 }
|
|
2355 else
|
|
2356 {
|
|
2357 /* handler established by real (Lisp) condition-case */
|
|
2358 Lisp_Object h;
|
|
2359
|
|
2360 for (h = handler_data; CONSP (h); h = Fcdr (h))
|
|
2361 {
|
|
2362 Lisp_Object clause = Fcar (h);
|
|
2363 Lisp_Object tem = Fcar (clause);
|
|
2364
|
|
2365 if (condition_type_p (tem, conditions))
|
|
2366 {
|
853
|
2367 tem = signal_call_debugger (conditions, error_symbol, data,
|
428
|
2368 outer_handlers, 1,
|
|
2369 &stack_trace_displayed,
|
|
2370 &debugger_entered);
|
|
2371 UNGCPRO;
|
|
2372 if (!UNBOUNDP (tem))
|
|
2373 return return_from_signal (tem);
|
|
2374
|
|
2375 /* Doesn't return */
|
853
|
2376 tem = Fcons (Fcons (error_symbol, data), Fcdr (clause));
|
428
|
2377 return Fthrow (handlers, tem);
|
|
2378 }
|
|
2379 }
|
|
2380 }
|
|
2381 }
|
|
2382
|
|
2383 /* If no handler is present now, try to run the debugger,
|
|
2384 and if that fails, throw to top level.
|
|
2385
|
|
2386 #### The only time that no handler is present is during
|
|
2387 temacs or perhaps very early in XEmacs. In both cases,
|
|
2388 there is no 'top-level catch. (That's why the
|
|
2389 "bomb-out" hack was added.)
|
|
2390
|
853
|
2391 [[#### Fix this horrifitude!]]
|
|
2392
|
|
2393 I don't think this is horrifitude, but just defensive coding. --ben */
|
|
2394
|
|
2395 signal_call_debugger (conditions, error_symbol, data, Qnil, 0,
|
428
|
2396 &stack_trace_displayed,
|
|
2397 &debugger_entered);
|
|
2398 UNGCPRO;
|
853
|
2399 throw_or_bomb_out (Qtop_level, Qt, 1, error_symbol,
|
|
2400 data); /* Doesn't return */
|
2268
|
2401 RETURN_NOT_REACHED (Qnil);
|
428
|
2402 }
|
|
2403
|
|
2404 /****************** Error functions class 1 ******************/
|
|
2405
|
|
2406 /* Class 1: General functions that signal an error.
|
|
2407 These functions take an error type and a list of associated error
|
|
2408 data. */
|
|
2409
|
853
|
2410 /* No signal_continuable_error_1(); it's called Fsignal(). */
|
428
|
2411
|
|
2412 /* Signal a non-continuable error. */
|
|
2413
|
|
2414 DOESNT_RETURN
|
563
|
2415 signal_error_1 (Lisp_Object sig, Lisp_Object data)
|
428
|
2416 {
|
|
2417 for (;;)
|
|
2418 Fsignal (sig, data);
|
|
2419 }
|
853
|
2420
|
|
2421 #ifdef ERROR_CHECK_CATCH
|
|
2422
|
|
2423 void
|
|
2424 check_catchlist_sanity (void)
|
|
2425 {
|
|
2426 #if 0
|
|
2427 /* vou me tomar no cu! i just masked andy's missing-unbind
|
|
2428 bug! */
|
442
|
2429 struct catchtag *c;
|
|
2430 int found_error_tag = 0;
|
|
2431
|
|
2432 for (c = catchlist; c; c = c->next)
|
|
2433 {
|
|
2434 if (EQ (c->tag, Qunbound_suspended_errors_tag))
|
|
2435 {
|
|
2436 found_error_tag = 1;
|
|
2437 break;
|
|
2438 }
|
|
2439 }
|
|
2440
|
|
2441 assert (found_error_tag || NILP (Vcurrent_error_state));
|
853
|
2442 #endif /* vou me tomar no cul */
|
|
2443 }
|
|
2444
|
|
2445 void
|
|
2446 check_specbind_stack_sanity (void)
|
|
2447 {
|
|
2448 }
|
|
2449
|
|
2450 #endif /* ERROR_CHECK_CATCH */
|
428
|
2451
|
|
2452 /* Signal a non-continuable error or display a warning or do nothing,
|
|
2453 according to ERRB. CLASS is the class of warning and should
|
|
2454 refer to what sort of operation is being done (e.g. Qtoolbar,
|
|
2455 Qresource, etc.). */
|
|
2456
|
|
2457 void
|
1204
|
2458 maybe_signal_error_1 (Lisp_Object sig, Lisp_Object data, Lisp_Object class_,
|
578
|
2459 Error_Behavior errb)
|
428
|
2460 {
|
|
2461 if (ERRB_EQ (errb, ERROR_ME_NOT))
|
|
2462 return;
|
793
|
2463 else if (ERRB_EQ (errb, ERROR_ME_DEBUG_WARN))
|
1204
|
2464 warn_when_safe_lispobj (class_, Qdebug, Fcons (sig, data));
|
428
|
2465 else if (ERRB_EQ (errb, ERROR_ME_WARN))
|
1204
|
2466 warn_when_safe_lispobj (class_, Qwarning, Fcons (sig, data));
|
428
|
2467 else
|
|
2468 for (;;)
|
|
2469 Fsignal (sig, data);
|
|
2470 }
|
|
2471
|
|
2472 /* Signal a continuable error or display a warning or do nothing,
|
|
2473 according to ERRB. */
|
|
2474
|
|
2475 Lisp_Object
|
563
|
2476 maybe_signal_continuable_error_1 (Lisp_Object sig, Lisp_Object data,
|
1204
|
2477 Lisp_Object class_, Error_Behavior errb)
|
428
|
2478 {
|
|
2479 if (ERRB_EQ (errb, ERROR_ME_NOT))
|
|
2480 return Qnil;
|
793
|
2481 else if (ERRB_EQ (errb, ERROR_ME_DEBUG_WARN))
|
|
2482 {
|
1204
|
2483 warn_when_safe_lispobj (class_, Qdebug, Fcons (sig, data));
|
793
|
2484 return Qnil;
|
|
2485 }
|
428
|
2486 else if (ERRB_EQ (errb, ERROR_ME_WARN))
|
|
2487 {
|
1204
|
2488 warn_when_safe_lispobj (class_, Qwarning, Fcons (sig, data));
|
428
|
2489 return Qnil;
|
|
2490 }
|
|
2491 else
|
|
2492 return Fsignal (sig, data);
|
|
2493 }
|
|
2494
|
|
2495
|
|
2496 /****************** Error functions class 2 ******************/
|
|
2497
|
563
|
2498 /* Class 2: Signal an error with a string and an associated object.
|
|
2499 Normally these functions are used to attach one associated object,
|
|
2500 but to attach no objects, specify Qunbound for FROB, and for more
|
|
2501 than one object, make a list of the objects with Qunbound as the
|
|
2502 first element. (If you have specifically two objects to attach,
|
|
2503 consider using the function in class 3 below.) These functions
|
|
2504 signal an error of a specified type, whose data is one or more
|
|
2505 objects (usually two), a string the related Lisp object(s)
|
|
2506 specified as FROB. */
|
|
2507
|
|
2508 /* Out of REASON and FROB, return a list of elements suitable for passing
|
|
2509 to signal_error_1(). */
|
|
2510
|
|
2511 Lisp_Object
|
867
|
2512 build_error_data (const CIbyte *reason, Lisp_Object frob)
|
563
|
2513 {
|
|
2514 if (EQ (frob, Qunbound))
|
|
2515 frob = Qnil;
|
|
2516 else if (CONSP (frob) && EQ (XCAR (frob), Qunbound))
|
|
2517 frob = XCDR (frob);
|
|
2518 else
|
|
2519 frob = list1 (frob);
|
|
2520 if (!reason)
|
|
2521 return frob;
|
|
2522 else
|
771
|
2523 return Fcons (build_msg_string (reason), frob);
|
563
|
2524 }
|
|
2525
|
|
2526 DOESNT_RETURN
|
867
|
2527 signal_error (Lisp_Object type, const CIbyte *reason, Lisp_Object frob)
|
563
|
2528 {
|
|
2529 signal_error_1 (type, build_error_data (reason, frob));
|
|
2530 }
|
|
2531
|
|
2532 void
|
867
|
2533 maybe_signal_error (Lisp_Object type, const CIbyte *reason,
|
1204
|
2534 Lisp_Object frob, Lisp_Object class_,
|
578
|
2535 Error_Behavior errb)
|
563
|
2536 {
|
|
2537 /* Optimization: */
|
|
2538 if (ERRB_EQ (errb, ERROR_ME_NOT))
|
|
2539 return;
|
1204
|
2540 maybe_signal_error_1 (type, build_error_data (reason, frob), class_, errb);
|
563
|
2541 }
|
|
2542
|
|
2543 Lisp_Object
|
867
|
2544 signal_continuable_error (Lisp_Object type, const CIbyte *reason,
|
563
|
2545 Lisp_Object frob)
|
|
2546 {
|
|
2547 return Fsignal (type, build_error_data (reason, frob));
|
|
2548 }
|
|
2549
|
|
2550 Lisp_Object
|
867
|
2551 maybe_signal_continuable_error (Lisp_Object type, const CIbyte *reason,
|
1204
|
2552 Lisp_Object frob, Lisp_Object class_,
|
578
|
2553 Error_Behavior errb)
|
563
|
2554 {
|
|
2555 /* Optimization: */
|
|
2556 if (ERRB_EQ (errb, ERROR_ME_NOT))
|
|
2557 return Qnil;
|
|
2558 return maybe_signal_continuable_error_1 (type,
|
|
2559 build_error_data (reason, frob),
|
1204
|
2560 class_, errb);
|
563
|
2561 }
|
|
2562
|
|
2563
|
|
2564 /****************** Error functions class 3 ******************/
|
|
2565
|
|
2566 /* Class 3: Signal an error with a string and two associated objects.
|
|
2567 These functions signal an error of a specified type, whose data
|
|
2568 is three objects, a string and two related Lisp objects.
|
|
2569 (The equivalent could be accomplished using the class 2 functions,
|
|
2570 but these are more convenient in this particular case.) */
|
|
2571
|
|
2572 DOESNT_RETURN
|
867
|
2573 signal_error_2 (Lisp_Object type, const CIbyte *reason,
|
563
|
2574 Lisp_Object frob0, Lisp_Object frob1)
|
|
2575 {
|
771
|
2576 signal_error_1 (type, list3 (build_msg_string (reason), frob0,
|
563
|
2577 frob1));
|
|
2578 }
|
|
2579
|
|
2580 void
|
867
|
2581 maybe_signal_error_2 (Lisp_Object type, const CIbyte *reason,
|
563
|
2582 Lisp_Object frob0, Lisp_Object frob1,
|
1204
|
2583 Lisp_Object class_, Error_Behavior errb)
|
563
|
2584 {
|
|
2585 /* Optimization: */
|
|
2586 if (ERRB_EQ (errb, ERROR_ME_NOT))
|
|
2587 return;
|
771
|
2588 maybe_signal_error_1 (type, list3 (build_msg_string (reason), frob0,
|
1204
|
2589 frob1), class_, errb);
|
563
|
2590 }
|
|
2591
|
|
2592 Lisp_Object
|
867
|
2593 signal_continuable_error_2 (Lisp_Object type, const CIbyte *reason,
|
563
|
2594 Lisp_Object frob0, Lisp_Object frob1)
|
|
2595 {
|
771
|
2596 return Fsignal (type, list3 (build_msg_string (reason), frob0,
|
563
|
2597 frob1));
|
|
2598 }
|
|
2599
|
|
2600 Lisp_Object
|
867
|
2601 maybe_signal_continuable_error_2 (Lisp_Object type, const CIbyte *reason,
|
563
|
2602 Lisp_Object frob0, Lisp_Object frob1,
|
1204
|
2603 Lisp_Object class_, Error_Behavior errb)
|
563
|
2604 {
|
|
2605 /* Optimization: */
|
|
2606 if (ERRB_EQ (errb, ERROR_ME_NOT))
|
|
2607 return Qnil;
|
|
2608 return maybe_signal_continuable_error_1
|
771
|
2609 (type, list3 (build_msg_string (reason), frob0, frob1),
|
1204
|
2610 class_, errb);
|
563
|
2611 }
|
|
2612
|
|
2613
|
|
2614 /****************** Error functions class 4 ******************/
|
|
2615
|
|
2616 /* Class 4: Printf-like functions that signal an error.
|
442
|
2617 These functions signal an error of a specified type, whose data
|
428
|
2618 is a single string, created using the arguments. */
|
|
2619
|
|
2620 DOESNT_RETURN
|
867
|
2621 signal_ferror (Lisp_Object type, const CIbyte *fmt, ...)
|
442
|
2622 {
|
|
2623 Lisp_Object obj;
|
|
2624 va_list args;
|
|
2625
|
|
2626 va_start (args, fmt);
|
771
|
2627 obj = emacs_vsprintf_string (CGETTEXT (fmt), args);
|
442
|
2628 va_end (args);
|
|
2629
|
|
2630 /* Fsignal GC-protects its args */
|
563
|
2631 signal_error (type, 0, obj);
|
442
|
2632 }
|
|
2633
|
|
2634 void
|
1204
|
2635 maybe_signal_ferror (Lisp_Object type, Lisp_Object class_, Error_Behavior errb,
|
867
|
2636 const CIbyte *fmt, ...)
|
442
|
2637 {
|
|
2638 Lisp_Object obj;
|
|
2639 va_list args;
|
|
2640
|
|
2641 /* Optimization: */
|
|
2642 if (ERRB_EQ (errb, ERROR_ME_NOT))
|
|
2643 return;
|
|
2644
|
|
2645 va_start (args, fmt);
|
771
|
2646 obj = emacs_vsprintf_string (CGETTEXT (fmt), args);
|
442
|
2647 va_end (args);
|
|
2648
|
|
2649 /* Fsignal GC-protects its args */
|
1204
|
2650 maybe_signal_error (type, 0, obj, class_, errb);
|
442
|
2651 }
|
|
2652
|
|
2653 Lisp_Object
|
867
|
2654 signal_continuable_ferror (Lisp_Object type, const CIbyte *fmt, ...)
|
428
|
2655 {
|
|
2656 Lisp_Object obj;
|
|
2657 va_list args;
|
|
2658
|
|
2659 va_start (args, fmt);
|
771
|
2660 obj = emacs_vsprintf_string (CGETTEXT (fmt), args);
|
442
|
2661 va_end (args);
|
|
2662
|
|
2663 /* Fsignal GC-protects its args */
|
|
2664 return Fsignal (type, list1 (obj));
|
|
2665 }
|
|
2666
|
|
2667 Lisp_Object
|
1204
|
2668 maybe_signal_continuable_ferror (Lisp_Object type, Lisp_Object class_,
|
867
|
2669 Error_Behavior errb, const CIbyte *fmt, ...)
|
442
|
2670 {
|
|
2671 Lisp_Object obj;
|
|
2672 va_list args;
|
|
2673
|
|
2674 /* Optimization: */
|
|
2675 if (ERRB_EQ (errb, ERROR_ME_NOT))
|
|
2676 return Qnil;
|
|
2677
|
|
2678 va_start (args, fmt);
|
771
|
2679 obj = emacs_vsprintf_string (CGETTEXT (fmt), args);
|
442
|
2680 va_end (args);
|
|
2681
|
|
2682 /* Fsignal GC-protects its args */
|
1204
|
2683 return maybe_signal_continuable_error (type, 0, obj, class_, errb);
|
442
|
2684 }
|
|
2685
|
|
2686
|
|
2687 /****************** Error functions class 5 ******************/
|
|
2688
|
563
|
2689 /* Class 5: Printf-like functions that signal an error.
|
442
|
2690 These functions signal an error of a specified type, whose data
|
563
|
2691 is a one or more objects, a string (created using the arguments)
|
|
2692 and additional Lisp objects specified in FROB. (The syntax of FROB
|
|
2693 is the same as for class 2.)
|
|
2694
|
|
2695 There is no need for a class 6 because you can always attach 2
|
|
2696 objects using class 5 (for FROB, specify a list with three
|
|
2697 elements, the first of which is Qunbound), and these functions are
|
|
2698 not commonly used.
|
|
2699 */
|
442
|
2700
|
|
2701 DOESNT_RETURN
|
867
|
2702 signal_ferror_with_frob (Lisp_Object type, Lisp_Object frob, const CIbyte *fmt,
|
563
|
2703 ...)
|
442
|
2704 {
|
|
2705 Lisp_Object obj;
|
|
2706 va_list args;
|
|
2707
|
|
2708 va_start (args, fmt);
|
771
|
2709 obj = emacs_vsprintf_string (CGETTEXT (fmt), args);
|
442
|
2710 va_end (args);
|
|
2711
|
|
2712 /* Fsignal GC-protects its args */
|
563
|
2713 signal_error_1 (type, Fcons (obj, build_error_data (0, frob)));
|
442
|
2714 }
|
|
2715
|
|
2716 void
|
563
|
2717 maybe_signal_ferror_with_frob (Lisp_Object type, Lisp_Object frob,
|
1204
|
2718 Lisp_Object class_, Error_Behavior errb,
|
867
|
2719 const CIbyte *fmt, ...)
|
442
|
2720 {
|
|
2721 Lisp_Object obj;
|
|
2722 va_list args;
|
|
2723
|
|
2724 /* Optimization: */
|
|
2725 if (ERRB_EQ (errb, ERROR_ME_NOT))
|
|
2726 return;
|
|
2727
|
|
2728 va_start (args, fmt);
|
771
|
2729 obj = emacs_vsprintf_string (CGETTEXT (fmt), args);
|
428
|
2730 va_end (args);
|
|
2731
|
|
2732 /* Fsignal GC-protects its args */
|
1204
|
2733 maybe_signal_error_1 (type, Fcons (obj, build_error_data (0, frob)), class_,
|
563
|
2734 errb);
|
428
|
2735 }
|
|
2736
|
|
2737 Lisp_Object
|
563
|
2738 signal_continuable_ferror_with_frob (Lisp_Object type, Lisp_Object frob,
|
867
|
2739 const CIbyte *fmt, ...)
|
428
|
2740 {
|
|
2741 Lisp_Object obj;
|
|
2742 va_list args;
|
|
2743
|
|
2744 va_start (args, fmt);
|
771
|
2745 obj = emacs_vsprintf_string (CGETTEXT (fmt), args);
|
428
|
2746 va_end (args);
|
|
2747
|
|
2748 /* Fsignal GC-protects its args */
|
563
|
2749 return Fsignal (type, Fcons (obj, build_error_data (0, frob)));
|
428
|
2750 }
|
|
2751
|
|
2752 Lisp_Object
|
563
|
2753 maybe_signal_continuable_ferror_with_frob (Lisp_Object type, Lisp_Object frob,
|
1204
|
2754 Lisp_Object class_,
|
578
|
2755 Error_Behavior errb,
|
867
|
2756 const CIbyte *fmt, ...)
|
428
|
2757 {
|
|
2758 Lisp_Object obj;
|
|
2759 va_list args;
|
|
2760
|
|
2761 /* Optimization: */
|
|
2762 if (ERRB_EQ (errb, ERROR_ME_NOT))
|
|
2763 return Qnil;
|
|
2764
|
|
2765 va_start (args, fmt);
|
771
|
2766 obj = emacs_vsprintf_string (CGETTEXT (fmt), args);
|
428
|
2767 va_end (args);
|
|
2768
|
|
2769 /* Fsignal GC-protects its args */
|
563
|
2770 return maybe_signal_continuable_error_1 (type,
|
|
2771 Fcons (obj,
|
|
2772 build_error_data (0, frob)),
|
1204
|
2773 class_, errb);
|
428
|
2774 }
|
|
2775
|
|
2776
|
|
2777 /* This is what the QUIT macro calls to signal a quit */
|
|
2778 void
|
|
2779 signal_quit (void)
|
|
2780 {
|
853
|
2781 /* This function cannot GC. GC is prohibited because most callers do
|
|
2782 not expect GC occurring in QUIT. Remove this if/when that gets fixed.
|
|
2783 --ben */
|
|
2784
|
|
2785 int count;
|
|
2786
|
428
|
2787 if (EQ (Vquit_flag, Qcritical))
|
|
2788 debug_on_quit |= 2; /* set critical bit. */
|
|
2789 Vquit_flag = Qnil;
|
853
|
2790 count = begin_gc_forbidden ();
|
428
|
2791 /* note that this is continuable. */
|
|
2792 Fsignal (Qquit, Qnil);
|
853
|
2793 unbind_to (count);
|
428
|
2794 }
|
|
2795
|
|
2796
|
563
|
2797 /************************ convenience error functions ***********************/
|
|
2798
|
436
|
2799 Lisp_Object
|
428
|
2800 signal_void_function_error (Lisp_Object function)
|
|
2801 {
|
436
|
2802 return Fsignal (Qvoid_function, list1 (function));
|
428
|
2803 }
|
|
2804
|
436
|
2805 Lisp_Object
|
428
|
2806 signal_invalid_function_error (Lisp_Object function)
|
|
2807 {
|
436
|
2808 return Fsignal (Qinvalid_function, list1 (function));
|
428
|
2809 }
|
|
2810
|
436
|
2811 Lisp_Object
|
428
|
2812 signal_wrong_number_of_arguments_error (Lisp_Object function, int nargs)
|
|
2813 {
|
436
|
2814 return Fsignal (Qwrong_number_of_arguments,
|
|
2815 list2 (function, make_int (nargs)));
|
428
|
2816 }
|
|
2817
|
|
2818 /* Used in list traversal macros for efficiency. */
|
436
|
2819 DOESNT_RETURN
|
428
|
2820 signal_malformed_list_error (Lisp_Object list)
|
|
2821 {
|
563
|
2822 signal_error (Qmalformed_list, 0, list);
|
428
|
2823 }
|
|
2824
|
436
|
2825 DOESNT_RETURN
|
428
|
2826 signal_malformed_property_list_error (Lisp_Object list)
|
|
2827 {
|
563
|
2828 signal_error (Qmalformed_property_list, 0, list);
|
428
|
2829 }
|
|
2830
|
436
|
2831 DOESNT_RETURN
|
428
|
2832 signal_circular_list_error (Lisp_Object list)
|
|
2833 {
|
563
|
2834 signal_error (Qcircular_list, 0, list);
|
428
|
2835 }
|
|
2836
|
436
|
2837 DOESNT_RETURN
|
428
|
2838 signal_circular_property_list_error (Lisp_Object list)
|
|
2839 {
|
563
|
2840 signal_error (Qcircular_property_list, 0, list);
|
428
|
2841 }
|
442
|
2842
|
2267
|
2843 /* Called from within emacs_doprnt_1, so REASON is not formatted. */
|
442
|
2844 DOESNT_RETURN
|
867
|
2845 syntax_error (const CIbyte *reason, Lisp_Object frob)
|
442
|
2846 {
|
563
|
2847 signal_error (Qsyntax_error, reason, frob);
|
442
|
2848 }
|
|
2849
|
|
2850 DOESNT_RETURN
|
867
|
2851 syntax_error_2 (const CIbyte *reason, Lisp_Object frob1, Lisp_Object frob2)
|
442
|
2852 {
|
563
|
2853 signal_error_2 (Qsyntax_error, reason, frob1, frob2);
|
|
2854 }
|
|
2855
|
|
2856 void
|
867
|
2857 maybe_syntax_error (const CIbyte *reason, Lisp_Object frob,
|
1204
|
2858 Lisp_Object class_, Error_Behavior errb)
|
|
2859 {
|
|
2860 maybe_signal_error (Qsyntax_error, reason, frob, class_, errb);
|
563
|
2861 }
|
|
2862
|
|
2863 DOESNT_RETURN
|
867
|
2864 sferror (const CIbyte *reason, Lisp_Object frob)
|
563
|
2865 {
|
|
2866 signal_error (Qstructure_formation_error, reason, frob);
|
|
2867 }
|
|
2868
|
|
2869 DOESNT_RETURN
|
867
|
2870 sferror_2 (const CIbyte *reason, Lisp_Object frob1, Lisp_Object frob2)
|
563
|
2871 {
|
|
2872 signal_error_2 (Qstructure_formation_error, reason, frob1, frob2);
|
|
2873 }
|
|
2874
|
|
2875 void
|
867
|
2876 maybe_sferror (const CIbyte *reason, Lisp_Object frob,
|
1204
|
2877 Lisp_Object class_, Error_Behavior errb)
|
|
2878 {
|
|
2879 maybe_signal_error (Qstructure_formation_error, reason, frob, class_, errb);
|
442
|
2880 }
|
|
2881
|
|
2882 DOESNT_RETURN
|
867
|
2883 invalid_argument (const CIbyte *reason, Lisp_Object frob)
|
442
|
2884 {
|
563
|
2885 signal_error (Qinvalid_argument, reason, frob);
|
442
|
2886 }
|
|
2887
|
|
2888 DOESNT_RETURN
|
867
|
2889 invalid_argument_2 (const CIbyte *reason, Lisp_Object frob1,
|
609
|
2890 Lisp_Object frob2)
|
442
|
2891 {
|
563
|
2892 signal_error_2 (Qinvalid_argument, reason, frob1, frob2);
|
|
2893 }
|
|
2894
|
|
2895 void
|
867
|
2896 maybe_invalid_argument (const CIbyte *reason, Lisp_Object frob,
|
1204
|
2897 Lisp_Object class_, Error_Behavior errb)
|
|
2898 {
|
|
2899 maybe_signal_error (Qinvalid_argument, reason, frob, class_, errb);
|
563
|
2900 }
|
|
2901
|
|
2902 DOESNT_RETURN
|
867
|
2903 invalid_constant (const CIbyte *reason, Lisp_Object frob)
|
563
|
2904 {
|
|
2905 signal_error (Qinvalid_constant, reason, frob);
|
|
2906 }
|
|
2907
|
|
2908 DOESNT_RETURN
|
867
|
2909 invalid_constant_2 (const CIbyte *reason, Lisp_Object frob1,
|
609
|
2910 Lisp_Object frob2)
|
563
|
2911 {
|
|
2912 signal_error_2 (Qinvalid_constant, reason, frob1, frob2);
|
|
2913 }
|
|
2914
|
|
2915 void
|
867
|
2916 maybe_invalid_constant (const CIbyte *reason, Lisp_Object frob,
|
1204
|
2917 Lisp_Object class_, Error_Behavior errb)
|
|
2918 {
|
|
2919 maybe_signal_error (Qinvalid_constant, reason, frob, class_, errb);
|
442
|
2920 }
|
|
2921
|
|
2922 DOESNT_RETURN
|
867
|
2923 invalid_operation (const CIbyte *reason, Lisp_Object frob)
|
442
|
2924 {
|
563
|
2925 signal_error (Qinvalid_operation, reason, frob);
|
442
|
2926 }
|
|
2927
|
|
2928 DOESNT_RETURN
|
867
|
2929 invalid_operation_2 (const CIbyte *reason, Lisp_Object frob1,
|
609
|
2930 Lisp_Object frob2)
|
442
|
2931 {
|
563
|
2932 signal_error_2 (Qinvalid_operation, reason, frob1, frob2);
|
|
2933 }
|
|
2934
|
|
2935 void
|
867
|
2936 maybe_invalid_operation (const CIbyte *reason, Lisp_Object frob,
|
1204
|
2937 Lisp_Object class_, Error_Behavior errb)
|
|
2938 {
|
|
2939 maybe_signal_error (Qinvalid_operation, reason, frob, class_, errb);
|
442
|
2940 }
|
|
2941
|
|
2942 DOESNT_RETURN
|
867
|
2943 invalid_change (const CIbyte *reason, Lisp_Object frob)
|
442
|
2944 {
|
563
|
2945 signal_error (Qinvalid_change, reason, frob);
|
442
|
2946 }
|
|
2947
|
|
2948 DOESNT_RETURN
|
867
|
2949 invalid_change_2 (const CIbyte *reason, Lisp_Object frob1, Lisp_Object frob2)
|
442
|
2950 {
|
563
|
2951 signal_error_2 (Qinvalid_change, reason, frob1, frob2);
|
|
2952 }
|
|
2953
|
|
2954 void
|
867
|
2955 maybe_invalid_change (const CIbyte *reason, Lisp_Object frob,
|
1204
|
2956 Lisp_Object class_, Error_Behavior errb)
|
|
2957 {
|
|
2958 maybe_signal_error (Qinvalid_change, reason, frob, class_, errb);
|
563
|
2959 }
|
|
2960
|
|
2961 DOESNT_RETURN
|
867
|
2962 invalid_state (const CIbyte *reason, Lisp_Object frob)
|
563
|
2963 {
|
|
2964 signal_error (Qinvalid_state, reason, frob);
|
|
2965 }
|
|
2966
|
|
2967 DOESNT_RETURN
|
867
|
2968 invalid_state_2 (const CIbyte *reason, Lisp_Object frob1, Lisp_Object frob2)
|
563
|
2969 {
|
|
2970 signal_error_2 (Qinvalid_state, reason, frob1, frob2);
|
|
2971 }
|
|
2972
|
|
2973 void
|
867
|
2974 maybe_invalid_state (const CIbyte *reason, Lisp_Object frob,
|
1204
|
2975 Lisp_Object class_, Error_Behavior errb)
|
|
2976 {
|
|
2977 maybe_signal_error (Qinvalid_state, reason, frob, class_, errb);
|
563
|
2978 }
|
|
2979
|
|
2980 DOESNT_RETURN
|
867
|
2981 wtaerror (const CIbyte *reason, Lisp_Object frob)
|
563
|
2982 {
|
|
2983 signal_error (Qwrong_type_argument, reason, frob);
|
|
2984 }
|
|
2985
|
|
2986 DOESNT_RETURN
|
867
|
2987 stack_overflow (const CIbyte *reason, Lisp_Object frob)
|
563
|
2988 {
|
|
2989 signal_error (Qstack_overflow, reason, frob);
|
|
2990 }
|
|
2991
|
|
2992 DOESNT_RETURN
|
867
|
2993 out_of_memory (const CIbyte *reason, Lisp_Object frob)
|
563
|
2994 {
|
|
2995 signal_error (Qout_of_memory, reason, frob);
|
|
2996 }
|
|
2997
|
|
2998 DOESNT_RETURN
|
867
|
2999 printing_unreadable_object (const CIbyte *fmt, ...)
|
563
|
3000 {
|
|
3001 Lisp_Object obj;
|
|
3002 va_list args;
|
|
3003
|
|
3004 va_start (args, fmt);
|
771
|
3005 obj = emacs_vsprintf_string (CGETTEXT (fmt), args);
|
563
|
3006 va_end (args);
|
|
3007
|
|
3008 /* Fsignal GC-protects its args */
|
|
3009 signal_error (Qprinting_unreadable_object, 0, obj);
|
442
|
3010 }
|
|
3011
|
428
|
3012
|
|
3013 /************************************************************************/
|
|
3014 /* User commands */
|
|
3015 /************************************************************************/
|
|
3016
|
|
3017 DEFUN ("commandp", Fcommandp, 1, 1, 0, /*
|
|
3018 Return t if FUNCTION makes provisions for interactive calling.
|
|
3019 This means it contains a description for how to read arguments to give it.
|
|
3020 The value is nil for an invalid function or a symbol with no function
|
|
3021 definition.
|
|
3022
|
|
3023 Interactively callable functions include
|
|
3024
|
|
3025 -- strings and vectors (treated as keyboard macros)
|
|
3026 -- lambda-expressions that contain a top-level call to `interactive'
|
|
3027 -- autoload definitions made by `autoload' with non-nil fourth argument
|
|
3028 (i.e. the interactive flag)
|
|
3029 -- compiled-function objects with a non-nil `compiled-function-interactive'
|
|
3030 value
|
|
3031 -- subrs (built-in functions) that are interactively callable
|
|
3032
|
|
3033 Also, a symbol satisfies `commandp' if its function definition does so.
|
|
3034 */
|
|
3035 (function))
|
|
3036 {
|
|
3037 Lisp_Object fun = indirect_function (function, 0);
|
|
3038
|
|
3039 if (COMPILED_FUNCTIONP (fun))
|
|
3040 return XCOMPILED_FUNCTION (fun)->flags.interactivep ? Qt : Qnil;
|
|
3041
|
|
3042 /* Lists may represent commands. */
|
|
3043 if (CONSP (fun))
|
|
3044 {
|
|
3045 Lisp_Object funcar = XCAR (fun);
|
|
3046 if (EQ (funcar, Qlambda))
|
|
3047 return Fassq (Qinteractive, Fcdr (Fcdr (fun)));
|
|
3048 if (EQ (funcar, Qautoload))
|
|
3049 return Fcar (Fcdr (Fcdr (Fcdr (fun))));
|
|
3050 else
|
|
3051 return Qnil;
|
|
3052 }
|
|
3053
|
|
3054 /* Emacs primitives are interactive if their DEFUN specifies an
|
|
3055 interactive spec. */
|
|
3056 if (SUBRP (fun))
|
|
3057 return XSUBR (fun)->prompt ? Qt : Qnil;
|
|
3058
|
|
3059 /* Strings and vectors are keyboard macros. */
|
|
3060 if (VECTORP (fun) || STRINGP (fun))
|
|
3061 return Qt;
|
|
3062
|
|
3063 /* Everything else (including Qunbound) is not a command. */
|
|
3064 return Qnil;
|
|
3065 }
|
|
3066
|
|
3067 DEFUN ("command-execute", Fcommand_execute, 1, 3, 0, /*
|
|
3068 Execute CMD as an editor command.
|
|
3069 CMD must be an object that satisfies the `commandp' predicate.
|
|
3070 Optional second arg RECORD-FLAG is as in `call-interactively'.
|
|
3071 The argument KEYS specifies the value to use instead of (this-command-keys)
|
|
3072 when reading the arguments.
|
|
3073 */
|
444
|
3074 (cmd, record_flag, keys))
|
428
|
3075 {
|
|
3076 /* This function can GC */
|
|
3077 Lisp_Object prefixarg;
|
|
3078 Lisp_Object final = cmd;
|
|
3079 struct backtrace backtrace;
|
|
3080 struct console *con = XCONSOLE (Vselected_console);
|
|
3081
|
|
3082 prefixarg = con->prefix_arg;
|
|
3083 con->prefix_arg = Qnil;
|
|
3084 Vcurrent_prefix_arg = prefixarg;
|
|
3085 debug_on_next_call = 0; /* #### from FSFmacs; correct? */
|
|
3086
|
|
3087 if (SYMBOLP (cmd) && !NILP (Fget (cmd, Qdisabled, Qnil)))
|
733
|
3088 return run_hook (Qdisabled_command_hook);
|
428
|
3089
|
|
3090 for (;;)
|
|
3091 {
|
|
3092 final = indirect_function (cmd, 1);
|
|
3093 if (CONSP (final) && EQ (Fcar (final), Qautoload))
|
970
|
3094 {
|
|
3095 /* do_autoload GCPROs both arguments */
|
|
3096 do_autoload (final, cmd);
|
|
3097 }
|
428
|
3098 else
|
|
3099 break;
|
|
3100 }
|
|
3101
|
|
3102 if (CONSP (final) || SUBRP (final) || COMPILED_FUNCTIONP (final))
|
|
3103 {
|
|
3104 backtrace.function = &Qcall_interactively;
|
|
3105 backtrace.args = &cmd;
|
|
3106 backtrace.nargs = 1;
|
|
3107 backtrace.evalargs = 0;
|
1292
|
3108 backtrace.pdlcount = specpdl_depth ();
|
428
|
3109 backtrace.debug_on_exit = 0;
|
1292
|
3110 backtrace.function_being_called = 0;
|
428
|
3111 PUSH_BACKTRACE (backtrace);
|
|
3112
|
1292
|
3113 PROFILE_ENTER_FUNCTION ();
|
444
|
3114 final = Fcall_interactively (cmd, record_flag, keys);
|
1292
|
3115 PROFILE_EXIT_FUNCTION ();
|
428
|
3116
|
|
3117 POP_BACKTRACE (backtrace);
|
|
3118 return final;
|
|
3119 }
|
|
3120 else if (STRINGP (final) || VECTORP (final))
|
|
3121 {
|
|
3122 return Fexecute_kbd_macro (final, prefixarg);
|
|
3123 }
|
|
3124 else
|
|
3125 {
|
|
3126 Fsignal (Qwrong_type_argument,
|
|
3127 Fcons (Qcommandp,
|
|
3128 (EQ (cmd, final)
|
|
3129 ? list1 (cmd)
|
|
3130 : list2 (cmd, final))));
|
|
3131 return Qnil;
|
|
3132 }
|
|
3133 }
|
|
3134
|
|
3135 DEFUN ("interactive-p", Finteractive_p, 0, 0, 0, /*
|
|
3136 Return t if function in which this appears was called interactively.
|
|
3137 This means that the function was called with call-interactively (which
|
|
3138 includes being called as the binding of a key)
|
|
3139 and input is currently coming from the keyboard (not in keyboard macro).
|
|
3140 */
|
|
3141 ())
|
|
3142 {
|
|
3143 REGISTER struct backtrace *btp;
|
|
3144 REGISTER Lisp_Object fun;
|
|
3145
|
|
3146 if (!INTERACTIVE)
|
|
3147 return Qnil;
|
|
3148
|
|
3149 /* Unless the object was compiled, skip the frame of interactive-p itself
|
|
3150 (if interpreted) or the frame of byte-code (if called from a compiled
|
|
3151 function). Note that *btp->function may be a symbol pointing at a
|
|
3152 compiled function. */
|
|
3153 btp = backtrace_list;
|
|
3154
|
|
3155 #if 0 /* FSFmacs */
|
|
3156
|
|
3157 /* #### FSFmacs does the following instead. I can't figure
|
|
3158 out which one is more correct. */
|
|
3159 /* If this isn't a byte-compiled function, there may be a frame at
|
|
3160 the top for Finteractive_p itself. If so, skip it. */
|
|
3161 fun = Findirect_function (*btp->function);
|
|
3162 if (SUBRP (fun) && XSUBR (fun) == &Sinteractive_p)
|
|
3163 btp = btp->next;
|
|
3164
|
|
3165 /* If we're running an Emacs 18-style byte-compiled function, there
|
|
3166 may be a frame for Fbyte_code. Now, given the strictest
|
|
3167 definition, this function isn't really being called
|
|
3168 interactively, but because that's the way Emacs 18 always builds
|
|
3169 byte-compiled functions, we'll accept it for now. */
|
|
3170 if (EQ (*btp->function, Qbyte_code))
|
|
3171 btp = btp->next;
|
|
3172
|
|
3173 /* If this isn't a byte-compiled function, then we may now be
|
|
3174 looking at several frames for special forms. Skip past them. */
|
|
3175 while (btp &&
|
|
3176 btp->nargs == UNEVALLED)
|
|
3177 btp = btp->next;
|
|
3178
|
|
3179 #else
|
|
3180
|
|
3181 if (! (COMPILED_FUNCTIONP (Findirect_function (*btp->function))))
|
|
3182 btp = btp->next;
|
|
3183 for (;
|
|
3184 btp && (btp->nargs == UNEVALLED
|
|
3185 || EQ (*btp->function, Qbyte_code));
|
|
3186 btp = btp->next)
|
|
3187 {}
|
|
3188 /* btp now points at the frame of the innermost function
|
|
3189 that DOES eval its args.
|
|
3190 If it is a built-in function (such as load or eval-region)
|
|
3191 return nil. */
|
|
3192 /* Beats me why this is necessary, but it is */
|
|
3193 if (btp && EQ (*btp->function, Qcall_interactively))
|
|
3194 return Qt;
|
|
3195
|
|
3196 #endif
|
|
3197
|
|
3198 fun = Findirect_function (*btp->function);
|
|
3199 if (SUBRP (fun))
|
|
3200 return Qnil;
|
|
3201 /* btp points to the frame of a Lisp function that called interactive-p.
|
|
3202 Return t if that function was called interactively. */
|
|
3203 if (btp && btp->next && EQ (*btp->next->function, Qcall_interactively))
|
|
3204 return Qt;
|
|
3205 return Qnil;
|
|
3206 }
|
|
3207
|
|
3208
|
|
3209 /************************************************************************/
|
|
3210 /* Autoloading */
|
|
3211 /************************************************************************/
|
|
3212
|
|
3213 DEFUN ("autoload", Fautoload, 2, 5, 0, /*
|
444
|
3214 Define FUNCTION to autoload from FILENAME.
|
|
3215 FUNCTION is a symbol; FILENAME is a file name string to pass to `load'.
|
|
3216 The remaining optional arguments provide additional info about the
|
|
3217 real definition.
|
|
3218 DOCSTRING is documentation for FUNCTION.
|
|
3219 INTERACTIVE, if non-nil, says FUNCTION can be called interactively.
|
|
3220 TYPE indicates the type of the object:
|
428
|
3221 nil or omitted says FUNCTION is a function,
|
|
3222 `keymap' says FUNCTION is really a keymap, and
|
|
3223 `macro' or t says FUNCTION is really a macro.
|
444
|
3224 If FUNCTION already has a non-void function definition that is not an
|
|
3225 autoload object, this function does nothing and returns nil.
|
428
|
3226 */
|
444
|
3227 (function, filename, docstring, interactive, type))
|
428
|
3228 {
|
|
3229 /* This function can GC */
|
|
3230 CHECK_SYMBOL (function);
|
444
|
3231 CHECK_STRING (filename);
|
428
|
3232
|
|
3233 /* If function is defined and not as an autoload, don't override */
|
|
3234 {
|
|
3235 Lisp_Object f = XSYMBOL (function)->function;
|
|
3236 if (!UNBOUNDP (f) && !(CONSP (f) && EQ (XCAR (f), Qautoload)))
|
|
3237 return Qnil;
|
|
3238 }
|
|
3239
|
|
3240 if (purify_flag)
|
|
3241 {
|
|
3242 /* Attempt to avoid consing identical (string=) pure strings. */
|
444
|
3243 filename = Fsymbol_name (Fintern (filename, Qnil));
|
428
|
3244 }
|
440
|
3245
|
444
|
3246 return Ffset (function, Fcons (Qautoload, list4 (filename,
|
428
|
3247 docstring,
|
|
3248 interactive,
|
|
3249 type)));
|
|
3250 }
|
|
3251
|
|
3252 Lisp_Object
|
|
3253 un_autoload (Lisp_Object oldqueue)
|
|
3254 {
|
|
3255 /* This function can GC */
|
|
3256 REGISTER Lisp_Object queue, first, second;
|
|
3257
|
|
3258 /* Queue to unwind is current value of Vautoload_queue.
|
|
3259 oldqueue is the shadowed value to leave in Vautoload_queue. */
|
|
3260 queue = Vautoload_queue;
|
|
3261 Vautoload_queue = oldqueue;
|
|
3262 while (CONSP (queue))
|
|
3263 {
|
|
3264 first = XCAR (queue);
|
|
3265 second = Fcdr (first);
|
|
3266 first = Fcar (first);
|
|
3267 if (NILP (second))
|
|
3268 Vfeatures = first;
|
|
3269 else
|
|
3270 Ffset (first, second);
|
|
3271 queue = Fcdr (queue);
|
|
3272 }
|
|
3273 return Qnil;
|
|
3274 }
|
|
3275
|
970
|
3276 /* do_autoload GCPROs both arguments */
|
428
|
3277 void
|
|
3278 do_autoload (Lisp_Object fundef,
|
|
3279 Lisp_Object funname)
|
|
3280 {
|
|
3281 /* This function can GC */
|
|
3282 int speccount = specpdl_depth();
|
|
3283 Lisp_Object fun = funname;
|
970
|
3284 struct gcpro gcpro1, gcpro2, gcpro3;
|
428
|
3285
|
|
3286 CHECK_SYMBOL (funname);
|
970
|
3287 GCPRO3 (fundef, funname, fun);
|
428
|
3288
|
|
3289 /* Value saved here is to be restored into Vautoload_queue */
|
|
3290 record_unwind_protect (un_autoload, Vautoload_queue);
|
|
3291 Vautoload_queue = Qt;
|
|
3292 call4 (Qload, Fcar (Fcdr (fundef)), Qnil, noninteractive ? Qt : Qnil, Qnil);
|
|
3293
|
|
3294 {
|
|
3295 Lisp_Object queue;
|
|
3296
|
|
3297 /* Save the old autoloads, in case we ever do an unload. */
|
|
3298 for (queue = Vautoload_queue; CONSP (queue); queue = XCDR (queue))
|
|
3299 {
|
|
3300 Lisp_Object first = XCAR (queue);
|
|
3301 Lisp_Object second = Fcdr (first);
|
|
3302
|
|
3303 first = Fcar (first);
|
|
3304
|
|
3305 /* Note: This test is subtle. The cdr of an autoload-queue entry
|
|
3306 may be an atom if the autoload entry was generated by a defalias
|
|
3307 or fset. */
|
|
3308 if (CONSP (second))
|
|
3309 Fput (first, Qautoload, (XCDR (second)));
|
|
3310 }
|
|
3311 }
|
|
3312
|
|
3313 /* Once loading finishes, don't undo it. */
|
|
3314 Vautoload_queue = Qt;
|
771
|
3315 unbind_to (speccount);
|
428
|
3316
|
|
3317 fun = indirect_function (fun, 0);
|
|
3318
|
|
3319 #if 0 /* FSFmacs */
|
|
3320 if (!NILP (Fequal (fun, fundef)))
|
|
3321 #else
|
|
3322 if (UNBOUNDP (fun)
|
|
3323 || (CONSP (fun)
|
|
3324 && EQ (XCAR (fun), Qautoload)))
|
|
3325 #endif
|
563
|
3326 invalid_state ("Autoloading failed to define function", funname);
|
428
|
3327 UNGCPRO;
|
|
3328 }
|
|
3329
|
|
3330
|
|
3331 /************************************************************************/
|
|
3332 /* eval, funcall, apply */
|
|
3333 /************************************************************************/
|
|
3334
|
814
|
3335 /* NOTE: If you are hearing the endless complaint that function calls in
|
|
3336 elisp are extremely slow, it just isn't true any more! The stuff below
|
|
3337 -- in particular, the calling of subrs and compiled functions, the most
|
|
3338 common cases -- has been highly optimized. There isn't a whole lot left
|
|
3339 to do to squeeze more speed out except by switching to lexical
|
|
3340 variables, which would eliminate the specbind loop. (But the real gain
|
|
3341 from lexical variables would come from better optimization -- with
|
|
3342 dynamic binding, you have the constant problem that any function call
|
|
3343 that you haven't explicitly proven to be side-effect-free might
|
|
3344 potentially side effect your local variables, which makes optimization
|
|
3345 extremely difficult when there are function calls anywhere in a chunk of
|
|
3346 code to be optimized. Even worse, you don't know that *your* local
|
|
3347 variables aren't side-effecting an outer function's local variables, so
|
|
3348 it's impossible to optimize away almost *any* variable assignment.) */
|
|
3349
|
428
|
3350 static Lisp_Object funcall_lambda (Lisp_Object fun,
|
442
|
3351 int nargs, Lisp_Object args[]);
|
428
|
3352 static int in_warnings;
|
|
3353
|
|
3354
|
814
|
3355 void handle_compiled_function_with_and_rest (Lisp_Compiled_Function *f,
|
|
3356 int nargs,
|
|
3357 Lisp_Object args[]);
|
|
3358
|
|
3359 /* The theory behind making this a separate function is to shrink
|
|
3360 funcall_compiled_function() so as to increase the likelihood of a cache
|
|
3361 hit in the L1 cache -- &rest processing is not going to be fast anyway.
|
|
3362 The idea is the same as with execute_rare_opcode() in bytecode.c. We
|
|
3363 make this non-static to ensure the compiler doesn't inline it. */
|
|
3364
|
|
3365 void
|
|
3366 handle_compiled_function_with_and_rest (Lisp_Compiled_Function *f, int nargs,
|
|
3367 Lisp_Object args[])
|
|
3368 {
|
|
3369 REGISTER int i = 0;
|
|
3370 int max_non_rest_args = f->args_in_array - 1;
|
|
3371 int bindargs = min (nargs, max_non_rest_args);
|
|
3372
|
|
3373 for (i = 0; i < bindargs; i++)
|
|
3374 SPECBIND_FAST_UNSAFE (f->args[i], args[i]);
|
|
3375 for (i = bindargs; i < max_non_rest_args; i++)
|
|
3376 SPECBIND_FAST_UNSAFE (f->args[i], Qnil);
|
|
3377 SPECBIND_FAST_UNSAFE
|
|
3378 (f->args[max_non_rest_args],
|
|
3379 nargs > max_non_rest_args ?
|
|
3380 Flist (nargs - max_non_rest_args, &args[max_non_rest_args]) :
|
|
3381 Qnil);
|
|
3382 }
|
|
3383
|
|
3384 /* Apply compiled-function object FUN to the NARGS evaluated arguments
|
|
3385 in ARGS, and return the result of evaluation. */
|
|
3386 inline static Lisp_Object
|
|
3387 funcall_compiled_function (Lisp_Object fun, int nargs, Lisp_Object args[])
|
|
3388 {
|
|
3389 /* This function can GC */
|
|
3390 int speccount = specpdl_depth();
|
|
3391 REGISTER int i = 0;
|
|
3392 Lisp_Compiled_Function *f = XCOMPILED_FUNCTION (fun);
|
|
3393
|
|
3394 if (!OPAQUEP (f->instructions))
|
|
3395 /* Lazily munge the instructions into a more efficient form */
|
|
3396 optimize_compiled_function (fun);
|
|
3397
|
|
3398 /* optimize_compiled_function() guaranteed that f->specpdl_depth is
|
|
3399 the required space on the specbinding stack for binding the args
|
|
3400 and local variables of fun. So just reserve it once. */
|
|
3401 SPECPDL_RESERVE (f->specpdl_depth);
|
|
3402
|
|
3403 if (nargs == f->max_args) /* Optimize for the common case -- no unspecified
|
|
3404 optional arguments. */
|
|
3405 {
|
|
3406 #if 1
|
|
3407 for (i = 0; i < nargs; i++)
|
|
3408 SPECBIND_FAST_UNSAFE (f->args[i], args[i]);
|
|
3409 #else
|
|
3410 /* Here's an alternate way to write the loop that tries to further
|
|
3411 optimize funcalls for functions with few arguments by partially
|
|
3412 unrolling the loop. It's not clear whether this is a win since it
|
|
3413 increases the size of the function and the possibility of L1 cache
|
|
3414 misses. (Microsoft VC++ 6 with /O2 /G5 generates 0x90 == 144 bytes
|
|
3415 per SPECBIND_FAST_UNSAFE().) Tests under VC++ 6, running the byte
|
|
3416 compiler repeatedly and looking at the total time, show very
|
|
3417 little difference between the simple loop above, the unrolled code
|
|
3418 below, and a "partly unrolled" solution with only cases 0-2 below
|
|
3419 instead of 0-4. Therefore, I'm keeping it at the simple loop
|
|
3420 because it's smaller. */
|
|
3421 switch (nargs)
|
|
3422 {
|
|
3423 default:
|
|
3424 for (i = nargs - 1; i >= 4; i--)
|
|
3425 SPECBIND_FAST_UNSAFE (f->args[i], args[i]);
|
|
3426 case 4: SPECBIND_FAST_UNSAFE (f->args[3], args[3]);
|
|
3427 case 3: SPECBIND_FAST_UNSAFE (f->args[2], args[2]);
|
|
3428 case 2: SPECBIND_FAST_UNSAFE (f->args[1], args[1]);
|
|
3429 case 1: SPECBIND_FAST_UNSAFE (f->args[0], args[0]);
|
|
3430 case 0: break;
|
|
3431 }
|
|
3432 #endif
|
|
3433 }
|
|
3434 else if (nargs < f->min_args)
|
|
3435 goto wrong_number_of_arguments;
|
|
3436 else if (nargs < f->max_args)
|
|
3437 {
|
|
3438 for (i = 0; i < nargs; i++)
|
|
3439 SPECBIND_FAST_UNSAFE (f->args[i], args[i]);
|
|
3440 for (i = nargs; i < f->max_args; i++)
|
|
3441 SPECBIND_FAST_UNSAFE (f->args[i], Qnil);
|
|
3442 }
|
|
3443 else if (f->max_args == MANY)
|
|
3444 handle_compiled_function_with_and_rest (f, nargs, args);
|
|
3445 else
|
|
3446 {
|
|
3447 wrong_number_of_arguments:
|
|
3448 /* The actual printed compiled_function object is incomprehensible.
|
|
3449 Check the backtrace to see if we can get a more meaningful symbol. */
|
|
3450 if (EQ (fun, indirect_function (*backtrace_list->function, 0)))
|
|
3451 fun = *backtrace_list->function;
|
|
3452 return Fsignal (Qwrong_number_of_arguments,
|
|
3453 list2 (fun, make_int (nargs)));
|
|
3454 }
|
|
3455
|
|
3456 {
|
|
3457 Lisp_Object value =
|
|
3458 execute_optimized_program ((Opbyte *) XOPAQUE_DATA (f->instructions),
|
|
3459 f->stack_depth,
|
|
3460 XVECTOR_DATA (f->constants));
|
|
3461
|
|
3462 /* The attempt to optimize this by only unbinding variables failed
|
|
3463 because using buffer-local variables as function parameters
|
|
3464 leads to specpdl_ptr->func != 0 */
|
|
3465 /* UNBIND_TO_GCPRO_VARIABLES_ONLY (speccount, value); */
|
|
3466 UNBIND_TO_GCPRO (speccount, value);
|
|
3467 return value;
|
|
3468 }
|
|
3469 }
|
|
3470
|
428
|
3471 DEFUN ("eval", Feval, 1, 1, 0, /*
|
|
3472 Evaluate FORM and return its value.
|
|
3473 */
|
|
3474 (form))
|
|
3475 {
|
|
3476 /* This function can GC */
|
|
3477 Lisp_Object fun, val, original_fun, original_args;
|
|
3478 int nargs;
|
|
3479 struct backtrace backtrace;
|
|
3480
|
1318
|
3481 #ifdef ERROR_CHECK_TRAPPING_PROBLEMS
|
|
3482 check_proper_critical_section_lisp_protection ();
|
|
3483 #endif
|
|
3484
|
428
|
3485 /* I think this is a pretty safe place to call Lisp code, don't you? */
|
853
|
3486 while (!in_warnings && !NILP (Vpending_warnings)
|
|
3487 /* well, perhaps not so safe after all! */
|
|
3488 && !(inhibit_flags & INHIBIT_ANY_CHANGE_AFFECTING_REDISPLAY))
|
428
|
3489 {
|
|
3490 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4;
|
1204
|
3491 Lisp_Object this_warning_cons, this_warning, class_, level, messij;
|
853
|
3492 int speccount = internal_bind_int (&in_warnings, 1);
|
|
3493
|
428
|
3494 this_warning_cons = Vpending_warnings;
|
|
3495 this_warning = XCAR (this_warning_cons);
|
|
3496 /* in case an error occurs in the warn function, at least
|
|
3497 it won't happen infinitely */
|
|
3498 Vpending_warnings = XCDR (Vpending_warnings);
|
853
|
3499 free_cons (this_warning_cons);
|
1204
|
3500 class_ = XCAR (this_warning);
|
428
|
3501 level = XCAR (XCDR (this_warning));
|
|
3502 messij = XCAR (XCDR (XCDR (this_warning)));
|
|
3503 free_list (this_warning);
|
|
3504
|
|
3505 if (NILP (Vpending_warnings))
|
|
3506 Vpending_warnings_tail = Qnil; /* perhaps not strictly necessary,
|
|
3507 but safer */
|
|
3508
|
1204
|
3509 GCPRO4 (form, class_, level, messij);
|
428
|
3510 if (!STRINGP (messij))
|
|
3511 messij = Fprin1_to_string (messij, Qnil);
|
1204
|
3512 call3 (Qdisplay_warning, class_, messij, level);
|
428
|
3513 UNGCPRO;
|
771
|
3514 unbind_to (speccount);
|
428
|
3515 }
|
|
3516
|
|
3517 if (!CONSP (form))
|
|
3518 {
|
|
3519 if (SYMBOLP (form))
|
|
3520 return Fsymbol_value (form);
|
|
3521 else
|
|
3522 return form;
|
|
3523 }
|
|
3524
|
|
3525 QUIT;
|
814
|
3526 if (need_to_garbage_collect)
|
428
|
3527 {
|
|
3528 struct gcpro gcpro1;
|
|
3529 GCPRO1 (form);
|
|
3530 garbage_collect_1 ();
|
|
3531 UNGCPRO;
|
|
3532 }
|
|
3533
|
|
3534 if (++lisp_eval_depth > max_lisp_eval_depth)
|
|
3535 {
|
|
3536 if (max_lisp_eval_depth < 100)
|
|
3537 max_lisp_eval_depth = 100;
|
|
3538 if (lisp_eval_depth > max_lisp_eval_depth)
|
563
|
3539 stack_overflow ("Lisp nesting exceeds `max-lisp-eval-depth'",
|
|
3540 Qunbound);
|
428
|
3541 }
|
|
3542
|
|
3543 /* We guaranteed CONSP (form) above */
|
|
3544 original_fun = XCAR (form);
|
|
3545 original_args = XCDR (form);
|
|
3546
|
|
3547 GET_EXTERNAL_LIST_LENGTH (original_args, nargs);
|
|
3548
|
|
3549 backtrace.pdlcount = specpdl_depth();
|
|
3550 backtrace.function = &original_fun; /* This also protects them from gc */
|
|
3551 backtrace.args = &original_args;
|
|
3552 backtrace.nargs = UNEVALLED;
|
|
3553 backtrace.evalargs = 1;
|
|
3554 backtrace.debug_on_exit = 0;
|
1292
|
3555 backtrace.function_being_called = 0;
|
428
|
3556 PUSH_BACKTRACE (backtrace);
|
|
3557
|
|
3558 if (debug_on_next_call)
|
|
3559 do_debug_on_call (Qt);
|
|
3560
|
|
3561 /* At this point, only original_fun and original_args
|
|
3562 have values that will be used below. */
|
|
3563 retry:
|
|
3564 fun = indirect_function (original_fun, 1);
|
|
3565
|
|
3566 if (SUBRP (fun))
|
|
3567 {
|
|
3568 Lisp_Subr *subr = XSUBR (fun);
|
|
3569 int max_args = subr->max_args;
|
|
3570
|
|
3571 if (nargs < subr->min_args)
|
|
3572 goto wrong_number_of_arguments;
|
|
3573
|
|
3574 if (max_args == UNEVALLED) /* Optimize for the common case */
|
|
3575 {
|
|
3576 backtrace.evalargs = 0;
|
1292
|
3577 PROFILE_ENTER_FUNCTION ();
|
428
|
3578 val = (((Lisp_Object (*) (Lisp_Object)) subr_function (subr))
|
|
3579 (original_args));
|
1292
|
3580 PROFILE_EXIT_FUNCTION ();
|
428
|
3581 }
|
|
3582 else if (nargs <= max_args)
|
|
3583 {
|
|
3584 struct gcpro gcpro1;
|
|
3585 Lisp_Object args[SUBR_MAX_ARGS];
|
|
3586 REGISTER Lisp_Object *p = args;
|
|
3587
|
|
3588 GCPRO1 (args[0]);
|
|
3589 gcpro1.nvars = 0;
|
|
3590
|
|
3591 {
|
|
3592 LIST_LOOP_2 (arg, original_args)
|
|
3593 {
|
|
3594 *p++ = Feval (arg);
|
|
3595 gcpro1.nvars++;
|
|
3596 }
|
|
3597 }
|
|
3598
|
|
3599 /* &optional args default to nil. */
|
|
3600 while (p - args < max_args)
|
|
3601 *p++ = Qnil;
|
|
3602
|
|
3603 backtrace.args = args;
|
|
3604 backtrace.nargs = nargs;
|
|
3605
|
1292
|
3606 PROFILE_ENTER_FUNCTION ();
|
428
|
3607 FUNCALL_SUBR (val, subr, args, max_args);
|
1292
|
3608 PROFILE_EXIT_FUNCTION ();
|
428
|
3609
|
|
3610 UNGCPRO;
|
|
3611 }
|
|
3612 else if (max_args == MANY)
|
|
3613 {
|
|
3614 /* Pass a vector of evaluated arguments */
|
|
3615 struct gcpro gcpro1;
|
|
3616 Lisp_Object *args = alloca_array (Lisp_Object, nargs);
|
|
3617 REGISTER Lisp_Object *p = args;
|
|
3618
|
|
3619 GCPRO1 (args[0]);
|
|
3620 gcpro1.nvars = 0;
|
|
3621
|
|
3622 {
|
|
3623 LIST_LOOP_2 (arg, original_args)
|
|
3624 {
|
|
3625 *p++ = Feval (arg);
|
|
3626 gcpro1.nvars++;
|
|
3627 }
|
|
3628 }
|
|
3629
|
|
3630 backtrace.args = args;
|
|
3631 backtrace.nargs = nargs;
|
|
3632
|
1292
|
3633 PROFILE_ENTER_FUNCTION ();
|
428
|
3634 val = (((Lisp_Object (*) (int, Lisp_Object *)) subr_function (subr))
|
|
3635 (nargs, args));
|
1292
|
3636 PROFILE_EXIT_FUNCTION ();
|
428
|
3637
|
|
3638 UNGCPRO;
|
|
3639 }
|
|
3640 else
|
|
3641 {
|
|
3642 wrong_number_of_arguments:
|
440
|
3643 val = signal_wrong_number_of_arguments_error (original_fun, nargs);
|
428
|
3644 }
|
|
3645 }
|
|
3646 else if (COMPILED_FUNCTIONP (fun))
|
|
3647 {
|
|
3648 struct gcpro gcpro1;
|
|
3649 Lisp_Object *args = alloca_array (Lisp_Object, nargs);
|
|
3650 REGISTER Lisp_Object *p = args;
|
|
3651
|
|
3652 GCPRO1 (args[0]);
|
|
3653 gcpro1.nvars = 0;
|
|
3654
|
|
3655 {
|
|
3656 LIST_LOOP_2 (arg, original_args)
|
|
3657 {
|
|
3658 *p++ = Feval (arg);
|
|
3659 gcpro1.nvars++;
|
|
3660 }
|
|
3661 }
|
|
3662
|
|
3663 backtrace.args = args;
|
|
3664 backtrace.nargs = nargs;
|
|
3665 backtrace.evalargs = 0;
|
|
3666
|
1292
|
3667 PROFILE_ENTER_FUNCTION ();
|
428
|
3668 val = funcall_compiled_function (fun, nargs, args);
|
1292
|
3669 PROFILE_EXIT_FUNCTION ();
|
428
|
3670
|
|
3671 /* Do the debug-on-exit now, while args is still GCPROed. */
|
|
3672 if (backtrace.debug_on_exit)
|
|
3673 val = do_debug_on_exit (val);
|
|
3674 /* Don't do it again when we return to eval. */
|
|
3675 backtrace.debug_on_exit = 0;
|
|
3676
|
|
3677 UNGCPRO;
|
|
3678 }
|
|
3679 else if (CONSP (fun))
|
|
3680 {
|
|
3681 Lisp_Object funcar = XCAR (fun);
|
|
3682
|
|
3683 if (EQ (funcar, Qautoload))
|
|
3684 {
|
970
|
3685 /* do_autoload GCPROs both arguments */
|
428
|
3686 do_autoload (fun, original_fun);
|
|
3687 goto retry;
|
|
3688 }
|
|
3689 else if (EQ (funcar, Qmacro))
|
|
3690 {
|
1292
|
3691 PROFILE_ENTER_FUNCTION ();
|
428
|
3692 val = Feval (apply1 (XCDR (fun), original_args));
|
1292
|
3693 PROFILE_EXIT_FUNCTION ();
|
428
|
3694 }
|
|
3695 else if (EQ (funcar, Qlambda))
|
|
3696 {
|
|
3697 struct gcpro gcpro1;
|
|
3698 Lisp_Object *args = alloca_array (Lisp_Object, nargs);
|
|
3699 REGISTER Lisp_Object *p = args;
|
|
3700
|
|
3701 GCPRO1 (args[0]);
|
|
3702 gcpro1.nvars = 0;
|
|
3703
|
|
3704 {
|
|
3705 LIST_LOOP_2 (arg, original_args)
|
|
3706 {
|
|
3707 *p++ = Feval (arg);
|
|
3708 gcpro1.nvars++;
|
|
3709 }
|
|
3710 }
|
|
3711
|
|
3712 UNGCPRO;
|
|
3713
|
|
3714 backtrace.args = args; /* this also GCPROs `args' */
|
|
3715 backtrace.nargs = nargs;
|
|
3716 backtrace.evalargs = 0;
|
|
3717
|
1292
|
3718 PROFILE_ENTER_FUNCTION ();
|
428
|
3719 val = funcall_lambda (fun, nargs, args);
|
1292
|
3720 PROFILE_EXIT_FUNCTION ();
|
428
|
3721
|
|
3722 /* Do the debug-on-exit now, while args is still GCPROed. */
|
|
3723 if (backtrace.debug_on_exit)
|
|
3724 val = do_debug_on_exit (val);
|
|
3725 /* Don't do it again when we return to eval. */
|
|
3726 backtrace.debug_on_exit = 0;
|
|
3727 }
|
|
3728 else
|
|
3729 {
|
|
3730 goto invalid_function;
|
|
3731 }
|
|
3732 }
|
|
3733 else /* ! (SUBRP (fun) || COMPILED_FUNCTIONP (fun) || CONSP (fun)) */
|
|
3734 {
|
|
3735 invalid_function:
|
436
|
3736 val = signal_invalid_function_error (fun);
|
428
|
3737 }
|
|
3738
|
|
3739 lisp_eval_depth--;
|
|
3740 if (backtrace.debug_on_exit)
|
|
3741 val = do_debug_on_exit (val);
|
|
3742 POP_BACKTRACE (backtrace);
|
|
3743 return val;
|
|
3744 }
|
|
3745
|
|
3746
|
1111
|
3747
|
|
3748 static void
|
|
3749 run_post_gc_hook (void)
|
|
3750 {
|
|
3751 Lisp_Object args[2];
|
|
3752
|
|
3753 args[0] = Qpost_gc_hook;
|
|
3754 args[1] = Fcons (Fcons (Qfinalize_list, zap_finalize_list ()), Qnil);
|
|
3755
|
|
3756 run_hook_with_args_trapping_problems
|
1333
|
3757 (Qgarbage_collecting, 2, args, RUN_HOOKS_TO_COMPLETION,
|
1111
|
3758 INHIBIT_QUIT | NO_INHIBIT_ERRORS);
|
|
3759 }
|
|
3760
|
428
|
3761 DEFUN ("funcall", Ffuncall, 1, MANY, 0, /*
|
|
3762 Call first argument as a function, passing the remaining arguments to it.
|
|
3763 Thus, (funcall 'cons 'x 'y) returns (x . y).
|
|
3764 */
|
|
3765 (int nargs, Lisp_Object *args))
|
|
3766 {
|
|
3767 /* This function can GC */
|
|
3768 Lisp_Object fun;
|
|
3769 Lisp_Object val;
|
|
3770 struct backtrace backtrace;
|
|
3771 int fun_nargs = nargs - 1;
|
|
3772 Lisp_Object *fun_args = args + 1;
|
|
3773
|
1318
|
3774 /* QUIT will check for proper redisplay wrapping */
|
|
3775
|
428
|
3776 QUIT;
|
851
|
3777
|
|
3778 if (funcall_allocation_flag)
|
|
3779 {
|
|
3780 if (need_to_garbage_collect)
|
|
3781 /* Callers should gcpro lexpr args */
|
|
3782 garbage_collect_1 ();
|
|
3783 if (need_to_check_c_alloca)
|
|
3784 {
|
|
3785 if (++funcall_alloca_count >= MAX_FUNCALLS_BETWEEN_ALLOCA_CLEANUP)
|
|
3786 {
|
|
3787 xemacs_c_alloca (0);
|
|
3788 funcall_alloca_count = 0;
|
|
3789 }
|
|
3790 }
|
887
|
3791 if (need_to_signal_post_gc)
|
|
3792 {
|
|
3793 need_to_signal_post_gc = 0;
|
1111
|
3794 recompute_funcall_allocation_flag ();
|
|
3795 run_post_gc_hook ();
|
887
|
3796 }
|
851
|
3797 }
|
428
|
3798
|
|
3799 if (++lisp_eval_depth > max_lisp_eval_depth)
|
|
3800 {
|
|
3801 if (max_lisp_eval_depth < 100)
|
|
3802 max_lisp_eval_depth = 100;
|
|
3803 if (lisp_eval_depth > max_lisp_eval_depth)
|
563
|
3804 stack_overflow ("Lisp nesting exceeds `max-lisp-eval-depth'",
|
|
3805 Qunbound);
|
428
|
3806 }
|
|
3807
|
1292
|
3808 backtrace.pdlcount = specpdl_depth ();
|
428
|
3809 backtrace.function = &args[0];
|
|
3810 backtrace.args = fun_args;
|
|
3811 backtrace.nargs = fun_nargs;
|
|
3812 backtrace.evalargs = 0;
|
|
3813 backtrace.debug_on_exit = 0;
|
1292
|
3814 backtrace.function_being_called = 0;
|
428
|
3815 PUSH_BACKTRACE (backtrace);
|
|
3816
|
|
3817 if (debug_on_next_call)
|
|
3818 do_debug_on_call (Qlambda);
|
|
3819
|
|
3820 retry:
|
|
3821
|
|
3822 fun = args[0];
|
|
3823
|
|
3824 /* We could call indirect_function directly, but profiling shows
|
|
3825 this is worth optimizing by partially unrolling the loop. */
|
|
3826 if (SYMBOLP (fun))
|
|
3827 {
|
|
3828 fun = XSYMBOL (fun)->function;
|
|
3829 if (SYMBOLP (fun))
|
|
3830 {
|
|
3831 fun = XSYMBOL (fun)->function;
|
|
3832 if (SYMBOLP (fun))
|
|
3833 fun = indirect_function (fun, 1);
|
|
3834 }
|
|
3835 }
|
|
3836
|
|
3837 if (SUBRP (fun))
|
|
3838 {
|
|
3839 Lisp_Subr *subr = XSUBR (fun);
|
|
3840 int max_args = subr->max_args;
|
|
3841 Lisp_Object spacious_args[SUBR_MAX_ARGS];
|
|
3842
|
|
3843 if (fun_nargs == max_args) /* Optimize for the common case */
|
|
3844 {
|
|
3845 funcall_subr:
|
1292
|
3846 PROFILE_ENTER_FUNCTION ();
|
428
|
3847 FUNCALL_SUBR (val, subr, fun_args, max_args);
|
1292
|
3848 PROFILE_EXIT_FUNCTION ();
|
428
|
3849 }
|
436
|
3850 else if (fun_nargs < subr->min_args)
|
|
3851 {
|
|
3852 goto wrong_number_of_arguments;
|
|
3853 }
|
428
|
3854 else if (fun_nargs < max_args)
|
|
3855 {
|
|
3856 Lisp_Object *p = spacious_args;
|
|
3857
|
|
3858 /* Default optionals to nil */
|
|
3859 while (fun_nargs--)
|
|
3860 *p++ = *fun_args++;
|
|
3861 while (p - spacious_args < max_args)
|
|
3862 *p++ = Qnil;
|
|
3863
|
|
3864 fun_args = spacious_args;
|
|
3865 goto funcall_subr;
|
|
3866 }
|
|
3867 else if (max_args == MANY)
|
|
3868 {
|
1292
|
3869 PROFILE_ENTER_FUNCTION ();
|
436
|
3870 val = SUBR_FUNCTION (subr, MANY) (fun_nargs, fun_args);
|
1292
|
3871 PROFILE_EXIT_FUNCTION ();
|
428
|
3872 }
|
|
3873 else if (max_args == UNEVALLED) /* Can't funcall a special form */
|
|
3874 {
|
|
3875 goto invalid_function;
|
|
3876 }
|
|
3877 else
|
|
3878 {
|
|
3879 wrong_number_of_arguments:
|
436
|
3880 val = signal_wrong_number_of_arguments_error (fun, fun_nargs);
|
428
|
3881 }
|
|
3882 }
|
|
3883 else if (COMPILED_FUNCTIONP (fun))
|
|
3884 {
|
1292
|
3885 PROFILE_ENTER_FUNCTION ();
|
428
|
3886 val = funcall_compiled_function (fun, fun_nargs, fun_args);
|
1292
|
3887 PROFILE_EXIT_FUNCTION ();
|
428
|
3888 }
|
|
3889 else if (CONSP (fun))
|
|
3890 {
|
|
3891 Lisp_Object funcar = XCAR (fun);
|
|
3892
|
|
3893 if (EQ (funcar, Qlambda))
|
|
3894 {
|
1292
|
3895 PROFILE_ENTER_FUNCTION ();
|
428
|
3896 val = funcall_lambda (fun, fun_nargs, fun_args);
|
1292
|
3897 PROFILE_EXIT_FUNCTION ();
|
428
|
3898 }
|
|
3899 else if (EQ (funcar, Qautoload))
|
|
3900 {
|
970
|
3901 /* do_autoload GCPROs both arguments */
|
428
|
3902 do_autoload (fun, args[0]);
|
|
3903 goto retry;
|
|
3904 }
|
|
3905 else /* Can't funcall a macro */
|
|
3906 {
|
|
3907 goto invalid_function;
|
|
3908 }
|
|
3909 }
|
|
3910 else if (UNBOUNDP (fun))
|
|
3911 {
|
436
|
3912 val = signal_void_function_error (args[0]);
|
428
|
3913 }
|
|
3914 else
|
|
3915 {
|
|
3916 invalid_function:
|
436
|
3917 val = signal_invalid_function_error (fun);
|
428
|
3918 }
|
|
3919
|
|
3920 lisp_eval_depth--;
|
|
3921 if (backtrace.debug_on_exit)
|
|
3922 val = do_debug_on_exit (val);
|
|
3923 POP_BACKTRACE (backtrace);
|
|
3924 return val;
|
|
3925 }
|
|
3926
|
|
3927 DEFUN ("functionp", Ffunctionp, 1, 1, 0, /*
|
|
3928 Return t if OBJECT can be called as a function, else nil.
|
|
3929 A function is an object that can be applied to arguments,
|
|
3930 using for example `funcall' or `apply'.
|
|
3931 */
|
|
3932 (object))
|
|
3933 {
|
|
3934 if (SYMBOLP (object))
|
|
3935 object = indirect_function (object, 0);
|
|
3936
|
919
|
3937 if (COMPILED_FUNCTIONP (object) || SUBRP (object))
|
|
3938 return Qt;
|
|
3939 if (CONSP (object))
|
|
3940 {
|
|
3941 Lisp_Object car = XCAR (object);
|
|
3942 if (EQ (car, Qlambda))
|
|
3943 return Qt;
|
|
3944 if (EQ (car, Qautoload)
|
|
3945 && NILP (Fcar_safe (Fcdr_safe (Fcdr_safe (Fcdr_safe (XCDR (object)))))))
|
|
3946 return Qt;
|
|
3947 }
|
|
3948 return Qnil;
|
428
|
3949 }
|
|
3950
|
|
3951 static Lisp_Object
|
|
3952 function_argcount (Lisp_Object function, int function_min_args_p)
|
|
3953 {
|
|
3954 Lisp_Object orig_function = function;
|
|
3955 Lisp_Object arglist;
|
|
3956
|
|
3957 retry:
|
|
3958
|
|
3959 if (SYMBOLP (function))
|
|
3960 function = indirect_function (function, 1);
|
|
3961
|
|
3962 if (SUBRP (function))
|
|
3963 {
|
442
|
3964 /* Using return with the ?: operator tickles a DEC CC compiler bug. */
|
|
3965 if (function_min_args_p)
|
|
3966 return Fsubr_min_args (function);
|
|
3967 else
|
|
3968 return Fsubr_max_args (function);
|
428
|
3969 }
|
|
3970 else if (COMPILED_FUNCTIONP (function))
|
|
3971 {
|
814
|
3972 Lisp_Compiled_Function *f = XCOMPILED_FUNCTION (function);
|
|
3973
|
1737
|
3974 if (!OPAQUEP (f->instructions))
|
|
3975 /* Lazily munge the instructions into a more efficient form */
|
|
3976 /* Needed to set max_args */
|
|
3977 optimize_compiled_function (function);
|
|
3978
|
814
|
3979 if (function_min_args_p)
|
|
3980 return make_int (f->min_args);
|
|
3981 else if (f->max_args == MANY)
|
|
3982 return Qnil;
|
|
3983 else
|
|
3984 return make_int (f->max_args);
|
428
|
3985 }
|
|
3986 else if (CONSP (function))
|
|
3987 {
|
|
3988 Lisp_Object funcar = XCAR (function);
|
|
3989
|
|
3990 if (EQ (funcar, Qmacro))
|
|
3991 {
|
|
3992 function = XCDR (function);
|
|
3993 goto retry;
|
|
3994 }
|
|
3995 else if (EQ (funcar, Qautoload))
|
|
3996 {
|
970
|
3997 /* do_autoload GCPROs both arguments */
|
428
|
3998 do_autoload (function, orig_function);
|
442
|
3999 function = orig_function;
|
428
|
4000 goto retry;
|
|
4001 }
|
|
4002 else if (EQ (funcar, Qlambda))
|
|
4003 {
|
|
4004 arglist = Fcar (XCDR (function));
|
|
4005 }
|
|
4006 else
|
|
4007 {
|
|
4008 goto invalid_function;
|
|
4009 }
|
|
4010 }
|
|
4011 else
|
|
4012 {
|
|
4013 invalid_function:
|
442
|
4014 return signal_invalid_function_error (orig_function);
|
428
|
4015 }
|
|
4016
|
|
4017 {
|
|
4018 int argcount = 0;
|
|
4019
|
|
4020 EXTERNAL_LIST_LOOP_2 (arg, arglist)
|
|
4021 {
|
|
4022 if (EQ (arg, Qand_optional))
|
|
4023 {
|
|
4024 if (function_min_args_p)
|
|
4025 break;
|
|
4026 }
|
|
4027 else if (EQ (arg, Qand_rest))
|
|
4028 {
|
|
4029 if (function_min_args_p)
|
|
4030 break;
|
|
4031 else
|
|
4032 return Qnil;
|
|
4033 }
|
|
4034 else
|
|
4035 {
|
|
4036 argcount++;
|
|
4037 }
|
|
4038 }
|
|
4039
|
|
4040 return make_int (argcount);
|
|
4041 }
|
|
4042 }
|
|
4043
|
|
4044 DEFUN ("function-min-args", Ffunction_min_args, 1, 1, 0, /*
|
617
|
4045 Return the minimum number of arguments a function may be called with.
|
428
|
4046 The function may be any form that can be passed to `funcall',
|
|
4047 any special form, or any macro.
|
853
|
4048
|
|
4049 To check if a function can be called with a specified number of
|
|
4050 arguments, use `function-allows-args'.
|
428
|
4051 */
|
|
4052 (function))
|
|
4053 {
|
|
4054 return function_argcount (function, 1);
|
|
4055 }
|
|
4056
|
|
4057 DEFUN ("function-max-args", Ffunction_max_args, 1, 1, 0, /*
|
617
|
4058 Return the maximum number of arguments a function may be called with.
|
428
|
4059 The function may be any form that can be passed to `funcall',
|
|
4060 any special form, or any macro.
|
|
4061 If the function takes an arbitrary number of arguments or is
|
|
4062 a built-in special form, nil is returned.
|
853
|
4063
|
|
4064 To check if a function can be called with a specified number of
|
|
4065 arguments, use `function-allows-args'.
|
428
|
4066 */
|
|
4067 (function))
|
|
4068 {
|
|
4069 return function_argcount (function, 0);
|
|
4070 }
|
|
4071
|
|
4072
|
|
4073 DEFUN ("apply", Fapply, 2, MANY, 0, /*
|
|
4074 Call FUNCTION with the remaining args, using the last arg as a list of args.
|
|
4075 Thus, (apply '+ 1 2 '(3 4)) returns 10.
|
|
4076 */
|
|
4077 (int nargs, Lisp_Object *args))
|
|
4078 {
|
|
4079 /* This function can GC */
|
|
4080 Lisp_Object fun = args[0];
|
|
4081 Lisp_Object spread_arg = args [nargs - 1];
|
|
4082 int numargs;
|
|
4083 int funcall_nargs;
|
|
4084
|
|
4085 GET_EXTERNAL_LIST_LENGTH (spread_arg, numargs);
|
|
4086
|
|
4087 if (numargs == 0)
|
|
4088 /* (apply foo 0 1 '()) */
|
|
4089 return Ffuncall (nargs - 1, args);
|
|
4090 else if (numargs == 1)
|
|
4091 {
|
|
4092 /* (apply foo 0 1 '(2)) */
|
|
4093 args [nargs - 1] = XCAR (spread_arg);
|
|
4094 return Ffuncall (nargs, args);
|
|
4095 }
|
|
4096
|
|
4097 /* -1 for function, -1 for spread arg */
|
|
4098 numargs = nargs - 2 + numargs;
|
|
4099 /* +1 for function */
|
|
4100 funcall_nargs = 1 + numargs;
|
|
4101
|
|
4102 if (SYMBOLP (fun))
|
|
4103 fun = indirect_function (fun, 0);
|
|
4104
|
|
4105 if (SUBRP (fun))
|
|
4106 {
|
|
4107 Lisp_Subr *subr = XSUBR (fun);
|
|
4108 int max_args = subr->max_args;
|
|
4109
|
|
4110 if (numargs < subr->min_args
|
|
4111 || (max_args >= 0 && max_args < numargs))
|
|
4112 {
|
|
4113 /* Let funcall get the error */
|
|
4114 }
|
|
4115 else if (max_args > numargs)
|
|
4116 {
|
|
4117 /* Avoid having funcall cons up yet another new vector of arguments
|
|
4118 by explicitly supplying nil's for optional values */
|
|
4119 funcall_nargs += (max_args - numargs);
|
|
4120 }
|
|
4121 }
|
|
4122 else if (UNBOUNDP (fun))
|
|
4123 {
|
|
4124 /* Let funcall get the error */
|
|
4125 fun = args[0];
|
|
4126 }
|
|
4127
|
|
4128 {
|
|
4129 REGISTER int i;
|
|
4130 Lisp_Object *funcall_args = alloca_array (Lisp_Object, funcall_nargs);
|
|
4131 struct gcpro gcpro1;
|
|
4132
|
|
4133 GCPRO1 (*funcall_args);
|
|
4134 gcpro1.nvars = funcall_nargs;
|
|
4135
|
|
4136 /* Copy in the unspread args */
|
|
4137 memcpy (funcall_args, args, (nargs - 1) * sizeof (Lisp_Object));
|
|
4138 /* Spread the last arg we got. Its first element goes in
|
|
4139 the slot that it used to occupy, hence this value of I. */
|
|
4140 for (i = nargs - 1;
|
|
4141 !NILP (spread_arg); /* i < 1 + numargs */
|
|
4142 i++, spread_arg = XCDR (spread_arg))
|
|
4143 {
|
|
4144 funcall_args [i] = XCAR (spread_arg);
|
|
4145 }
|
|
4146 /* Supply nil for optional args (to subrs) */
|
|
4147 for (; i < funcall_nargs; i++)
|
|
4148 funcall_args[i] = Qnil;
|
|
4149
|
|
4150
|
|
4151 RETURN_UNGCPRO (Ffuncall (funcall_nargs, funcall_args));
|
|
4152 }
|
|
4153 }
|
|
4154
|
|
4155
|
|
4156 /* Apply lambda list FUN to the NARGS evaluated arguments in ARGS and
|
|
4157 return the result of evaluation. */
|
|
4158
|
|
4159 static Lisp_Object
|
|
4160 funcall_lambda (Lisp_Object fun, int nargs, Lisp_Object args[])
|
|
4161 {
|
|
4162 /* This function can GC */
|
442
|
4163 Lisp_Object arglist, body, tail;
|
428
|
4164 int speccount = specpdl_depth();
|
|
4165 REGISTER int i = 0;
|
|
4166
|
|
4167 tail = XCDR (fun);
|
|
4168
|
|
4169 if (!CONSP (tail))
|
|
4170 goto invalid_function;
|
|
4171
|
|
4172 arglist = XCAR (tail);
|
|
4173 body = XCDR (tail);
|
|
4174
|
|
4175 {
|
|
4176 int optional = 0, rest = 0;
|
|
4177
|
442
|
4178 EXTERNAL_LIST_LOOP_2 (symbol, arglist)
|
428
|
4179 {
|
|
4180 if (!SYMBOLP (symbol))
|
|
4181 goto invalid_function;
|
|
4182 if (EQ (symbol, Qand_rest))
|
|
4183 rest = 1;
|
|
4184 else if (EQ (symbol, Qand_optional))
|
|
4185 optional = 1;
|
|
4186 else if (rest)
|
|
4187 {
|
|
4188 specbind (symbol, Flist (nargs - i, &args[i]));
|
|
4189 i = nargs;
|
|
4190 }
|
|
4191 else if (i < nargs)
|
|
4192 specbind (symbol, args[i++]);
|
|
4193 else if (!optional)
|
|
4194 goto wrong_number_of_arguments;
|
|
4195 else
|
|
4196 specbind (symbol, Qnil);
|
|
4197 }
|
|
4198 }
|
|
4199
|
|
4200 if (i < nargs)
|
|
4201 goto wrong_number_of_arguments;
|
|
4202
|
771
|
4203 return unbind_to_1 (speccount, Fprogn (body));
|
428
|
4204
|
|
4205 wrong_number_of_arguments:
|
436
|
4206 return signal_wrong_number_of_arguments_error (fun, nargs);
|
428
|
4207
|
|
4208 invalid_function:
|
436
|
4209 return signal_invalid_function_error (fun);
|
428
|
4210 }
|
|
4211
|
|
4212
|
|
4213 /************************************************************************/
|
|
4214 /* Run hook variables in various ways. */
|
|
4215 /************************************************************************/
|
|
4216
|
|
4217 DEFUN ("run-hooks", Frun_hooks, 1, MANY, 0, /*
|
|
4218 Run each hook in HOOKS. Major mode functions use this.
|
|
4219 Each argument should be a symbol, a hook variable.
|
|
4220 These symbols are processed in the order specified.
|
|
4221 If a hook symbol has a non-nil value, that value may be a function
|
|
4222 or a list of functions to be called to run the hook.
|
|
4223 If the value is a function, it is called with no arguments.
|
|
4224 If it is a list, the elements are called, in order, with no arguments.
|
|
4225
|
|
4226 To make a hook variable buffer-local, use `make-local-hook',
|
|
4227 not `make-local-variable'.
|
|
4228 */
|
|
4229 (int nargs, Lisp_Object *args))
|
|
4230 {
|
|
4231 REGISTER int i;
|
|
4232
|
|
4233 for (i = 0; i < nargs; i++)
|
|
4234 run_hook_with_args (1, args + i, RUN_HOOKS_TO_COMPLETION);
|
|
4235
|
|
4236 return Qnil;
|
|
4237 }
|
|
4238
|
|
4239 DEFUN ("run-hook-with-args", Frun_hook_with_args, 1, MANY, 0, /*
|
|
4240 Run HOOK with the specified arguments ARGS.
|
|
4241 HOOK should be a symbol, a hook variable. If HOOK has a non-nil
|
|
4242 value, that value may be a function or a list of functions to be
|
|
4243 called to run the hook. If the value is a function, it is called with
|
|
4244 the given arguments and its return value is returned. If it is a list
|
|
4245 of functions, those functions are called, in order,
|
|
4246 with the given arguments ARGS.
|
444
|
4247 It is best not to depend on the value returned by `run-hook-with-args',
|
428
|
4248 as that may change.
|
|
4249
|
|
4250 To make a hook variable buffer-local, use `make-local-hook',
|
|
4251 not `make-local-variable'.
|
|
4252 */
|
|
4253 (int nargs, Lisp_Object *args))
|
|
4254 {
|
|
4255 return run_hook_with_args (nargs, args, RUN_HOOKS_TO_COMPLETION);
|
|
4256 }
|
|
4257
|
|
4258 DEFUN ("run-hook-with-args-until-success", Frun_hook_with_args_until_success, 1, MANY, 0, /*
|
|
4259 Run HOOK with the specified arguments ARGS.
|
|
4260 HOOK should be a symbol, a hook variable. Its value should
|
|
4261 be a list of functions. We call those functions, one by one,
|
|
4262 passing arguments ARGS to each of them, until one of them
|
|
4263 returns a non-nil value. Then we return that value.
|
|
4264 If all the functions return nil, we return nil.
|
|
4265
|
|
4266 To make a hook variable buffer-local, use `make-local-hook',
|
|
4267 not `make-local-variable'.
|
|
4268 */
|
|
4269 (int nargs, Lisp_Object *args))
|
|
4270 {
|
|
4271 return run_hook_with_args (nargs, args, RUN_HOOKS_UNTIL_SUCCESS);
|
|
4272 }
|
|
4273
|
|
4274 DEFUN ("run-hook-with-args-until-failure", Frun_hook_with_args_until_failure, 1, MANY, 0, /*
|
|
4275 Run HOOK with the specified arguments ARGS.
|
|
4276 HOOK should be a symbol, a hook variable. Its value should
|
|
4277 be a list of functions. We call those functions, one by one,
|
|
4278 passing arguments ARGS to each of them, until one of them
|
|
4279 returns nil. Then we return nil.
|
|
4280 If all the functions return non-nil, we return non-nil.
|
|
4281
|
|
4282 To make a hook variable buffer-local, use `make-local-hook',
|
|
4283 not `make-local-variable'.
|
|
4284 */
|
|
4285 (int nargs, Lisp_Object *args))
|
|
4286 {
|
|
4287 return run_hook_with_args (nargs, args, RUN_HOOKS_UNTIL_FAILURE);
|
|
4288 }
|
|
4289
|
|
4290 /* ARGS[0] should be a hook symbol.
|
|
4291 Call each of the functions in the hook value, passing each of them
|
|
4292 as arguments all the rest of ARGS (all NARGS - 1 elements).
|
|
4293 COND specifies a condition to test after each call
|
|
4294 to decide whether to stop.
|
|
4295 The caller (or its caller, etc) must gcpro all of ARGS,
|
|
4296 except that it isn't necessary to gcpro ARGS[0]. */
|
|
4297
|
|
4298 Lisp_Object
|
|
4299 run_hook_with_args_in_buffer (struct buffer *buf, int nargs, Lisp_Object *args,
|
|
4300 enum run_hooks_condition cond)
|
|
4301 {
|
|
4302 Lisp_Object sym, val, ret;
|
|
4303
|
|
4304 if (!initialized || preparing_for_armageddon)
|
|
4305 /* We need to bail out of here pronto. */
|
|
4306 return Qnil;
|
|
4307
|
|
4308 /* Whenever gc_in_progress is true, preparing_for_armageddon
|
|
4309 will also be true unless something is really hosed. */
|
|
4310 assert (!gc_in_progress);
|
|
4311
|
|
4312 sym = args[0];
|
771
|
4313 val = symbol_value_in_buffer (sym, wrap_buffer (buf));
|
428
|
4314 ret = (cond == RUN_HOOKS_UNTIL_FAILURE ? Qt : Qnil);
|
|
4315
|
|
4316 if (UNBOUNDP (val) || NILP (val))
|
|
4317 return ret;
|
|
4318 else if (!CONSP (val) || EQ (XCAR (val), Qlambda))
|
|
4319 {
|
|
4320 args[0] = val;
|
|
4321 return Ffuncall (nargs, args);
|
|
4322 }
|
|
4323 else
|
|
4324 {
|
|
4325 struct gcpro gcpro1, gcpro2, gcpro3;
|
|
4326 Lisp_Object globals = Qnil;
|
|
4327 GCPRO3 (sym, val, globals);
|
|
4328
|
|
4329 for (;
|
|
4330 CONSP (val) && ((cond == RUN_HOOKS_TO_COMPLETION)
|
|
4331 || (cond == RUN_HOOKS_UNTIL_SUCCESS ? NILP (ret)
|
|
4332 : !NILP (ret)));
|
|
4333 val = XCDR (val))
|
|
4334 {
|
|
4335 if (EQ (XCAR (val), Qt))
|
|
4336 {
|
|
4337 /* t indicates this hook has a local binding;
|
|
4338 it means to run the global binding too. */
|
|
4339 globals = Fdefault_value (sym);
|
|
4340
|
|
4341 if ((! CONSP (globals) || EQ (XCAR (globals), Qlambda)) &&
|
|
4342 ! NILP (globals))
|
|
4343 {
|
|
4344 args[0] = globals;
|
|
4345 ret = Ffuncall (nargs, args);
|
|
4346 }
|
|
4347 else
|
|
4348 {
|
|
4349 for (;
|
|
4350 CONSP (globals) && ((cond == RUN_HOOKS_TO_COMPLETION)
|
|
4351 || (cond == RUN_HOOKS_UNTIL_SUCCESS
|
|
4352 ? NILP (ret)
|
|
4353 : !NILP (ret)));
|
|
4354 globals = XCDR (globals))
|
|
4355 {
|
|
4356 args[0] = XCAR (globals);
|
|
4357 /* In a global value, t should not occur. If it does, we
|
|
4358 must ignore it to avoid an endless loop. */
|
|
4359 if (!EQ (args[0], Qt))
|
|
4360 ret = Ffuncall (nargs, args);
|
|
4361 }
|
|
4362 }
|
|
4363 }
|
|
4364 else
|
|
4365 {
|
|
4366 args[0] = XCAR (val);
|
|
4367 ret = Ffuncall (nargs, args);
|
|
4368 }
|
|
4369 }
|
|
4370
|
|
4371 UNGCPRO;
|
|
4372 return ret;
|
|
4373 }
|
|
4374 }
|
|
4375
|
|
4376 Lisp_Object
|
|
4377 run_hook_with_args (int nargs, Lisp_Object *args,
|
|
4378 enum run_hooks_condition cond)
|
|
4379 {
|
|
4380 return run_hook_with_args_in_buffer (current_buffer, nargs, args, cond);
|
|
4381 }
|
|
4382
|
|
4383 #if 0
|
|
4384
|
853
|
4385 /* From FSF 19.30, not currently used; seems like a big kludge. */
|
428
|
4386
|
|
4387 /* Run a hook symbol ARGS[0], but use FUNLIST instead of the actual
|
|
4388 present value of that symbol.
|
|
4389 Call each element of FUNLIST,
|
|
4390 passing each of them the rest of ARGS.
|
|
4391 The caller (or its caller, etc) must gcpro all of ARGS,
|
|
4392 except that it isn't necessary to gcpro ARGS[0]. */
|
|
4393
|
|
4394 Lisp_Object
|
|
4395 run_hook_list_with_args (Lisp_Object funlist, int nargs, Lisp_Object *args)
|
|
4396 {
|
853
|
4397 omitted;
|
428
|
4398 }
|
|
4399
|
|
4400 #endif /* 0 */
|
|
4401
|
|
4402 void
|
|
4403 va_run_hook_with_args (Lisp_Object hook_var, int nargs, ...)
|
|
4404 {
|
|
4405 /* This function can GC */
|
|
4406 struct gcpro gcpro1;
|
|
4407 int i;
|
|
4408 va_list vargs;
|
|
4409 Lisp_Object *funcall_args = alloca_array (Lisp_Object, 1 + nargs);
|
|
4410
|
|
4411 va_start (vargs, nargs);
|
|
4412 funcall_args[0] = hook_var;
|
|
4413 for (i = 0; i < nargs; i++)
|
|
4414 funcall_args[i + 1] = va_arg (vargs, Lisp_Object);
|
|
4415 va_end (vargs);
|
|
4416
|
|
4417 GCPRO1 (*funcall_args);
|
|
4418 gcpro1.nvars = nargs + 1;
|
|
4419 run_hook_with_args (nargs + 1, funcall_args, RUN_HOOKS_TO_COMPLETION);
|
|
4420 UNGCPRO;
|
|
4421 }
|
|
4422
|
|
4423 void
|
|
4424 va_run_hook_with_args_in_buffer (struct buffer *buf, Lisp_Object hook_var,
|
|
4425 int nargs, ...)
|
|
4426 {
|
|
4427 /* This function can GC */
|
|
4428 struct gcpro gcpro1;
|
|
4429 int i;
|
|
4430 va_list vargs;
|
|
4431 Lisp_Object *funcall_args = alloca_array (Lisp_Object, 1 + nargs);
|
|
4432
|
|
4433 va_start (vargs, nargs);
|
|
4434 funcall_args[0] = hook_var;
|
|
4435 for (i = 0; i < nargs; i++)
|
|
4436 funcall_args[i + 1] = va_arg (vargs, Lisp_Object);
|
|
4437 va_end (vargs);
|
|
4438
|
|
4439 GCPRO1 (*funcall_args);
|
|
4440 gcpro1.nvars = nargs + 1;
|
|
4441 run_hook_with_args_in_buffer (buf, nargs + 1, funcall_args,
|
|
4442 RUN_HOOKS_TO_COMPLETION);
|
|
4443 UNGCPRO;
|
|
4444 }
|
|
4445
|
|
4446 Lisp_Object
|
|
4447 run_hook (Lisp_Object hook)
|
|
4448 {
|
853
|
4449 return run_hook_with_args (1, &hook, RUN_HOOKS_TO_COMPLETION);
|
428
|
4450 }
|
|
4451
|
|
4452
|
|
4453 /************************************************************************/
|
|
4454 /* Front-ends to eval, funcall, apply */
|
|
4455 /************************************************************************/
|
|
4456
|
|
4457 /* Apply fn to arg */
|
|
4458 Lisp_Object
|
|
4459 apply1 (Lisp_Object fn, Lisp_Object arg)
|
|
4460 {
|
|
4461 /* This function can GC */
|
|
4462 struct gcpro gcpro1;
|
|
4463 Lisp_Object args[2];
|
|
4464
|
|
4465 if (NILP (arg))
|
|
4466 return Ffuncall (1, &fn);
|
|
4467 GCPRO1 (args[0]);
|
|
4468 gcpro1.nvars = 2;
|
|
4469 args[0] = fn;
|
|
4470 args[1] = arg;
|
|
4471 RETURN_UNGCPRO (Fapply (2, args));
|
|
4472 }
|
|
4473
|
|
4474 /* Call function fn on no arguments */
|
|
4475 Lisp_Object
|
|
4476 call0 (Lisp_Object fn)
|
|
4477 {
|
|
4478 /* This function can GC */
|
|
4479 struct gcpro gcpro1;
|
|
4480
|
|
4481 GCPRO1 (fn);
|
|
4482 RETURN_UNGCPRO (Ffuncall (1, &fn));
|
|
4483 }
|
|
4484
|
|
4485 /* Call function fn with argument arg0 */
|
|
4486 Lisp_Object
|
|
4487 call1 (Lisp_Object fn,
|
|
4488 Lisp_Object arg0)
|
|
4489 {
|
|
4490 /* This function can GC */
|
|
4491 struct gcpro gcpro1;
|
|
4492 Lisp_Object args[2];
|
|
4493 args[0] = fn;
|
|
4494 args[1] = arg0;
|
|
4495 GCPRO1 (args[0]);
|
|
4496 gcpro1.nvars = 2;
|
|
4497 RETURN_UNGCPRO (Ffuncall (2, args));
|
|
4498 }
|
|
4499
|
|
4500 /* Call function fn with arguments arg0, arg1 */
|
|
4501 Lisp_Object
|
|
4502 call2 (Lisp_Object fn,
|
|
4503 Lisp_Object arg0, Lisp_Object arg1)
|
|
4504 {
|
|
4505 /* This function can GC */
|
|
4506 struct gcpro gcpro1;
|
|
4507 Lisp_Object args[3];
|
|
4508 args[0] = fn;
|
|
4509 args[1] = arg0;
|
|
4510 args[2] = arg1;
|
|
4511 GCPRO1 (args[0]);
|
|
4512 gcpro1.nvars = 3;
|
|
4513 RETURN_UNGCPRO (Ffuncall (3, args));
|
|
4514 }
|
|
4515
|
|
4516 /* Call function fn with arguments arg0, arg1, arg2 */
|
|
4517 Lisp_Object
|
|
4518 call3 (Lisp_Object fn,
|
|
4519 Lisp_Object arg0, Lisp_Object arg1, Lisp_Object arg2)
|
|
4520 {
|
|
4521 /* This function can GC */
|
|
4522 struct gcpro gcpro1;
|
|
4523 Lisp_Object args[4];
|
|
4524 args[0] = fn;
|
|
4525 args[1] = arg0;
|
|
4526 args[2] = arg1;
|
|
4527 args[3] = arg2;
|
|
4528 GCPRO1 (args[0]);
|
|
4529 gcpro1.nvars = 4;
|
|
4530 RETURN_UNGCPRO (Ffuncall (4, args));
|
|
4531 }
|
|
4532
|
|
4533 /* Call function fn with arguments arg0, arg1, arg2, arg3 */
|
|
4534 Lisp_Object
|
|
4535 call4 (Lisp_Object fn,
|
|
4536 Lisp_Object arg0, Lisp_Object arg1, Lisp_Object arg2,
|
|
4537 Lisp_Object arg3)
|
|
4538 {
|
|
4539 /* This function can GC */
|
|
4540 struct gcpro gcpro1;
|
|
4541 Lisp_Object args[5];
|
|
4542 args[0] = fn;
|
|
4543 args[1] = arg0;
|
|
4544 args[2] = arg1;
|
|
4545 args[3] = arg2;
|
|
4546 args[4] = arg3;
|
|
4547 GCPRO1 (args[0]);
|
|
4548 gcpro1.nvars = 5;
|
|
4549 RETURN_UNGCPRO (Ffuncall (5, args));
|
|
4550 }
|
|
4551
|
|
4552 /* Call function fn with arguments arg0, arg1, arg2, arg3, arg4 */
|
|
4553 Lisp_Object
|
|
4554 call5 (Lisp_Object fn,
|
|
4555 Lisp_Object arg0, Lisp_Object arg1, Lisp_Object arg2,
|
|
4556 Lisp_Object arg3, Lisp_Object arg4)
|
|
4557 {
|
|
4558 /* This function can GC */
|
|
4559 struct gcpro gcpro1;
|
|
4560 Lisp_Object args[6];
|
|
4561 args[0] = fn;
|
|
4562 args[1] = arg0;
|
|
4563 args[2] = arg1;
|
|
4564 args[3] = arg2;
|
|
4565 args[4] = arg3;
|
|
4566 args[5] = arg4;
|
|
4567 GCPRO1 (args[0]);
|
|
4568 gcpro1.nvars = 6;
|
|
4569 RETURN_UNGCPRO (Ffuncall (6, args));
|
|
4570 }
|
|
4571
|
|
4572 Lisp_Object
|
|
4573 call6 (Lisp_Object fn,
|
|
4574 Lisp_Object arg0, Lisp_Object arg1, Lisp_Object arg2,
|
|
4575 Lisp_Object arg3, Lisp_Object arg4, Lisp_Object arg5)
|
|
4576 {
|
|
4577 /* This function can GC */
|
|
4578 struct gcpro gcpro1;
|
|
4579 Lisp_Object args[7];
|
|
4580 args[0] = fn;
|
|
4581 args[1] = arg0;
|
|
4582 args[2] = arg1;
|
|
4583 args[3] = arg2;
|
|
4584 args[4] = arg3;
|
|
4585 args[5] = arg4;
|
|
4586 args[6] = arg5;
|
|
4587 GCPRO1 (args[0]);
|
|
4588 gcpro1.nvars = 7;
|
|
4589 RETURN_UNGCPRO (Ffuncall (7, args));
|
|
4590 }
|
|
4591
|
|
4592 Lisp_Object
|
|
4593 call7 (Lisp_Object fn,
|
|
4594 Lisp_Object arg0, Lisp_Object arg1, Lisp_Object arg2,
|
|
4595 Lisp_Object arg3, Lisp_Object arg4, Lisp_Object arg5,
|
|
4596 Lisp_Object arg6)
|
|
4597 {
|
|
4598 /* This function can GC */
|
|
4599 struct gcpro gcpro1;
|
|
4600 Lisp_Object args[8];
|
|
4601 args[0] = fn;
|
|
4602 args[1] = arg0;
|
|
4603 args[2] = arg1;
|
|
4604 args[3] = arg2;
|
|
4605 args[4] = arg3;
|
|
4606 args[5] = arg4;
|
|
4607 args[6] = arg5;
|
|
4608 args[7] = arg6;
|
|
4609 GCPRO1 (args[0]);
|
|
4610 gcpro1.nvars = 8;
|
|
4611 RETURN_UNGCPRO (Ffuncall (8, args));
|
|
4612 }
|
|
4613
|
|
4614 Lisp_Object
|
|
4615 call8 (Lisp_Object fn,
|
|
4616 Lisp_Object arg0, Lisp_Object arg1, Lisp_Object arg2,
|
|
4617 Lisp_Object arg3, Lisp_Object arg4, Lisp_Object arg5,
|
|
4618 Lisp_Object arg6, Lisp_Object arg7)
|
|
4619 {
|
|
4620 /* This function can GC */
|
|
4621 struct gcpro gcpro1;
|
|
4622 Lisp_Object args[9];
|
|
4623 args[0] = fn;
|
|
4624 args[1] = arg0;
|
|
4625 args[2] = arg1;
|
|
4626 args[3] = arg2;
|
|
4627 args[4] = arg3;
|
|
4628 args[5] = arg4;
|
|
4629 args[6] = arg5;
|
|
4630 args[7] = arg6;
|
|
4631 args[8] = arg7;
|
|
4632 GCPRO1 (args[0]);
|
|
4633 gcpro1.nvars = 9;
|
|
4634 RETURN_UNGCPRO (Ffuncall (9, args));
|
|
4635 }
|
|
4636
|
|
4637 Lisp_Object
|
|
4638 call0_in_buffer (struct buffer *buf, Lisp_Object fn)
|
|
4639 {
|
|
4640 if (current_buffer == buf)
|
|
4641 return call0 (fn);
|
|
4642 else
|
|
4643 {
|
|
4644 Lisp_Object val;
|
|
4645 int speccount = specpdl_depth();
|
|
4646 record_unwind_protect (Fset_buffer, Fcurrent_buffer ());
|
|
4647 set_buffer_internal (buf);
|
|
4648 val = call0 (fn);
|
771
|
4649 unbind_to (speccount);
|
428
|
4650 return val;
|
|
4651 }
|
|
4652 }
|
|
4653
|
|
4654 Lisp_Object
|
|
4655 call1_in_buffer (struct buffer *buf, Lisp_Object fn,
|
|
4656 Lisp_Object arg0)
|
|
4657 {
|
|
4658 if (current_buffer == buf)
|
|
4659 return call1 (fn, arg0);
|
|
4660 else
|
|
4661 {
|
|
4662 Lisp_Object val;
|
|
4663 int speccount = specpdl_depth();
|
|
4664 record_unwind_protect (Fset_buffer, Fcurrent_buffer ());
|
|
4665 set_buffer_internal (buf);
|
|
4666 val = call1 (fn, arg0);
|
771
|
4667 unbind_to (speccount);
|
428
|
4668 return val;
|
|
4669 }
|
|
4670 }
|
|
4671
|
|
4672 Lisp_Object
|
|
4673 call2_in_buffer (struct buffer *buf, Lisp_Object fn,
|
|
4674 Lisp_Object arg0, Lisp_Object arg1)
|
|
4675 {
|
|
4676 if (current_buffer == buf)
|
|
4677 return call2 (fn, arg0, arg1);
|
|
4678 else
|
|
4679 {
|
|
4680 Lisp_Object val;
|
|
4681 int speccount = specpdl_depth();
|
|
4682 record_unwind_protect (Fset_buffer, Fcurrent_buffer ());
|
|
4683 set_buffer_internal (buf);
|
|
4684 val = call2 (fn, arg0, arg1);
|
771
|
4685 unbind_to (speccount);
|
428
|
4686 return val;
|
|
4687 }
|
|
4688 }
|
|
4689
|
|
4690 Lisp_Object
|
|
4691 call3_in_buffer (struct buffer *buf, Lisp_Object fn,
|
|
4692 Lisp_Object arg0, Lisp_Object arg1, Lisp_Object arg2)
|
|
4693 {
|
|
4694 if (current_buffer == buf)
|
|
4695 return call3 (fn, arg0, arg1, arg2);
|
|
4696 else
|
|
4697 {
|
|
4698 Lisp_Object val;
|
|
4699 int speccount = specpdl_depth();
|
|
4700 record_unwind_protect (Fset_buffer, Fcurrent_buffer ());
|
|
4701 set_buffer_internal (buf);
|
|
4702 val = call3 (fn, arg0, arg1, arg2);
|
771
|
4703 unbind_to (speccount);
|
428
|
4704 return val;
|
|
4705 }
|
|
4706 }
|
|
4707
|
|
4708 Lisp_Object
|
|
4709 call4_in_buffer (struct buffer *buf, Lisp_Object fn,
|
|
4710 Lisp_Object arg0, Lisp_Object arg1, Lisp_Object arg2,
|
|
4711 Lisp_Object arg3)
|
|
4712 {
|
|
4713 if (current_buffer == buf)
|
|
4714 return call4 (fn, arg0, arg1, arg2, arg3);
|
|
4715 else
|
|
4716 {
|
|
4717 Lisp_Object val;
|
|
4718 int speccount = specpdl_depth();
|
|
4719 record_unwind_protect (Fset_buffer, Fcurrent_buffer ());
|
|
4720 set_buffer_internal (buf);
|
|
4721 val = call4 (fn, arg0, arg1, arg2, arg3);
|
771
|
4722 unbind_to (speccount);
|
428
|
4723 return val;
|
|
4724 }
|
|
4725 }
|
|
4726
|
|
4727 Lisp_Object
|
|
4728 eval_in_buffer (struct buffer *buf, Lisp_Object form)
|
|
4729 {
|
|
4730 if (current_buffer == buf)
|
|
4731 return Feval (form);
|
|
4732 else
|
|
4733 {
|
|
4734 Lisp_Object val;
|
|
4735 int speccount = specpdl_depth();
|
|
4736 record_unwind_protect (Fset_buffer, Fcurrent_buffer ());
|
|
4737 set_buffer_internal (buf);
|
|
4738 val = Feval (form);
|
771
|
4739 unbind_to (speccount);
|
428
|
4740 return val;
|
|
4741 }
|
|
4742 }
|
|
4743
|
|
4744
|
|
4745 /************************************************************************/
|
|
4746 /* Error-catching front-ends to eval, funcall, apply */
|
|
4747 /************************************************************************/
|
|
4748
|
853
|
4749 int
|
|
4750 get_inhibit_flags (void)
|
|
4751 {
|
|
4752 return inhibit_flags;
|
|
4753 }
|
|
4754
|
|
4755 void
|
2286
|
4756 check_allowed_operation (int what, Lisp_Object obj, Lisp_Object UNUSED (prop))
|
853
|
4757 {
|
|
4758 if (inhibit_flags & INHIBIT_EXISTING_BUFFER_TEXT_MODIFICATION)
|
|
4759 {
|
|
4760 if (what == OPERATION_MODIFY_BUFFER_TEXT && BUFFERP (obj)
|
|
4761 && NILP (memq_no_quit (obj, Vmodifiable_buffers)))
|
|
4762 invalid_change
|
|
4763 ("Modification of this buffer not currently permitted", obj);
|
|
4764 }
|
|
4765 if (inhibit_flags & INHIBIT_EXISTING_PERMANENT_DISPLAY_OBJECT_DELETION)
|
|
4766 {
|
|
4767 if (what == OPERATION_DELETE_OBJECT
|
|
4768 && (BUFFERP (obj) || WINDOWP (obj) || FRAMEP (obj) || DEVICEP (obj)
|
|
4769 || CONSOLEP (obj))
|
|
4770 && NILP (memq_no_quit (obj, Vdeletable_permanent_display_objects)))
|
|
4771 invalid_change
|
|
4772 ("Deletion of this object not currently permitted", obj);
|
|
4773 }
|
|
4774 }
|
|
4775
|
|
4776 void
|
|
4777 note_object_created (Lisp_Object obj)
|
|
4778 {
|
|
4779 if (inhibit_flags & INHIBIT_EXISTING_BUFFER_TEXT_MODIFICATION)
|
|
4780 {
|
|
4781 if (BUFFERP (obj))
|
|
4782 Vmodifiable_buffers = Fcons (obj, Vmodifiable_buffers);
|
|
4783 }
|
|
4784 if (inhibit_flags & INHIBIT_EXISTING_PERMANENT_DISPLAY_OBJECT_DELETION)
|
|
4785 {
|
|
4786 if (BUFFERP (obj) || WINDOWP (obj) || FRAMEP (obj) || DEVICEP (obj)
|
|
4787 || CONSOLEP (obj))
|
|
4788 Vdeletable_permanent_display_objects =
|
|
4789 Fcons (obj, Vdeletable_permanent_display_objects);
|
|
4790 }
|
|
4791 }
|
|
4792
|
|
4793 void
|
|
4794 note_object_deleted (Lisp_Object obj)
|
|
4795 {
|
|
4796 if (inhibit_flags & INHIBIT_EXISTING_BUFFER_TEXT_MODIFICATION)
|
|
4797 {
|
|
4798 if (BUFFERP (obj))
|
|
4799 Vmodifiable_buffers = delq_no_quit (obj, Vmodifiable_buffers);
|
|
4800 }
|
|
4801 if (inhibit_flags & INHIBIT_EXISTING_PERMANENT_DISPLAY_OBJECT_DELETION)
|
|
4802 {
|
|
4803 if (BUFFERP (obj) || WINDOWP (obj) || FRAMEP (obj) || DEVICEP (obj)
|
|
4804 || CONSOLEP (obj))
|
|
4805 Vdeletable_permanent_display_objects =
|
|
4806 delq_no_quit (obj, Vdeletable_permanent_display_objects);
|
|
4807 }
|
|
4808 }
|
|
4809
|
|
4810 struct call_trapping_problems
|
|
4811 {
|
|
4812 Lisp_Object catchtag;
|
|
4813 Lisp_Object error_conditions;
|
|
4814 Lisp_Object data;
|
|
4815 Lisp_Object backtrace;
|
|
4816 Lisp_Object warning_class;
|
|
4817
|
867
|
4818 const CIbyte *warning_string;
|
853
|
4819 Lisp_Object (*fun) (void *);
|
|
4820 void *arg;
|
|
4821 };
|
428
|
4822
|
2532
|
4823 static Lisp_Object
|
|
4824 maybe_get_trapping_problems_backtrace (void)
|
|
4825 {
|
|
4826 Lisp_Object backtrace;
|
853
|
4827
|
1123
|
4828 if (!(inhibit_flags & INHIBIT_WARNING_ISSUE)
|
2532
|
4829 && !warning_will_be_discarded (current_warning_level ()))
|
428
|
4830 {
|
1333
|
4831 struct gcpro gcpro1;
|
|
4832 Lisp_Object lstream = Qnil;
|
|
4833 int speccount = specpdl_depth ();
|
|
4834
|
853
|
4835 /* We're no longer protected against errors or quit here, so at
|
|
4836 least let's temporarily inhibit quit. We definitely do not
|
|
4837 want to inhibit quit during the calling of the function
|
|
4838 itself!!!!!!!!!!! */
|
|
4839
|
|
4840 specbind (Qinhibit_quit, Qt);
|
|
4841
|
|
4842 GCPRO1 (lstream);
|
|
4843 lstream = make_resizing_buffer_output_stream ();
|
|
4844 Fbacktrace (lstream, Qt);
|
|
4845 Lstream_flush (XLSTREAM (lstream));
|
2532
|
4846 backtrace = resizing_buffer_to_lisp_string (XLSTREAM (lstream));
|
853
|
4847 Lstream_delete (XLSTREAM (lstream));
|
|
4848 UNGCPRO;
|
|
4849
|
|
4850 unbind_to (speccount);
|
428
|
4851 }
|
853
|
4852 else
|
2532
|
4853 backtrace = Qnil;
|
|
4854
|
|
4855 return backtrace;
|
|
4856 }
|
|
4857
|
|
4858 static DECLARE_DOESNT_RETURN_TYPE
|
|
4859 (Lisp_Object, flagged_a_squirmer (Lisp_Object, Lisp_Object, Lisp_Object));
|
|
4860
|
|
4861 static DOESNT_RETURN_TYPE (Lisp_Object)
|
|
4862 flagged_a_squirmer (Lisp_Object error_conditions, Lisp_Object data,
|
|
4863 Lisp_Object opaque)
|
|
4864 {
|
|
4865 struct call_trapping_problems *p =
|
|
4866 (struct call_trapping_problems *) get_opaque_ptr (opaque);
|
|
4867
|
|
4868 if (!EQ (error_conditions, Qquit))
|
|
4869 p->backtrace = maybe_get_trapping_problems_backtrace ();
|
|
4870 else
|
853
|
4871 p->backtrace = Qnil;
|
|
4872 p->error_conditions = error_conditions;
|
|
4873 p->data = data;
|
|
4874
|
|
4875 Fthrow (p->catchtag, Qnil);
|
2268
|
4876 RETURN_NOT_REACHED (Qnil);
|
853
|
4877 }
|
|
4878
|
|
4879 static Lisp_Object
|
|
4880 call_trapping_problems_2 (Lisp_Object opaque)
|
|
4881 {
|
|
4882 struct call_trapping_problems *p =
|
|
4883 (struct call_trapping_problems *) get_opaque_ptr (opaque);
|
|
4884
|
|
4885 return (p->fun) (p->arg);
|
428
|
4886 }
|
|
4887
|
|
4888 static Lisp_Object
|
853
|
4889 call_trapping_problems_1 (Lisp_Object opaque)
|
|
4890 {
|
|
4891 return call_with_condition_handler (flagged_a_squirmer, opaque,
|
|
4892 call_trapping_problems_2, opaque);
|
|
4893 }
|
|
4894
|
1333
|
4895 static void
|
|
4896 issue_call_trapping_problems_warning (Lisp_Object warning_class,
|
|
4897 const CIbyte *warning_string,
|
|
4898 struct call_trapping_problems_result *p)
|
|
4899 {
|
|
4900 if (!warning_will_be_discarded (current_warning_level ()))
|
|
4901 {
|
|
4902 int depth = specpdl_depth ();
|
|
4903
|
|
4904 /* We're no longer protected against errors or quit here, so at
|
|
4905 least let's temporarily inhibit quit. */
|
|
4906 specbind (Qinhibit_quit, Qt);
|
|
4907
|
|
4908 if (p->caught_throw)
|
|
4909 {
|
|
4910 Lisp_Object errstr =
|
|
4911 emacs_sprintf_string_lisp
|
2532
|
4912 ("%s: Attempt to throw outside of function:"
|
|
4913 "To catch `%s' with value `%s'\n\nBacktrace follows:\n\n%s",
|
1333
|
4914 Qnil, 3,
|
|
4915 build_msg_string (warning_string ? warning_string : "error"),
|
2532
|
4916 p->thrown_tag, p->thrown_value, p->backtrace);
|
1333
|
4917 warn_when_safe_lispobj (Qerror, current_warning_level (), errstr);
|
|
4918 }
|
2421
|
4919 else if (p->caught_error && !EQ (p->error_conditions, Qquit))
|
1333
|
4920 {
|
|
4921 Lisp_Object errstr;
|
|
4922 /* #### This should call
|
|
4923 (with-output-to-string (display-error (cons error_conditions
|
|
4924 data))
|
|
4925 but that stuff is all in Lisp currently. */
|
|
4926 errstr =
|
|
4927 emacs_sprintf_string_lisp
|
|
4928 ("%s: (%s %s)\n\nBacktrace follows:\n\n%s",
|
|
4929 Qnil, 4,
|
|
4930 build_msg_string (warning_string ? warning_string : "error"),
|
|
4931 p->error_conditions, p->data, p->backtrace);
|
|
4932
|
|
4933 warn_when_safe_lispobj (warning_class, current_warning_level (),
|
|
4934 errstr);
|
|
4935 }
|
|
4936
|
|
4937 unbind_to (depth);
|
|
4938 }
|
|
4939 }
|
|
4940
|
1318
|
4941 /* Turn on the trapping flags in FLAGS -- see call_trapping_problems().
|
|
4942 This cannot handle INTERNAL_INHIBIT_THROWS() or INTERNAL_INHIBIT_ERRORS
|
|
4943 (because they ultimately boil down to a setjmp()!) -- you must directly
|
|
4944 use call_trapping_problems() for that. Turn the flags off with
|
|
4945 unbind_to(). Returns the "canonicalized" flags (particularly in the
|
|
4946 case of INHIBIT_ANY_CHANGE_AFFECTING_REDISPLAY, which is shorthand for
|
|
4947 various other flags). */
|
|
4948
|
|
4949 int
|
|
4950 set_trapping_problems_flags (int flags)
|
|
4951 {
|
|
4952 int new_inhibit_flags;
|
|
4953
|
|
4954 if (flags & INHIBIT_ANY_CHANGE_AFFECTING_REDISPLAY)
|
|
4955 flags |= INHIBIT_EXISTING_PERMANENT_DISPLAY_OBJECT_DELETION
|
|
4956 | INHIBIT_EXISTING_BUFFER_TEXT_MODIFICATION
|
|
4957 | INHIBIT_ENTERING_DEBUGGER
|
|
4958 | INHIBIT_WARNING_ISSUE
|
|
4959 | INHIBIT_GC;
|
|
4960
|
|
4961 new_inhibit_flags = inhibit_flags | flags;
|
|
4962 if (new_inhibit_flags != inhibit_flags)
|
|
4963 internal_bind_int (&inhibit_flags, new_inhibit_flags);
|
|
4964
|
|
4965 if (flags & INHIBIT_QUIT)
|
|
4966 specbind (Qinhibit_quit, Qt);
|
|
4967
|
|
4968 if (flags & UNINHIBIT_QUIT)
|
|
4969 begin_do_check_for_quit ();
|
|
4970
|
|
4971 if (flags & INHIBIT_GC)
|
|
4972 begin_gc_forbidden ();
|
|
4973
|
|
4974 /* #### If we have nested calls to call_trapping_problems(), and the
|
|
4975 inner one creates some buffers/etc., should the outer one be able
|
|
4976 to delete them? I think so, but it means we need to combine rather
|
|
4977 than just reset the value. */
|
|
4978 if (flags & INHIBIT_EXISTING_PERMANENT_DISPLAY_OBJECT_DELETION)
|
|
4979 internal_bind_lisp_object (&Vdeletable_permanent_display_objects, Qnil);
|
|
4980
|
|
4981 if (flags & INHIBIT_EXISTING_BUFFER_TEXT_MODIFICATION)
|
|
4982 internal_bind_lisp_object (&Vmodifiable_buffers, Qnil);
|
|
4983
|
|
4984 return flags;
|
|
4985 }
|
|
4986
|
853
|
4987 /* This is equivalent to (*fun) (arg), except that various conditions
|
|
4988 can be trapped or inhibited, according to FLAGS.
|
|
4989
|
|
4990 If FLAGS does not contain NO_INHIBIT_ERRORS, when an error occurs,
|
|
4991 the error is caught and a warning is issued, specifying the
|
|
4992 specific error that occurred and a backtrace. In that case,
|
|
4993 WARNING_STRING should be given, and will be printed at the
|
|
4994 beginning of the error to indicate where the error occurred.
|
|
4995
|
|
4996 If FLAGS does not contain NO_INHIBIT_THROWS, all attempts to
|
|
4997 `throw' out of the function being called are trapped, and a warning
|
|
4998 issued. (Again, WARNING_STRING should be given.)
|
|
4999
|
2367
|
5000 If FLAGS contains INHIBIT_WARNING_ISSUE, no warnings are issued;
|
853
|
5001 this applies to recursive invocations of call_trapping_problems, too.
|
|
5002
|
1333
|
5003 If FLAGS contains POSTPONE_WARNING_ISSUE, no warnings are issued;
|
|
5004 but values useful for generating a warning are still computed (in
|
|
5005 particular, the backtrace), so that the calling function can issue
|
|
5006 a warning.
|
|
5007
|
853
|
5008 If FLAGS contains ISSUE_WARNINGS_AT_DEBUG_LEVEL, warnings will be
|
|
5009 issued, but at level `debug', which normally is below the minimum
|
|
5010 specified by `log-warning-minimum-level', meaning such warnings will
|
|
5011 be ignored entirely. The user can change this variable, however,
|
|
5012 to see the warnings.)
|
|
5013
|
|
5014 Note: If neither of NO_INHIBIT_THROWS or NO_INHIBIT_ERRORS is
|
|
5015 given, you are *guaranteed* that there will be no non-local exits
|
|
5016 out of this function.
|
|
5017
|
|
5018 If FLAGS contains INHIBIT_QUIT, QUIT using C-g is inhibited. (This
|
|
5019 is *rarely* a good idea. Unless you use NO_INHIBIT_ERRORS, QUIT is
|
|
5020 automatically caught as well, and treated as an error; you can
|
|
5021 check for this using EQ (problems->error_conditions, Qquit).
|
|
5022
|
|
5023 If FLAGS contains UNINHIBIT_QUIT, QUIT checking will be explicitly
|
|
5024 turned on. (It will abort the code being called, but will still be
|
|
5025 trapped and reported as an error, unless NO_INHIBIT_ERRORS is
|
|
5026 given.) This is useful when QUIT checking has been turned off by a
|
|
5027 higher-level caller.
|
|
5028
|
|
5029 If FLAGS contains INHIBIT_GC, garbage collection is inhibited.
|
1123
|
5030 This is useful for Lisp called within redisplay, for example.
|
853
|
5031
|
|
5032 If FLAGS contains INHIBIT_EXISTING_PERMANENT_DISPLAY_OBJECT_DELETION,
|
|
5033 Lisp code is not allowed to delete any window, buffers, frames, devices,
|
|
5034 or consoles that were already in existence at the time this function
|
|
5035 was called. (However, it's perfectly legal for code to create a new
|
|
5036 buffer and then delete it.)
|
|
5037
|
|
5038 #### It might be useful to have a flag that inhibits deletion of a
|
|
5039 specific permanent display object and everything it's attached to
|
|
5040 (e.g. a window, and the buffer, frame, device, and console it's
|
|
5041 attached to.
|
|
5042
|
|
5043 If FLAGS contains INHIBIT_EXISTING_BUFFER_TEXT_MODIFICATION, Lisp
|
|
5044 code is not allowed to modify the text of any buffers that were
|
|
5045 already in existence at the time this function was called.
|
|
5046 (However, it's perfectly legal for code to create a new buffer and
|
|
5047 then modify its text.)
|
|
5048
|
|
5049 [These last two flags are implemented using global variables
|
|
5050 Vdeletable_permanent_display_objects and Vmodifiable_buffers,
|
|
5051 which keep track of a list of all buffers or permanent display
|
|
5052 objects created since the last time one of these flags was set.
|
|
5053 The code that deletes buffers, etc. and modifies buffers checks
|
|
5054
|
|
5055 (1) if the corresponding flag is set (through the global variable
|
|
5056 inhibit_flags or its accessor function get_inhibit_flags()), and
|
|
5057
|
|
5058 (2) if the object to be modified or deleted is not in the
|
|
5059 appropriate list.
|
|
5060
|
|
5061 If so, it signals an error.
|
|
5062
|
|
5063 Recursive calls to call_trapping_problems() are allowed. In
|
|
5064 the case of the two flags mentioned above, the current values
|
|
5065 of the global variables are stored in an unwind-protect, and
|
|
5066 they're reset to nil.]
|
|
5067
|
|
5068 If FLAGS contains INHIBIT_ENTERING_DEBUGGER, the debugger will not
|
|
5069 be entered if an error occurs inside the Lisp code being called,
|
|
5070 even when the user has requested an error. In such case, a warning
|
|
5071 is issued stating that access to the debugger is denied, unless
|
|
5072 INHIBIT_WARNING_ISSUE has also been supplied. This is useful when
|
|
5073 calling Lisp code inside redisplay, in menu callbacks, etc. because
|
|
5074 in such cases either the display is in an inconsistent state or
|
|
5075 doing window operations is explicitly forbidden by the OS, and the
|
|
5076 debugger would causes visual changes on the screen and might create
|
|
5077 another frame.
|
|
5078
|
|
5079 If FLAGS contains INHIBIT_ANY_CHANGE_AFFECTING_REDISPLAY, no
|
|
5080 changes of any sort to extents, faces, glyphs, buffer text,
|
|
5081 specifiers relating to display, other variables relating to
|
|
5082 display, splitting, deleting, or resizing windows or frames,
|
|
5083 deleting buffers, windows, frames, devices, or consoles, etc. is
|
|
5084 allowed. This is for things called absolutely in the middle of
|
|
5085 redisplay, which expects things to be *exactly* the same after the
|
|
5086 call as before. This isn't completely implemented and needs to be
|
|
5087 thought out some more to determine exactly what its semantics are.
|
|
5088 For the moment, turning on this flag also turns on
|
|
5089
|
|
5090 INHIBIT_EXISTING_PERMANENT_DISPLAY_OBJECT_DELETION
|
|
5091 INHIBIT_EXISTING_BUFFER_TEXT_MODIFICATION
|
|
5092 INHIBIT_ENTERING_DEBUGGER
|
|
5093 INHIBIT_WARNING_ISSUE
|
|
5094 INHIBIT_GC
|
|
5095
|
|
5096 #### The following five flags are defined, but unimplemented:
|
|
5097
|
|
5098 #define INHIBIT_EXISTING_CODING_SYSTEM_DELETION (1<<6)
|
|
5099 #define INHIBIT_EXISTING_CHARSET_DELETION (1<<7)
|
|
5100 #define INHIBIT_PERMANENT_DISPLAY_OBJECT_CREATION (1<<8)
|
|
5101 #define INHIBIT_CODING_SYSTEM_CREATION (1<<9)
|
|
5102 #define INHIBIT_CHARSET_CREATION (1<<10)
|
|
5103
|
|
5104 FLAGS containing CALL_WITH_SUSPENDED_ERRORS is a sign that
|
|
5105 call_with_suspended_errors() was invoked. This exists only for
|
|
5106 debugging purposes -- often we want to break when a signal happens,
|
|
5107 but ignore signals from call_with_suspended_errors(), because they
|
|
5108 occur often and for legitimate reasons.
|
|
5109
|
|
5110 If PROBLEM is non-zero, it should be a pointer to a structure into
|
|
5111 which exact information about any occurring problems (either an
|
|
5112 error or an attempted throw past this boundary).
|
|
5113
|
|
5114 If a problem occurred and aborted operation (error, quit, or
|
|
5115 invalid throw), Qunbound is returned. Otherwise the return value
|
|
5116 from the call to (*fun) (arg) is returned. */
|
|
5117
|
|
5118 Lisp_Object
|
|
5119 call_trapping_problems (Lisp_Object warning_class,
|
867
|
5120 const CIbyte *warning_string,
|
853
|
5121 int flags,
|
|
5122 struct call_trapping_problems_result *problem,
|
|
5123 Lisp_Object (*fun) (void *),
|
|
5124 void *arg)
|
|
5125 {
|
1318
|
5126 int speccount = specpdl_depth ();
|
853
|
5127 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4, gcpro5;
|
|
5128 struct call_trapping_problems package;
|
1333
|
5129 struct call_trapping_problems_result real_problem;
|
2532
|
5130 Lisp_Object opaque, thrown_tag, tem, thrown_backtrace;
|
853
|
5131 int thrown = 0;
|
|
5132
|
|
5133 assert (SYMBOLP (warning_class)); /* sanity-check */
|
|
5134 assert (!NILP (warning_class));
|
|
5135
|
|
5136 flags ^= INTERNAL_INHIBIT_ERRORS | INTERNAL_INHIBIT_THROWS;
|
|
5137
|
|
5138 package.warning_class = warning_class;
|
|
5139 package.warning_string = warning_string;
|
|
5140 package.fun = fun;
|
|
5141 package.arg = arg;
|
|
5142 package.catchtag =
|
|
5143 flags & INTERNAL_INHIBIT_THROWS ? Vcatch_everything_tag :
|
|
5144 flags & INTERNAL_INHIBIT_ERRORS ? make_opaque_ptr (0) :
|
|
5145 Qnil;
|
|
5146 package.error_conditions = Qnil;
|
|
5147 package.data = Qnil;
|
|
5148 package.backtrace = Qnil;
|
|
5149
|
1318
|
5150 flags = set_trapping_problems_flags (flags);
|
853
|
5151
|
|
5152 if (flags & (INTERNAL_INHIBIT_THROWS | INTERNAL_INHIBIT_ERRORS))
|
|
5153 opaque = make_opaque_ptr (&package);
|
|
5154 else
|
|
5155 opaque = Qnil;
|
|
5156
|
|
5157 GCPRO5 (package.catchtag, package.error_conditions, package.data,
|
|
5158 package.backtrace, opaque);
|
|
5159
|
|
5160 if (flags & INTERNAL_INHIBIT_ERRORS)
|
|
5161 /* We need a catch so that our condition-handler can throw back here
|
|
5162 after printing the warning. (We print the warning in the stack
|
|
5163 context of the error, so we can get a backtrace.) */
|
|
5164 tem = internal_catch (package.catchtag, call_trapping_problems_1, opaque,
|
2532
|
5165 &thrown, &thrown_tag, &thrown_backtrace);
|
853
|
5166 else if (flags & INTERNAL_INHIBIT_THROWS)
|
|
5167 /* We skip over the first wrapper, which traps errors. */
|
|
5168 tem = internal_catch (package.catchtag, call_trapping_problems_2, opaque,
|
2532
|
5169 &thrown, &thrown_tag, &thrown_backtrace);
|
853
|
5170 else
|
|
5171 /* Nothing special. */
|
|
5172 tem = (fun) (arg);
|
|
5173
|
1333
|
5174 if (!problem)
|
|
5175 problem = &real_problem;
|
|
5176
|
|
5177 if (!thrown)
|
853
|
5178 {
|
1333
|
5179 problem->caught_error = 0;
|
|
5180 problem->caught_throw = 0;
|
|
5181 problem->error_conditions = Qnil;
|
|
5182 problem->data = Qnil;
|
|
5183 problem->backtrace = Qnil;
|
|
5184 problem->thrown_tag = Qnil;
|
|
5185 problem->thrown_value = Qnil;
|
853
|
5186 }
|
1333
|
5187 else if (EQ (thrown_tag, package.catchtag))
|
853
|
5188 {
|
1333
|
5189 problem->caught_error = 1;
|
|
5190 problem->caught_throw = 0;
|
|
5191 problem->error_conditions = package.error_conditions;
|
|
5192 problem->data = package.data;
|
|
5193 problem->backtrace = package.backtrace;
|
|
5194 problem->thrown_tag = Qnil;
|
|
5195 problem->thrown_value = Qnil;
|
853
|
5196 }
|
1333
|
5197 else
|
|
5198 {
|
|
5199 problem->caught_error = 0;
|
|
5200 problem->caught_throw = 1;
|
|
5201 problem->error_conditions = Qnil;
|
|
5202 problem->data = Qnil;
|
2532
|
5203 problem->backtrace = thrown_backtrace;
|
1333
|
5204 problem->thrown_tag = thrown_tag;
|
|
5205 problem->thrown_value = tem;
|
|
5206 }
|
|
5207
|
|
5208 if (!(flags & INHIBIT_WARNING_ISSUE) && !(flags & POSTPONE_WARNING_ISSUE))
|
|
5209 issue_call_trapping_problems_warning (warning_class, warning_string,
|
|
5210 problem);
|
853
|
5211
|
|
5212 if (!NILP (package.catchtag) &&
|
|
5213 !EQ (package.catchtag, Vcatch_everything_tag))
|
|
5214 free_opaque_ptr (package.catchtag);
|
|
5215
|
|
5216 if (!NILP (opaque))
|
|
5217 free_opaque_ptr (opaque);
|
|
5218
|
|
5219 unbind_to (speccount);
|
|
5220 RETURN_UNGCPRO (thrown ? Qunbound : tem);
|
|
5221 }
|
|
5222
|
|
5223 struct va_call_trapping_problems
|
|
5224 {
|
|
5225 lisp_fn_t fun;
|
|
5226 int nargs;
|
|
5227 Lisp_Object *args;
|
|
5228 };
|
|
5229
|
|
5230 static Lisp_Object
|
|
5231 va_call_trapping_problems_1 (void *ai_mi_madre)
|
|
5232 {
|
|
5233 struct va_call_trapping_problems *ai_no_corrida =
|
|
5234 (struct va_call_trapping_problems *) ai_mi_madre;
|
|
5235 Lisp_Object pegar_no_bumbum;
|
|
5236
|
|
5237 PRIMITIVE_FUNCALL (pegar_no_bumbum, ai_no_corrida->fun,
|
|
5238 ai_no_corrida->args, ai_no_corrida->nargs);
|
|
5239 return pegar_no_bumbum;
|
|
5240 }
|
|
5241
|
|
5242 /* #### document me. */
|
|
5243
|
|
5244 Lisp_Object
|
|
5245 va_call_trapping_problems (Lisp_Object warning_class,
|
867
|
5246 const CIbyte *warning_string,
|
853
|
5247 int flags,
|
|
5248 struct call_trapping_problems_result *problem,
|
|
5249 lisp_fn_t fun, int nargs, ...)
|
|
5250 {
|
|
5251 va_list vargs;
|
|
5252 Lisp_Object args[20];
|
|
5253 int i;
|
|
5254 struct va_call_trapping_problems fazer_invocacao_atrapalhando_problemas;
|
|
5255 struct gcpro gcpro1;
|
|
5256
|
|
5257 assert (nargs >= 0 && nargs < 20);
|
|
5258
|
|
5259 va_start (vargs, nargs);
|
|
5260 for (i = 0; i < nargs; i++)
|
|
5261 args[i] = va_arg (vargs, Lisp_Object);
|
|
5262 va_end (vargs);
|
|
5263
|
|
5264 fazer_invocacao_atrapalhando_problemas.fun = fun;
|
|
5265 fazer_invocacao_atrapalhando_problemas.nargs = nargs;
|
|
5266 fazer_invocacao_atrapalhando_problemas.args = args;
|
|
5267
|
|
5268 GCPRO1_ARRAY (args, nargs);
|
|
5269 RETURN_UNGCPRO
|
|
5270 (call_trapping_problems
|
|
5271 (warning_class, warning_string, flags, problem,
|
|
5272 va_call_trapping_problems_1, &fazer_invocacao_atrapalhando_problemas));
|
|
5273 }
|
|
5274
|
|
5275 /* this is an older interface, barely different from
|
|
5276 va_call_trapping_problems.
|
|
5277
|
|
5278 #### eliminate this or at least merge the ERROR_BEHAVIOR stuff into
|
|
5279 va_call_trapping_problems(). */
|
|
5280
|
|
5281 Lisp_Object
|
|
5282 call_with_suspended_errors (lisp_fn_t fun, Lisp_Object retval,
|
1204
|
5283 Lisp_Object class_, Error_Behavior errb,
|
853
|
5284 int nargs, ...)
|
|
5285 {
|
|
5286 va_list vargs;
|
|
5287 Lisp_Object args[20];
|
|
5288 int i;
|
|
5289 struct va_call_trapping_problems fazer_invocacao_atrapalhando_problemas;
|
|
5290 int flags;
|
|
5291 struct gcpro gcpro1;
|
|
5292
|
1204
|
5293 assert (SYMBOLP (class_)); /* sanity-check */
|
|
5294 assert (!NILP (class_));
|
853
|
5295 assert (nargs >= 0 && nargs < 20);
|
|
5296
|
|
5297 va_start (vargs, nargs);
|
|
5298 for (i = 0; i < nargs; i++)
|
|
5299 args[i] = va_arg (vargs, Lisp_Object);
|
|
5300 va_end (vargs);
|
|
5301
|
|
5302 /* If error-checking is not disabled, just call the function. */
|
|
5303
|
|
5304 if (ERRB_EQ (errb, ERROR_ME))
|
|
5305 {
|
|
5306 Lisp_Object val;
|
|
5307 PRIMITIVE_FUNCALL (val, fun, args, nargs);
|
|
5308 return val;
|
|
5309 }
|
|
5310
|
|
5311 if (ERRB_EQ (errb, ERROR_ME_NOT)) /* person wants no warnings */
|
|
5312 flags = INHIBIT_WARNING_ISSUE | INHIBIT_ENTERING_DEBUGGER;
|
|
5313 else if (ERRB_EQ (errb, ERROR_ME_DEBUG_WARN))
|
|
5314 flags = ISSUE_WARNINGS_AT_DEBUG_LEVEL | INHIBIT_ENTERING_DEBUGGER;
|
|
5315 else
|
|
5316 {
|
|
5317 assert (ERRB_EQ (errb, ERROR_ME_WARN));
|
|
5318 flags = INHIBIT_ENTERING_DEBUGGER;
|
|
5319 }
|
|
5320
|
|
5321 flags |= CALL_WITH_SUSPENDED_ERRORS;
|
|
5322
|
|
5323 fazer_invocacao_atrapalhando_problemas.fun = fun;
|
|
5324 fazer_invocacao_atrapalhando_problemas.nargs = nargs;
|
|
5325 fazer_invocacao_atrapalhando_problemas.args = args;
|
|
5326
|
|
5327 GCPRO1_ARRAY (args, nargs);
|
|
5328 {
|
|
5329 Lisp_Object its_way_too_goddamn_late =
|
|
5330 call_trapping_problems
|
1204
|
5331 (class_, 0, flags, 0, va_call_trapping_problems_1,
|
853
|
5332 &fazer_invocacao_atrapalhando_problemas);
|
|
5333 UNGCPRO;
|
|
5334 if (UNBOUNDP (its_way_too_goddamn_late))
|
|
5335 return retval;
|
|
5336 else
|
|
5337 return its_way_too_goddamn_late;
|
|
5338 }
|
|
5339 }
|
|
5340
|
|
5341 struct calln_trapping_problems
|
|
5342 {
|
|
5343 int nargs;
|
|
5344 Lisp_Object *args;
|
|
5345 };
|
|
5346
|
|
5347 static Lisp_Object
|
|
5348 calln_trapping_problems_1 (void *puta)
|
|
5349 {
|
|
5350 struct calln_trapping_problems *p = (struct calln_trapping_problems *) puta;
|
|
5351
|
|
5352 return Ffuncall (p->nargs, p->args);
|
428
|
5353 }
|
|
5354
|
|
5355 static Lisp_Object
|
853
|
5356 calln_trapping_problems (Lisp_Object warning_class,
|
867
|
5357 const CIbyte *warning_string, int flags,
|
853
|
5358 struct call_trapping_problems_result *problem,
|
|
5359 int nargs, Lisp_Object *args)
|
|
5360 {
|
|
5361 struct calln_trapping_problems foo;
|
|
5362 struct gcpro gcpro1;
|
|
5363
|
|
5364 if (SYMBOLP (args[0]))
|
|
5365 {
|
|
5366 Lisp_Object tem = XSYMBOL (args[0])->function;
|
|
5367 if (NILP (tem) || UNBOUNDP (tem))
|
|
5368 {
|
|
5369 if (problem)
|
|
5370 {
|
|
5371 problem->caught_error = 0;
|
|
5372 problem->caught_throw = 0;
|
|
5373 problem->error_conditions = Qnil;
|
|
5374 problem->data = Qnil;
|
|
5375 problem->backtrace = Qnil;
|
|
5376 problem->thrown_tag = Qnil;
|
|
5377 problem->thrown_value = Qnil;
|
|
5378 }
|
|
5379 return Qnil;
|
|
5380 }
|
|
5381 }
|
|
5382
|
|
5383 foo.nargs = nargs;
|
|
5384 foo.args = args;
|
|
5385
|
|
5386 GCPRO1_ARRAY (args, nargs);
|
|
5387 RETURN_UNGCPRO (call_trapping_problems (warning_class, warning_string,
|
|
5388 flags, problem,
|
|
5389 calln_trapping_problems_1,
|
|
5390 &foo));
|
|
5391 }
|
|
5392
|
|
5393 /* #### fix these functions to follow the calling convention of
|
|
5394 call_trapping_problems! */
|
|
5395
|
|
5396 Lisp_Object
|
867
|
5397 call0_trapping_problems (const CIbyte *warning_string, Lisp_Object function,
|
853
|
5398 int flags)
|
|
5399 {
|
|
5400 return calln_trapping_problems (Qerror, warning_string, flags, 0, 1,
|
|
5401 &function);
|
428
|
5402 }
|
|
5403
|
|
5404 Lisp_Object
|
867
|
5405 call1_trapping_problems (const CIbyte *warning_string, Lisp_Object function,
|
853
|
5406 Lisp_Object object, int flags)
|
|
5407 {
|
|
5408 Lisp_Object args[2];
|
|
5409
|
|
5410 args[0] = function;
|
|
5411 args[1] = object;
|
|
5412
|
|
5413 return calln_trapping_problems (Qerror, warning_string, flags, 0, 2,
|
|
5414 args);
|
|
5415 }
|
|
5416
|
|
5417 Lisp_Object
|
867
|
5418 call2_trapping_problems (const CIbyte *warning_string, Lisp_Object function,
|
853
|
5419 Lisp_Object object1, Lisp_Object object2,
|
|
5420 int flags)
|
|
5421 {
|
|
5422 Lisp_Object args[3];
|
|
5423
|
|
5424 args[0] = function;
|
|
5425 args[1] = object1;
|
|
5426 args[2] = object2;
|
|
5427
|
|
5428 return calln_trapping_problems (Qerror, warning_string, flags, 0, 3,
|
|
5429 args);
|
|
5430 }
|
|
5431
|
|
5432 Lisp_Object
|
867
|
5433 call3_trapping_problems (const CIbyte *warning_string, Lisp_Object function,
|
853
|
5434 Lisp_Object object1, Lisp_Object object2,
|
|
5435 Lisp_Object object3, int flags)
|
|
5436 {
|
|
5437 Lisp_Object args[4];
|
|
5438
|
|
5439 args[0] = function;
|
|
5440 args[1] = object1;
|
|
5441 args[2] = object2;
|
|
5442 args[3] = object3;
|
|
5443
|
|
5444 return calln_trapping_problems (Qerror, warning_string, flags, 0, 4,
|
|
5445 args);
|
|
5446 }
|
|
5447
|
|
5448 Lisp_Object
|
867
|
5449 call4_trapping_problems (const CIbyte *warning_string, Lisp_Object function,
|
853
|
5450 Lisp_Object object1, Lisp_Object object2,
|
|
5451 Lisp_Object object3, Lisp_Object object4,
|
|
5452 int flags)
|
|
5453 {
|
|
5454 Lisp_Object args[5];
|
|
5455
|
|
5456 args[0] = function;
|
|
5457 args[1] = object1;
|
|
5458 args[2] = object2;
|
|
5459 args[3] = object3;
|
|
5460 args[4] = object4;
|
|
5461
|
|
5462 return calln_trapping_problems (Qerror, warning_string, flags, 0, 5,
|
|
5463 args);
|
|
5464 }
|
|
5465
|
|
5466 Lisp_Object
|
867
|
5467 call5_trapping_problems (const CIbyte *warning_string, Lisp_Object function,
|
853
|
5468 Lisp_Object object1, Lisp_Object object2,
|
|
5469 Lisp_Object object3, Lisp_Object object4,
|
|
5470 Lisp_Object object5, int flags)
|
|
5471 {
|
|
5472 Lisp_Object args[6];
|
|
5473
|
|
5474 args[0] = function;
|
|
5475 args[1] = object1;
|
|
5476 args[2] = object2;
|
|
5477 args[3] = object3;
|
|
5478 args[4] = object4;
|
|
5479 args[5] = object5;
|
|
5480
|
|
5481 return calln_trapping_problems (Qerror, warning_string, flags, 0, 6,
|
|
5482 args);
|
|
5483 }
|
|
5484
|
|
5485 struct eval_in_buffer_trapping_problems
|
|
5486 {
|
|
5487 struct buffer *buf;
|
|
5488 Lisp_Object form;
|
|
5489 };
|
|
5490
|
|
5491 static Lisp_Object
|
|
5492 eval_in_buffer_trapping_problems_1 (void *arg)
|
|
5493 {
|
|
5494 struct eval_in_buffer_trapping_problems *p =
|
|
5495 (struct eval_in_buffer_trapping_problems *) arg;
|
|
5496
|
|
5497 return eval_in_buffer (p->buf, p->form);
|
|
5498 }
|
|
5499
|
|
5500 /* #### fix these functions to follow the calling convention of
|
|
5501 call_trapping_problems! */
|
|
5502
|
|
5503 Lisp_Object
|
867
|
5504 eval_in_buffer_trapping_problems (const CIbyte *warning_string,
|
853
|
5505 struct buffer *buf, Lisp_Object form,
|
|
5506 int flags)
|
|
5507 {
|
|
5508 struct eval_in_buffer_trapping_problems p;
|
|
5509 Lisp_Object buffer = wrap_buffer (buf);
|
428
|
5510 struct gcpro gcpro1, gcpro2;
|
|
5511
|
853
|
5512 GCPRO2 (buffer, form);
|
|
5513 p.buf = buf;
|
|
5514 p.form = form;
|
|
5515 RETURN_UNGCPRO (call_trapping_problems (Qerror, warning_string, flags, 0,
|
|
5516 eval_in_buffer_trapping_problems_1,
|
|
5517 &p));
|
|
5518 }
|
|
5519
|
|
5520 Lisp_Object
|
1333
|
5521 run_hook_trapping_problems (Lisp_Object warning_class,
|
853
|
5522 Lisp_Object hook_symbol,
|
|
5523 int flags)
|
|
5524 {
|
1333
|
5525 return run_hook_with_args_trapping_problems (warning_class, 1, &hook_symbol,
|
853
|
5526 RUN_HOOKS_TO_COMPLETION,
|
|
5527 flags);
|
428
|
5528 }
|
|
5529
|
|
5530 static Lisp_Object
|
853
|
5531 safe_run_hook_trapping_problems_1 (void *puta)
|
|
5532 {
|
|
5533 Lisp_Object hook = VOID_TO_LISP (puta);
|
|
5534
|
|
5535 run_hook (hook);
|
428
|
5536 return Qnil;
|
|
5537 }
|
|
5538
|
853
|
5539 /* Same as run_hook_trapping_problems() but also set the hook to nil
|
|
5540 if an error occurs (but not a quit). */
|
|
5541
|
428
|
5542 Lisp_Object
|
1333
|
5543 safe_run_hook_trapping_problems (Lisp_Object warning_class,
|
|
5544 Lisp_Object hook_symbol, int flags)
|
853
|
5545 {
|
428
|
5546 Lisp_Object tem;
|
853
|
5547 struct gcpro gcpro1, gcpro2;
|
|
5548 struct call_trapping_problems_result prob;
|
428
|
5549
|
|
5550 if (!initialized || preparing_for_armageddon)
|
|
5551 return Qnil;
|
|
5552 tem = find_symbol_value (hook_symbol);
|
|
5553 if (NILP (tem) || UNBOUNDP (tem))
|
|
5554 return Qnil;
|
|
5555
|
853
|
5556 GCPRO2 (hook_symbol, tem);
|
1333
|
5557 tem = call_trapping_problems (Qerror, NULL,
|
|
5558 flags | POSTPONE_WARNING_ISSUE,
|
853
|
5559 &prob,
|
|
5560 safe_run_hook_trapping_problems_1,
|
|
5561 LISP_TO_VOID (hook_symbol));
|
1333
|
5562 {
|
|
5563 Lisp_Object hook_name = XSYMBOL_NAME (hook_symbol);
|
|
5564 Ibyte *hook_str = XSTRING_DATA (hook_name);
|
|
5565 Ibyte *err = alloca_ibytes (XSTRING_LENGTH (hook_name) + 100);
|
|
5566
|
|
5567 if (prob.caught_throw || (prob.caught_error && !EQ (prob.error_conditions,
|
|
5568 Qquit)))
|
|
5569 {
|
|
5570 Fset (hook_symbol, Qnil);
|
|
5571 qxesprintf (err, "Error in `%s' (resetting to nil)", hook_str);
|
|
5572 }
|
|
5573 else
|
|
5574 qxesprintf (err, "Quit in `%s'", hook_str);
|
|
5575
|
|
5576
|
|
5577 issue_call_trapping_problems_warning (warning_class, (CIbyte *) err,
|
|
5578 &prob);
|
|
5579 }
|
|
5580
|
|
5581 UNGCPRO;
|
|
5582 return tem;
|
853
|
5583 }
|
|
5584
|
|
5585 struct run_hook_with_args_in_buffer_trapping_problems
|
|
5586 {
|
|
5587 struct buffer *buf;
|
|
5588 int nargs;
|
|
5589 Lisp_Object *args;
|
|
5590 enum run_hooks_condition cond;
|
|
5591 };
|
|
5592
|
|
5593 static Lisp_Object
|
|
5594 run_hook_with_args_in_buffer_trapping_problems_1 (void *puta)
|
|
5595 {
|
|
5596 struct run_hook_with_args_in_buffer_trapping_problems *porra =
|
|
5597 (struct run_hook_with_args_in_buffer_trapping_problems *) puta;
|
|
5598
|
|
5599 return run_hook_with_args_in_buffer (porra->buf, porra->nargs, porra->args,
|
|
5600 porra->cond);
|
|
5601 }
|
|
5602
|
|
5603 /* #### fix these functions to follow the calling convention of
|
|
5604 call_trapping_problems! */
|
428
|
5605
|
|
5606 Lisp_Object
|
1333
|
5607 run_hook_with_args_in_buffer_trapping_problems (Lisp_Object warning_class,
|
853
|
5608 struct buffer *buf, int nargs,
|
|
5609 Lisp_Object *args,
|
|
5610 enum run_hooks_condition cond,
|
|
5611 int flags)
|
|
5612 {
|
|
5613 Lisp_Object sym, val, ret;
|
|
5614 struct run_hook_with_args_in_buffer_trapping_problems diversity_and_distrust;
|
428
|
5615 struct gcpro gcpro1;
|
1333
|
5616 Lisp_Object hook_name;
|
|
5617 Ibyte *hook_str;
|
|
5618 Ibyte *err;
|
428
|
5619
|
|
5620 if (!initialized || preparing_for_armageddon)
|
853
|
5621 /* We need to bail out of here pronto. */
|
428
|
5622 return Qnil;
|
|
5623
|
853
|
5624 GCPRO1_ARRAY (args, nargs);
|
|
5625
|
|
5626 sym = args[0];
|
|
5627 val = symbol_value_in_buffer (sym, wrap_buffer (buf));
|
|
5628 ret = (cond == RUN_HOOKS_UNTIL_FAILURE ? Qt : Qnil);
|
|
5629
|
|
5630 if (UNBOUNDP (val) || NILP (val))
|
|
5631 RETURN_UNGCPRO (ret);
|
|
5632
|
|
5633 diversity_and_distrust.buf = buf;
|
|
5634 diversity_and_distrust.nargs = nargs;
|
|
5635 diversity_and_distrust.args = args;
|
|
5636 diversity_and_distrust.cond = cond;
|
|
5637
|
1333
|
5638 hook_name = XSYMBOL_NAME (args[0]);
|
|
5639 hook_str = XSTRING_DATA (hook_name);
|
|
5640 err = alloca_ibytes (XSTRING_LENGTH (hook_name) + 100);
|
|
5641 qxesprintf (err, "Error in `%s'", hook_str);
|
853
|
5642 RETURN_UNGCPRO
|
|
5643 (call_trapping_problems
|
1333
|
5644 (warning_class, (CIbyte *) err, flags, 0,
|
853
|
5645 run_hook_with_args_in_buffer_trapping_problems_1,
|
|
5646 &diversity_and_distrust));
|
428
|
5647 }
|
|
5648
|
|
5649 Lisp_Object
|
1333
|
5650 run_hook_with_args_trapping_problems (Lisp_Object warning_class,
|
853
|
5651 int nargs,
|
|
5652 Lisp_Object *args,
|
|
5653 enum run_hooks_condition cond,
|
|
5654 int flags)
|
|
5655 {
|
|
5656 return run_hook_with_args_in_buffer_trapping_problems
|
1333
|
5657 (warning_class, current_buffer, nargs, args, cond, flags);
|
428
|
5658 }
|
|
5659
|
|
5660 Lisp_Object
|
1333
|
5661 va_run_hook_with_args_trapping_problems (Lisp_Object warning_class,
|
853
|
5662 Lisp_Object hook_var,
|
|
5663 int nargs, ...)
|
|
5664 {
|
|
5665 /* This function can GC */
|
|
5666 struct gcpro gcpro1;
|
|
5667 int i;
|
|
5668 va_list vargs;
|
|
5669 Lisp_Object *funcall_args = alloca_array (Lisp_Object, 1 + nargs);
|
|
5670 int flags;
|
|
5671
|
|
5672 va_start (vargs, nargs);
|
|
5673 funcall_args[0] = hook_var;
|
|
5674 for (i = 0; i < nargs; i++)
|
|
5675 funcall_args[i + 1] = va_arg (vargs, Lisp_Object);
|
|
5676 flags = va_arg (vargs, int);
|
|
5677 va_end (vargs);
|
|
5678
|
|
5679 GCPRO1_ARRAY (funcall_args, nargs + 1);
|
|
5680 RETURN_UNGCPRO (run_hook_with_args_in_buffer_trapping_problems
|
1333
|
5681 (warning_class, current_buffer, nargs + 1, funcall_args,
|
853
|
5682 RUN_HOOKS_TO_COMPLETION, flags));
|
428
|
5683 }
|
|
5684
|
|
5685 Lisp_Object
|
1333
|
5686 va_run_hook_with_args_in_buffer_trapping_problems (Lisp_Object warning_class,
|
853
|
5687 struct buffer *buf,
|
|
5688 Lisp_Object hook_var,
|
|
5689 int nargs, ...)
|
|
5690 {
|
|
5691 /* This function can GC */
|
|
5692 struct gcpro gcpro1;
|
|
5693 int i;
|
|
5694 va_list vargs;
|
|
5695 Lisp_Object *funcall_args = alloca_array (Lisp_Object, 1 + nargs);
|
|
5696 int flags;
|
|
5697
|
|
5698 va_start (vargs, nargs);
|
|
5699 funcall_args[0] = hook_var;
|
|
5700 for (i = 0; i < nargs; i++)
|
|
5701 funcall_args[i + 1] = va_arg (vargs, Lisp_Object);
|
|
5702 flags = va_arg (vargs, int);
|
|
5703 va_end (vargs);
|
|
5704
|
|
5705 GCPRO1_ARRAY (funcall_args, nargs + 1);
|
|
5706 RETURN_UNGCPRO (run_hook_with_args_in_buffer_trapping_problems
|
1333
|
5707 (warning_class, buf, nargs + 1, funcall_args,
|
853
|
5708 RUN_HOOKS_TO_COMPLETION, flags));
|
428
|
5709 }
|
|
5710
|
|
5711
|
|
5712 /************************************************************************/
|
|
5713 /* The special binding stack */
|
771
|
5714 /* Most C code should simply use specbind() and unbind_to_1(). */
|
428
|
5715 /* When performance is critical, use the macros in backtrace.h. */
|
|
5716 /************************************************************************/
|
|
5717
|
|
5718 #define min_max_specpdl_size 400
|
|
5719
|
|
5720 void
|
647
|
5721 grow_specpdl (EMACS_INT reserved)
|
|
5722 {
|
|
5723 EMACS_INT size_needed = specpdl_depth() + reserved;
|
428
|
5724 if (size_needed >= max_specpdl_size)
|
|
5725 {
|
|
5726 if (max_specpdl_size < min_max_specpdl_size)
|
|
5727 max_specpdl_size = min_max_specpdl_size;
|
|
5728 if (size_needed >= max_specpdl_size)
|
|
5729 {
|
1951
|
5730 /* Leave room for some specpdl in the debugger. */
|
|
5731 max_specpdl_size = size_needed + 100;
|
|
5732 if (max_specpdl_size > specpdl_size)
|
|
5733 {
|
|
5734 specpdl_size = max_specpdl_size;
|
|
5735 XREALLOC_ARRAY (specpdl, struct specbinding, specpdl_size);
|
|
5736 specpdl_ptr = specpdl + specpdl_depth();
|
|
5737 }
|
563
|
5738 signal_continuable_error
|
|
5739 (Qstack_overflow,
|
|
5740 "Variable binding depth exceeds max-specpdl-size", Qunbound);
|
428
|
5741 }
|
|
5742 }
|
|
5743 while (specpdl_size < size_needed)
|
|
5744 {
|
|
5745 specpdl_size *= 2;
|
|
5746 if (specpdl_size > max_specpdl_size)
|
|
5747 specpdl_size = max_specpdl_size;
|
|
5748 }
|
|
5749 XREALLOC_ARRAY (specpdl, struct specbinding, specpdl_size);
|
|
5750 specpdl_ptr = specpdl + specpdl_depth();
|
853
|
5751 check_specbind_stack_sanity ();
|
428
|
5752 }
|
|
5753
|
|
5754
|
|
5755 /* Handle unbinding buffer-local variables */
|
|
5756 static Lisp_Object
|
|
5757 specbind_unwind_local (Lisp_Object ovalue)
|
|
5758 {
|
|
5759 Lisp_Object current = Fcurrent_buffer ();
|
|
5760 Lisp_Object symbol = specpdl_ptr->symbol;
|
853
|
5761 Lisp_Object victim = ovalue;
|
|
5762 Lisp_Object buf = get_buffer (XCAR (victim), 0);
|
|
5763 ovalue = XCDR (victim);
|
428
|
5764
|
|
5765 free_cons (victim);
|
|
5766
|
|
5767 if (NILP (buf))
|
|
5768 {
|
|
5769 /* Deleted buffer -- do nothing */
|
|
5770 }
|
|
5771 else if (symbol_value_buffer_local_info (symbol, XBUFFER (buf)) == 0)
|
|
5772 {
|
|
5773 /* Was buffer-local when binding was made, now no longer is.
|
|
5774 * (kill-local-variable can do this.)
|
|
5775 * Do nothing in this case.
|
|
5776 */
|
|
5777 }
|
|
5778 else if (EQ (buf, current))
|
|
5779 Fset (symbol, ovalue);
|
|
5780 else
|
|
5781 {
|
|
5782 /* Urk! Somebody switched buffers */
|
|
5783 struct gcpro gcpro1;
|
|
5784 GCPRO1 (current);
|
|
5785 Fset_buffer (buf);
|
|
5786 Fset (symbol, ovalue);
|
|
5787 Fset_buffer (current);
|
|
5788 UNGCPRO;
|
|
5789 }
|
|
5790 return symbol;
|
|
5791 }
|
|
5792
|
|
5793 static Lisp_Object
|
|
5794 specbind_unwind_wasnt_local (Lisp_Object buffer)
|
|
5795 {
|
|
5796 Lisp_Object current = Fcurrent_buffer ();
|
|
5797 Lisp_Object symbol = specpdl_ptr->symbol;
|
|
5798
|
|
5799 buffer = get_buffer (buffer, 0);
|
|
5800 if (NILP (buffer))
|
|
5801 {
|
|
5802 /* Deleted buffer -- do nothing */
|
|
5803 }
|
|
5804 else if (symbol_value_buffer_local_info (symbol, XBUFFER (buffer)) == 0)
|
|
5805 {
|
|
5806 /* Was buffer-local when binding was made, now no longer is.
|
|
5807 * (kill-local-variable can do this.)
|
|
5808 * Do nothing in this case.
|
|
5809 */
|
|
5810 }
|
|
5811 else if (EQ (buffer, current))
|
|
5812 Fkill_local_variable (symbol);
|
|
5813 else
|
|
5814 {
|
|
5815 /* Urk! Somebody switched buffers */
|
|
5816 struct gcpro gcpro1;
|
|
5817 GCPRO1 (current);
|
|
5818 Fset_buffer (buffer);
|
|
5819 Fkill_local_variable (symbol);
|
|
5820 Fset_buffer (current);
|
|
5821 UNGCPRO;
|
|
5822 }
|
|
5823 return symbol;
|
|
5824 }
|
|
5825
|
|
5826
|
|
5827 void
|
|
5828 specbind (Lisp_Object symbol, Lisp_Object value)
|
|
5829 {
|
|
5830 SPECBIND (symbol, value);
|
853
|
5831
|
|
5832 check_specbind_stack_sanity ();
|
428
|
5833 }
|
|
5834
|
|
5835 void
|
|
5836 specbind_magic (Lisp_Object symbol, Lisp_Object value)
|
|
5837 {
|
|
5838 int buffer_local =
|
|
5839 symbol_value_buffer_local_info (symbol, current_buffer);
|
|
5840
|
|
5841 if (buffer_local == 0)
|
|
5842 {
|
|
5843 specpdl_ptr->old_value = find_symbol_value (symbol);
|
771
|
5844 specpdl_ptr->func = 0; /* Handled specially by unbind_to_1 */
|
428
|
5845 }
|
|
5846 else if (buffer_local > 0)
|
|
5847 {
|
|
5848 /* Already buffer-local */
|
|
5849 specpdl_ptr->old_value = noseeum_cons (Fcurrent_buffer (),
|
|
5850 find_symbol_value (symbol));
|
|
5851 specpdl_ptr->func = specbind_unwind_local;
|
|
5852 }
|
|
5853 else
|
|
5854 {
|
|
5855 /* About to become buffer-local */
|
|
5856 specpdl_ptr->old_value = Fcurrent_buffer ();
|
|
5857 specpdl_ptr->func = specbind_unwind_wasnt_local;
|
|
5858 }
|
|
5859
|
|
5860 specpdl_ptr->symbol = symbol;
|
|
5861 specpdl_ptr++;
|
|
5862 specpdl_depth_counter++;
|
|
5863
|
|
5864 Fset (symbol, value);
|
853
|
5865
|
|
5866 check_specbind_stack_sanity ();
|
428
|
5867 }
|
|
5868
|
771
|
5869 /* Record an unwind-protect -- FUNCTION will be called with ARG no matter
|
|
5870 whether a normal or non-local exit occurs. (You need to call unbind_to_1()
|
|
5871 before your function returns normally, passing in the integer returned
|
|
5872 by this function.) Note: As long as the unwind-protect exists, ARG is
|
|
5873 automatically GCPRO'd. The return value from FUNCTION is completely
|
|
5874 ignored. #### We should eliminate it entirely. */
|
|
5875
|
|
5876 int
|
428
|
5877 record_unwind_protect (Lisp_Object (*function) (Lisp_Object arg),
|
|
5878 Lisp_Object arg)
|
|
5879 {
|
|
5880 SPECPDL_RESERVE (1);
|
|
5881 specpdl_ptr->func = function;
|
|
5882 specpdl_ptr->symbol = Qnil;
|
|
5883 specpdl_ptr->old_value = arg;
|
|
5884 specpdl_ptr++;
|
|
5885 specpdl_depth_counter++;
|
853
|
5886 check_specbind_stack_sanity ();
|
771
|
5887 return specpdl_depth_counter - 1;
|
|
5888 }
|
|
5889
|
|
5890 static Lisp_Object
|
802
|
5891 restore_lisp_object (Lisp_Object cons)
|
|
5892 {
|
|
5893 Lisp_Object opaque = XCAR (cons);
|
|
5894 Lisp_Object *addr = (Lisp_Object *) get_opaque_ptr (opaque);
|
|
5895 *addr = XCDR (cons);
|
|
5896 free_opaque_ptr (opaque);
|
853
|
5897 free_cons (cons);
|
802
|
5898 return Qnil;
|
|
5899 }
|
|
5900
|
|
5901 /* Establish an unwind-protect which will restore the Lisp_Object pointed to
|
|
5902 by ADDR with the value VAL. */
|
814
|
5903 static int
|
802
|
5904 record_unwind_protect_restoring_lisp_object (Lisp_Object *addr,
|
|
5905 Lisp_Object val)
|
|
5906 {
|
|
5907 Lisp_Object opaque = make_opaque_ptr (addr);
|
|
5908 return record_unwind_protect (restore_lisp_object,
|
|
5909 noseeum_cons (opaque, val));
|
|
5910 }
|
|
5911
|
|
5912 /* Similar to specbind() but for any C variable whose value is a
|
|
5913 Lisp_Object. Sets up an unwind-protect to restore the variable
|
|
5914 pointed to by ADDR to its existing value, and then changes its
|
|
5915 value to NEWVAL. Returns the previous value of specpdl_depth();
|
|
5916 pass this to unbind_to() after you are done. */
|
|
5917 int
|
|
5918 internal_bind_lisp_object (Lisp_Object *addr, Lisp_Object newval)
|
|
5919 {
|
|
5920 int count = specpdl_depth ();
|
|
5921 record_unwind_protect_restoring_lisp_object (addr, *addr);
|
|
5922 *addr = newval;
|
|
5923 return count;
|
|
5924 }
|
|
5925
|
|
5926 static Lisp_Object
|
|
5927 restore_int (Lisp_Object cons)
|
|
5928 {
|
|
5929 Lisp_Object opaque = XCAR (cons);
|
|
5930 Lisp_Object lval = XCDR (cons);
|
|
5931 int *addr = (int *) get_opaque_ptr (opaque);
|
|
5932 int val;
|
|
5933
|
|
5934 if (INTP (lval))
|
|
5935 val = XINT (lval);
|
|
5936 else
|
|
5937 {
|
|
5938 val = (int) get_opaque_ptr (lval);
|
|
5939 free_opaque_ptr (lval);
|
|
5940 }
|
|
5941
|
|
5942 *addr = val;
|
|
5943 free_opaque_ptr (opaque);
|
853
|
5944 free_cons (cons);
|
802
|
5945 return Qnil;
|
|
5946 }
|
|
5947
|
|
5948 /* Establish an unwind-protect which will restore the int pointed to
|
|
5949 by ADDR with the value VAL. This function works correctly with
|
|
5950 all ints, even those that don't fit into a Lisp integer. */
|
1333
|
5951 int
|
802
|
5952 record_unwind_protect_restoring_int (int *addr, int val)
|
|
5953 {
|
|
5954 Lisp_Object opaque = make_opaque_ptr (addr);
|
|
5955 Lisp_Object lval;
|
|
5956
|
|
5957 if (NUMBER_FITS_IN_AN_EMACS_INT (val))
|
|
5958 lval = make_int (val);
|
|
5959 else
|
|
5960 lval = make_opaque_ptr ((void *) val);
|
|
5961 return record_unwind_protect (restore_int, noseeum_cons (opaque, lval));
|
|
5962 }
|
|
5963
|
|
5964 /* Similar to specbind() but for any C variable whose value is an int.
|
|
5965 Sets up an unwind-protect to restore the variable pointed to by
|
|
5966 ADDR to its existing value, and then changes its value to NEWVAL.
|
|
5967 Returns the previous value of specpdl_depth(); pass this to
|
|
5968 unbind_to() after you are done. This function works correctly with
|
|
5969 all ints, even those that don't fit into a Lisp integer. */
|
|
5970 int
|
|
5971 internal_bind_int (int *addr, int newval)
|
|
5972 {
|
|
5973 int count = specpdl_depth ();
|
|
5974 record_unwind_protect_restoring_int (addr, *addr);
|
|
5975 *addr = newval;
|
|
5976 return count;
|
|
5977 }
|
|
5978
|
|
5979 static Lisp_Object
|
771
|
5980 free_pointer (Lisp_Object opaque)
|
|
5981 {
|
1726
|
5982 xfree (get_opaque_ptr (opaque), void *);
|
771
|
5983 free_opaque_ptr (opaque);
|
|
5984 return Qnil;
|
|
5985 }
|
|
5986
|
|
5987 /* Establish an unwind-protect which will free the specified block.
|
|
5988 */
|
|
5989 int
|
|
5990 record_unwind_protect_freeing (void *ptr)
|
|
5991 {
|
|
5992 Lisp_Object opaque = make_opaque_ptr (ptr);
|
|
5993 return record_unwind_protect (free_pointer, opaque);
|
|
5994 }
|
|
5995
|
|
5996 static Lisp_Object
|
|
5997 free_dynarr (Lisp_Object opaque)
|
|
5998 {
|
|
5999 Dynarr_free (get_opaque_ptr (opaque));
|
|
6000 free_opaque_ptr (opaque);
|
|
6001 return Qnil;
|
|
6002 }
|
|
6003
|
|
6004 int
|
|
6005 record_unwind_protect_freeing_dynarr (void *ptr)
|
|
6006 {
|
|
6007 Lisp_Object opaque = make_opaque_ptr (ptr);
|
|
6008 return record_unwind_protect (free_dynarr, opaque);
|
|
6009 }
|
428
|
6010
|
|
6011 /* Unwind the stack till specpdl_depth() == COUNT.
|
|
6012 VALUE is not used, except that, purely as a convenience to the
|
771
|
6013 caller, it is protected from garbage-protection and returned. */
|
428
|
6014 Lisp_Object
|
771
|
6015 unbind_to_1 (int count, Lisp_Object value)
|
428
|
6016 {
|
|
6017 UNBIND_TO_GCPRO (count, value);
|
853
|
6018 check_specbind_stack_sanity ();
|
428
|
6019 return value;
|
|
6020 }
|
|
6021
|
|
6022 /* Don't call this directly.
|
|
6023 Only for use by UNBIND_TO* macros in backtrace.h */
|
|
6024 void
|
|
6025 unbind_to_hairy (int count)
|
|
6026 {
|
442
|
6027 ++specpdl_ptr;
|
|
6028 ++specpdl_depth_counter;
|
|
6029
|
428
|
6030 while (specpdl_depth_counter != count)
|
|
6031 {
|
1313
|
6032 Lisp_Object oquit = Qunbound;
|
|
6033
|
|
6034 /* Do this check BEFORE decrementing the values below, because once
|
|
6035 they're decremented, GC protection is lost on
|
|
6036 specpdl_ptr->old_value. */
|
1322
|
6037 if (specpdl_ptr[-1].func == Fprogn)
|
1313
|
6038 {
|
|
6039 /* Allow QUIT within unwind-protect routines, but defer any
|
|
6040 existing QUIT until afterwards. Only do this, however, for
|
|
6041 unwind-protects established by Lisp code, not by C code
|
|
6042 (e.g. free_opaque_ptr() or something), because the act of
|
|
6043 checking for QUIT can cause all sorts of weird things to
|
|
6044 happen, since it churns the event loop -- redisplay, running
|
|
6045 Lisp, etc. Code should not have to worry about this just
|
|
6046 because of establishing an unwind-protect. */
|
|
6047 check_quit (); /* make Vquit_flag accurate */
|
|
6048 oquit = Vquit_flag;
|
|
6049 Vquit_flag = Qnil;
|
|
6050 }
|
|
6051
|
428
|
6052 --specpdl_ptr;
|
|
6053 --specpdl_depth_counter;
|
|
6054
|
1313
|
6055 /* #### At this point, there is no GC protection on old_value. This
|
|
6056 could be a real problem, depending on what unwind-protect function
|
|
6057 is called. It looks like it just so happens that the ones
|
|
6058 actually called don't have a problem with this, e.g. Fprogn. But
|
|
6059 we should look into fixing this. (Many unwind-protect functions
|
|
6060 free values. Is it a problem if freed values are
|
|
6061 GC-protected?) */
|
428
|
6062 if (specpdl_ptr->func != 0)
|
1313
|
6063 {
|
|
6064 /* An unwind-protect */
|
|
6065 (*specpdl_ptr->func) (specpdl_ptr->old_value);
|
|
6066 }
|
|
6067
|
428
|
6068 else
|
|
6069 {
|
|
6070 /* We checked symbol for validity when we specbound it,
|
|
6071 so only need to call Fset if symbol has magic value. */
|
440
|
6072 Lisp_Symbol *sym = XSYMBOL (specpdl_ptr->symbol);
|
428
|
6073 if (!SYMBOL_VALUE_MAGIC_P (sym->value))
|
|
6074 sym->value = specpdl_ptr->old_value;
|
|
6075 else
|
|
6076 Fset (specpdl_ptr->symbol, specpdl_ptr->old_value);
|
|
6077 }
|
|
6078
|
|
6079 #if 0 /* martin */
|
|
6080 #ifndef EXCEEDINGLY_QUESTIONABLE_CODE
|
|
6081 /* There should never be anything here for us to remove.
|
|
6082 If so, it indicates a logic error in Emacs. Catches
|
|
6083 should get removed when a throw or signal occurs, or
|
|
6084 when a catch or condition-case exits normally. But
|
|
6085 it's too dangerous to just remove this code. --ben */
|
|
6086
|
|
6087 /* Furthermore, this code is not in FSFmacs!!!
|
|
6088 Braino on mly's part? */
|
|
6089 /* If we're unwound past the pdlcount of a catch frame,
|
|
6090 that catch can't possibly still be valid. */
|
|
6091 while (catchlist && catchlist->pdlcount > specpdl_depth_counter)
|
|
6092 {
|
|
6093 catchlist = catchlist->next;
|
|
6094 /* Don't mess with gcprolist, backtrace_list here */
|
|
6095 }
|
|
6096 #endif
|
|
6097 #endif
|
1313
|
6098
|
|
6099 if (!UNBOUNDP (oquit))
|
|
6100 Vquit_flag = oquit;
|
428
|
6101 }
|
853
|
6102 check_specbind_stack_sanity ();
|
428
|
6103 }
|
|
6104
|
|
6105
|
|
6106
|
|
6107 /* Get the value of symbol's global binding, even if that binding is
|
|
6108 not now dynamically visible. May return Qunbound or magic values. */
|
|
6109
|
|
6110 Lisp_Object
|
|
6111 top_level_value (Lisp_Object symbol)
|
|
6112 {
|
|
6113 REGISTER struct specbinding *ptr = specpdl;
|
|
6114
|
|
6115 CHECK_SYMBOL (symbol);
|
|
6116 for (; ptr != specpdl_ptr; ptr++)
|
|
6117 {
|
|
6118 if (EQ (ptr->symbol, symbol))
|
|
6119 return ptr->old_value;
|
|
6120 }
|
|
6121 return XSYMBOL (symbol)->value;
|
|
6122 }
|
|
6123
|
|
6124 #if 0
|
|
6125
|
|
6126 Lisp_Object
|
|
6127 top_level_set (Lisp_Object symbol, Lisp_Object newval)
|
|
6128 {
|
|
6129 REGISTER struct specbinding *ptr = specpdl;
|
|
6130
|
|
6131 CHECK_SYMBOL (symbol);
|
|
6132 for (; ptr != specpdl_ptr; ptr++)
|
|
6133 {
|
|
6134 if (EQ (ptr->symbol, symbol))
|
|
6135 {
|
|
6136 ptr->old_value = newval;
|
|
6137 return newval;
|
|
6138 }
|
|
6139 }
|
|
6140 return Fset (symbol, newval);
|
|
6141 }
|
|
6142
|
|
6143 #endif /* 0 */
|
|
6144
|
|
6145
|
|
6146 /************************************************************************/
|
|
6147 /* Backtraces */
|
|
6148 /************************************************************************/
|
|
6149
|
|
6150 DEFUN ("backtrace-debug", Fbacktrace_debug, 2, 2, 0, /*
|
|
6151 Set the debug-on-exit flag of eval frame LEVEL levels down to FLAG.
|
|
6152 The debugger is entered when that frame exits, if the flag is non-nil.
|
|
6153 */
|
|
6154 (level, flag))
|
|
6155 {
|
|
6156 REGISTER struct backtrace *backlist = backtrace_list;
|
|
6157 REGISTER int i;
|
|
6158
|
|
6159 CHECK_INT (level);
|
|
6160
|
|
6161 for (i = 0; backlist && i < XINT (level); i++)
|
|
6162 {
|
|
6163 backlist = backlist->next;
|
|
6164 }
|
|
6165
|
|
6166 if (backlist)
|
|
6167 backlist->debug_on_exit = !NILP (flag);
|
|
6168
|
|
6169 return flag;
|
|
6170 }
|
|
6171
|
|
6172 static void
|
|
6173 backtrace_specials (int speccount, int speclimit, Lisp_Object stream)
|
|
6174 {
|
|
6175 int printing_bindings = 0;
|
|
6176
|
|
6177 for (; speccount > speclimit; speccount--)
|
|
6178 {
|
|
6179 if (specpdl[speccount - 1].func == 0
|
|
6180 || specpdl[speccount - 1].func == specbind_unwind_local
|
|
6181 || specpdl[speccount - 1].func == specbind_unwind_wasnt_local)
|
|
6182 {
|
826
|
6183 write_c_string (stream, !printing_bindings ? " # bind (" : " ");
|
428
|
6184 Fprin1 (specpdl[speccount - 1].symbol, stream);
|
|
6185 printing_bindings = 1;
|
|
6186 }
|
|
6187 else
|
|
6188 {
|
826
|
6189 if (printing_bindings) write_c_string (stream, ")\n");
|
|
6190 write_c_string (stream, " # (unwind-protect ...)\n");
|
428
|
6191 printing_bindings = 0;
|
|
6192 }
|
|
6193 }
|
826
|
6194 if (printing_bindings) write_c_string (stream, ")\n");
|
428
|
6195 }
|
|
6196
|
1292
|
6197 static Lisp_Object
|
|
6198 backtrace_unevalled_args (Lisp_Object *args)
|
|
6199 {
|
|
6200 if (args)
|
|
6201 return *args;
|
|
6202 else
|
|
6203 return list1 (build_string ("[internal]"));
|
|
6204 }
|
|
6205
|
428
|
6206 DEFUN ("backtrace", Fbacktrace, 0, 2, "", /*
|
|
6207 Print a trace of Lisp function calls currently active.
|
438
|
6208 Optional arg STREAM specifies the output stream to send the backtrace to,
|
444
|
6209 and defaults to the value of `standard-output'.
|
|
6210 Optional second arg DETAILED non-nil means show places where currently
|
|
6211 active variable bindings, catches, condition-cases, and
|
|
6212 unwind-protects, as well as function calls, were made.
|
428
|
6213 */
|
|
6214 (stream, detailed))
|
|
6215 {
|
|
6216 /* This function can GC */
|
|
6217 struct backtrace *backlist = backtrace_list;
|
|
6218 struct catchtag *catches = catchlist;
|
|
6219 int speccount = specpdl_depth();
|
|
6220
|
|
6221 int old_nl = print_escape_newlines;
|
|
6222 int old_pr = print_readably;
|
|
6223 Lisp_Object old_level = Vprint_level;
|
|
6224 Lisp_Object oiq = Vinhibit_quit;
|
|
6225 struct gcpro gcpro1, gcpro2;
|
|
6226
|
|
6227 /* We can't allow quits in here because that could cause the values
|
|
6228 of print_readably and print_escape_newlines to get screwed up.
|
|
6229 Normally we would use a record_unwind_protect but that would
|
|
6230 screw up the functioning of this function. */
|
|
6231 Vinhibit_quit = Qt;
|
|
6232
|
|
6233 entering_debugger = 0;
|
|
6234
|
872
|
6235 if (!NILP (detailed))
|
|
6236 Vprint_level = make_int (50);
|
|
6237 else
|
|
6238 Vprint_level = make_int (3);
|
428
|
6239 print_readably = 0;
|
|
6240 print_escape_newlines = 1;
|
|
6241
|
|
6242 GCPRO2 (stream, old_level);
|
|
6243
|
1261
|
6244 stream = canonicalize_printcharfun (stream);
|
428
|
6245
|
|
6246 for (;;)
|
|
6247 {
|
|
6248 if (!NILP (detailed) && catches && catches->backlist == backlist)
|
|
6249 {
|
|
6250 int catchpdl = catches->pdlcount;
|
438
|
6251 if (speccount > catchpdl
|
|
6252 && specpdl[catchpdl].func == condition_case_unwind)
|
428
|
6253 /* This is a condition-case catchpoint */
|
|
6254 catchpdl = catchpdl + 1;
|
|
6255
|
|
6256 backtrace_specials (speccount, catchpdl, stream);
|
|
6257
|
|
6258 speccount = catches->pdlcount;
|
|
6259 if (catchpdl == speccount)
|
|
6260 {
|
826
|
6261 write_c_string (stream, " # (catch ");
|
428
|
6262 Fprin1 (catches->tag, stream);
|
826
|
6263 write_c_string (stream, " ...)\n");
|
428
|
6264 }
|
|
6265 else
|
|
6266 {
|
826
|
6267 write_c_string (stream, " # (condition-case ... . ");
|
428
|
6268 Fprin1 (Fcdr (Fcar (catches->tag)), stream);
|
826
|
6269 write_c_string (stream, ")\n");
|
428
|
6270 }
|
|
6271 catches = catches->next;
|
|
6272 }
|
|
6273 else if (!backlist)
|
|
6274 break;
|
|
6275 else
|
|
6276 {
|
|
6277 if (!NILP (detailed) && backlist->pdlcount < speccount)
|
|
6278 {
|
|
6279 backtrace_specials (speccount, backlist->pdlcount, stream);
|
|
6280 speccount = backlist->pdlcount;
|
|
6281 }
|
826
|
6282 write_c_string (stream, backlist->debug_on_exit ? "* " : " ");
|
428
|
6283 if (backlist->nargs == UNEVALLED)
|
|
6284 {
|
1292
|
6285 Fprin1 (Fcons (*backlist->function,
|
|
6286 backtrace_unevalled_args (backlist->args)),
|
|
6287 stream);
|
826
|
6288 write_c_string (stream, "\n"); /* from FSFmacs 19.30 */
|
428
|
6289 }
|
|
6290 else
|
|
6291 {
|
|
6292 Lisp_Object tem = *backlist->function;
|
|
6293 Fprin1 (tem, stream); /* This can QUIT */
|
826
|
6294 write_c_string (stream, "(");
|
428
|
6295 if (backlist->nargs == MANY)
|
|
6296 {
|
|
6297 int i;
|
|
6298 Lisp_Object tail = Qnil;
|
|
6299 struct gcpro ngcpro1;
|
|
6300
|
|
6301 NGCPRO1 (tail);
|
|
6302 for (tail = *backlist->args, i = 0;
|
|
6303 !NILP (tail);
|
|
6304 tail = Fcdr (tail), i++)
|
|
6305 {
|
826
|
6306 if (i != 0) write_c_string (stream, " ");
|
428
|
6307 Fprin1 (Fcar (tail), stream);
|
|
6308 }
|
|
6309 NUNGCPRO;
|
|
6310 }
|
|
6311 else
|
|
6312 {
|
|
6313 int i;
|
|
6314 for (i = 0; i < backlist->nargs; i++)
|
|
6315 {
|
826
|
6316 if (!i && EQ (tem, Qbyte_code))
|
|
6317 {
|
|
6318 write_c_string (stream, "\"...\"");
|
|
6319 continue;
|
|
6320 }
|
|
6321 if (i != 0) write_c_string (stream, " ");
|
428
|
6322 Fprin1 (backlist->args[i], stream);
|
|
6323 }
|
|
6324 }
|
826
|
6325 write_c_string (stream, ")\n");
|
428
|
6326 }
|
|
6327 backlist = backlist->next;
|
|
6328 }
|
|
6329 }
|
|
6330 Vprint_level = old_level;
|
|
6331 print_readably = old_pr;
|
|
6332 print_escape_newlines = old_nl;
|
|
6333 UNGCPRO;
|
|
6334 Vinhibit_quit = oiq;
|
|
6335 return Qnil;
|
|
6336 }
|
|
6337
|
|
6338
|
444
|
6339 DEFUN ("backtrace-frame", Fbacktrace_frame, 1, 1, 0, /*
|
|
6340 Return the function and arguments NFRAMES up from current execution point.
|
428
|
6341 If that frame has not evaluated the arguments yet (or is a special form),
|
|
6342 the value is (nil FUNCTION ARG-FORMS...).
|
|
6343 If that frame has evaluated its arguments and called its function already,
|
|
6344 the value is (t FUNCTION ARG-VALUES...).
|
|
6345 A &rest arg is represented as the tail of the list ARG-VALUES.
|
|
6346 FUNCTION is whatever was supplied as car of evaluated list,
|
|
6347 or a lambda expression for macro calls.
|
444
|
6348 If NFRAMES is more than the number of frames, the value is nil.
|
428
|
6349 */
|
|
6350 (nframes))
|
|
6351 {
|
|
6352 REGISTER struct backtrace *backlist = backtrace_list;
|
|
6353 REGISTER int i;
|
|
6354 Lisp_Object tem;
|
|
6355
|
|
6356 CHECK_NATNUM (nframes);
|
|
6357
|
|
6358 /* Find the frame requested. */
|
|
6359 for (i = XINT (nframes); backlist && (i-- > 0);)
|
|
6360 backlist = backlist->next;
|
|
6361
|
|
6362 if (!backlist)
|
|
6363 return Qnil;
|
|
6364 if (backlist->nargs == UNEVALLED)
|
1292
|
6365 return Fcons (Qnil, Fcons (*backlist->function,
|
|
6366 backtrace_unevalled_args (backlist->args)));
|
428
|
6367 else
|
|
6368 {
|
|
6369 if (backlist->nargs == MANY)
|
|
6370 tem = *backlist->args;
|
|
6371 else
|
|
6372 tem = Flist (backlist->nargs, backlist->args);
|
|
6373
|
|
6374 return Fcons (Qt, Fcons (*backlist->function, tem));
|
|
6375 }
|
|
6376 }
|
|
6377
|
|
6378
|
|
6379 /************************************************************************/
|
|
6380 /* Warnings */
|
|
6381 /************************************************************************/
|
|
6382
|
1123
|
6383 static int
|
|
6384 warning_will_be_discarded (Lisp_Object level)
|
|
6385 {
|
|
6386 /* Don't even generate debug warnings if they're going to be discarded,
|
|
6387 to avoid excessive consing. */
|
|
6388 return (EQ (level, Qdebug) && !NILP (Vlog_warning_minimum_level) &&
|
|
6389 !EQ (Vlog_warning_minimum_level, Qdebug));
|
|
6390 }
|
|
6391
|
428
|
6392 void
|
1204
|
6393 warn_when_safe_lispobj (Lisp_Object class_, Lisp_Object level,
|
428
|
6394 Lisp_Object obj)
|
|
6395 {
|
1123
|
6396 if (warning_will_be_discarded (level))
|
793
|
6397 return;
|
1123
|
6398
|
1204
|
6399 obj = list1 (list3 (class_, level, obj));
|
428
|
6400 if (NILP (Vpending_warnings))
|
|
6401 Vpending_warnings = Vpending_warnings_tail = obj;
|
|
6402 else
|
|
6403 {
|
|
6404 Fsetcdr (Vpending_warnings_tail, obj);
|
|
6405 Vpending_warnings_tail = obj;
|
|
6406 }
|
|
6407 }
|
|
6408
|
|
6409 /* #### This should probably accept Lisp objects; but then we have
|
|
6410 to make sure that Feval() isn't called, since it might not be safe.
|
|
6411
|
|
6412 An alternative approach is to just pass some non-string type of
|
|
6413 Lisp_Object to warn_when_safe_lispobj(); `prin1-to-string' will
|
|
6414 automatically be called when it is safe to do so. */
|
|
6415
|
|
6416 void
|
1204
|
6417 warn_when_safe (Lisp_Object class_, Lisp_Object level, const CIbyte *fmt, ...)
|
428
|
6418 {
|
|
6419 Lisp_Object obj;
|
|
6420 va_list args;
|
|
6421
|
1123
|
6422 if (warning_will_be_discarded (level))
|
793
|
6423 return;
|
1123
|
6424
|
428
|
6425 va_start (args, fmt);
|
771
|
6426 obj = emacs_vsprintf_string (CGETTEXT (fmt), args);
|
428
|
6427 va_end (args);
|
|
6428
|
1204
|
6429 warn_when_safe_lispobj (class_, level, obj);
|
428
|
6430 }
|
|
6431
|
|
6432
|
|
6433
|
|
6434
|
|
6435 /************************************************************************/
|
|
6436 /* Initialization */
|
|
6437 /************************************************************************/
|
|
6438
|
|
6439 void
|
|
6440 syms_of_eval (void)
|
|
6441 {
|
442
|
6442 INIT_LRECORD_IMPLEMENTATION (subr);
|
|
6443
|
563
|
6444 DEFSYMBOL (Qinhibit_quit);
|
|
6445 DEFSYMBOL (Qautoload);
|
|
6446 DEFSYMBOL (Qdebug_on_error);
|
|
6447 DEFSYMBOL (Qstack_trace_on_error);
|
|
6448 DEFSYMBOL (Qdebug_on_signal);
|
|
6449 DEFSYMBOL (Qstack_trace_on_signal);
|
|
6450 DEFSYMBOL (Qdebugger);
|
|
6451 DEFSYMBOL (Qmacro);
|
428
|
6452 defsymbol (&Qand_rest, "&rest");
|
|
6453 defsymbol (&Qand_optional, "&optional");
|
|
6454 /* Note that the process code also uses Qexit */
|
563
|
6455 DEFSYMBOL (Qexit);
|
|
6456 DEFSYMBOL (Qsetq);
|
|
6457 DEFSYMBOL (Qinteractive);
|
|
6458 DEFSYMBOL (Qcommandp);
|
|
6459 DEFSYMBOL (Qdefun);
|
|
6460 DEFSYMBOL (Qprogn);
|
|
6461 DEFSYMBOL (Qvalues);
|
|
6462 DEFSYMBOL (Qdisplay_warning);
|
|
6463 DEFSYMBOL (Qrun_hooks);
|
887
|
6464 DEFSYMBOL (Qfinalize_list);
|
563
|
6465 DEFSYMBOL (Qif);
|
428
|
6466
|
|
6467 DEFSUBR (For);
|
|
6468 DEFSUBR (Fand);
|
|
6469 DEFSUBR (Fif);
|
|
6470 DEFSUBR_MACRO (Fwhen);
|
|
6471 DEFSUBR_MACRO (Funless);
|
|
6472 DEFSUBR (Fcond);
|
|
6473 DEFSUBR (Fprogn);
|
|
6474 DEFSUBR (Fprog1);
|
|
6475 DEFSUBR (Fprog2);
|
|
6476 DEFSUBR (Fsetq);
|
|
6477 DEFSUBR (Fquote);
|
|
6478 DEFSUBR (Ffunction);
|
|
6479 DEFSUBR (Fdefun);
|
|
6480 DEFSUBR (Fdefmacro);
|
|
6481 DEFSUBR (Fdefvar);
|
|
6482 DEFSUBR (Fdefconst);
|
|
6483 DEFSUBR (Fuser_variable_p);
|
|
6484 DEFSUBR (Flet);
|
|
6485 DEFSUBR (FletX);
|
|
6486 DEFSUBR (Fwhile);
|
|
6487 DEFSUBR (Fmacroexpand_internal);
|
|
6488 DEFSUBR (Fcatch);
|
|
6489 DEFSUBR (Fthrow);
|
|
6490 DEFSUBR (Funwind_protect);
|
|
6491 DEFSUBR (Fcondition_case);
|
|
6492 DEFSUBR (Fcall_with_condition_handler);
|
|
6493 DEFSUBR (Fsignal);
|
|
6494 DEFSUBR (Finteractive_p);
|
|
6495 DEFSUBR (Fcommandp);
|
|
6496 DEFSUBR (Fcommand_execute);
|
|
6497 DEFSUBR (Fautoload);
|
|
6498 DEFSUBR (Feval);
|
|
6499 DEFSUBR (Fapply);
|
|
6500 DEFSUBR (Ffuncall);
|
|
6501 DEFSUBR (Ffunctionp);
|
|
6502 DEFSUBR (Ffunction_min_args);
|
|
6503 DEFSUBR (Ffunction_max_args);
|
|
6504 DEFSUBR (Frun_hooks);
|
|
6505 DEFSUBR (Frun_hook_with_args);
|
|
6506 DEFSUBR (Frun_hook_with_args_until_success);
|
|
6507 DEFSUBR (Frun_hook_with_args_until_failure);
|
|
6508 DEFSUBR (Fbacktrace_debug);
|
|
6509 DEFSUBR (Fbacktrace);
|
|
6510 DEFSUBR (Fbacktrace_frame);
|
|
6511 }
|
|
6512
|
|
6513 void
|
814
|
6514 init_eval_semi_early (void)
|
428
|
6515 {
|
|
6516 specpdl_ptr = specpdl;
|
|
6517 specpdl_depth_counter = 0;
|
|
6518 catchlist = 0;
|
|
6519 Vcondition_handlers = Qnil;
|
|
6520 backtrace_list = 0;
|
|
6521 Vquit_flag = Qnil;
|
|
6522 debug_on_next_call = 0;
|
|
6523 lisp_eval_depth = 0;
|
|
6524 entering_debugger = 0;
|
|
6525 }
|
|
6526
|
|
6527 void
|
|
6528 reinit_vars_of_eval (void)
|
|
6529 {
|
|
6530 preparing_for_armageddon = 0;
|
|
6531 in_warnings = 0;
|
|
6532 specpdl_size = 50;
|
|
6533 specpdl = xnew_array (struct specbinding, specpdl_size);
|
|
6534 /* XEmacs change: increase these values. */
|
|
6535 max_specpdl_size = 3000;
|
442
|
6536 max_lisp_eval_depth = 1000;
|
|
6537 #ifdef DEFEND_AGAINST_THROW_RECURSION
|
428
|
6538 throw_level = 0;
|
|
6539 #endif
|
2367
|
6540 init_eval_semi_early ();
|
428
|
6541 }
|
|
6542
|
|
6543 void
|
|
6544 vars_of_eval (void)
|
|
6545 {
|
|
6546 DEFVAR_INT ("max-specpdl-size", &max_specpdl_size /*
|
|
6547 Limit on number of Lisp variable bindings & unwind-protects before error.
|
|
6548 */ );
|
|
6549
|
|
6550 DEFVAR_INT ("max-lisp-eval-depth", &max_lisp_eval_depth /*
|
|
6551 Limit on depth in `eval', `apply' and `funcall' before error.
|
|
6552 This limit is to catch infinite recursions for you before they cause
|
|
6553 actual stack overflow in C, which would be fatal for Emacs.
|
|
6554 You can safely make it considerably larger than its default value,
|
|
6555 if that proves inconveniently small.
|
|
6556 */ );
|
|
6557
|
|
6558 DEFVAR_LISP ("quit-flag", &Vquit_flag /*
|
853
|
6559 t causes running Lisp code to abort, unless `inhibit-quit' is non-nil.
|
|
6560 `critical' causes running Lisp code to abort regardless of `inhibit-quit'.
|
|
6561 Normally, you do not need to set this value yourself. It is set to
|
|
6562 t each time a Control-G is detected, and to `critical' each time a
|
|
6563 Shift-Control-G is detected. The XEmacs core C code is littered with
|
|
6564 calls to the QUIT; macro, which check the values of `quit-flag' and
|
2500
|
6565 `inhibit-quit' and ABORT (or more accurately, call (signal 'quit)) if
|
853
|
6566 it's correct to do so.
|
428
|
6567 */ );
|
|
6568 Vquit_flag = Qnil;
|
|
6569
|
|
6570 DEFVAR_LISP ("inhibit-quit", &Vinhibit_quit /*
|
|
6571 Non-nil inhibits C-g quitting from happening immediately.
|
|
6572 Note that `quit-flag' will still be set by typing C-g,
|
|
6573 so a quit will be signalled as soon as `inhibit-quit' is nil.
|
|
6574 To prevent this happening, set `quit-flag' to nil
|
853
|
6575 before making `inhibit-quit' nil.
|
|
6576
|
|
6577 The value of `inhibit-quit' is ignored if a critical quit is
|
|
6578 requested by typing control-shift-G in a window-system frame;
|
|
6579 this is explained in more detail in `quit-flag'.
|
428
|
6580 */ );
|
|
6581 Vinhibit_quit = Qnil;
|
|
6582
|
|
6583 DEFVAR_LISP ("stack-trace-on-error", &Vstack_trace_on_error /*
|
|
6584 *Non-nil means automatically display a backtrace buffer
|
|
6585 after any error that is not handled by a `condition-case'.
|
|
6586 If the value is a list, an error only means to display a backtrace
|
|
6587 if one of its condition symbols appears in the list.
|
|
6588 See also variable `stack-trace-on-signal'.
|
|
6589 */ );
|
|
6590 Vstack_trace_on_error = Qnil;
|
|
6591
|
|
6592 DEFVAR_LISP ("stack-trace-on-signal", &Vstack_trace_on_signal /*
|
|
6593 *Non-nil means automatically display a backtrace buffer
|
|
6594 after any error that is signalled, whether or not it is handled by
|
|
6595 a `condition-case'.
|
|
6596 If the value is a list, an error only means to display a backtrace
|
|
6597 if one of its condition symbols appears in the list.
|
|
6598 See also variable `stack-trace-on-error'.
|
|
6599 */ );
|
|
6600 Vstack_trace_on_signal = Qnil;
|
|
6601
|
|
6602 DEFVAR_LISP ("debug-ignored-errors", &Vdebug_ignored_errors /*
|
|
6603 *List of errors for which the debugger should not be called.
|
|
6604 Each element may be a condition-name or a regexp that matches error messages.
|
|
6605 If any element applies to a given error, that error skips the debugger
|
|
6606 and just returns to top level.
|
|
6607 This overrides the variable `debug-on-error'.
|
|
6608 It does not apply to errors handled by `condition-case'.
|
|
6609 */ );
|
|
6610 Vdebug_ignored_errors = Qnil;
|
|
6611
|
|
6612 DEFVAR_LISP ("debug-on-error", &Vdebug_on_error /*
|
|
6613 *Non-nil means enter debugger if an unhandled error is signalled.
|
|
6614 The debugger will not be entered if the error is handled by
|
|
6615 a `condition-case'.
|
|
6616 If the value is a list, an error only means to enter the debugger
|
|
6617 if one of its condition symbols appears in the list.
|
|
6618 This variable is overridden by `debug-ignored-errors'.
|
|
6619 See also variables `debug-on-quit' and `debug-on-signal'.
|
1123
|
6620
|
|
6621 If this variable is set while XEmacs is running noninteractively (using
|
|
6622 `-batch'), and XEmacs was configured with `--debug' (#define XEMACS_DEBUG
|
|
6623 in the C code), instead of trying to invoke the Lisp debugger (which
|
|
6624 obviously won't work), XEmacs will break out to a C debugger using
|
|
6625 \(force-debugging-signal t). This is useful because debugging
|
|
6626 noninteractive runs of XEmacs is often very difficult, since they typically
|
|
6627 happen as part of sometimes large and complex make suites (e.g. rebuilding
|
2500
|
6628 the XEmacs packages). NOTE: This runs ABORT()!!! (As well as and after
|
1123
|
6629 executing INT 3 under MS Windows, which should invoke a debugger if it's
|
|
6630 active.) This is guaranteed to kill XEmacs! (But in this situation, XEmacs
|
|
6631 is about to die anyway, and if no debugger is present, this will usefully
|
|
6632 dump core.) The most useful way to set this flag when debugging
|
|
6633 noninteractive runs, especially in makefiles, is using the environment
|
|
6634 variable XEMACSDEBUG, like this:
|
771
|
6635
|
|
6636 \(using csh) setenv XEMACSDEBUG '(setq debug-on-error t)'
|
|
6637 \(using bash) export XEMACSDEBUG='(setq debug-on-error t)'
|
428
|
6638 */ );
|
|
6639 Vdebug_on_error = Qnil;
|
|
6640
|
|
6641 DEFVAR_LISP ("debug-on-signal", &Vdebug_on_signal /*
|
|
6642 *Non-nil means enter debugger if an error is signalled.
|
|
6643 The debugger will be entered whether or not the error is handled by
|
|
6644 a `condition-case'.
|
|
6645 If the value is a list, an error only means to enter the debugger
|
|
6646 if one of its condition symbols appears in the list.
|
|
6647 See also variable `debug-on-quit'.
|
1123
|
6648
|
|
6649 This will attempt to enter a C debugger when XEmacs is run noninteractively
|
|
6650 and under the same conditions as described in `debug-on-error'.
|
428
|
6651 */ );
|
|
6652 Vdebug_on_signal = Qnil;
|
|
6653
|
|
6654 DEFVAR_BOOL ("debug-on-quit", &debug_on_quit /*
|
|
6655 *Non-nil means enter debugger if quit is signalled (C-G, for example).
|
|
6656 Does not apply if quit is handled by a `condition-case'. Entering the
|
|
6657 debugger can also be achieved at any time (for X11 console) by typing
|
|
6658 control-shift-G to signal a critical quit.
|
|
6659 */ );
|
|
6660 debug_on_quit = 0;
|
|
6661
|
|
6662 DEFVAR_BOOL ("debug-on-next-call", &debug_on_next_call /*
|
|
6663 Non-nil means enter debugger before next `eval', `apply' or `funcall'.
|
|
6664 */ );
|
|
6665
|
1292
|
6666 DEFVAR_BOOL ("backtrace-with-interal-sections",
|
|
6667 &backtrace_with_internal_sections /*
|
|
6668 Non-nil means backtraces will contain additional information indicating
|
|
6669 when particular sections of the C code have been entered, e.g. redisplay(),
|
|
6670 byte-char conversion, internal-external conversion, etc. This can be
|
|
6671 particularly useful when XEmacs crashes, in helping to pinpoint the problem.
|
|
6672 */ );
|
|
6673 #ifdef ERROR_CHECK_STRUCTURES
|
|
6674 backtrace_with_internal_sections = 1;
|
|
6675 #else
|
|
6676 backtrace_with_internal_sections = 0;
|
|
6677 #endif
|
|
6678
|
428
|
6679 DEFVAR_LISP ("debugger", &Vdebugger /*
|
|
6680 Function to call to invoke debugger.
|
|
6681 If due to frame exit, args are `exit' and the value being returned;
|
|
6682 this function's value will be returned instead of that.
|
|
6683 If due to error, args are `error' and a list of the args to `signal'.
|
|
6684 If due to `apply' or `funcall' entry, one arg, `lambda'.
|
|
6685 If due to `eval' entry, one arg, t.
|
|
6686 */ );
|
|
6687 Vdebugger = Qnil;
|
|
6688
|
853
|
6689 staticpro (&Vcatch_everything_tag);
|
|
6690 Vcatch_everything_tag = make_opaque (OPAQUE_CLEAR, 0);
|
|
6691
|
428
|
6692 staticpro (&Vpending_warnings);
|
|
6693 Vpending_warnings = Qnil;
|
1204
|
6694 dump_add_root_lisp_object (&Vpending_warnings_tail);
|
428
|
6695 Vpending_warnings_tail = Qnil;
|
|
6696
|
793
|
6697 DEFVAR_LISP ("log-warning-minimum-level", &Vlog_warning_minimum_level);
|
|
6698 Vlog_warning_minimum_level = Qinfo;
|
|
6699
|
428
|
6700 staticpro (&Vautoload_queue);
|
|
6701 Vautoload_queue = Qnil;
|
|
6702
|
|
6703 staticpro (&Vcondition_handlers);
|
|
6704
|
853
|
6705 staticpro (&Vdeletable_permanent_display_objects);
|
|
6706 Vdeletable_permanent_display_objects = Qnil;
|
|
6707
|
|
6708 staticpro (&Vmodifiable_buffers);
|
|
6709 Vmodifiable_buffers = Qnil;
|
|
6710
|
|
6711 inhibit_flags = 0;
|
|
6712 }
|