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
|
3025
|
206 Catches are created by declaring a `struct catchtag' locally,
|
853
|
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
|
3025
|
482 We also establish a catch for `debugger'. If the debugger function
|
428
|
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
|
3025
|
552 through `eval' or `lambda' for a call through `funcall'.
|
428
|
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
|
3025
|
1659 `top-level'. If this tag doesn't exist (happens during the
|
428
|
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"
|
3025
|
1665 occurs is when there's no catch for `top-level' -- the
|
|
1666 `top-level' catch and the catch-all error handler are
|
428
|
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
|
3092
|
2241 #ifndef NEW_GC
|
1123
|
2242 assert (!gc_in_progress);
|
3092
|
2243 #endif /* not NEW_GC */
|
1123
|
2244
|
|
2245 /* We abort if in_display and we are not protected, as garbage
|
|
2246 collections and non-local exits will invariably be fatal, but in
|
|
2247 messy, difficult-to-debug ways. See enter_redisplay_critical_section().
|
|
2248 */
|
|
2249
|
1318
|
2250 #ifdef ERROR_CHECK_TRAPPING_PROBLEMS
|
1123
|
2251 check_proper_critical_section_nonlocal_exit_protection ();
|
1318
|
2252 #endif
|
428
|
2253
|
853
|
2254 conditions = Fget (error_symbol, Qerror_conditions, Qnil);
|
428
|
2255
|
|
2256 for (handlers = Vcondition_handlers;
|
|
2257 CONSP (handlers);
|
|
2258 handlers = XCDR (handlers))
|
|
2259 {
|
|
2260 Lisp_Object handler_fun = XCAR (XCAR (handlers));
|
|
2261 Lisp_Object handler_data = XCDR (XCAR (handlers));
|
|
2262 Lisp_Object outer_handlers = XCDR (handlers);
|
|
2263
|
|
2264 if (!UNBOUNDP (handler_fun))
|
|
2265 {
|
|
2266 /* call-with-condition-handler */
|
|
2267 Lisp_Object tem;
|
|
2268 Lisp_Object all_handlers = Vcondition_handlers;
|
|
2269 struct gcpro ngcpro1;
|
|
2270 NGCPRO1 (all_handlers);
|
|
2271 Vcondition_handlers = outer_handlers;
|
|
2272
|
853
|
2273 tem = signal_call_debugger (conditions, error_symbol, data,
|
428
|
2274 outer_handlers, 1,
|
|
2275 &stack_trace_displayed,
|
|
2276 &debugger_entered);
|
|
2277 if (!UNBOUNDP (tem))
|
|
2278 RETURN_NUNGCPRO (return_from_signal (tem));
|
|
2279
|
853
|
2280 if (OPAQUE_PTRP (handler_fun))
|
|
2281 {
|
|
2282 if (NILP (handler_data))
|
|
2283 {
|
|
2284 Lisp_Object (*hfun) (Lisp_Object, Lisp_Object) =
|
|
2285 (Lisp_Object (*) (Lisp_Object, Lisp_Object))
|
|
2286 (get_opaque_ptr (handler_fun));
|
|
2287
|
|
2288 tem = (*hfun) (error_symbol, data);
|
|
2289 }
|
|
2290 else
|
|
2291 {
|
|
2292 Lisp_Object (*hfun) (Lisp_Object, Lisp_Object, Lisp_Object) =
|
|
2293 (Lisp_Object (*) (Lisp_Object, Lisp_Object, Lisp_Object))
|
|
2294 (get_opaque_ptr (handler_fun));
|
|
2295
|
|
2296 assert (NILP (XCDR (handler_data)));
|
|
2297 tem = (*hfun) (error_symbol, data, XCAR (handler_data));
|
|
2298 }
|
|
2299 }
|
|
2300 else
|
|
2301 {
|
|
2302 tem = Fcons (error_symbol, data);
|
|
2303 if (NILP (handler_data))
|
|
2304 tem = call1 (handler_fun, tem);
|
|
2305 else
|
|
2306 {
|
|
2307 /* (This code won't be used (for now?).) */
|
|
2308 struct gcpro nngcpro1;
|
|
2309 Lisp_Object args[3];
|
|
2310 NNGCPRO1 (args[0]);
|
|
2311 nngcpro1.nvars = 3;
|
|
2312 args[0] = handler_fun;
|
|
2313 args[1] = tem;
|
|
2314 args[2] = handler_data;
|
|
2315 nngcpro1.var = args;
|
|
2316 tem = Fapply (3, args);
|
|
2317 NNUNGCPRO;
|
|
2318 }
|
|
2319 }
|
428
|
2320 NUNGCPRO;
|
|
2321 #if 0
|
|
2322 if (!EQ (tem, Qsignal))
|
|
2323 return return_from_signal (tem);
|
|
2324 #endif
|
|
2325 /* If handler didn't throw, try another handler */
|
|
2326 Vcondition_handlers = all_handlers;
|
|
2327 }
|
|
2328
|
|
2329 /* It's a condition-case handler */
|
|
2330
|
|
2331 /* t is used by handlers for all conditions, set up by C code.
|
|
2332 * debugger is not called even if debug_on_error */
|
|
2333 else if (EQ (handler_data, Qt))
|
|
2334 {
|
|
2335 UNGCPRO;
|
853
|
2336 return Fthrow (handlers, Fcons (error_symbol, data));
|
428
|
2337 }
|
|
2338 /* `error' is used similarly to the way `t' is used, but in
|
|
2339 addition it invokes the debugger if debug_on_error.
|
|
2340 This is normally used for the outer command-loop error
|
|
2341 handler. */
|
|
2342 else if (EQ (handler_data, Qerror))
|
|
2343 {
|
853
|
2344 Lisp_Object tem = signal_call_debugger (conditions, error_symbol,
|
|
2345 data,
|
428
|
2346 outer_handlers, 0,
|
|
2347 &stack_trace_displayed,
|
|
2348 &debugger_entered);
|
|
2349
|
|
2350 UNGCPRO;
|
|
2351 if (!UNBOUNDP (tem))
|
|
2352 return return_from_signal (tem);
|
|
2353
|
853
|
2354 tem = Fcons (error_symbol, data);
|
428
|
2355 return Fthrow (handlers, tem);
|
|
2356 }
|
|
2357 else
|
|
2358 {
|
|
2359 /* handler established by real (Lisp) condition-case */
|
|
2360 Lisp_Object h;
|
|
2361
|
|
2362 for (h = handler_data; CONSP (h); h = Fcdr (h))
|
|
2363 {
|
|
2364 Lisp_Object clause = Fcar (h);
|
|
2365 Lisp_Object tem = Fcar (clause);
|
|
2366
|
|
2367 if (condition_type_p (tem, conditions))
|
|
2368 {
|
853
|
2369 tem = signal_call_debugger (conditions, error_symbol, data,
|
428
|
2370 outer_handlers, 1,
|
|
2371 &stack_trace_displayed,
|
|
2372 &debugger_entered);
|
|
2373 UNGCPRO;
|
|
2374 if (!UNBOUNDP (tem))
|
|
2375 return return_from_signal (tem);
|
|
2376
|
|
2377 /* Doesn't return */
|
853
|
2378 tem = Fcons (Fcons (error_symbol, data), Fcdr (clause));
|
428
|
2379 return Fthrow (handlers, tem);
|
|
2380 }
|
|
2381 }
|
|
2382 }
|
|
2383 }
|
|
2384
|
|
2385 /* If no handler is present now, try to run the debugger,
|
|
2386 and if that fails, throw to top level.
|
|
2387
|
|
2388 #### The only time that no handler is present is during
|
|
2389 temacs or perhaps very early in XEmacs. In both cases,
|
3025
|
2390 there is no `top-level' catch. (That's why the
|
428
|
2391 "bomb-out" hack was added.)
|
|
2392
|
853
|
2393 [[#### Fix this horrifitude!]]
|
|
2394
|
|
2395 I don't think this is horrifitude, but just defensive coding. --ben */
|
|
2396
|
|
2397 signal_call_debugger (conditions, error_symbol, data, Qnil, 0,
|
428
|
2398 &stack_trace_displayed,
|
|
2399 &debugger_entered);
|
|
2400 UNGCPRO;
|
853
|
2401 throw_or_bomb_out (Qtop_level, Qt, 1, error_symbol,
|
|
2402 data); /* Doesn't return */
|
2268
|
2403 RETURN_NOT_REACHED (Qnil);
|
428
|
2404 }
|
|
2405
|
|
2406 /****************** Error functions class 1 ******************/
|
|
2407
|
|
2408 /* Class 1: General functions that signal an error.
|
|
2409 These functions take an error type and a list of associated error
|
|
2410 data. */
|
|
2411
|
853
|
2412 /* No signal_continuable_error_1(); it's called Fsignal(). */
|
428
|
2413
|
|
2414 /* Signal a non-continuable error. */
|
|
2415
|
|
2416 DOESNT_RETURN
|
563
|
2417 signal_error_1 (Lisp_Object sig, Lisp_Object data)
|
428
|
2418 {
|
|
2419 for (;;)
|
|
2420 Fsignal (sig, data);
|
|
2421 }
|
853
|
2422
|
|
2423 #ifdef ERROR_CHECK_CATCH
|
|
2424
|
|
2425 void
|
|
2426 check_catchlist_sanity (void)
|
|
2427 {
|
|
2428 #if 0
|
|
2429 /* vou me tomar no cu! i just masked andy's missing-unbind
|
|
2430 bug! */
|
442
|
2431 struct catchtag *c;
|
|
2432 int found_error_tag = 0;
|
|
2433
|
|
2434 for (c = catchlist; c; c = c->next)
|
|
2435 {
|
|
2436 if (EQ (c->tag, Qunbound_suspended_errors_tag))
|
|
2437 {
|
|
2438 found_error_tag = 1;
|
|
2439 break;
|
|
2440 }
|
|
2441 }
|
|
2442
|
|
2443 assert (found_error_tag || NILP (Vcurrent_error_state));
|
853
|
2444 #endif /* vou me tomar no cul */
|
|
2445 }
|
|
2446
|
|
2447 void
|
|
2448 check_specbind_stack_sanity (void)
|
|
2449 {
|
|
2450 }
|
|
2451
|
|
2452 #endif /* ERROR_CHECK_CATCH */
|
428
|
2453
|
|
2454 /* Signal a non-continuable error or display a warning or do nothing,
|
|
2455 according to ERRB. CLASS is the class of warning and should
|
|
2456 refer to what sort of operation is being done (e.g. Qtoolbar,
|
|
2457 Qresource, etc.). */
|
|
2458
|
|
2459 void
|
1204
|
2460 maybe_signal_error_1 (Lisp_Object sig, Lisp_Object data, Lisp_Object class_,
|
578
|
2461 Error_Behavior errb)
|
428
|
2462 {
|
|
2463 if (ERRB_EQ (errb, ERROR_ME_NOT))
|
|
2464 return;
|
793
|
2465 else if (ERRB_EQ (errb, ERROR_ME_DEBUG_WARN))
|
1204
|
2466 warn_when_safe_lispobj (class_, Qdebug, Fcons (sig, data));
|
428
|
2467 else if (ERRB_EQ (errb, ERROR_ME_WARN))
|
1204
|
2468 warn_when_safe_lispobj (class_, Qwarning, Fcons (sig, data));
|
428
|
2469 else
|
|
2470 for (;;)
|
|
2471 Fsignal (sig, data);
|
|
2472 }
|
|
2473
|
|
2474 /* Signal a continuable error or display a warning or do nothing,
|
|
2475 according to ERRB. */
|
|
2476
|
|
2477 Lisp_Object
|
563
|
2478 maybe_signal_continuable_error_1 (Lisp_Object sig, Lisp_Object data,
|
1204
|
2479 Lisp_Object class_, Error_Behavior errb)
|
428
|
2480 {
|
|
2481 if (ERRB_EQ (errb, ERROR_ME_NOT))
|
|
2482 return Qnil;
|
793
|
2483 else if (ERRB_EQ (errb, ERROR_ME_DEBUG_WARN))
|
|
2484 {
|
1204
|
2485 warn_when_safe_lispobj (class_, Qdebug, Fcons (sig, data));
|
793
|
2486 return Qnil;
|
|
2487 }
|
428
|
2488 else if (ERRB_EQ (errb, ERROR_ME_WARN))
|
|
2489 {
|
1204
|
2490 warn_when_safe_lispobj (class_, Qwarning, Fcons (sig, data));
|
428
|
2491 return Qnil;
|
|
2492 }
|
|
2493 else
|
|
2494 return Fsignal (sig, data);
|
|
2495 }
|
|
2496
|
|
2497
|
|
2498 /****************** Error functions class 2 ******************/
|
|
2499
|
563
|
2500 /* Class 2: Signal an error with a string and an associated object.
|
|
2501 Normally these functions are used to attach one associated object,
|
|
2502 but to attach no objects, specify Qunbound for FROB, and for more
|
|
2503 than one object, make a list of the objects with Qunbound as the
|
|
2504 first element. (If you have specifically two objects to attach,
|
|
2505 consider using the function in class 3 below.) These functions
|
|
2506 signal an error of a specified type, whose data is one or more
|
|
2507 objects (usually two), a string the related Lisp object(s)
|
|
2508 specified as FROB. */
|
|
2509
|
|
2510 /* Out of REASON and FROB, return a list of elements suitable for passing
|
|
2511 to signal_error_1(). */
|
|
2512
|
|
2513 Lisp_Object
|
867
|
2514 build_error_data (const CIbyte *reason, Lisp_Object frob)
|
563
|
2515 {
|
|
2516 if (EQ (frob, Qunbound))
|
|
2517 frob = Qnil;
|
|
2518 else if (CONSP (frob) && EQ (XCAR (frob), Qunbound))
|
|
2519 frob = XCDR (frob);
|
|
2520 else
|
|
2521 frob = list1 (frob);
|
|
2522 if (!reason)
|
|
2523 return frob;
|
|
2524 else
|
771
|
2525 return Fcons (build_msg_string (reason), frob);
|
563
|
2526 }
|
|
2527
|
|
2528 DOESNT_RETURN
|
867
|
2529 signal_error (Lisp_Object type, const CIbyte *reason, Lisp_Object frob)
|
563
|
2530 {
|
|
2531 signal_error_1 (type, build_error_data (reason, frob));
|
|
2532 }
|
|
2533
|
|
2534 void
|
867
|
2535 maybe_signal_error (Lisp_Object type, const CIbyte *reason,
|
1204
|
2536 Lisp_Object frob, Lisp_Object class_,
|
578
|
2537 Error_Behavior errb)
|
563
|
2538 {
|
|
2539 /* Optimization: */
|
|
2540 if (ERRB_EQ (errb, ERROR_ME_NOT))
|
|
2541 return;
|
1204
|
2542 maybe_signal_error_1 (type, build_error_data (reason, frob), class_, errb);
|
563
|
2543 }
|
|
2544
|
|
2545 Lisp_Object
|
867
|
2546 signal_continuable_error (Lisp_Object type, const CIbyte *reason,
|
563
|
2547 Lisp_Object frob)
|
|
2548 {
|
|
2549 return Fsignal (type, build_error_data (reason, frob));
|
|
2550 }
|
|
2551
|
|
2552 Lisp_Object
|
867
|
2553 maybe_signal_continuable_error (Lisp_Object type, const CIbyte *reason,
|
1204
|
2554 Lisp_Object frob, Lisp_Object class_,
|
578
|
2555 Error_Behavior errb)
|
563
|
2556 {
|
|
2557 /* Optimization: */
|
|
2558 if (ERRB_EQ (errb, ERROR_ME_NOT))
|
|
2559 return Qnil;
|
|
2560 return maybe_signal_continuable_error_1 (type,
|
|
2561 build_error_data (reason, frob),
|
1204
|
2562 class_, errb);
|
563
|
2563 }
|
|
2564
|
|
2565
|
|
2566 /****************** Error functions class 3 ******************/
|
|
2567
|
|
2568 /* Class 3: Signal an error with a string and two associated objects.
|
|
2569 These functions signal an error of a specified type, whose data
|
|
2570 is three objects, a string and two related Lisp objects.
|
|
2571 (The equivalent could be accomplished using the class 2 functions,
|
|
2572 but these are more convenient in this particular case.) */
|
|
2573
|
|
2574 DOESNT_RETURN
|
867
|
2575 signal_error_2 (Lisp_Object type, const CIbyte *reason,
|
563
|
2576 Lisp_Object frob0, Lisp_Object frob1)
|
|
2577 {
|
771
|
2578 signal_error_1 (type, list3 (build_msg_string (reason), frob0,
|
563
|
2579 frob1));
|
|
2580 }
|
|
2581
|
|
2582 void
|
867
|
2583 maybe_signal_error_2 (Lisp_Object type, const CIbyte *reason,
|
563
|
2584 Lisp_Object frob0, Lisp_Object frob1,
|
1204
|
2585 Lisp_Object class_, Error_Behavior errb)
|
563
|
2586 {
|
|
2587 /* Optimization: */
|
|
2588 if (ERRB_EQ (errb, ERROR_ME_NOT))
|
|
2589 return;
|
771
|
2590 maybe_signal_error_1 (type, list3 (build_msg_string (reason), frob0,
|
1204
|
2591 frob1), class_, errb);
|
563
|
2592 }
|
|
2593
|
|
2594 Lisp_Object
|
867
|
2595 signal_continuable_error_2 (Lisp_Object type, const CIbyte *reason,
|
563
|
2596 Lisp_Object frob0, Lisp_Object frob1)
|
|
2597 {
|
771
|
2598 return Fsignal (type, list3 (build_msg_string (reason), frob0,
|
563
|
2599 frob1));
|
|
2600 }
|
|
2601
|
|
2602 Lisp_Object
|
867
|
2603 maybe_signal_continuable_error_2 (Lisp_Object type, const CIbyte *reason,
|
563
|
2604 Lisp_Object frob0, Lisp_Object frob1,
|
1204
|
2605 Lisp_Object class_, Error_Behavior errb)
|
563
|
2606 {
|
|
2607 /* Optimization: */
|
|
2608 if (ERRB_EQ (errb, ERROR_ME_NOT))
|
|
2609 return Qnil;
|
|
2610 return maybe_signal_continuable_error_1
|
771
|
2611 (type, list3 (build_msg_string (reason), frob0, frob1),
|
1204
|
2612 class_, errb);
|
563
|
2613 }
|
|
2614
|
|
2615
|
|
2616 /****************** Error functions class 4 ******************/
|
|
2617
|
|
2618 /* Class 4: Printf-like functions that signal an error.
|
442
|
2619 These functions signal an error of a specified type, whose data
|
428
|
2620 is a single string, created using the arguments. */
|
|
2621
|
|
2622 DOESNT_RETURN
|
867
|
2623 signal_ferror (Lisp_Object type, const CIbyte *fmt, ...)
|
442
|
2624 {
|
|
2625 Lisp_Object obj;
|
|
2626 va_list args;
|
|
2627
|
|
2628 va_start (args, fmt);
|
771
|
2629 obj = emacs_vsprintf_string (CGETTEXT (fmt), args);
|
442
|
2630 va_end (args);
|
|
2631
|
|
2632 /* Fsignal GC-protects its args */
|
563
|
2633 signal_error (type, 0, obj);
|
442
|
2634 }
|
|
2635
|
|
2636 void
|
1204
|
2637 maybe_signal_ferror (Lisp_Object type, Lisp_Object class_, Error_Behavior errb,
|
867
|
2638 const CIbyte *fmt, ...)
|
442
|
2639 {
|
|
2640 Lisp_Object obj;
|
|
2641 va_list args;
|
|
2642
|
|
2643 /* Optimization: */
|
|
2644 if (ERRB_EQ (errb, ERROR_ME_NOT))
|
|
2645 return;
|
|
2646
|
|
2647 va_start (args, fmt);
|
771
|
2648 obj = emacs_vsprintf_string (CGETTEXT (fmt), args);
|
442
|
2649 va_end (args);
|
|
2650
|
|
2651 /* Fsignal GC-protects its args */
|
1204
|
2652 maybe_signal_error (type, 0, obj, class_, errb);
|
442
|
2653 }
|
|
2654
|
|
2655 Lisp_Object
|
867
|
2656 signal_continuable_ferror (Lisp_Object type, const CIbyte *fmt, ...)
|
428
|
2657 {
|
|
2658 Lisp_Object obj;
|
|
2659 va_list args;
|
|
2660
|
|
2661 va_start (args, fmt);
|
771
|
2662 obj = emacs_vsprintf_string (CGETTEXT (fmt), args);
|
442
|
2663 va_end (args);
|
|
2664
|
|
2665 /* Fsignal GC-protects its args */
|
|
2666 return Fsignal (type, list1 (obj));
|
|
2667 }
|
|
2668
|
|
2669 Lisp_Object
|
1204
|
2670 maybe_signal_continuable_ferror (Lisp_Object type, Lisp_Object class_,
|
867
|
2671 Error_Behavior errb, const CIbyte *fmt, ...)
|
442
|
2672 {
|
|
2673 Lisp_Object obj;
|
|
2674 va_list args;
|
|
2675
|
|
2676 /* Optimization: */
|
|
2677 if (ERRB_EQ (errb, ERROR_ME_NOT))
|
|
2678 return Qnil;
|
|
2679
|
|
2680 va_start (args, fmt);
|
771
|
2681 obj = emacs_vsprintf_string (CGETTEXT (fmt), args);
|
442
|
2682 va_end (args);
|
|
2683
|
|
2684 /* Fsignal GC-protects its args */
|
1204
|
2685 return maybe_signal_continuable_error (type, 0, obj, class_, errb);
|
442
|
2686 }
|
|
2687
|
|
2688
|
|
2689 /****************** Error functions class 5 ******************/
|
|
2690
|
563
|
2691 /* Class 5: Printf-like functions that signal an error.
|
442
|
2692 These functions signal an error of a specified type, whose data
|
563
|
2693 is a one or more objects, a string (created using the arguments)
|
|
2694 and additional Lisp objects specified in FROB. (The syntax of FROB
|
|
2695 is the same as for class 2.)
|
|
2696
|
|
2697 There is no need for a class 6 because you can always attach 2
|
|
2698 objects using class 5 (for FROB, specify a list with three
|
|
2699 elements, the first of which is Qunbound), and these functions are
|
|
2700 not commonly used.
|
|
2701 */
|
442
|
2702
|
|
2703 DOESNT_RETURN
|
867
|
2704 signal_ferror_with_frob (Lisp_Object type, Lisp_Object frob, const CIbyte *fmt,
|
563
|
2705 ...)
|
442
|
2706 {
|
|
2707 Lisp_Object obj;
|
|
2708 va_list args;
|
|
2709
|
|
2710 va_start (args, fmt);
|
771
|
2711 obj = emacs_vsprintf_string (CGETTEXT (fmt), args);
|
442
|
2712 va_end (args);
|
|
2713
|
|
2714 /* Fsignal GC-protects its args */
|
563
|
2715 signal_error_1 (type, Fcons (obj, build_error_data (0, frob)));
|
442
|
2716 }
|
|
2717
|
|
2718 void
|
563
|
2719 maybe_signal_ferror_with_frob (Lisp_Object type, Lisp_Object frob,
|
1204
|
2720 Lisp_Object class_, Error_Behavior errb,
|
867
|
2721 const CIbyte *fmt, ...)
|
442
|
2722 {
|
|
2723 Lisp_Object obj;
|
|
2724 va_list args;
|
|
2725
|
|
2726 /* Optimization: */
|
|
2727 if (ERRB_EQ (errb, ERROR_ME_NOT))
|
|
2728 return;
|
|
2729
|
|
2730 va_start (args, fmt);
|
771
|
2731 obj = emacs_vsprintf_string (CGETTEXT (fmt), args);
|
428
|
2732 va_end (args);
|
|
2733
|
|
2734 /* Fsignal GC-protects its args */
|
1204
|
2735 maybe_signal_error_1 (type, Fcons (obj, build_error_data (0, frob)), class_,
|
563
|
2736 errb);
|
428
|
2737 }
|
|
2738
|
|
2739 Lisp_Object
|
563
|
2740 signal_continuable_ferror_with_frob (Lisp_Object type, Lisp_Object frob,
|
867
|
2741 const CIbyte *fmt, ...)
|
428
|
2742 {
|
|
2743 Lisp_Object obj;
|
|
2744 va_list args;
|
|
2745
|
|
2746 va_start (args, fmt);
|
771
|
2747 obj = emacs_vsprintf_string (CGETTEXT (fmt), args);
|
428
|
2748 va_end (args);
|
|
2749
|
|
2750 /* Fsignal GC-protects its args */
|
563
|
2751 return Fsignal (type, Fcons (obj, build_error_data (0, frob)));
|
428
|
2752 }
|
|
2753
|
|
2754 Lisp_Object
|
563
|
2755 maybe_signal_continuable_ferror_with_frob (Lisp_Object type, Lisp_Object frob,
|
1204
|
2756 Lisp_Object class_,
|
578
|
2757 Error_Behavior errb,
|
867
|
2758 const CIbyte *fmt, ...)
|
428
|
2759 {
|
|
2760 Lisp_Object obj;
|
|
2761 va_list args;
|
|
2762
|
|
2763 /* Optimization: */
|
|
2764 if (ERRB_EQ (errb, ERROR_ME_NOT))
|
|
2765 return Qnil;
|
|
2766
|
|
2767 va_start (args, fmt);
|
771
|
2768 obj = emacs_vsprintf_string (CGETTEXT (fmt), args);
|
428
|
2769 va_end (args);
|
|
2770
|
|
2771 /* Fsignal GC-protects its args */
|
563
|
2772 return maybe_signal_continuable_error_1 (type,
|
|
2773 Fcons (obj,
|
|
2774 build_error_data (0, frob)),
|
1204
|
2775 class_, errb);
|
428
|
2776 }
|
|
2777
|
|
2778
|
|
2779 /* This is what the QUIT macro calls to signal a quit */
|
|
2780 void
|
|
2781 signal_quit (void)
|
|
2782 {
|
853
|
2783 /* This function cannot GC. GC is prohibited because most callers do
|
|
2784 not expect GC occurring in QUIT. Remove this if/when that gets fixed.
|
|
2785 --ben */
|
|
2786
|
|
2787 int count;
|
|
2788
|
428
|
2789 if (EQ (Vquit_flag, Qcritical))
|
|
2790 debug_on_quit |= 2; /* set critical bit. */
|
|
2791 Vquit_flag = Qnil;
|
853
|
2792 count = begin_gc_forbidden ();
|
428
|
2793 /* note that this is continuable. */
|
|
2794 Fsignal (Qquit, Qnil);
|
853
|
2795 unbind_to (count);
|
428
|
2796 }
|
|
2797
|
|
2798
|
563
|
2799 /************************ convenience error functions ***********************/
|
|
2800
|
436
|
2801 Lisp_Object
|
428
|
2802 signal_void_function_error (Lisp_Object function)
|
|
2803 {
|
436
|
2804 return Fsignal (Qvoid_function, list1 (function));
|
428
|
2805 }
|
|
2806
|
436
|
2807 Lisp_Object
|
428
|
2808 signal_invalid_function_error (Lisp_Object function)
|
|
2809 {
|
436
|
2810 return Fsignal (Qinvalid_function, list1 (function));
|
428
|
2811 }
|
|
2812
|
436
|
2813 Lisp_Object
|
428
|
2814 signal_wrong_number_of_arguments_error (Lisp_Object function, int nargs)
|
|
2815 {
|
436
|
2816 return Fsignal (Qwrong_number_of_arguments,
|
|
2817 list2 (function, make_int (nargs)));
|
428
|
2818 }
|
|
2819
|
|
2820 /* Used in list traversal macros for efficiency. */
|
436
|
2821 DOESNT_RETURN
|
428
|
2822 signal_malformed_list_error (Lisp_Object list)
|
|
2823 {
|
563
|
2824 signal_error (Qmalformed_list, 0, list);
|
428
|
2825 }
|
|
2826
|
436
|
2827 DOESNT_RETURN
|
428
|
2828 signal_malformed_property_list_error (Lisp_Object list)
|
|
2829 {
|
563
|
2830 signal_error (Qmalformed_property_list, 0, list);
|
428
|
2831 }
|
|
2832
|
436
|
2833 DOESNT_RETURN
|
428
|
2834 signal_circular_list_error (Lisp_Object list)
|
|
2835 {
|
563
|
2836 signal_error (Qcircular_list, 0, list);
|
428
|
2837 }
|
|
2838
|
436
|
2839 DOESNT_RETURN
|
428
|
2840 signal_circular_property_list_error (Lisp_Object list)
|
|
2841 {
|
563
|
2842 signal_error (Qcircular_property_list, 0, list);
|
428
|
2843 }
|
442
|
2844
|
2267
|
2845 /* Called from within emacs_doprnt_1, so REASON is not formatted. */
|
442
|
2846 DOESNT_RETURN
|
867
|
2847 syntax_error (const CIbyte *reason, Lisp_Object frob)
|
442
|
2848 {
|
563
|
2849 signal_error (Qsyntax_error, reason, frob);
|
442
|
2850 }
|
|
2851
|
|
2852 DOESNT_RETURN
|
867
|
2853 syntax_error_2 (const CIbyte *reason, Lisp_Object frob1, Lisp_Object frob2)
|
442
|
2854 {
|
563
|
2855 signal_error_2 (Qsyntax_error, reason, frob1, frob2);
|
|
2856 }
|
|
2857
|
|
2858 void
|
867
|
2859 maybe_syntax_error (const CIbyte *reason, Lisp_Object frob,
|
1204
|
2860 Lisp_Object class_, Error_Behavior errb)
|
|
2861 {
|
|
2862 maybe_signal_error (Qsyntax_error, reason, frob, class_, errb);
|
563
|
2863 }
|
|
2864
|
|
2865 DOESNT_RETURN
|
867
|
2866 sferror (const CIbyte *reason, Lisp_Object frob)
|
563
|
2867 {
|
|
2868 signal_error (Qstructure_formation_error, reason, frob);
|
|
2869 }
|
|
2870
|
|
2871 DOESNT_RETURN
|
867
|
2872 sferror_2 (const CIbyte *reason, Lisp_Object frob1, Lisp_Object frob2)
|
563
|
2873 {
|
|
2874 signal_error_2 (Qstructure_formation_error, reason, frob1, frob2);
|
|
2875 }
|
|
2876
|
|
2877 void
|
867
|
2878 maybe_sferror (const CIbyte *reason, Lisp_Object frob,
|
1204
|
2879 Lisp_Object class_, Error_Behavior errb)
|
|
2880 {
|
|
2881 maybe_signal_error (Qstructure_formation_error, reason, frob, class_, errb);
|
442
|
2882 }
|
|
2883
|
|
2884 DOESNT_RETURN
|
867
|
2885 invalid_argument (const CIbyte *reason, Lisp_Object frob)
|
442
|
2886 {
|
563
|
2887 signal_error (Qinvalid_argument, reason, frob);
|
442
|
2888 }
|
|
2889
|
|
2890 DOESNT_RETURN
|
867
|
2891 invalid_argument_2 (const CIbyte *reason, Lisp_Object frob1,
|
609
|
2892 Lisp_Object frob2)
|
442
|
2893 {
|
563
|
2894 signal_error_2 (Qinvalid_argument, reason, frob1, frob2);
|
|
2895 }
|
|
2896
|
|
2897 void
|
867
|
2898 maybe_invalid_argument (const CIbyte *reason, Lisp_Object frob,
|
1204
|
2899 Lisp_Object class_, Error_Behavior errb)
|
|
2900 {
|
|
2901 maybe_signal_error (Qinvalid_argument, reason, frob, class_, errb);
|
563
|
2902 }
|
|
2903
|
|
2904 DOESNT_RETURN
|
867
|
2905 invalid_constant (const CIbyte *reason, Lisp_Object frob)
|
563
|
2906 {
|
|
2907 signal_error (Qinvalid_constant, reason, frob);
|
|
2908 }
|
|
2909
|
|
2910 DOESNT_RETURN
|
867
|
2911 invalid_constant_2 (const CIbyte *reason, Lisp_Object frob1,
|
609
|
2912 Lisp_Object frob2)
|
563
|
2913 {
|
|
2914 signal_error_2 (Qinvalid_constant, reason, frob1, frob2);
|
|
2915 }
|
|
2916
|
|
2917 void
|
867
|
2918 maybe_invalid_constant (const CIbyte *reason, Lisp_Object frob,
|
1204
|
2919 Lisp_Object class_, Error_Behavior errb)
|
|
2920 {
|
|
2921 maybe_signal_error (Qinvalid_constant, reason, frob, class_, errb);
|
442
|
2922 }
|
|
2923
|
|
2924 DOESNT_RETURN
|
867
|
2925 invalid_operation (const CIbyte *reason, Lisp_Object frob)
|
442
|
2926 {
|
563
|
2927 signal_error (Qinvalid_operation, reason, frob);
|
442
|
2928 }
|
|
2929
|
|
2930 DOESNT_RETURN
|
867
|
2931 invalid_operation_2 (const CIbyte *reason, Lisp_Object frob1,
|
609
|
2932 Lisp_Object frob2)
|
442
|
2933 {
|
563
|
2934 signal_error_2 (Qinvalid_operation, reason, frob1, frob2);
|
|
2935 }
|
|
2936
|
|
2937 void
|
867
|
2938 maybe_invalid_operation (const CIbyte *reason, Lisp_Object frob,
|
1204
|
2939 Lisp_Object class_, Error_Behavior errb)
|
|
2940 {
|
|
2941 maybe_signal_error (Qinvalid_operation, reason, frob, class_, errb);
|
442
|
2942 }
|
|
2943
|
|
2944 DOESNT_RETURN
|
867
|
2945 invalid_change (const CIbyte *reason, Lisp_Object frob)
|
442
|
2946 {
|
563
|
2947 signal_error (Qinvalid_change, reason, frob);
|
442
|
2948 }
|
|
2949
|
|
2950 DOESNT_RETURN
|
867
|
2951 invalid_change_2 (const CIbyte *reason, Lisp_Object frob1, Lisp_Object frob2)
|
442
|
2952 {
|
563
|
2953 signal_error_2 (Qinvalid_change, reason, frob1, frob2);
|
|
2954 }
|
|
2955
|
|
2956 void
|
867
|
2957 maybe_invalid_change (const CIbyte *reason, Lisp_Object frob,
|
1204
|
2958 Lisp_Object class_, Error_Behavior errb)
|
|
2959 {
|
|
2960 maybe_signal_error (Qinvalid_change, reason, frob, class_, errb);
|
563
|
2961 }
|
|
2962
|
|
2963 DOESNT_RETURN
|
867
|
2964 invalid_state (const CIbyte *reason, Lisp_Object frob)
|
563
|
2965 {
|
|
2966 signal_error (Qinvalid_state, reason, frob);
|
|
2967 }
|
|
2968
|
|
2969 DOESNT_RETURN
|
867
|
2970 invalid_state_2 (const CIbyte *reason, Lisp_Object frob1, Lisp_Object frob2)
|
563
|
2971 {
|
|
2972 signal_error_2 (Qinvalid_state, reason, frob1, frob2);
|
|
2973 }
|
|
2974
|
|
2975 void
|
867
|
2976 maybe_invalid_state (const CIbyte *reason, Lisp_Object frob,
|
1204
|
2977 Lisp_Object class_, Error_Behavior errb)
|
|
2978 {
|
|
2979 maybe_signal_error (Qinvalid_state, reason, frob, class_, errb);
|
563
|
2980 }
|
|
2981
|
|
2982 DOESNT_RETURN
|
867
|
2983 wtaerror (const CIbyte *reason, Lisp_Object frob)
|
563
|
2984 {
|
|
2985 signal_error (Qwrong_type_argument, reason, frob);
|
|
2986 }
|
|
2987
|
|
2988 DOESNT_RETURN
|
867
|
2989 stack_overflow (const CIbyte *reason, Lisp_Object frob)
|
563
|
2990 {
|
|
2991 signal_error (Qstack_overflow, reason, frob);
|
|
2992 }
|
|
2993
|
|
2994 DOESNT_RETURN
|
867
|
2995 out_of_memory (const CIbyte *reason, Lisp_Object frob)
|
563
|
2996 {
|
|
2997 signal_error (Qout_of_memory, reason, frob);
|
|
2998 }
|
|
2999
|
|
3000 DOESNT_RETURN
|
867
|
3001 printing_unreadable_object (const CIbyte *fmt, ...)
|
563
|
3002 {
|
|
3003 Lisp_Object obj;
|
|
3004 va_list args;
|
|
3005
|
|
3006 va_start (args, fmt);
|
771
|
3007 obj = emacs_vsprintf_string (CGETTEXT (fmt), args);
|
563
|
3008 va_end (args);
|
|
3009
|
|
3010 /* Fsignal GC-protects its args */
|
|
3011 signal_error (Qprinting_unreadable_object, 0, obj);
|
442
|
3012 }
|
|
3013
|
428
|
3014
|
|
3015 /************************************************************************/
|
|
3016 /* User commands */
|
|
3017 /************************************************************************/
|
|
3018
|
|
3019 DEFUN ("commandp", Fcommandp, 1, 1, 0, /*
|
|
3020 Return t if FUNCTION makes provisions for interactive calling.
|
|
3021 This means it contains a description for how to read arguments to give it.
|
|
3022 The value is nil for an invalid function or a symbol with no function
|
|
3023 definition.
|
|
3024
|
|
3025 Interactively callable functions include
|
|
3026
|
|
3027 -- strings and vectors (treated as keyboard macros)
|
|
3028 -- lambda-expressions that contain a top-level call to `interactive'
|
|
3029 -- autoload definitions made by `autoload' with non-nil fourth argument
|
|
3030 (i.e. the interactive flag)
|
|
3031 -- compiled-function objects with a non-nil `compiled-function-interactive'
|
|
3032 value
|
|
3033 -- subrs (built-in functions) that are interactively callable
|
|
3034
|
|
3035 Also, a symbol satisfies `commandp' if its function definition does so.
|
|
3036 */
|
|
3037 (function))
|
|
3038 {
|
|
3039 Lisp_Object fun = indirect_function (function, 0);
|
|
3040
|
|
3041 if (COMPILED_FUNCTIONP (fun))
|
|
3042 return XCOMPILED_FUNCTION (fun)->flags.interactivep ? Qt : Qnil;
|
|
3043
|
|
3044 /* Lists may represent commands. */
|
|
3045 if (CONSP (fun))
|
|
3046 {
|
|
3047 Lisp_Object funcar = XCAR (fun);
|
|
3048 if (EQ (funcar, Qlambda))
|
|
3049 return Fassq (Qinteractive, Fcdr (Fcdr (fun)));
|
|
3050 if (EQ (funcar, Qautoload))
|
|
3051 return Fcar (Fcdr (Fcdr (Fcdr (fun))));
|
|
3052 else
|
|
3053 return Qnil;
|
|
3054 }
|
|
3055
|
|
3056 /* Emacs primitives are interactive if their DEFUN specifies an
|
|
3057 interactive spec. */
|
|
3058 if (SUBRP (fun))
|
|
3059 return XSUBR (fun)->prompt ? Qt : Qnil;
|
|
3060
|
|
3061 /* Strings and vectors are keyboard macros. */
|
|
3062 if (VECTORP (fun) || STRINGP (fun))
|
|
3063 return Qt;
|
|
3064
|
|
3065 /* Everything else (including Qunbound) is not a command. */
|
|
3066 return Qnil;
|
|
3067 }
|
|
3068
|
|
3069 DEFUN ("command-execute", Fcommand_execute, 1, 3, 0, /*
|
|
3070 Execute CMD as an editor command.
|
|
3071 CMD must be an object that satisfies the `commandp' predicate.
|
|
3072 Optional second arg RECORD-FLAG is as in `call-interactively'.
|
|
3073 The argument KEYS specifies the value to use instead of (this-command-keys)
|
|
3074 when reading the arguments.
|
|
3075 */
|
444
|
3076 (cmd, record_flag, keys))
|
428
|
3077 {
|
|
3078 /* This function can GC */
|
|
3079 Lisp_Object prefixarg;
|
|
3080 Lisp_Object final = cmd;
|
|
3081 struct backtrace backtrace;
|
|
3082 struct console *con = XCONSOLE (Vselected_console);
|
|
3083
|
|
3084 prefixarg = con->prefix_arg;
|
|
3085 con->prefix_arg = Qnil;
|
|
3086 Vcurrent_prefix_arg = prefixarg;
|
|
3087 debug_on_next_call = 0; /* #### from FSFmacs; correct? */
|
|
3088
|
|
3089 if (SYMBOLP (cmd) && !NILP (Fget (cmd, Qdisabled, Qnil)))
|
733
|
3090 return run_hook (Qdisabled_command_hook);
|
428
|
3091
|
|
3092 for (;;)
|
|
3093 {
|
|
3094 final = indirect_function (cmd, 1);
|
|
3095 if (CONSP (final) && EQ (Fcar (final), Qautoload))
|
970
|
3096 {
|
|
3097 /* do_autoload GCPROs both arguments */
|
|
3098 do_autoload (final, cmd);
|
|
3099 }
|
428
|
3100 else
|
|
3101 break;
|
|
3102 }
|
|
3103
|
|
3104 if (CONSP (final) || SUBRP (final) || COMPILED_FUNCTIONP (final))
|
|
3105 {
|
|
3106 backtrace.function = &Qcall_interactively;
|
|
3107 backtrace.args = &cmd;
|
|
3108 backtrace.nargs = 1;
|
|
3109 backtrace.evalargs = 0;
|
1292
|
3110 backtrace.pdlcount = specpdl_depth ();
|
428
|
3111 backtrace.debug_on_exit = 0;
|
1292
|
3112 backtrace.function_being_called = 0;
|
428
|
3113 PUSH_BACKTRACE (backtrace);
|
|
3114
|
1292
|
3115 PROFILE_ENTER_FUNCTION ();
|
444
|
3116 final = Fcall_interactively (cmd, record_flag, keys);
|
1292
|
3117 PROFILE_EXIT_FUNCTION ();
|
428
|
3118
|
|
3119 POP_BACKTRACE (backtrace);
|
|
3120 return final;
|
|
3121 }
|
|
3122 else if (STRINGP (final) || VECTORP (final))
|
|
3123 {
|
|
3124 return Fexecute_kbd_macro (final, prefixarg);
|
|
3125 }
|
|
3126 else
|
|
3127 {
|
|
3128 Fsignal (Qwrong_type_argument,
|
|
3129 Fcons (Qcommandp,
|
|
3130 (EQ (cmd, final)
|
|
3131 ? list1 (cmd)
|
|
3132 : list2 (cmd, final))));
|
|
3133 return Qnil;
|
|
3134 }
|
|
3135 }
|
|
3136
|
|
3137 DEFUN ("interactive-p", Finteractive_p, 0, 0, 0, /*
|
|
3138 Return t if function in which this appears was called interactively.
|
|
3139 This means that the function was called with call-interactively (which
|
|
3140 includes being called as the binding of a key)
|
|
3141 and input is currently coming from the keyboard (not in keyboard macro).
|
|
3142 */
|
|
3143 ())
|
|
3144 {
|
|
3145 REGISTER struct backtrace *btp;
|
|
3146 REGISTER Lisp_Object fun;
|
|
3147
|
|
3148 if (!INTERACTIVE)
|
|
3149 return Qnil;
|
|
3150
|
|
3151 /* Unless the object was compiled, skip the frame of interactive-p itself
|
|
3152 (if interpreted) or the frame of byte-code (if called from a compiled
|
|
3153 function). Note that *btp->function may be a symbol pointing at a
|
|
3154 compiled function. */
|
|
3155 btp = backtrace_list;
|
|
3156
|
|
3157 #if 0 /* FSFmacs */
|
|
3158
|
|
3159 /* #### FSFmacs does the following instead. I can't figure
|
|
3160 out which one is more correct. */
|
|
3161 /* If this isn't a byte-compiled function, there may be a frame at
|
|
3162 the top for Finteractive_p itself. If so, skip it. */
|
|
3163 fun = Findirect_function (*btp->function);
|
|
3164 if (SUBRP (fun) && XSUBR (fun) == &Sinteractive_p)
|
|
3165 btp = btp->next;
|
|
3166
|
|
3167 /* If we're running an Emacs 18-style byte-compiled function, there
|
|
3168 may be a frame for Fbyte_code. Now, given the strictest
|
|
3169 definition, this function isn't really being called
|
|
3170 interactively, but because that's the way Emacs 18 always builds
|
|
3171 byte-compiled functions, we'll accept it for now. */
|
|
3172 if (EQ (*btp->function, Qbyte_code))
|
|
3173 btp = btp->next;
|
|
3174
|
|
3175 /* If this isn't a byte-compiled function, then we may now be
|
|
3176 looking at several frames for special forms. Skip past them. */
|
|
3177 while (btp &&
|
|
3178 btp->nargs == UNEVALLED)
|
|
3179 btp = btp->next;
|
|
3180
|
|
3181 #else
|
|
3182
|
|
3183 if (! (COMPILED_FUNCTIONP (Findirect_function (*btp->function))))
|
|
3184 btp = btp->next;
|
|
3185 for (;
|
|
3186 btp && (btp->nargs == UNEVALLED
|
|
3187 || EQ (*btp->function, Qbyte_code));
|
|
3188 btp = btp->next)
|
|
3189 {}
|
|
3190 /* btp now points at the frame of the innermost function
|
|
3191 that DOES eval its args.
|
|
3192 If it is a built-in function (such as load or eval-region)
|
|
3193 return nil. */
|
|
3194 /* Beats me why this is necessary, but it is */
|
|
3195 if (btp && EQ (*btp->function, Qcall_interactively))
|
|
3196 return Qt;
|
|
3197
|
|
3198 #endif
|
|
3199
|
|
3200 fun = Findirect_function (*btp->function);
|
|
3201 if (SUBRP (fun))
|
|
3202 return Qnil;
|
|
3203 /* btp points to the frame of a Lisp function that called interactive-p.
|
|
3204 Return t if that function was called interactively. */
|
|
3205 if (btp && btp->next && EQ (*btp->next->function, Qcall_interactively))
|
|
3206 return Qt;
|
|
3207 return Qnil;
|
|
3208 }
|
|
3209
|
|
3210
|
|
3211 /************************************************************************/
|
|
3212 /* Autoloading */
|
|
3213 /************************************************************************/
|
|
3214
|
|
3215 DEFUN ("autoload", Fautoload, 2, 5, 0, /*
|
444
|
3216 Define FUNCTION to autoload from FILENAME.
|
|
3217 FUNCTION is a symbol; FILENAME is a file name string to pass to `load'.
|
|
3218 The remaining optional arguments provide additional info about the
|
|
3219 real definition.
|
|
3220 DOCSTRING is documentation for FUNCTION.
|
|
3221 INTERACTIVE, if non-nil, says FUNCTION can be called interactively.
|
|
3222 TYPE indicates the type of the object:
|
428
|
3223 nil or omitted says FUNCTION is a function,
|
|
3224 `keymap' says FUNCTION is really a keymap, and
|
|
3225 `macro' or t says FUNCTION is really a macro.
|
444
|
3226 If FUNCTION already has a non-void function definition that is not an
|
|
3227 autoload object, this function does nothing and returns nil.
|
428
|
3228 */
|
444
|
3229 (function, filename, docstring, interactive, type))
|
428
|
3230 {
|
|
3231 /* This function can GC */
|
|
3232 CHECK_SYMBOL (function);
|
444
|
3233 CHECK_STRING (filename);
|
428
|
3234
|
|
3235 /* If function is defined and not as an autoload, don't override */
|
|
3236 {
|
|
3237 Lisp_Object f = XSYMBOL (function)->function;
|
|
3238 if (!UNBOUNDP (f) && !(CONSP (f) && EQ (XCAR (f), Qautoload)))
|
|
3239 return Qnil;
|
|
3240 }
|
|
3241
|
|
3242 if (purify_flag)
|
|
3243 {
|
|
3244 /* Attempt to avoid consing identical (string=) pure strings. */
|
444
|
3245 filename = Fsymbol_name (Fintern (filename, Qnil));
|
428
|
3246 }
|
440
|
3247
|
444
|
3248 return Ffset (function, Fcons (Qautoload, list4 (filename,
|
428
|
3249 docstring,
|
|
3250 interactive,
|
|
3251 type)));
|
|
3252 }
|
|
3253
|
|
3254 Lisp_Object
|
|
3255 un_autoload (Lisp_Object oldqueue)
|
|
3256 {
|
|
3257 /* This function can GC */
|
|
3258 REGISTER Lisp_Object queue, first, second;
|
|
3259
|
|
3260 /* Queue to unwind is current value of Vautoload_queue.
|
|
3261 oldqueue is the shadowed value to leave in Vautoload_queue. */
|
|
3262 queue = Vautoload_queue;
|
|
3263 Vautoload_queue = oldqueue;
|
|
3264 while (CONSP (queue))
|
|
3265 {
|
|
3266 first = XCAR (queue);
|
|
3267 second = Fcdr (first);
|
|
3268 first = Fcar (first);
|
|
3269 if (NILP (second))
|
|
3270 Vfeatures = first;
|
|
3271 else
|
|
3272 Ffset (first, second);
|
|
3273 queue = Fcdr (queue);
|
|
3274 }
|
|
3275 return Qnil;
|
|
3276 }
|
|
3277
|
970
|
3278 /* do_autoload GCPROs both arguments */
|
428
|
3279 void
|
|
3280 do_autoload (Lisp_Object fundef,
|
|
3281 Lisp_Object funname)
|
|
3282 {
|
|
3283 /* This function can GC */
|
|
3284 int speccount = specpdl_depth();
|
|
3285 Lisp_Object fun = funname;
|
970
|
3286 struct gcpro gcpro1, gcpro2, gcpro3;
|
428
|
3287
|
|
3288 CHECK_SYMBOL (funname);
|
970
|
3289 GCPRO3 (fundef, funname, fun);
|
428
|
3290
|
|
3291 /* Value saved here is to be restored into Vautoload_queue */
|
|
3292 record_unwind_protect (un_autoload, Vautoload_queue);
|
|
3293 Vautoload_queue = Qt;
|
|
3294 call4 (Qload, Fcar (Fcdr (fundef)), Qnil, noninteractive ? Qt : Qnil, Qnil);
|
|
3295
|
|
3296 {
|
|
3297 Lisp_Object queue;
|
|
3298
|
|
3299 /* Save the old autoloads, in case we ever do an unload. */
|
|
3300 for (queue = Vautoload_queue; CONSP (queue); queue = XCDR (queue))
|
|
3301 {
|
|
3302 Lisp_Object first = XCAR (queue);
|
|
3303 Lisp_Object second = Fcdr (first);
|
|
3304
|
|
3305 first = Fcar (first);
|
|
3306
|
|
3307 /* Note: This test is subtle. The cdr of an autoload-queue entry
|
|
3308 may be an atom if the autoload entry was generated by a defalias
|
|
3309 or fset. */
|
|
3310 if (CONSP (second))
|
|
3311 Fput (first, Qautoload, (XCDR (second)));
|
|
3312 }
|
|
3313 }
|
|
3314
|
|
3315 /* Once loading finishes, don't undo it. */
|
|
3316 Vautoload_queue = Qt;
|
771
|
3317 unbind_to (speccount);
|
428
|
3318
|
|
3319 fun = indirect_function (fun, 0);
|
|
3320
|
|
3321 #if 0 /* FSFmacs */
|
|
3322 if (!NILP (Fequal (fun, fundef)))
|
|
3323 #else
|
|
3324 if (UNBOUNDP (fun)
|
|
3325 || (CONSP (fun)
|
|
3326 && EQ (XCAR (fun), Qautoload)))
|
|
3327 #endif
|
563
|
3328 invalid_state ("Autoloading failed to define function", funname);
|
428
|
3329 UNGCPRO;
|
|
3330 }
|
|
3331
|
|
3332
|
|
3333 /************************************************************************/
|
|
3334 /* eval, funcall, apply */
|
|
3335 /************************************************************************/
|
|
3336
|
814
|
3337 /* NOTE: If you are hearing the endless complaint that function calls in
|
|
3338 elisp are extremely slow, it just isn't true any more! The stuff below
|
|
3339 -- in particular, the calling of subrs and compiled functions, the most
|
|
3340 common cases -- has been highly optimized. There isn't a whole lot left
|
|
3341 to do to squeeze more speed out except by switching to lexical
|
|
3342 variables, which would eliminate the specbind loop. (But the real gain
|
|
3343 from lexical variables would come from better optimization -- with
|
|
3344 dynamic binding, you have the constant problem that any function call
|
|
3345 that you haven't explicitly proven to be side-effect-free might
|
|
3346 potentially side effect your local variables, which makes optimization
|
|
3347 extremely difficult when there are function calls anywhere in a chunk of
|
|
3348 code to be optimized. Even worse, you don't know that *your* local
|
|
3349 variables aren't side-effecting an outer function's local variables, so
|
|
3350 it's impossible to optimize away almost *any* variable assignment.) */
|
|
3351
|
428
|
3352 static Lisp_Object funcall_lambda (Lisp_Object fun,
|
442
|
3353 int nargs, Lisp_Object args[]);
|
428
|
3354 static int in_warnings;
|
|
3355
|
|
3356
|
814
|
3357 void handle_compiled_function_with_and_rest (Lisp_Compiled_Function *f,
|
|
3358 int nargs,
|
|
3359 Lisp_Object args[]);
|
|
3360
|
|
3361 /* The theory behind making this a separate function is to shrink
|
|
3362 funcall_compiled_function() so as to increase the likelihood of a cache
|
|
3363 hit in the L1 cache -- &rest processing is not going to be fast anyway.
|
|
3364 The idea is the same as with execute_rare_opcode() in bytecode.c. We
|
|
3365 make this non-static to ensure the compiler doesn't inline it. */
|
|
3366
|
|
3367 void
|
|
3368 handle_compiled_function_with_and_rest (Lisp_Compiled_Function *f, int nargs,
|
|
3369 Lisp_Object args[])
|
|
3370 {
|
|
3371 REGISTER int i = 0;
|
|
3372 int max_non_rest_args = f->args_in_array - 1;
|
|
3373 int bindargs = min (nargs, max_non_rest_args);
|
|
3374
|
|
3375 for (i = 0; i < bindargs; i++)
|
3092
|
3376 #ifdef NEW_GC
|
|
3377 SPECBIND_FAST_UNSAFE (XCOMPILED_FUNCTION_ARGS_DATA (f->arguments)[i],
|
|
3378 args[i]);
|
|
3379 #else /* not NEW_GC */
|
814
|
3380 SPECBIND_FAST_UNSAFE (f->args[i], args[i]);
|
3092
|
3381 #endif /* not NEW_GC */
|
814
|
3382 for (i = bindargs; i < max_non_rest_args; i++)
|
3092
|
3383 #ifdef NEW_GC
|
|
3384 SPECBIND_FAST_UNSAFE (XCOMPILED_FUNCTION_ARGS_DATA (f->arguments)[i],
|
|
3385 Qnil);
|
|
3386 #else /* not NEW_GC */
|
814
|
3387 SPECBIND_FAST_UNSAFE (f->args[i], Qnil);
|
3092
|
3388 #endif /* not NEW_GC */
|
|
3389 #ifdef NEW_GC
|
|
3390 SPECBIND_FAST_UNSAFE
|
|
3391 (XCOMPILED_FUNCTION_ARGS_DATA (f->arguments)[max_non_rest_args],
|
|
3392 nargs > max_non_rest_args ?
|
|
3393 Flist (nargs - max_non_rest_args, &args[max_non_rest_args]) :
|
|
3394 Qnil);
|
|
3395 #else /* not NEW_GC */
|
814
|
3396 SPECBIND_FAST_UNSAFE
|
|
3397 (f->args[max_non_rest_args],
|
|
3398 nargs > max_non_rest_args ?
|
|
3399 Flist (nargs - max_non_rest_args, &args[max_non_rest_args]) :
|
|
3400 Qnil);
|
3092
|
3401 #endif /* not NEW_GC */
|
814
|
3402 }
|
|
3403
|
|
3404 /* Apply compiled-function object FUN to the NARGS evaluated arguments
|
|
3405 in ARGS, and return the result of evaluation. */
|
|
3406 inline static Lisp_Object
|
|
3407 funcall_compiled_function (Lisp_Object fun, int nargs, Lisp_Object args[])
|
|
3408 {
|
|
3409 /* This function can GC */
|
|
3410 int speccount = specpdl_depth();
|
|
3411 REGISTER int i = 0;
|
|
3412 Lisp_Compiled_Function *f = XCOMPILED_FUNCTION (fun);
|
|
3413
|
|
3414 if (!OPAQUEP (f->instructions))
|
|
3415 /* Lazily munge the instructions into a more efficient form */
|
|
3416 optimize_compiled_function (fun);
|
|
3417
|
|
3418 /* optimize_compiled_function() guaranteed that f->specpdl_depth is
|
|
3419 the required space on the specbinding stack for binding the args
|
|
3420 and local variables of fun. So just reserve it once. */
|
|
3421 SPECPDL_RESERVE (f->specpdl_depth);
|
|
3422
|
|
3423 if (nargs == f->max_args) /* Optimize for the common case -- no unspecified
|
|
3424 optional arguments. */
|
|
3425 {
|
|
3426 #if 1
|
|
3427 for (i = 0; i < nargs; i++)
|
3092
|
3428 #ifdef NEW_GC
|
|
3429 SPECBIND_FAST_UNSAFE (XCOMPILED_FUNCTION_ARGS_DATA (f->arguments)[i],
|
|
3430 args[i]);
|
|
3431 #else /* not NEW_GC */
|
814
|
3432 SPECBIND_FAST_UNSAFE (f->args[i], args[i]);
|
3092
|
3433 #endif /* not NEW_GC */
|
814
|
3434 #else
|
|
3435 /* Here's an alternate way to write the loop that tries to further
|
|
3436 optimize funcalls for functions with few arguments by partially
|
|
3437 unrolling the loop. It's not clear whether this is a win since it
|
|
3438 increases the size of the function and the possibility of L1 cache
|
|
3439 misses. (Microsoft VC++ 6 with /O2 /G5 generates 0x90 == 144 bytes
|
|
3440 per SPECBIND_FAST_UNSAFE().) Tests under VC++ 6, running the byte
|
|
3441 compiler repeatedly and looking at the total time, show very
|
|
3442 little difference between the simple loop above, the unrolled code
|
|
3443 below, and a "partly unrolled" solution with only cases 0-2 below
|
|
3444 instead of 0-4. Therefore, I'm keeping it at the simple loop
|
|
3445 because it's smaller. */
|
|
3446 switch (nargs)
|
|
3447 {
|
|
3448 default:
|
|
3449 for (i = nargs - 1; i >= 4; i--)
|
|
3450 SPECBIND_FAST_UNSAFE (f->args[i], args[i]);
|
|
3451 case 4: SPECBIND_FAST_UNSAFE (f->args[3], args[3]);
|
|
3452 case 3: SPECBIND_FAST_UNSAFE (f->args[2], args[2]);
|
|
3453 case 2: SPECBIND_FAST_UNSAFE (f->args[1], args[1]);
|
|
3454 case 1: SPECBIND_FAST_UNSAFE (f->args[0], args[0]);
|
|
3455 case 0: break;
|
|
3456 }
|
|
3457 #endif
|
|
3458 }
|
|
3459 else if (nargs < f->min_args)
|
|
3460 goto wrong_number_of_arguments;
|
|
3461 else if (nargs < f->max_args)
|
|
3462 {
|
|
3463 for (i = 0; i < nargs; i++)
|
3092
|
3464 #ifdef NEW_GC
|
|
3465 SPECBIND_FAST_UNSAFE (XCOMPILED_FUNCTION_ARGS_DATA (f->arguments)[i],
|
|
3466 args[i]);
|
|
3467 #else /* not NEW_GC */
|
814
|
3468 SPECBIND_FAST_UNSAFE (f->args[i], args[i]);
|
3092
|
3469 #endif /* not NEW_GC */
|
814
|
3470 for (i = nargs; i < f->max_args; i++)
|
3092
|
3471 #ifdef NEW_GC
|
|
3472 SPECBIND_FAST_UNSAFE (XCOMPILED_FUNCTION_ARGS_DATA (f->arguments)[i],
|
|
3473 Qnil);
|
|
3474 #else /* not NEW_GC */
|
814
|
3475 SPECBIND_FAST_UNSAFE (f->args[i], Qnil);
|
3092
|
3476 #endif /* not NEW_GC */
|
814
|
3477 }
|
|
3478 else if (f->max_args == MANY)
|
|
3479 handle_compiled_function_with_and_rest (f, nargs, args);
|
|
3480 else
|
|
3481 {
|
|
3482 wrong_number_of_arguments:
|
|
3483 /* The actual printed compiled_function object is incomprehensible.
|
|
3484 Check the backtrace to see if we can get a more meaningful symbol. */
|
|
3485 if (EQ (fun, indirect_function (*backtrace_list->function, 0)))
|
|
3486 fun = *backtrace_list->function;
|
|
3487 return Fsignal (Qwrong_number_of_arguments,
|
|
3488 list2 (fun, make_int (nargs)));
|
|
3489 }
|
|
3490
|
|
3491 {
|
|
3492 Lisp_Object value =
|
|
3493 execute_optimized_program ((Opbyte *) XOPAQUE_DATA (f->instructions),
|
|
3494 f->stack_depth,
|
|
3495 XVECTOR_DATA (f->constants));
|
|
3496
|
|
3497 /* The attempt to optimize this by only unbinding variables failed
|
|
3498 because using buffer-local variables as function parameters
|
|
3499 leads to specpdl_ptr->func != 0 */
|
|
3500 /* UNBIND_TO_GCPRO_VARIABLES_ONLY (speccount, value); */
|
|
3501 UNBIND_TO_GCPRO (speccount, value);
|
|
3502 return value;
|
|
3503 }
|
|
3504 }
|
|
3505
|
428
|
3506 DEFUN ("eval", Feval, 1, 1, 0, /*
|
|
3507 Evaluate FORM and return its value.
|
|
3508 */
|
|
3509 (form))
|
|
3510 {
|
|
3511 /* This function can GC */
|
|
3512 Lisp_Object fun, val, original_fun, original_args;
|
|
3513 int nargs;
|
|
3514 struct backtrace backtrace;
|
|
3515
|
1318
|
3516 #ifdef ERROR_CHECK_TRAPPING_PROBLEMS
|
|
3517 check_proper_critical_section_lisp_protection ();
|
|
3518 #endif
|
|
3519
|
428
|
3520 /* I think this is a pretty safe place to call Lisp code, don't you? */
|
853
|
3521 while (!in_warnings && !NILP (Vpending_warnings)
|
|
3522 /* well, perhaps not so safe after all! */
|
|
3523 && !(inhibit_flags & INHIBIT_ANY_CHANGE_AFFECTING_REDISPLAY))
|
428
|
3524 {
|
|
3525 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4;
|
1204
|
3526 Lisp_Object this_warning_cons, this_warning, class_, level, messij;
|
853
|
3527 int speccount = internal_bind_int (&in_warnings, 1);
|
|
3528
|
428
|
3529 this_warning_cons = Vpending_warnings;
|
|
3530 this_warning = XCAR (this_warning_cons);
|
|
3531 /* in case an error occurs in the warn function, at least
|
|
3532 it won't happen infinitely */
|
|
3533 Vpending_warnings = XCDR (Vpending_warnings);
|
853
|
3534 free_cons (this_warning_cons);
|
1204
|
3535 class_ = XCAR (this_warning);
|
428
|
3536 level = XCAR (XCDR (this_warning));
|
|
3537 messij = XCAR (XCDR (XCDR (this_warning)));
|
|
3538 free_list (this_warning);
|
|
3539
|
|
3540 if (NILP (Vpending_warnings))
|
|
3541 Vpending_warnings_tail = Qnil; /* perhaps not strictly necessary,
|
|
3542 but safer */
|
|
3543
|
1204
|
3544 GCPRO4 (form, class_, level, messij);
|
428
|
3545 if (!STRINGP (messij))
|
|
3546 messij = Fprin1_to_string (messij, Qnil);
|
1204
|
3547 call3 (Qdisplay_warning, class_, messij, level);
|
428
|
3548 UNGCPRO;
|
771
|
3549 unbind_to (speccount);
|
428
|
3550 }
|
|
3551
|
|
3552 if (!CONSP (form))
|
|
3553 {
|
|
3554 if (SYMBOLP (form))
|
|
3555 return Fsymbol_value (form);
|
|
3556 else
|
|
3557 return form;
|
|
3558 }
|
|
3559
|
|
3560 QUIT;
|
814
|
3561 if (need_to_garbage_collect)
|
428
|
3562 {
|
|
3563 struct gcpro gcpro1;
|
|
3564 GCPRO1 (form);
|
3092
|
3565 #ifdef NEW_GC
|
|
3566 gc_incremental ();
|
|
3567 #else /* not NEW_GC */
|
428
|
3568 garbage_collect_1 ();
|
3092
|
3569 #endif /* not NEW_GC */
|
428
|
3570 UNGCPRO;
|
|
3571 }
|
|
3572
|
|
3573 if (++lisp_eval_depth > max_lisp_eval_depth)
|
|
3574 {
|
|
3575 if (max_lisp_eval_depth < 100)
|
|
3576 max_lisp_eval_depth = 100;
|
|
3577 if (lisp_eval_depth > max_lisp_eval_depth)
|
563
|
3578 stack_overflow ("Lisp nesting exceeds `max-lisp-eval-depth'",
|
|
3579 Qunbound);
|
428
|
3580 }
|
|
3581
|
|
3582 /* We guaranteed CONSP (form) above */
|
|
3583 original_fun = XCAR (form);
|
|
3584 original_args = XCDR (form);
|
|
3585
|
|
3586 GET_EXTERNAL_LIST_LENGTH (original_args, nargs);
|
|
3587
|
|
3588 backtrace.pdlcount = specpdl_depth();
|
|
3589 backtrace.function = &original_fun; /* This also protects them from gc */
|
|
3590 backtrace.args = &original_args;
|
|
3591 backtrace.nargs = UNEVALLED;
|
|
3592 backtrace.evalargs = 1;
|
|
3593 backtrace.debug_on_exit = 0;
|
1292
|
3594 backtrace.function_being_called = 0;
|
428
|
3595 PUSH_BACKTRACE (backtrace);
|
|
3596
|
|
3597 if (debug_on_next_call)
|
|
3598 do_debug_on_call (Qt);
|
|
3599
|
|
3600 /* At this point, only original_fun and original_args
|
|
3601 have values that will be used below. */
|
|
3602 retry:
|
|
3603 fun = indirect_function (original_fun, 1);
|
|
3604
|
|
3605 if (SUBRP (fun))
|
|
3606 {
|
|
3607 Lisp_Subr *subr = XSUBR (fun);
|
|
3608 int max_args = subr->max_args;
|
|
3609
|
|
3610 if (nargs < subr->min_args)
|
|
3611 goto wrong_number_of_arguments;
|
|
3612
|
|
3613 if (max_args == UNEVALLED) /* Optimize for the common case */
|
|
3614 {
|
|
3615 backtrace.evalargs = 0;
|
1292
|
3616 PROFILE_ENTER_FUNCTION ();
|
428
|
3617 val = (((Lisp_Object (*) (Lisp_Object)) subr_function (subr))
|
|
3618 (original_args));
|
1292
|
3619 PROFILE_EXIT_FUNCTION ();
|
428
|
3620 }
|
|
3621 else if (nargs <= max_args)
|
|
3622 {
|
|
3623 struct gcpro gcpro1;
|
|
3624 Lisp_Object args[SUBR_MAX_ARGS];
|
|
3625 REGISTER Lisp_Object *p = args;
|
|
3626
|
|
3627 GCPRO1 (args[0]);
|
|
3628 gcpro1.nvars = 0;
|
|
3629
|
|
3630 {
|
|
3631 LIST_LOOP_2 (arg, original_args)
|
|
3632 {
|
|
3633 *p++ = Feval (arg);
|
|
3634 gcpro1.nvars++;
|
|
3635 }
|
|
3636 }
|
|
3637
|
|
3638 /* &optional args default to nil. */
|
|
3639 while (p - args < max_args)
|
|
3640 *p++ = Qnil;
|
|
3641
|
|
3642 backtrace.args = args;
|
|
3643 backtrace.nargs = nargs;
|
|
3644
|
1292
|
3645 PROFILE_ENTER_FUNCTION ();
|
428
|
3646 FUNCALL_SUBR (val, subr, args, max_args);
|
1292
|
3647 PROFILE_EXIT_FUNCTION ();
|
428
|
3648
|
|
3649 UNGCPRO;
|
|
3650 }
|
|
3651 else if (max_args == MANY)
|
|
3652 {
|
|
3653 /* Pass a vector of evaluated arguments */
|
|
3654 struct gcpro gcpro1;
|
|
3655 Lisp_Object *args = alloca_array (Lisp_Object, nargs);
|
|
3656 REGISTER Lisp_Object *p = args;
|
|
3657
|
|
3658 GCPRO1 (args[0]);
|
|
3659 gcpro1.nvars = 0;
|
|
3660
|
|
3661 {
|
|
3662 LIST_LOOP_2 (arg, original_args)
|
|
3663 {
|
|
3664 *p++ = Feval (arg);
|
|
3665 gcpro1.nvars++;
|
|
3666 }
|
|
3667 }
|
|
3668
|
|
3669 backtrace.args = args;
|
|
3670 backtrace.nargs = nargs;
|
|
3671
|
1292
|
3672 PROFILE_ENTER_FUNCTION ();
|
428
|
3673 val = (((Lisp_Object (*) (int, Lisp_Object *)) subr_function (subr))
|
|
3674 (nargs, args));
|
1292
|
3675 PROFILE_EXIT_FUNCTION ();
|
428
|
3676
|
|
3677 UNGCPRO;
|
|
3678 }
|
|
3679 else
|
|
3680 {
|
|
3681 wrong_number_of_arguments:
|
440
|
3682 val = signal_wrong_number_of_arguments_error (original_fun, nargs);
|
428
|
3683 }
|
|
3684 }
|
|
3685 else if (COMPILED_FUNCTIONP (fun))
|
|
3686 {
|
|
3687 struct gcpro gcpro1;
|
|
3688 Lisp_Object *args = alloca_array (Lisp_Object, nargs);
|
|
3689 REGISTER Lisp_Object *p = args;
|
|
3690
|
|
3691 GCPRO1 (args[0]);
|
|
3692 gcpro1.nvars = 0;
|
|
3693
|
|
3694 {
|
|
3695 LIST_LOOP_2 (arg, original_args)
|
|
3696 {
|
|
3697 *p++ = Feval (arg);
|
|
3698 gcpro1.nvars++;
|
|
3699 }
|
|
3700 }
|
|
3701
|
|
3702 backtrace.args = args;
|
|
3703 backtrace.nargs = nargs;
|
|
3704 backtrace.evalargs = 0;
|
|
3705
|
1292
|
3706 PROFILE_ENTER_FUNCTION ();
|
428
|
3707 val = funcall_compiled_function (fun, nargs, args);
|
1292
|
3708 PROFILE_EXIT_FUNCTION ();
|
428
|
3709
|
|
3710 /* Do the debug-on-exit now, while args is still GCPROed. */
|
|
3711 if (backtrace.debug_on_exit)
|
|
3712 val = do_debug_on_exit (val);
|
|
3713 /* Don't do it again when we return to eval. */
|
|
3714 backtrace.debug_on_exit = 0;
|
|
3715
|
|
3716 UNGCPRO;
|
|
3717 }
|
|
3718 else if (CONSP (fun))
|
|
3719 {
|
|
3720 Lisp_Object funcar = XCAR (fun);
|
|
3721
|
|
3722 if (EQ (funcar, Qautoload))
|
|
3723 {
|
970
|
3724 /* do_autoload GCPROs both arguments */
|
428
|
3725 do_autoload (fun, original_fun);
|
|
3726 goto retry;
|
|
3727 }
|
|
3728 else if (EQ (funcar, Qmacro))
|
|
3729 {
|
1292
|
3730 PROFILE_ENTER_FUNCTION ();
|
428
|
3731 val = Feval (apply1 (XCDR (fun), original_args));
|
1292
|
3732 PROFILE_EXIT_FUNCTION ();
|
428
|
3733 }
|
|
3734 else if (EQ (funcar, Qlambda))
|
|
3735 {
|
|
3736 struct gcpro gcpro1;
|
|
3737 Lisp_Object *args = alloca_array (Lisp_Object, nargs);
|
|
3738 REGISTER Lisp_Object *p = args;
|
|
3739
|
|
3740 GCPRO1 (args[0]);
|
|
3741 gcpro1.nvars = 0;
|
|
3742
|
|
3743 {
|
|
3744 LIST_LOOP_2 (arg, original_args)
|
|
3745 {
|
|
3746 *p++ = Feval (arg);
|
|
3747 gcpro1.nvars++;
|
|
3748 }
|
|
3749 }
|
|
3750
|
|
3751 UNGCPRO;
|
|
3752
|
|
3753 backtrace.args = args; /* this also GCPROs `args' */
|
|
3754 backtrace.nargs = nargs;
|
|
3755 backtrace.evalargs = 0;
|
|
3756
|
1292
|
3757 PROFILE_ENTER_FUNCTION ();
|
428
|
3758 val = funcall_lambda (fun, nargs, args);
|
1292
|
3759 PROFILE_EXIT_FUNCTION ();
|
428
|
3760
|
|
3761 /* Do the debug-on-exit now, while args is still GCPROed. */
|
|
3762 if (backtrace.debug_on_exit)
|
|
3763 val = do_debug_on_exit (val);
|
|
3764 /* Don't do it again when we return to eval. */
|
|
3765 backtrace.debug_on_exit = 0;
|
|
3766 }
|
|
3767 else
|
|
3768 {
|
|
3769 goto invalid_function;
|
|
3770 }
|
|
3771 }
|
|
3772 else /* ! (SUBRP (fun) || COMPILED_FUNCTIONP (fun) || CONSP (fun)) */
|
|
3773 {
|
|
3774 invalid_function:
|
436
|
3775 val = signal_invalid_function_error (fun);
|
428
|
3776 }
|
|
3777
|
|
3778 lisp_eval_depth--;
|
|
3779 if (backtrace.debug_on_exit)
|
|
3780 val = do_debug_on_exit (val);
|
|
3781 POP_BACKTRACE (backtrace);
|
|
3782 return val;
|
|
3783 }
|
|
3784
|
|
3785
|
1111
|
3786
|
|
3787 static void
|
|
3788 run_post_gc_hook (void)
|
|
3789 {
|
|
3790 Lisp_Object args[2];
|
|
3791
|
|
3792 args[0] = Qpost_gc_hook;
|
|
3793 args[1] = Fcons (Fcons (Qfinalize_list, zap_finalize_list ()), Qnil);
|
|
3794
|
|
3795 run_hook_with_args_trapping_problems
|
1333
|
3796 (Qgarbage_collecting, 2, args, RUN_HOOKS_TO_COMPLETION,
|
1111
|
3797 INHIBIT_QUIT | NO_INHIBIT_ERRORS);
|
|
3798 }
|
|
3799
|
428
|
3800 DEFUN ("funcall", Ffuncall, 1, MANY, 0, /*
|
|
3801 Call first argument as a function, passing the remaining arguments to it.
|
|
3802 Thus, (funcall 'cons 'x 'y) returns (x . y).
|
|
3803 */
|
|
3804 (int nargs, Lisp_Object *args))
|
|
3805 {
|
|
3806 /* This function can GC */
|
|
3807 Lisp_Object fun;
|
|
3808 Lisp_Object val;
|
|
3809 struct backtrace backtrace;
|
|
3810 int fun_nargs = nargs - 1;
|
|
3811 Lisp_Object *fun_args = args + 1;
|
|
3812
|
1318
|
3813 /* QUIT will check for proper redisplay wrapping */
|
|
3814
|
428
|
3815 QUIT;
|
851
|
3816
|
|
3817 if (funcall_allocation_flag)
|
|
3818 {
|
|
3819 if (need_to_garbage_collect)
|
|
3820 /* Callers should gcpro lexpr args */
|
3092
|
3821 #ifdef NEW_GC
|
|
3822 gc_incremental ();
|
|
3823 #else /* not NEW_GC */
|
851
|
3824 garbage_collect_1 ();
|
3092
|
3825 #endif /* not NEW_GC */
|
851
|
3826 if (need_to_check_c_alloca)
|
|
3827 {
|
|
3828 if (++funcall_alloca_count >= MAX_FUNCALLS_BETWEEN_ALLOCA_CLEANUP)
|
|
3829 {
|
|
3830 xemacs_c_alloca (0);
|
|
3831 funcall_alloca_count = 0;
|
|
3832 }
|
|
3833 }
|
887
|
3834 if (need_to_signal_post_gc)
|
|
3835 {
|
|
3836 need_to_signal_post_gc = 0;
|
1111
|
3837 recompute_funcall_allocation_flag ();
|
3263
|
3838 #ifdef NEW_GC
|
|
3839 run_finalizers ();
|
|
3840 #endif /* NEW_GC */
|
1111
|
3841 run_post_gc_hook ();
|
887
|
3842 }
|
851
|
3843 }
|
428
|
3844
|
|
3845 if (++lisp_eval_depth > max_lisp_eval_depth)
|
|
3846 {
|
|
3847 if (max_lisp_eval_depth < 100)
|
|
3848 max_lisp_eval_depth = 100;
|
|
3849 if (lisp_eval_depth > max_lisp_eval_depth)
|
563
|
3850 stack_overflow ("Lisp nesting exceeds `max-lisp-eval-depth'",
|
|
3851 Qunbound);
|
428
|
3852 }
|
|
3853
|
1292
|
3854 backtrace.pdlcount = specpdl_depth ();
|
428
|
3855 backtrace.function = &args[0];
|
|
3856 backtrace.args = fun_args;
|
|
3857 backtrace.nargs = fun_nargs;
|
|
3858 backtrace.evalargs = 0;
|
|
3859 backtrace.debug_on_exit = 0;
|
1292
|
3860 backtrace.function_being_called = 0;
|
428
|
3861 PUSH_BACKTRACE (backtrace);
|
|
3862
|
|
3863 if (debug_on_next_call)
|
|
3864 do_debug_on_call (Qlambda);
|
|
3865
|
|
3866 retry:
|
|
3867
|
|
3868 fun = args[0];
|
|
3869
|
|
3870 /* We could call indirect_function directly, but profiling shows
|
|
3871 this is worth optimizing by partially unrolling the loop. */
|
|
3872 if (SYMBOLP (fun))
|
|
3873 {
|
|
3874 fun = XSYMBOL (fun)->function;
|
|
3875 if (SYMBOLP (fun))
|
|
3876 {
|
|
3877 fun = XSYMBOL (fun)->function;
|
|
3878 if (SYMBOLP (fun))
|
|
3879 fun = indirect_function (fun, 1);
|
|
3880 }
|
|
3881 }
|
|
3882
|
|
3883 if (SUBRP (fun))
|
|
3884 {
|
|
3885 Lisp_Subr *subr = XSUBR (fun);
|
|
3886 int max_args = subr->max_args;
|
|
3887 Lisp_Object spacious_args[SUBR_MAX_ARGS];
|
|
3888
|
|
3889 if (fun_nargs == max_args) /* Optimize for the common case */
|
|
3890 {
|
|
3891 funcall_subr:
|
1292
|
3892 PROFILE_ENTER_FUNCTION ();
|
428
|
3893 FUNCALL_SUBR (val, subr, fun_args, max_args);
|
1292
|
3894 PROFILE_EXIT_FUNCTION ();
|
428
|
3895 }
|
436
|
3896 else if (fun_nargs < subr->min_args)
|
|
3897 {
|
|
3898 goto wrong_number_of_arguments;
|
|
3899 }
|
428
|
3900 else if (fun_nargs < max_args)
|
|
3901 {
|
|
3902 Lisp_Object *p = spacious_args;
|
|
3903
|
|
3904 /* Default optionals to nil */
|
|
3905 while (fun_nargs--)
|
|
3906 *p++ = *fun_args++;
|
|
3907 while (p - spacious_args < max_args)
|
|
3908 *p++ = Qnil;
|
|
3909
|
|
3910 fun_args = spacious_args;
|
|
3911 goto funcall_subr;
|
|
3912 }
|
|
3913 else if (max_args == MANY)
|
|
3914 {
|
1292
|
3915 PROFILE_ENTER_FUNCTION ();
|
436
|
3916 val = SUBR_FUNCTION (subr, MANY) (fun_nargs, fun_args);
|
1292
|
3917 PROFILE_EXIT_FUNCTION ();
|
428
|
3918 }
|
|
3919 else if (max_args == UNEVALLED) /* Can't funcall a special form */
|
|
3920 {
|
|
3921 goto invalid_function;
|
|
3922 }
|
|
3923 else
|
|
3924 {
|
|
3925 wrong_number_of_arguments:
|
436
|
3926 val = signal_wrong_number_of_arguments_error (fun, fun_nargs);
|
428
|
3927 }
|
|
3928 }
|
|
3929 else if (COMPILED_FUNCTIONP (fun))
|
|
3930 {
|
1292
|
3931 PROFILE_ENTER_FUNCTION ();
|
428
|
3932 val = funcall_compiled_function (fun, fun_nargs, fun_args);
|
1292
|
3933 PROFILE_EXIT_FUNCTION ();
|
428
|
3934 }
|
|
3935 else if (CONSP (fun))
|
|
3936 {
|
|
3937 Lisp_Object funcar = XCAR (fun);
|
|
3938
|
|
3939 if (EQ (funcar, Qlambda))
|
|
3940 {
|
1292
|
3941 PROFILE_ENTER_FUNCTION ();
|
428
|
3942 val = funcall_lambda (fun, fun_nargs, fun_args);
|
1292
|
3943 PROFILE_EXIT_FUNCTION ();
|
428
|
3944 }
|
|
3945 else if (EQ (funcar, Qautoload))
|
|
3946 {
|
970
|
3947 /* do_autoload GCPROs both arguments */
|
428
|
3948 do_autoload (fun, args[0]);
|
|
3949 goto retry;
|
|
3950 }
|
|
3951 else /* Can't funcall a macro */
|
|
3952 {
|
|
3953 goto invalid_function;
|
|
3954 }
|
|
3955 }
|
|
3956 else if (UNBOUNDP (fun))
|
|
3957 {
|
436
|
3958 val = signal_void_function_error (args[0]);
|
428
|
3959 }
|
|
3960 else
|
|
3961 {
|
|
3962 invalid_function:
|
436
|
3963 val = signal_invalid_function_error (fun);
|
428
|
3964 }
|
|
3965
|
|
3966 lisp_eval_depth--;
|
|
3967 if (backtrace.debug_on_exit)
|
|
3968 val = do_debug_on_exit (val);
|
|
3969 POP_BACKTRACE (backtrace);
|
|
3970 return val;
|
|
3971 }
|
|
3972
|
|
3973 DEFUN ("functionp", Ffunctionp, 1, 1, 0, /*
|
|
3974 Return t if OBJECT can be called as a function, else nil.
|
|
3975 A function is an object that can be applied to arguments,
|
|
3976 using for example `funcall' or `apply'.
|
|
3977 */
|
|
3978 (object))
|
|
3979 {
|
|
3980 if (SYMBOLP (object))
|
|
3981 object = indirect_function (object, 0);
|
|
3982
|
919
|
3983 if (COMPILED_FUNCTIONP (object) || SUBRP (object))
|
|
3984 return Qt;
|
|
3985 if (CONSP (object))
|
|
3986 {
|
|
3987 Lisp_Object car = XCAR (object);
|
|
3988 if (EQ (car, Qlambda))
|
|
3989 return Qt;
|
|
3990 if (EQ (car, Qautoload)
|
|
3991 && NILP (Fcar_safe (Fcdr_safe (Fcdr_safe (Fcdr_safe (XCDR (object)))))))
|
|
3992 return Qt;
|
|
3993 }
|
|
3994 return Qnil;
|
428
|
3995 }
|
|
3996
|
|
3997 static Lisp_Object
|
|
3998 function_argcount (Lisp_Object function, int function_min_args_p)
|
|
3999 {
|
|
4000 Lisp_Object orig_function = function;
|
|
4001 Lisp_Object arglist;
|
|
4002
|
|
4003 retry:
|
|
4004
|
|
4005 if (SYMBOLP (function))
|
|
4006 function = indirect_function (function, 1);
|
|
4007
|
|
4008 if (SUBRP (function))
|
|
4009 {
|
442
|
4010 /* Using return with the ?: operator tickles a DEC CC compiler bug. */
|
|
4011 if (function_min_args_p)
|
|
4012 return Fsubr_min_args (function);
|
|
4013 else
|
|
4014 return Fsubr_max_args (function);
|
428
|
4015 }
|
|
4016 else if (COMPILED_FUNCTIONP (function))
|
|
4017 {
|
814
|
4018 Lisp_Compiled_Function *f = XCOMPILED_FUNCTION (function);
|
|
4019
|
1737
|
4020 if (!OPAQUEP (f->instructions))
|
|
4021 /* Lazily munge the instructions into a more efficient form */
|
|
4022 /* Needed to set max_args */
|
|
4023 optimize_compiled_function (function);
|
|
4024
|
814
|
4025 if (function_min_args_p)
|
|
4026 return make_int (f->min_args);
|
|
4027 else if (f->max_args == MANY)
|
|
4028 return Qnil;
|
|
4029 else
|
|
4030 return make_int (f->max_args);
|
428
|
4031 }
|
|
4032 else if (CONSP (function))
|
|
4033 {
|
|
4034 Lisp_Object funcar = XCAR (function);
|
|
4035
|
|
4036 if (EQ (funcar, Qmacro))
|
|
4037 {
|
|
4038 function = XCDR (function);
|
|
4039 goto retry;
|
|
4040 }
|
|
4041 else if (EQ (funcar, Qautoload))
|
|
4042 {
|
970
|
4043 /* do_autoload GCPROs both arguments */
|
428
|
4044 do_autoload (function, orig_function);
|
442
|
4045 function = orig_function;
|
428
|
4046 goto retry;
|
|
4047 }
|
|
4048 else if (EQ (funcar, Qlambda))
|
|
4049 {
|
|
4050 arglist = Fcar (XCDR (function));
|
|
4051 }
|
|
4052 else
|
|
4053 {
|
|
4054 goto invalid_function;
|
|
4055 }
|
|
4056 }
|
|
4057 else
|
|
4058 {
|
|
4059 invalid_function:
|
442
|
4060 return signal_invalid_function_error (orig_function);
|
428
|
4061 }
|
|
4062
|
|
4063 {
|
|
4064 int argcount = 0;
|
|
4065
|
|
4066 EXTERNAL_LIST_LOOP_2 (arg, arglist)
|
|
4067 {
|
|
4068 if (EQ (arg, Qand_optional))
|
|
4069 {
|
|
4070 if (function_min_args_p)
|
|
4071 break;
|
|
4072 }
|
|
4073 else if (EQ (arg, Qand_rest))
|
|
4074 {
|
|
4075 if (function_min_args_p)
|
|
4076 break;
|
|
4077 else
|
|
4078 return Qnil;
|
|
4079 }
|
|
4080 else
|
|
4081 {
|
|
4082 argcount++;
|
|
4083 }
|
|
4084 }
|
|
4085
|
|
4086 return make_int (argcount);
|
|
4087 }
|
|
4088 }
|
|
4089
|
|
4090 DEFUN ("function-min-args", Ffunction_min_args, 1, 1, 0, /*
|
617
|
4091 Return the minimum number of arguments a function may be called with.
|
428
|
4092 The function may be any form that can be passed to `funcall',
|
|
4093 any special form, or any macro.
|
853
|
4094
|
|
4095 To check if a function can be called with a specified number of
|
|
4096 arguments, use `function-allows-args'.
|
428
|
4097 */
|
|
4098 (function))
|
|
4099 {
|
|
4100 return function_argcount (function, 1);
|
|
4101 }
|
|
4102
|
|
4103 DEFUN ("function-max-args", Ffunction_max_args, 1, 1, 0, /*
|
617
|
4104 Return the maximum number of arguments a function may be called with.
|
428
|
4105 The function may be any form that can be passed to `funcall',
|
|
4106 any special form, or any macro.
|
|
4107 If the function takes an arbitrary number of arguments or is
|
|
4108 a built-in special form, nil is returned.
|
853
|
4109
|
|
4110 To check if a function can be called with a specified number of
|
|
4111 arguments, use `function-allows-args'.
|
428
|
4112 */
|
|
4113 (function))
|
|
4114 {
|
|
4115 return function_argcount (function, 0);
|
|
4116 }
|
|
4117
|
|
4118
|
|
4119 DEFUN ("apply", Fapply, 2, MANY, 0, /*
|
|
4120 Call FUNCTION with the remaining args, using the last arg as a list of args.
|
|
4121 Thus, (apply '+ 1 2 '(3 4)) returns 10.
|
|
4122 */
|
|
4123 (int nargs, Lisp_Object *args))
|
|
4124 {
|
|
4125 /* This function can GC */
|
|
4126 Lisp_Object fun = args[0];
|
|
4127 Lisp_Object spread_arg = args [nargs - 1];
|
|
4128 int numargs;
|
|
4129 int funcall_nargs;
|
|
4130
|
|
4131 GET_EXTERNAL_LIST_LENGTH (spread_arg, numargs);
|
|
4132
|
|
4133 if (numargs == 0)
|
|
4134 /* (apply foo 0 1 '()) */
|
|
4135 return Ffuncall (nargs - 1, args);
|
|
4136 else if (numargs == 1)
|
|
4137 {
|
|
4138 /* (apply foo 0 1 '(2)) */
|
|
4139 args [nargs - 1] = XCAR (spread_arg);
|
|
4140 return Ffuncall (nargs, args);
|
|
4141 }
|
|
4142
|
|
4143 /* -1 for function, -1 for spread arg */
|
|
4144 numargs = nargs - 2 + numargs;
|
|
4145 /* +1 for function */
|
|
4146 funcall_nargs = 1 + numargs;
|
|
4147
|
|
4148 if (SYMBOLP (fun))
|
|
4149 fun = indirect_function (fun, 0);
|
|
4150
|
|
4151 if (SUBRP (fun))
|
|
4152 {
|
|
4153 Lisp_Subr *subr = XSUBR (fun);
|
|
4154 int max_args = subr->max_args;
|
|
4155
|
|
4156 if (numargs < subr->min_args
|
|
4157 || (max_args >= 0 && max_args < numargs))
|
|
4158 {
|
|
4159 /* Let funcall get the error */
|
|
4160 }
|
|
4161 else if (max_args > numargs)
|
|
4162 {
|
|
4163 /* Avoid having funcall cons up yet another new vector of arguments
|
|
4164 by explicitly supplying nil's for optional values */
|
|
4165 funcall_nargs += (max_args - numargs);
|
|
4166 }
|
|
4167 }
|
|
4168 else if (UNBOUNDP (fun))
|
|
4169 {
|
|
4170 /* Let funcall get the error */
|
|
4171 fun = args[0];
|
|
4172 }
|
|
4173
|
|
4174 {
|
|
4175 REGISTER int i;
|
|
4176 Lisp_Object *funcall_args = alloca_array (Lisp_Object, funcall_nargs);
|
|
4177 struct gcpro gcpro1;
|
|
4178
|
|
4179 GCPRO1 (*funcall_args);
|
|
4180 gcpro1.nvars = funcall_nargs;
|
|
4181
|
|
4182 /* Copy in the unspread args */
|
|
4183 memcpy (funcall_args, args, (nargs - 1) * sizeof (Lisp_Object));
|
|
4184 /* Spread the last arg we got. Its first element goes in
|
|
4185 the slot that it used to occupy, hence this value of I. */
|
|
4186 for (i = nargs - 1;
|
|
4187 !NILP (spread_arg); /* i < 1 + numargs */
|
|
4188 i++, spread_arg = XCDR (spread_arg))
|
|
4189 {
|
|
4190 funcall_args [i] = XCAR (spread_arg);
|
|
4191 }
|
|
4192 /* Supply nil for optional args (to subrs) */
|
|
4193 for (; i < funcall_nargs; i++)
|
|
4194 funcall_args[i] = Qnil;
|
|
4195
|
|
4196
|
|
4197 RETURN_UNGCPRO (Ffuncall (funcall_nargs, funcall_args));
|
|
4198 }
|
|
4199 }
|
|
4200
|
|
4201
|
|
4202 /* Apply lambda list FUN to the NARGS evaluated arguments in ARGS and
|
|
4203 return the result of evaluation. */
|
|
4204
|
|
4205 static Lisp_Object
|
|
4206 funcall_lambda (Lisp_Object fun, int nargs, Lisp_Object args[])
|
|
4207 {
|
|
4208 /* This function can GC */
|
442
|
4209 Lisp_Object arglist, body, tail;
|
428
|
4210 int speccount = specpdl_depth();
|
|
4211 REGISTER int i = 0;
|
|
4212
|
|
4213 tail = XCDR (fun);
|
|
4214
|
|
4215 if (!CONSP (tail))
|
|
4216 goto invalid_function;
|
|
4217
|
|
4218 arglist = XCAR (tail);
|
|
4219 body = XCDR (tail);
|
|
4220
|
|
4221 {
|
|
4222 int optional = 0, rest = 0;
|
|
4223
|
442
|
4224 EXTERNAL_LIST_LOOP_2 (symbol, arglist)
|
428
|
4225 {
|
|
4226 if (!SYMBOLP (symbol))
|
|
4227 goto invalid_function;
|
|
4228 if (EQ (symbol, Qand_rest))
|
|
4229 rest = 1;
|
|
4230 else if (EQ (symbol, Qand_optional))
|
|
4231 optional = 1;
|
|
4232 else if (rest)
|
|
4233 {
|
|
4234 specbind (symbol, Flist (nargs - i, &args[i]));
|
|
4235 i = nargs;
|
|
4236 }
|
|
4237 else if (i < nargs)
|
|
4238 specbind (symbol, args[i++]);
|
|
4239 else if (!optional)
|
|
4240 goto wrong_number_of_arguments;
|
|
4241 else
|
|
4242 specbind (symbol, Qnil);
|
|
4243 }
|
|
4244 }
|
|
4245
|
|
4246 if (i < nargs)
|
|
4247 goto wrong_number_of_arguments;
|
|
4248
|
771
|
4249 return unbind_to_1 (speccount, Fprogn (body));
|
428
|
4250
|
|
4251 wrong_number_of_arguments:
|
436
|
4252 return signal_wrong_number_of_arguments_error (fun, nargs);
|
428
|
4253
|
|
4254 invalid_function:
|
436
|
4255 return signal_invalid_function_error (fun);
|
428
|
4256 }
|
|
4257
|
|
4258
|
|
4259 /************************************************************************/
|
|
4260 /* Run hook variables in various ways. */
|
|
4261 /************************************************************************/
|
|
4262
|
|
4263 DEFUN ("run-hooks", Frun_hooks, 1, MANY, 0, /*
|
|
4264 Run each hook in HOOKS. Major mode functions use this.
|
|
4265 Each argument should be a symbol, a hook variable.
|
|
4266 These symbols are processed in the order specified.
|
|
4267 If a hook symbol has a non-nil value, that value may be a function
|
|
4268 or a list of functions to be called to run the hook.
|
|
4269 If the value is a function, it is called with no arguments.
|
|
4270 If it is a list, the elements are called, in order, with no arguments.
|
|
4271
|
|
4272 To make a hook variable buffer-local, use `make-local-hook',
|
|
4273 not `make-local-variable'.
|
|
4274 */
|
|
4275 (int nargs, Lisp_Object *args))
|
|
4276 {
|
|
4277 REGISTER int i;
|
|
4278
|
|
4279 for (i = 0; i < nargs; i++)
|
|
4280 run_hook_with_args (1, args + i, RUN_HOOKS_TO_COMPLETION);
|
|
4281
|
|
4282 return Qnil;
|
|
4283 }
|
|
4284
|
|
4285 DEFUN ("run-hook-with-args", Frun_hook_with_args, 1, MANY, 0, /*
|
|
4286 Run HOOK with the specified arguments ARGS.
|
|
4287 HOOK should be a symbol, a hook variable. If HOOK has a non-nil
|
|
4288 value, that value may be a function or a list of functions to be
|
|
4289 called to run the hook. If the value is a function, it is called with
|
|
4290 the given arguments and its return value is returned. If it is a list
|
|
4291 of functions, those functions are called, in order,
|
|
4292 with the given arguments ARGS.
|
444
|
4293 It is best not to depend on the value returned by `run-hook-with-args',
|
428
|
4294 as that may change.
|
|
4295
|
|
4296 To make a hook variable buffer-local, use `make-local-hook',
|
|
4297 not `make-local-variable'.
|
|
4298 */
|
|
4299 (int nargs, Lisp_Object *args))
|
|
4300 {
|
|
4301 return run_hook_with_args (nargs, args, RUN_HOOKS_TO_COMPLETION);
|
|
4302 }
|
|
4303
|
|
4304 DEFUN ("run-hook-with-args-until-success", Frun_hook_with_args_until_success, 1, MANY, 0, /*
|
|
4305 Run HOOK with the specified arguments ARGS.
|
|
4306 HOOK should be a symbol, a hook variable. Its value should
|
|
4307 be a list of functions. We call those functions, one by one,
|
|
4308 passing arguments ARGS to each of them, until one of them
|
|
4309 returns a non-nil value. Then we return that value.
|
|
4310 If all the functions return nil, we return nil.
|
|
4311
|
|
4312 To make a hook variable buffer-local, use `make-local-hook',
|
|
4313 not `make-local-variable'.
|
|
4314 */
|
|
4315 (int nargs, Lisp_Object *args))
|
|
4316 {
|
|
4317 return run_hook_with_args (nargs, args, RUN_HOOKS_UNTIL_SUCCESS);
|
|
4318 }
|
|
4319
|
|
4320 DEFUN ("run-hook-with-args-until-failure", Frun_hook_with_args_until_failure, 1, MANY, 0, /*
|
|
4321 Run HOOK with the specified arguments ARGS.
|
|
4322 HOOK should be a symbol, a hook variable. Its value should
|
|
4323 be a list of functions. We call those functions, one by one,
|
|
4324 passing arguments ARGS to each of them, until one of them
|
|
4325 returns nil. Then we return nil.
|
|
4326 If all the functions return non-nil, we return non-nil.
|
|
4327
|
|
4328 To make a hook variable buffer-local, use `make-local-hook',
|
|
4329 not `make-local-variable'.
|
|
4330 */
|
|
4331 (int nargs, Lisp_Object *args))
|
|
4332 {
|
|
4333 return run_hook_with_args (nargs, args, RUN_HOOKS_UNTIL_FAILURE);
|
|
4334 }
|
|
4335
|
|
4336 /* ARGS[0] should be a hook symbol.
|
|
4337 Call each of the functions in the hook value, passing each of them
|
|
4338 as arguments all the rest of ARGS (all NARGS - 1 elements).
|
|
4339 COND specifies a condition to test after each call
|
|
4340 to decide whether to stop.
|
|
4341 The caller (or its caller, etc) must gcpro all of ARGS,
|
|
4342 except that it isn't necessary to gcpro ARGS[0]. */
|
|
4343
|
|
4344 Lisp_Object
|
|
4345 run_hook_with_args_in_buffer (struct buffer *buf, int nargs, Lisp_Object *args,
|
|
4346 enum run_hooks_condition cond)
|
|
4347 {
|
|
4348 Lisp_Object sym, val, ret;
|
|
4349
|
|
4350 if (!initialized || preparing_for_armageddon)
|
|
4351 /* We need to bail out of here pronto. */
|
|
4352 return Qnil;
|
|
4353
|
3092
|
4354 #ifndef NEW_GC
|
428
|
4355 /* Whenever gc_in_progress is true, preparing_for_armageddon
|
|
4356 will also be true unless something is really hosed. */
|
|
4357 assert (!gc_in_progress);
|
3092
|
4358 #endif /* not NEW_GC */
|
428
|
4359
|
|
4360 sym = args[0];
|
771
|
4361 val = symbol_value_in_buffer (sym, wrap_buffer (buf));
|
428
|
4362 ret = (cond == RUN_HOOKS_UNTIL_FAILURE ? Qt : Qnil);
|
|
4363
|
|
4364 if (UNBOUNDP (val) || NILP (val))
|
|
4365 return ret;
|
|
4366 else if (!CONSP (val) || EQ (XCAR (val), Qlambda))
|
|
4367 {
|
|
4368 args[0] = val;
|
|
4369 return Ffuncall (nargs, args);
|
|
4370 }
|
|
4371 else
|
|
4372 {
|
|
4373 struct gcpro gcpro1, gcpro2, gcpro3;
|
|
4374 Lisp_Object globals = Qnil;
|
|
4375 GCPRO3 (sym, val, globals);
|
|
4376
|
|
4377 for (;
|
|
4378 CONSP (val) && ((cond == RUN_HOOKS_TO_COMPLETION)
|
|
4379 || (cond == RUN_HOOKS_UNTIL_SUCCESS ? NILP (ret)
|
|
4380 : !NILP (ret)));
|
|
4381 val = XCDR (val))
|
|
4382 {
|
|
4383 if (EQ (XCAR (val), Qt))
|
|
4384 {
|
|
4385 /* t indicates this hook has a local binding;
|
|
4386 it means to run the global binding too. */
|
|
4387 globals = Fdefault_value (sym);
|
|
4388
|
|
4389 if ((! CONSP (globals) || EQ (XCAR (globals), Qlambda)) &&
|
|
4390 ! NILP (globals))
|
|
4391 {
|
|
4392 args[0] = globals;
|
|
4393 ret = Ffuncall (nargs, args);
|
|
4394 }
|
|
4395 else
|
|
4396 {
|
|
4397 for (;
|
|
4398 CONSP (globals) && ((cond == RUN_HOOKS_TO_COMPLETION)
|
|
4399 || (cond == RUN_HOOKS_UNTIL_SUCCESS
|
|
4400 ? NILP (ret)
|
|
4401 : !NILP (ret)));
|
|
4402 globals = XCDR (globals))
|
|
4403 {
|
|
4404 args[0] = XCAR (globals);
|
|
4405 /* In a global value, t should not occur. If it does, we
|
|
4406 must ignore it to avoid an endless loop. */
|
|
4407 if (!EQ (args[0], Qt))
|
|
4408 ret = Ffuncall (nargs, args);
|
|
4409 }
|
|
4410 }
|
|
4411 }
|
|
4412 else
|
|
4413 {
|
|
4414 args[0] = XCAR (val);
|
|
4415 ret = Ffuncall (nargs, args);
|
|
4416 }
|
|
4417 }
|
|
4418
|
|
4419 UNGCPRO;
|
|
4420 return ret;
|
|
4421 }
|
|
4422 }
|
|
4423
|
|
4424 Lisp_Object
|
|
4425 run_hook_with_args (int nargs, Lisp_Object *args,
|
|
4426 enum run_hooks_condition cond)
|
|
4427 {
|
|
4428 return run_hook_with_args_in_buffer (current_buffer, nargs, args, cond);
|
|
4429 }
|
|
4430
|
|
4431 #if 0
|
|
4432
|
853
|
4433 /* From FSF 19.30, not currently used; seems like a big kludge. */
|
428
|
4434
|
|
4435 /* Run a hook symbol ARGS[0], but use FUNLIST instead of the actual
|
|
4436 present value of that symbol.
|
|
4437 Call each element of FUNLIST,
|
|
4438 passing each of them the rest of ARGS.
|
|
4439 The caller (or its caller, etc) must gcpro all of ARGS,
|
|
4440 except that it isn't necessary to gcpro ARGS[0]. */
|
|
4441
|
|
4442 Lisp_Object
|
|
4443 run_hook_list_with_args (Lisp_Object funlist, int nargs, Lisp_Object *args)
|
|
4444 {
|
853
|
4445 omitted;
|
428
|
4446 }
|
|
4447
|
|
4448 #endif /* 0 */
|
|
4449
|
|
4450 void
|
|
4451 va_run_hook_with_args (Lisp_Object hook_var, int nargs, ...)
|
|
4452 {
|
|
4453 /* This function can GC */
|
|
4454 struct gcpro gcpro1;
|
|
4455 int i;
|
|
4456 va_list vargs;
|
|
4457 Lisp_Object *funcall_args = alloca_array (Lisp_Object, 1 + nargs);
|
|
4458
|
|
4459 va_start (vargs, nargs);
|
|
4460 funcall_args[0] = hook_var;
|
|
4461 for (i = 0; i < nargs; i++)
|
|
4462 funcall_args[i + 1] = va_arg (vargs, Lisp_Object);
|
|
4463 va_end (vargs);
|
|
4464
|
|
4465 GCPRO1 (*funcall_args);
|
|
4466 gcpro1.nvars = nargs + 1;
|
|
4467 run_hook_with_args (nargs + 1, funcall_args, RUN_HOOKS_TO_COMPLETION);
|
|
4468 UNGCPRO;
|
|
4469 }
|
|
4470
|
|
4471 void
|
|
4472 va_run_hook_with_args_in_buffer (struct buffer *buf, Lisp_Object hook_var,
|
|
4473 int nargs, ...)
|
|
4474 {
|
|
4475 /* This function can GC */
|
|
4476 struct gcpro gcpro1;
|
|
4477 int i;
|
|
4478 va_list vargs;
|
|
4479 Lisp_Object *funcall_args = alloca_array (Lisp_Object, 1 + nargs);
|
|
4480
|
|
4481 va_start (vargs, nargs);
|
|
4482 funcall_args[0] = hook_var;
|
|
4483 for (i = 0; i < nargs; i++)
|
|
4484 funcall_args[i + 1] = va_arg (vargs, Lisp_Object);
|
|
4485 va_end (vargs);
|
|
4486
|
|
4487 GCPRO1 (*funcall_args);
|
|
4488 gcpro1.nvars = nargs + 1;
|
|
4489 run_hook_with_args_in_buffer (buf, nargs + 1, funcall_args,
|
|
4490 RUN_HOOKS_TO_COMPLETION);
|
|
4491 UNGCPRO;
|
|
4492 }
|
|
4493
|
|
4494 Lisp_Object
|
|
4495 run_hook (Lisp_Object hook)
|
|
4496 {
|
853
|
4497 return run_hook_with_args (1, &hook, RUN_HOOKS_TO_COMPLETION);
|
428
|
4498 }
|
|
4499
|
|
4500
|
|
4501 /************************************************************************/
|
|
4502 /* Front-ends to eval, funcall, apply */
|
|
4503 /************************************************************************/
|
|
4504
|
|
4505 /* Apply fn to arg */
|
|
4506 Lisp_Object
|
|
4507 apply1 (Lisp_Object fn, Lisp_Object arg)
|
|
4508 {
|
|
4509 /* This function can GC */
|
|
4510 struct gcpro gcpro1;
|
|
4511 Lisp_Object args[2];
|
|
4512
|
|
4513 if (NILP (arg))
|
|
4514 return Ffuncall (1, &fn);
|
|
4515 GCPRO1 (args[0]);
|
|
4516 gcpro1.nvars = 2;
|
|
4517 args[0] = fn;
|
|
4518 args[1] = arg;
|
|
4519 RETURN_UNGCPRO (Fapply (2, args));
|
|
4520 }
|
|
4521
|
|
4522 /* Call function fn on no arguments */
|
|
4523 Lisp_Object
|
|
4524 call0 (Lisp_Object fn)
|
|
4525 {
|
|
4526 /* This function can GC */
|
|
4527 struct gcpro gcpro1;
|
|
4528
|
|
4529 GCPRO1 (fn);
|
|
4530 RETURN_UNGCPRO (Ffuncall (1, &fn));
|
|
4531 }
|
|
4532
|
|
4533 /* Call function fn with argument arg0 */
|
|
4534 Lisp_Object
|
|
4535 call1 (Lisp_Object fn,
|
|
4536 Lisp_Object arg0)
|
|
4537 {
|
|
4538 /* This function can GC */
|
|
4539 struct gcpro gcpro1;
|
|
4540 Lisp_Object args[2];
|
|
4541 args[0] = fn;
|
|
4542 args[1] = arg0;
|
|
4543 GCPRO1 (args[0]);
|
|
4544 gcpro1.nvars = 2;
|
|
4545 RETURN_UNGCPRO (Ffuncall (2, args));
|
|
4546 }
|
|
4547
|
|
4548 /* Call function fn with arguments arg0, arg1 */
|
|
4549 Lisp_Object
|
|
4550 call2 (Lisp_Object fn,
|
|
4551 Lisp_Object arg0, Lisp_Object arg1)
|
|
4552 {
|
|
4553 /* This function can GC */
|
|
4554 struct gcpro gcpro1;
|
|
4555 Lisp_Object args[3];
|
|
4556 args[0] = fn;
|
|
4557 args[1] = arg0;
|
|
4558 args[2] = arg1;
|
|
4559 GCPRO1 (args[0]);
|
|
4560 gcpro1.nvars = 3;
|
|
4561 RETURN_UNGCPRO (Ffuncall (3, args));
|
|
4562 }
|
|
4563
|
|
4564 /* Call function fn with arguments arg0, arg1, arg2 */
|
|
4565 Lisp_Object
|
|
4566 call3 (Lisp_Object fn,
|
|
4567 Lisp_Object arg0, Lisp_Object arg1, Lisp_Object arg2)
|
|
4568 {
|
|
4569 /* This function can GC */
|
|
4570 struct gcpro gcpro1;
|
|
4571 Lisp_Object args[4];
|
|
4572 args[0] = fn;
|
|
4573 args[1] = arg0;
|
|
4574 args[2] = arg1;
|
|
4575 args[3] = arg2;
|
|
4576 GCPRO1 (args[0]);
|
|
4577 gcpro1.nvars = 4;
|
|
4578 RETURN_UNGCPRO (Ffuncall (4, args));
|
|
4579 }
|
|
4580
|
|
4581 /* Call function fn with arguments arg0, arg1, arg2, arg3 */
|
|
4582 Lisp_Object
|
|
4583 call4 (Lisp_Object fn,
|
|
4584 Lisp_Object arg0, Lisp_Object arg1, Lisp_Object arg2,
|
|
4585 Lisp_Object arg3)
|
|
4586 {
|
|
4587 /* This function can GC */
|
|
4588 struct gcpro gcpro1;
|
|
4589 Lisp_Object args[5];
|
|
4590 args[0] = fn;
|
|
4591 args[1] = arg0;
|
|
4592 args[2] = arg1;
|
|
4593 args[3] = arg2;
|
|
4594 args[4] = arg3;
|
|
4595 GCPRO1 (args[0]);
|
|
4596 gcpro1.nvars = 5;
|
|
4597 RETURN_UNGCPRO (Ffuncall (5, args));
|
|
4598 }
|
|
4599
|
|
4600 /* Call function fn with arguments arg0, arg1, arg2, arg3, arg4 */
|
|
4601 Lisp_Object
|
|
4602 call5 (Lisp_Object fn,
|
|
4603 Lisp_Object arg0, Lisp_Object arg1, Lisp_Object arg2,
|
|
4604 Lisp_Object arg3, Lisp_Object arg4)
|
|
4605 {
|
|
4606 /* This function can GC */
|
|
4607 struct gcpro gcpro1;
|
|
4608 Lisp_Object args[6];
|
|
4609 args[0] = fn;
|
|
4610 args[1] = arg0;
|
|
4611 args[2] = arg1;
|
|
4612 args[3] = arg2;
|
|
4613 args[4] = arg3;
|
|
4614 args[5] = arg4;
|
|
4615 GCPRO1 (args[0]);
|
|
4616 gcpro1.nvars = 6;
|
|
4617 RETURN_UNGCPRO (Ffuncall (6, args));
|
|
4618 }
|
|
4619
|
|
4620 Lisp_Object
|
|
4621 call6 (Lisp_Object fn,
|
|
4622 Lisp_Object arg0, Lisp_Object arg1, Lisp_Object arg2,
|
|
4623 Lisp_Object arg3, Lisp_Object arg4, Lisp_Object arg5)
|
|
4624 {
|
|
4625 /* This function can GC */
|
|
4626 struct gcpro gcpro1;
|
|
4627 Lisp_Object args[7];
|
|
4628 args[0] = fn;
|
|
4629 args[1] = arg0;
|
|
4630 args[2] = arg1;
|
|
4631 args[3] = arg2;
|
|
4632 args[4] = arg3;
|
|
4633 args[5] = arg4;
|
|
4634 args[6] = arg5;
|
|
4635 GCPRO1 (args[0]);
|
|
4636 gcpro1.nvars = 7;
|
|
4637 RETURN_UNGCPRO (Ffuncall (7, args));
|
|
4638 }
|
|
4639
|
|
4640 Lisp_Object
|
|
4641 call7 (Lisp_Object fn,
|
|
4642 Lisp_Object arg0, Lisp_Object arg1, Lisp_Object arg2,
|
|
4643 Lisp_Object arg3, Lisp_Object arg4, Lisp_Object arg5,
|
|
4644 Lisp_Object arg6)
|
|
4645 {
|
|
4646 /* This function can GC */
|
|
4647 struct gcpro gcpro1;
|
|
4648 Lisp_Object args[8];
|
|
4649 args[0] = fn;
|
|
4650 args[1] = arg0;
|
|
4651 args[2] = arg1;
|
|
4652 args[3] = arg2;
|
|
4653 args[4] = arg3;
|
|
4654 args[5] = arg4;
|
|
4655 args[6] = arg5;
|
|
4656 args[7] = arg6;
|
|
4657 GCPRO1 (args[0]);
|
|
4658 gcpro1.nvars = 8;
|
|
4659 RETURN_UNGCPRO (Ffuncall (8, args));
|
|
4660 }
|
|
4661
|
|
4662 Lisp_Object
|
|
4663 call8 (Lisp_Object fn,
|
|
4664 Lisp_Object arg0, Lisp_Object arg1, Lisp_Object arg2,
|
|
4665 Lisp_Object arg3, Lisp_Object arg4, Lisp_Object arg5,
|
|
4666 Lisp_Object arg6, Lisp_Object arg7)
|
|
4667 {
|
|
4668 /* This function can GC */
|
|
4669 struct gcpro gcpro1;
|
|
4670 Lisp_Object args[9];
|
|
4671 args[0] = fn;
|
|
4672 args[1] = arg0;
|
|
4673 args[2] = arg1;
|
|
4674 args[3] = arg2;
|
|
4675 args[4] = arg3;
|
|
4676 args[5] = arg4;
|
|
4677 args[6] = arg5;
|
|
4678 args[7] = arg6;
|
|
4679 args[8] = arg7;
|
|
4680 GCPRO1 (args[0]);
|
|
4681 gcpro1.nvars = 9;
|
|
4682 RETURN_UNGCPRO (Ffuncall (9, args));
|
|
4683 }
|
|
4684
|
|
4685 Lisp_Object
|
|
4686 call0_in_buffer (struct buffer *buf, Lisp_Object fn)
|
|
4687 {
|
|
4688 if (current_buffer == buf)
|
|
4689 return call0 (fn);
|
|
4690 else
|
|
4691 {
|
|
4692 Lisp_Object val;
|
|
4693 int speccount = specpdl_depth();
|
|
4694 record_unwind_protect (Fset_buffer, Fcurrent_buffer ());
|
|
4695 set_buffer_internal (buf);
|
|
4696 val = call0 (fn);
|
771
|
4697 unbind_to (speccount);
|
428
|
4698 return val;
|
|
4699 }
|
|
4700 }
|
|
4701
|
|
4702 Lisp_Object
|
|
4703 call1_in_buffer (struct buffer *buf, Lisp_Object fn,
|
|
4704 Lisp_Object arg0)
|
|
4705 {
|
|
4706 if (current_buffer == buf)
|
|
4707 return call1 (fn, arg0);
|
|
4708 else
|
|
4709 {
|
|
4710 Lisp_Object val;
|
|
4711 int speccount = specpdl_depth();
|
|
4712 record_unwind_protect (Fset_buffer, Fcurrent_buffer ());
|
|
4713 set_buffer_internal (buf);
|
|
4714 val = call1 (fn, arg0);
|
771
|
4715 unbind_to (speccount);
|
428
|
4716 return val;
|
|
4717 }
|
|
4718 }
|
|
4719
|
|
4720 Lisp_Object
|
|
4721 call2_in_buffer (struct buffer *buf, Lisp_Object fn,
|
|
4722 Lisp_Object arg0, Lisp_Object arg1)
|
|
4723 {
|
|
4724 if (current_buffer == buf)
|
|
4725 return call2 (fn, arg0, arg1);
|
|
4726 else
|
|
4727 {
|
|
4728 Lisp_Object val;
|
|
4729 int speccount = specpdl_depth();
|
|
4730 record_unwind_protect (Fset_buffer, Fcurrent_buffer ());
|
|
4731 set_buffer_internal (buf);
|
|
4732 val = call2 (fn, arg0, arg1);
|
771
|
4733 unbind_to (speccount);
|
428
|
4734 return val;
|
|
4735 }
|
|
4736 }
|
|
4737
|
|
4738 Lisp_Object
|
|
4739 call3_in_buffer (struct buffer *buf, Lisp_Object fn,
|
|
4740 Lisp_Object arg0, Lisp_Object arg1, Lisp_Object arg2)
|
|
4741 {
|
|
4742 if (current_buffer == buf)
|
|
4743 return call3 (fn, arg0, arg1, arg2);
|
|
4744 else
|
|
4745 {
|
|
4746 Lisp_Object val;
|
|
4747 int speccount = specpdl_depth();
|
|
4748 record_unwind_protect (Fset_buffer, Fcurrent_buffer ());
|
|
4749 set_buffer_internal (buf);
|
|
4750 val = call3 (fn, arg0, arg1, arg2);
|
771
|
4751 unbind_to (speccount);
|
428
|
4752 return val;
|
|
4753 }
|
|
4754 }
|
|
4755
|
|
4756 Lisp_Object
|
|
4757 call4_in_buffer (struct buffer *buf, Lisp_Object fn,
|
|
4758 Lisp_Object arg0, Lisp_Object arg1, Lisp_Object arg2,
|
|
4759 Lisp_Object arg3)
|
|
4760 {
|
|
4761 if (current_buffer == buf)
|
|
4762 return call4 (fn, arg0, arg1, arg2, arg3);
|
|
4763 else
|
|
4764 {
|
|
4765 Lisp_Object val;
|
|
4766 int speccount = specpdl_depth();
|
|
4767 record_unwind_protect (Fset_buffer, Fcurrent_buffer ());
|
|
4768 set_buffer_internal (buf);
|
|
4769 val = call4 (fn, arg0, arg1, arg2, arg3);
|
771
|
4770 unbind_to (speccount);
|
428
|
4771 return val;
|
|
4772 }
|
|
4773 }
|
|
4774
|
|
4775 Lisp_Object
|
|
4776 eval_in_buffer (struct buffer *buf, Lisp_Object form)
|
|
4777 {
|
|
4778 if (current_buffer == buf)
|
|
4779 return Feval (form);
|
|
4780 else
|
|
4781 {
|
|
4782 Lisp_Object val;
|
|
4783 int speccount = specpdl_depth();
|
|
4784 record_unwind_protect (Fset_buffer, Fcurrent_buffer ());
|
|
4785 set_buffer_internal (buf);
|
|
4786 val = Feval (form);
|
771
|
4787 unbind_to (speccount);
|
428
|
4788 return val;
|
|
4789 }
|
|
4790 }
|
|
4791
|
|
4792
|
|
4793 /************************************************************************/
|
|
4794 /* Error-catching front-ends to eval, funcall, apply */
|
|
4795 /************************************************************************/
|
|
4796
|
853
|
4797 int
|
|
4798 get_inhibit_flags (void)
|
|
4799 {
|
|
4800 return inhibit_flags;
|
|
4801 }
|
|
4802
|
|
4803 void
|
2286
|
4804 check_allowed_operation (int what, Lisp_Object obj, Lisp_Object UNUSED (prop))
|
853
|
4805 {
|
|
4806 if (inhibit_flags & INHIBIT_EXISTING_BUFFER_TEXT_MODIFICATION)
|
|
4807 {
|
|
4808 if (what == OPERATION_MODIFY_BUFFER_TEXT && BUFFERP (obj)
|
|
4809 && NILP (memq_no_quit (obj, Vmodifiable_buffers)))
|
|
4810 invalid_change
|
|
4811 ("Modification of this buffer not currently permitted", obj);
|
|
4812 }
|
|
4813 if (inhibit_flags & INHIBIT_EXISTING_PERMANENT_DISPLAY_OBJECT_DELETION)
|
|
4814 {
|
|
4815 if (what == OPERATION_DELETE_OBJECT
|
|
4816 && (BUFFERP (obj) || WINDOWP (obj) || FRAMEP (obj) || DEVICEP (obj)
|
|
4817 || CONSOLEP (obj))
|
|
4818 && NILP (memq_no_quit (obj, Vdeletable_permanent_display_objects)))
|
|
4819 invalid_change
|
|
4820 ("Deletion of this object not currently permitted", obj);
|
|
4821 }
|
|
4822 }
|
|
4823
|
|
4824 void
|
|
4825 note_object_created (Lisp_Object obj)
|
|
4826 {
|
|
4827 if (inhibit_flags & INHIBIT_EXISTING_BUFFER_TEXT_MODIFICATION)
|
|
4828 {
|
|
4829 if (BUFFERP (obj))
|
|
4830 Vmodifiable_buffers = Fcons (obj, Vmodifiable_buffers);
|
|
4831 }
|
|
4832 if (inhibit_flags & INHIBIT_EXISTING_PERMANENT_DISPLAY_OBJECT_DELETION)
|
|
4833 {
|
|
4834 if (BUFFERP (obj) || WINDOWP (obj) || FRAMEP (obj) || DEVICEP (obj)
|
|
4835 || CONSOLEP (obj))
|
|
4836 Vdeletable_permanent_display_objects =
|
|
4837 Fcons (obj, Vdeletable_permanent_display_objects);
|
|
4838 }
|
|
4839 }
|
|
4840
|
|
4841 void
|
|
4842 note_object_deleted (Lisp_Object obj)
|
|
4843 {
|
|
4844 if (inhibit_flags & INHIBIT_EXISTING_BUFFER_TEXT_MODIFICATION)
|
|
4845 {
|
|
4846 if (BUFFERP (obj))
|
|
4847 Vmodifiable_buffers = delq_no_quit (obj, Vmodifiable_buffers);
|
|
4848 }
|
|
4849 if (inhibit_flags & INHIBIT_EXISTING_PERMANENT_DISPLAY_OBJECT_DELETION)
|
|
4850 {
|
|
4851 if (BUFFERP (obj) || WINDOWP (obj) || FRAMEP (obj) || DEVICEP (obj)
|
|
4852 || CONSOLEP (obj))
|
|
4853 Vdeletable_permanent_display_objects =
|
|
4854 delq_no_quit (obj, Vdeletable_permanent_display_objects);
|
|
4855 }
|
|
4856 }
|
|
4857
|
|
4858 struct call_trapping_problems
|
|
4859 {
|
|
4860 Lisp_Object catchtag;
|
|
4861 Lisp_Object error_conditions;
|
|
4862 Lisp_Object data;
|
|
4863 Lisp_Object backtrace;
|
|
4864 Lisp_Object warning_class;
|
|
4865
|
867
|
4866 const CIbyte *warning_string;
|
853
|
4867 Lisp_Object (*fun) (void *);
|
|
4868 void *arg;
|
|
4869 };
|
428
|
4870
|
2532
|
4871 static Lisp_Object
|
|
4872 maybe_get_trapping_problems_backtrace (void)
|
|
4873 {
|
|
4874 Lisp_Object backtrace;
|
853
|
4875
|
1123
|
4876 if (!(inhibit_flags & INHIBIT_WARNING_ISSUE)
|
2532
|
4877 && !warning_will_be_discarded (current_warning_level ()))
|
428
|
4878 {
|
1333
|
4879 struct gcpro gcpro1;
|
|
4880 Lisp_Object lstream = Qnil;
|
|
4881 int speccount = specpdl_depth ();
|
|
4882
|
853
|
4883 /* We're no longer protected against errors or quit here, so at
|
|
4884 least let's temporarily inhibit quit. We definitely do not
|
|
4885 want to inhibit quit during the calling of the function
|
|
4886 itself!!!!!!!!!!! */
|
|
4887
|
|
4888 specbind (Qinhibit_quit, Qt);
|
|
4889
|
|
4890 GCPRO1 (lstream);
|
|
4891 lstream = make_resizing_buffer_output_stream ();
|
|
4892 Fbacktrace (lstream, Qt);
|
|
4893 Lstream_flush (XLSTREAM (lstream));
|
2532
|
4894 backtrace = resizing_buffer_to_lisp_string (XLSTREAM (lstream));
|
853
|
4895 Lstream_delete (XLSTREAM (lstream));
|
|
4896 UNGCPRO;
|
|
4897
|
|
4898 unbind_to (speccount);
|
428
|
4899 }
|
853
|
4900 else
|
2532
|
4901 backtrace = Qnil;
|
|
4902
|
|
4903 return backtrace;
|
|
4904 }
|
|
4905
|
|
4906 static DECLARE_DOESNT_RETURN_TYPE
|
|
4907 (Lisp_Object, flagged_a_squirmer (Lisp_Object, Lisp_Object, Lisp_Object));
|
|
4908
|
|
4909 static DOESNT_RETURN_TYPE (Lisp_Object)
|
|
4910 flagged_a_squirmer (Lisp_Object error_conditions, Lisp_Object data,
|
|
4911 Lisp_Object opaque)
|
|
4912 {
|
|
4913 struct call_trapping_problems *p =
|
|
4914 (struct call_trapping_problems *) get_opaque_ptr (opaque);
|
|
4915
|
|
4916 if (!EQ (error_conditions, Qquit))
|
|
4917 p->backtrace = maybe_get_trapping_problems_backtrace ();
|
|
4918 else
|
853
|
4919 p->backtrace = Qnil;
|
|
4920 p->error_conditions = error_conditions;
|
|
4921 p->data = data;
|
|
4922
|
|
4923 Fthrow (p->catchtag, Qnil);
|
2268
|
4924 RETURN_NOT_REACHED (Qnil);
|
853
|
4925 }
|
|
4926
|
|
4927 static Lisp_Object
|
|
4928 call_trapping_problems_2 (Lisp_Object opaque)
|
|
4929 {
|
|
4930 struct call_trapping_problems *p =
|
|
4931 (struct call_trapping_problems *) get_opaque_ptr (opaque);
|
|
4932
|
|
4933 return (p->fun) (p->arg);
|
428
|
4934 }
|
|
4935
|
|
4936 static Lisp_Object
|
853
|
4937 call_trapping_problems_1 (Lisp_Object opaque)
|
|
4938 {
|
|
4939 return call_with_condition_handler (flagged_a_squirmer, opaque,
|
|
4940 call_trapping_problems_2, opaque);
|
|
4941 }
|
|
4942
|
1333
|
4943 static void
|
|
4944 issue_call_trapping_problems_warning (Lisp_Object warning_class,
|
|
4945 const CIbyte *warning_string,
|
|
4946 struct call_trapping_problems_result *p)
|
|
4947 {
|
|
4948 if (!warning_will_be_discarded (current_warning_level ()))
|
|
4949 {
|
|
4950 int depth = specpdl_depth ();
|
|
4951
|
|
4952 /* We're no longer protected against errors or quit here, so at
|
|
4953 least let's temporarily inhibit quit. */
|
|
4954 specbind (Qinhibit_quit, Qt);
|
|
4955
|
|
4956 if (p->caught_throw)
|
|
4957 {
|
|
4958 Lisp_Object errstr =
|
|
4959 emacs_sprintf_string_lisp
|
2532
|
4960 ("%s: Attempt to throw outside of function:"
|
|
4961 "To catch `%s' with value `%s'\n\nBacktrace follows:\n\n%s",
|
2725
|
4962 Qnil, 4,
|
1333
|
4963 build_msg_string (warning_string ? warning_string : "error"),
|
2532
|
4964 p->thrown_tag, p->thrown_value, p->backtrace);
|
1333
|
4965 warn_when_safe_lispobj (Qerror, current_warning_level (), errstr);
|
|
4966 }
|
2421
|
4967 else if (p->caught_error && !EQ (p->error_conditions, Qquit))
|
1333
|
4968 {
|
|
4969 Lisp_Object errstr;
|
|
4970 /* #### This should call
|
|
4971 (with-output-to-string (display-error (cons error_conditions
|
|
4972 data))
|
|
4973 but that stuff is all in Lisp currently. */
|
|
4974 errstr =
|
|
4975 emacs_sprintf_string_lisp
|
|
4976 ("%s: (%s %s)\n\nBacktrace follows:\n\n%s",
|
|
4977 Qnil, 4,
|
|
4978 build_msg_string (warning_string ? warning_string : "error"),
|
|
4979 p->error_conditions, p->data, p->backtrace);
|
|
4980
|
|
4981 warn_when_safe_lispobj (warning_class, current_warning_level (),
|
|
4982 errstr);
|
|
4983 }
|
|
4984
|
|
4985 unbind_to (depth);
|
|
4986 }
|
|
4987 }
|
|
4988
|
1318
|
4989 /* Turn on the trapping flags in FLAGS -- see call_trapping_problems().
|
|
4990 This cannot handle INTERNAL_INHIBIT_THROWS() or INTERNAL_INHIBIT_ERRORS
|
|
4991 (because they ultimately boil down to a setjmp()!) -- you must directly
|
|
4992 use call_trapping_problems() for that. Turn the flags off with
|
|
4993 unbind_to(). Returns the "canonicalized" flags (particularly in the
|
|
4994 case of INHIBIT_ANY_CHANGE_AFFECTING_REDISPLAY, which is shorthand for
|
|
4995 various other flags). */
|
|
4996
|
|
4997 int
|
|
4998 set_trapping_problems_flags (int flags)
|
|
4999 {
|
|
5000 int new_inhibit_flags;
|
|
5001
|
|
5002 if (flags & INHIBIT_ANY_CHANGE_AFFECTING_REDISPLAY)
|
|
5003 flags |= INHIBIT_EXISTING_PERMANENT_DISPLAY_OBJECT_DELETION
|
|
5004 | INHIBIT_EXISTING_BUFFER_TEXT_MODIFICATION
|
|
5005 | INHIBIT_ENTERING_DEBUGGER
|
|
5006 | INHIBIT_WARNING_ISSUE
|
|
5007 | INHIBIT_GC;
|
|
5008
|
|
5009 new_inhibit_flags = inhibit_flags | flags;
|
|
5010 if (new_inhibit_flags != inhibit_flags)
|
|
5011 internal_bind_int (&inhibit_flags, new_inhibit_flags);
|
|
5012
|
|
5013 if (flags & INHIBIT_QUIT)
|
|
5014 specbind (Qinhibit_quit, Qt);
|
|
5015
|
|
5016 if (flags & UNINHIBIT_QUIT)
|
|
5017 begin_do_check_for_quit ();
|
|
5018
|
|
5019 if (flags & INHIBIT_GC)
|
|
5020 begin_gc_forbidden ();
|
|
5021
|
|
5022 /* #### If we have nested calls to call_trapping_problems(), and the
|
|
5023 inner one creates some buffers/etc., should the outer one be able
|
|
5024 to delete them? I think so, but it means we need to combine rather
|
|
5025 than just reset the value. */
|
|
5026 if (flags & INHIBIT_EXISTING_PERMANENT_DISPLAY_OBJECT_DELETION)
|
|
5027 internal_bind_lisp_object (&Vdeletable_permanent_display_objects, Qnil);
|
|
5028
|
|
5029 if (flags & INHIBIT_EXISTING_BUFFER_TEXT_MODIFICATION)
|
|
5030 internal_bind_lisp_object (&Vmodifiable_buffers, Qnil);
|
|
5031
|
|
5032 return flags;
|
|
5033 }
|
|
5034
|
853
|
5035 /* This is equivalent to (*fun) (arg), except that various conditions
|
|
5036 can be trapped or inhibited, according to FLAGS.
|
|
5037
|
|
5038 If FLAGS does not contain NO_INHIBIT_ERRORS, when an error occurs,
|
|
5039 the error is caught and a warning is issued, specifying the
|
|
5040 specific error that occurred and a backtrace. In that case,
|
|
5041 WARNING_STRING should be given, and will be printed at the
|
|
5042 beginning of the error to indicate where the error occurred.
|
|
5043
|
|
5044 If FLAGS does not contain NO_INHIBIT_THROWS, all attempts to
|
|
5045 `throw' out of the function being called are trapped, and a warning
|
|
5046 issued. (Again, WARNING_STRING should be given.)
|
|
5047
|
2367
|
5048 If FLAGS contains INHIBIT_WARNING_ISSUE, no warnings are issued;
|
853
|
5049 this applies to recursive invocations of call_trapping_problems, too.
|
|
5050
|
1333
|
5051 If FLAGS contains POSTPONE_WARNING_ISSUE, no warnings are issued;
|
|
5052 but values useful for generating a warning are still computed (in
|
|
5053 particular, the backtrace), so that the calling function can issue
|
|
5054 a warning.
|
|
5055
|
853
|
5056 If FLAGS contains ISSUE_WARNINGS_AT_DEBUG_LEVEL, warnings will be
|
|
5057 issued, but at level `debug', which normally is below the minimum
|
|
5058 specified by `log-warning-minimum-level', meaning such warnings will
|
|
5059 be ignored entirely. The user can change this variable, however,
|
|
5060 to see the warnings.)
|
|
5061
|
|
5062 Note: If neither of NO_INHIBIT_THROWS or NO_INHIBIT_ERRORS is
|
|
5063 given, you are *guaranteed* that there will be no non-local exits
|
|
5064 out of this function.
|
|
5065
|
|
5066 If FLAGS contains INHIBIT_QUIT, QUIT using C-g is inhibited. (This
|
|
5067 is *rarely* a good idea. Unless you use NO_INHIBIT_ERRORS, QUIT is
|
|
5068 automatically caught as well, and treated as an error; you can
|
|
5069 check for this using EQ (problems->error_conditions, Qquit).
|
|
5070
|
|
5071 If FLAGS contains UNINHIBIT_QUIT, QUIT checking will be explicitly
|
|
5072 turned on. (It will abort the code being called, but will still be
|
|
5073 trapped and reported as an error, unless NO_INHIBIT_ERRORS is
|
|
5074 given.) This is useful when QUIT checking has been turned off by a
|
|
5075 higher-level caller.
|
|
5076
|
|
5077 If FLAGS contains INHIBIT_GC, garbage collection is inhibited.
|
1123
|
5078 This is useful for Lisp called within redisplay, for example.
|
853
|
5079
|
|
5080 If FLAGS contains INHIBIT_EXISTING_PERMANENT_DISPLAY_OBJECT_DELETION,
|
|
5081 Lisp code is not allowed to delete any window, buffers, frames, devices,
|
|
5082 or consoles that were already in existence at the time this function
|
|
5083 was called. (However, it's perfectly legal for code to create a new
|
|
5084 buffer and then delete it.)
|
|
5085
|
|
5086 #### It might be useful to have a flag that inhibits deletion of a
|
|
5087 specific permanent display object and everything it's attached to
|
|
5088 (e.g. a window, and the buffer, frame, device, and console it's
|
|
5089 attached to.
|
|
5090
|
|
5091 If FLAGS contains INHIBIT_EXISTING_BUFFER_TEXT_MODIFICATION, Lisp
|
|
5092 code is not allowed to modify the text of any buffers that were
|
|
5093 already in existence at the time this function was called.
|
|
5094 (However, it's perfectly legal for code to create a new buffer and
|
|
5095 then modify its text.)
|
|
5096
|
|
5097 [These last two flags are implemented using global variables
|
|
5098 Vdeletable_permanent_display_objects and Vmodifiable_buffers,
|
|
5099 which keep track of a list of all buffers or permanent display
|
|
5100 objects created since the last time one of these flags was set.
|
|
5101 The code that deletes buffers, etc. and modifies buffers checks
|
|
5102
|
|
5103 (1) if the corresponding flag is set (through the global variable
|
|
5104 inhibit_flags or its accessor function get_inhibit_flags()), and
|
|
5105
|
|
5106 (2) if the object to be modified or deleted is not in the
|
|
5107 appropriate list.
|
|
5108
|
|
5109 If so, it signals an error.
|
|
5110
|
|
5111 Recursive calls to call_trapping_problems() are allowed. In
|
|
5112 the case of the two flags mentioned above, the current values
|
|
5113 of the global variables are stored in an unwind-protect, and
|
|
5114 they're reset to nil.]
|
|
5115
|
|
5116 If FLAGS contains INHIBIT_ENTERING_DEBUGGER, the debugger will not
|
|
5117 be entered if an error occurs inside the Lisp code being called,
|
|
5118 even when the user has requested an error. In such case, a warning
|
|
5119 is issued stating that access to the debugger is denied, unless
|
|
5120 INHIBIT_WARNING_ISSUE has also been supplied. This is useful when
|
|
5121 calling Lisp code inside redisplay, in menu callbacks, etc. because
|
|
5122 in such cases either the display is in an inconsistent state or
|
|
5123 doing window operations is explicitly forbidden by the OS, and the
|
|
5124 debugger would causes visual changes on the screen and might create
|
|
5125 another frame.
|
|
5126
|
|
5127 If FLAGS contains INHIBIT_ANY_CHANGE_AFFECTING_REDISPLAY, no
|
|
5128 changes of any sort to extents, faces, glyphs, buffer text,
|
|
5129 specifiers relating to display, other variables relating to
|
|
5130 display, splitting, deleting, or resizing windows or frames,
|
|
5131 deleting buffers, windows, frames, devices, or consoles, etc. is
|
|
5132 allowed. This is for things called absolutely in the middle of
|
|
5133 redisplay, which expects things to be *exactly* the same after the
|
|
5134 call as before. This isn't completely implemented and needs to be
|
|
5135 thought out some more to determine exactly what its semantics are.
|
|
5136 For the moment, turning on this flag also turns on
|
|
5137
|
|
5138 INHIBIT_EXISTING_PERMANENT_DISPLAY_OBJECT_DELETION
|
|
5139 INHIBIT_EXISTING_BUFFER_TEXT_MODIFICATION
|
|
5140 INHIBIT_ENTERING_DEBUGGER
|
|
5141 INHIBIT_WARNING_ISSUE
|
|
5142 INHIBIT_GC
|
|
5143
|
|
5144 #### The following five flags are defined, but unimplemented:
|
|
5145
|
|
5146 #define INHIBIT_EXISTING_CODING_SYSTEM_DELETION (1<<6)
|
|
5147 #define INHIBIT_EXISTING_CHARSET_DELETION (1<<7)
|
|
5148 #define INHIBIT_PERMANENT_DISPLAY_OBJECT_CREATION (1<<8)
|
|
5149 #define INHIBIT_CODING_SYSTEM_CREATION (1<<9)
|
|
5150 #define INHIBIT_CHARSET_CREATION (1<<10)
|
|
5151
|
|
5152 FLAGS containing CALL_WITH_SUSPENDED_ERRORS is a sign that
|
|
5153 call_with_suspended_errors() was invoked. This exists only for
|
|
5154 debugging purposes -- often we want to break when a signal happens,
|
|
5155 but ignore signals from call_with_suspended_errors(), because they
|
|
5156 occur often and for legitimate reasons.
|
|
5157
|
|
5158 If PROBLEM is non-zero, it should be a pointer to a structure into
|
|
5159 which exact information about any occurring problems (either an
|
|
5160 error or an attempted throw past this boundary).
|
|
5161
|
|
5162 If a problem occurred and aborted operation (error, quit, or
|
|
5163 invalid throw), Qunbound is returned. Otherwise the return value
|
|
5164 from the call to (*fun) (arg) is returned. */
|
|
5165
|
|
5166 Lisp_Object
|
|
5167 call_trapping_problems (Lisp_Object warning_class,
|
867
|
5168 const CIbyte *warning_string,
|
853
|
5169 int flags,
|
|
5170 struct call_trapping_problems_result *problem,
|
|
5171 Lisp_Object (*fun) (void *),
|
|
5172 void *arg)
|
|
5173 {
|
1318
|
5174 int speccount = specpdl_depth ();
|
853
|
5175 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4, gcpro5;
|
|
5176 struct call_trapping_problems package;
|
1333
|
5177 struct call_trapping_problems_result real_problem;
|
2532
|
5178 Lisp_Object opaque, thrown_tag, tem, thrown_backtrace;
|
853
|
5179 int thrown = 0;
|
|
5180
|
|
5181 assert (SYMBOLP (warning_class)); /* sanity-check */
|
|
5182 assert (!NILP (warning_class));
|
|
5183
|
|
5184 flags ^= INTERNAL_INHIBIT_ERRORS | INTERNAL_INHIBIT_THROWS;
|
|
5185
|
|
5186 package.warning_class = warning_class;
|
|
5187 package.warning_string = warning_string;
|
|
5188 package.fun = fun;
|
|
5189 package.arg = arg;
|
|
5190 package.catchtag =
|
|
5191 flags & INTERNAL_INHIBIT_THROWS ? Vcatch_everything_tag :
|
|
5192 flags & INTERNAL_INHIBIT_ERRORS ? make_opaque_ptr (0) :
|
|
5193 Qnil;
|
|
5194 package.error_conditions = Qnil;
|
|
5195 package.data = Qnil;
|
|
5196 package.backtrace = Qnil;
|
|
5197
|
1318
|
5198 flags = set_trapping_problems_flags (flags);
|
853
|
5199
|
|
5200 if (flags & (INTERNAL_INHIBIT_THROWS | INTERNAL_INHIBIT_ERRORS))
|
|
5201 opaque = make_opaque_ptr (&package);
|
|
5202 else
|
|
5203 opaque = Qnil;
|
|
5204
|
|
5205 GCPRO5 (package.catchtag, package.error_conditions, package.data,
|
|
5206 package.backtrace, opaque);
|
|
5207
|
|
5208 if (flags & INTERNAL_INHIBIT_ERRORS)
|
|
5209 /* We need a catch so that our condition-handler can throw back here
|
|
5210 after printing the warning. (We print the warning in the stack
|
|
5211 context of the error, so we can get a backtrace.) */
|
|
5212 tem = internal_catch (package.catchtag, call_trapping_problems_1, opaque,
|
2532
|
5213 &thrown, &thrown_tag, &thrown_backtrace);
|
853
|
5214 else if (flags & INTERNAL_INHIBIT_THROWS)
|
|
5215 /* We skip over the first wrapper, which traps errors. */
|
|
5216 tem = internal_catch (package.catchtag, call_trapping_problems_2, opaque,
|
2532
|
5217 &thrown, &thrown_tag, &thrown_backtrace);
|
853
|
5218 else
|
|
5219 /* Nothing special. */
|
|
5220 tem = (fun) (arg);
|
|
5221
|
1333
|
5222 if (!problem)
|
|
5223 problem = &real_problem;
|
|
5224
|
|
5225 if (!thrown)
|
853
|
5226 {
|
1333
|
5227 problem->caught_error = 0;
|
|
5228 problem->caught_throw = 0;
|
|
5229 problem->error_conditions = Qnil;
|
|
5230 problem->data = Qnil;
|
|
5231 problem->backtrace = Qnil;
|
|
5232 problem->thrown_tag = Qnil;
|
|
5233 problem->thrown_value = Qnil;
|
853
|
5234 }
|
1333
|
5235 else if (EQ (thrown_tag, package.catchtag))
|
853
|
5236 {
|
1333
|
5237 problem->caught_error = 1;
|
|
5238 problem->caught_throw = 0;
|
|
5239 problem->error_conditions = package.error_conditions;
|
|
5240 problem->data = package.data;
|
|
5241 problem->backtrace = package.backtrace;
|
|
5242 problem->thrown_tag = Qnil;
|
|
5243 problem->thrown_value = Qnil;
|
853
|
5244 }
|
1333
|
5245 else
|
|
5246 {
|
|
5247 problem->caught_error = 0;
|
|
5248 problem->caught_throw = 1;
|
|
5249 problem->error_conditions = Qnil;
|
|
5250 problem->data = Qnil;
|
2532
|
5251 problem->backtrace = thrown_backtrace;
|
1333
|
5252 problem->thrown_tag = thrown_tag;
|
|
5253 problem->thrown_value = tem;
|
|
5254 }
|
|
5255
|
|
5256 if (!(flags & INHIBIT_WARNING_ISSUE) && !(flags & POSTPONE_WARNING_ISSUE))
|
|
5257 issue_call_trapping_problems_warning (warning_class, warning_string,
|
|
5258 problem);
|
853
|
5259
|
|
5260 if (!NILP (package.catchtag) &&
|
|
5261 !EQ (package.catchtag, Vcatch_everything_tag))
|
|
5262 free_opaque_ptr (package.catchtag);
|
|
5263
|
|
5264 if (!NILP (opaque))
|
|
5265 free_opaque_ptr (opaque);
|
|
5266
|
|
5267 unbind_to (speccount);
|
|
5268 RETURN_UNGCPRO (thrown ? Qunbound : tem);
|
|
5269 }
|
|
5270
|
|
5271 struct va_call_trapping_problems
|
|
5272 {
|
|
5273 lisp_fn_t fun;
|
|
5274 int nargs;
|
|
5275 Lisp_Object *args;
|
|
5276 };
|
|
5277
|
|
5278 static Lisp_Object
|
|
5279 va_call_trapping_problems_1 (void *ai_mi_madre)
|
|
5280 {
|
|
5281 struct va_call_trapping_problems *ai_no_corrida =
|
|
5282 (struct va_call_trapping_problems *) ai_mi_madre;
|
|
5283 Lisp_Object pegar_no_bumbum;
|
|
5284
|
|
5285 PRIMITIVE_FUNCALL (pegar_no_bumbum, ai_no_corrida->fun,
|
|
5286 ai_no_corrida->args, ai_no_corrida->nargs);
|
|
5287 return pegar_no_bumbum;
|
|
5288 }
|
|
5289
|
|
5290 /* #### document me. */
|
|
5291
|
|
5292 Lisp_Object
|
|
5293 va_call_trapping_problems (Lisp_Object warning_class,
|
867
|
5294 const CIbyte *warning_string,
|
853
|
5295 int flags,
|
|
5296 struct call_trapping_problems_result *problem,
|
|
5297 lisp_fn_t fun, int nargs, ...)
|
|
5298 {
|
|
5299 va_list vargs;
|
|
5300 Lisp_Object args[20];
|
|
5301 int i;
|
|
5302 struct va_call_trapping_problems fazer_invocacao_atrapalhando_problemas;
|
|
5303 struct gcpro gcpro1;
|
|
5304
|
|
5305 assert (nargs >= 0 && nargs < 20);
|
|
5306
|
|
5307 va_start (vargs, nargs);
|
|
5308 for (i = 0; i < nargs; i++)
|
|
5309 args[i] = va_arg (vargs, Lisp_Object);
|
|
5310 va_end (vargs);
|
|
5311
|
|
5312 fazer_invocacao_atrapalhando_problemas.fun = fun;
|
|
5313 fazer_invocacao_atrapalhando_problemas.nargs = nargs;
|
|
5314 fazer_invocacao_atrapalhando_problemas.args = args;
|
|
5315
|
|
5316 GCPRO1_ARRAY (args, nargs);
|
|
5317 RETURN_UNGCPRO
|
|
5318 (call_trapping_problems
|
|
5319 (warning_class, warning_string, flags, problem,
|
|
5320 va_call_trapping_problems_1, &fazer_invocacao_atrapalhando_problemas));
|
|
5321 }
|
|
5322
|
|
5323 /* this is an older interface, barely different from
|
|
5324 va_call_trapping_problems.
|
|
5325
|
|
5326 #### eliminate this or at least merge the ERROR_BEHAVIOR stuff into
|
|
5327 va_call_trapping_problems(). */
|
|
5328
|
|
5329 Lisp_Object
|
|
5330 call_with_suspended_errors (lisp_fn_t fun, Lisp_Object retval,
|
1204
|
5331 Lisp_Object class_, Error_Behavior errb,
|
853
|
5332 int nargs, ...)
|
|
5333 {
|
|
5334 va_list vargs;
|
|
5335 Lisp_Object args[20];
|
|
5336 int i;
|
|
5337 struct va_call_trapping_problems fazer_invocacao_atrapalhando_problemas;
|
|
5338 int flags;
|
|
5339 struct gcpro gcpro1;
|
|
5340
|
1204
|
5341 assert (SYMBOLP (class_)); /* sanity-check */
|
|
5342 assert (!NILP (class_));
|
853
|
5343 assert (nargs >= 0 && nargs < 20);
|
|
5344
|
|
5345 va_start (vargs, nargs);
|
|
5346 for (i = 0; i < nargs; i++)
|
|
5347 args[i] = va_arg (vargs, Lisp_Object);
|
|
5348 va_end (vargs);
|
|
5349
|
|
5350 /* If error-checking is not disabled, just call the function. */
|
|
5351
|
|
5352 if (ERRB_EQ (errb, ERROR_ME))
|
|
5353 {
|
|
5354 Lisp_Object val;
|
|
5355 PRIMITIVE_FUNCALL (val, fun, args, nargs);
|
|
5356 return val;
|
|
5357 }
|
|
5358
|
|
5359 if (ERRB_EQ (errb, ERROR_ME_NOT)) /* person wants no warnings */
|
|
5360 flags = INHIBIT_WARNING_ISSUE | INHIBIT_ENTERING_DEBUGGER;
|
|
5361 else if (ERRB_EQ (errb, ERROR_ME_DEBUG_WARN))
|
|
5362 flags = ISSUE_WARNINGS_AT_DEBUG_LEVEL | INHIBIT_ENTERING_DEBUGGER;
|
|
5363 else
|
|
5364 {
|
|
5365 assert (ERRB_EQ (errb, ERROR_ME_WARN));
|
|
5366 flags = INHIBIT_ENTERING_DEBUGGER;
|
|
5367 }
|
|
5368
|
|
5369 flags |= CALL_WITH_SUSPENDED_ERRORS;
|
|
5370
|
|
5371 fazer_invocacao_atrapalhando_problemas.fun = fun;
|
|
5372 fazer_invocacao_atrapalhando_problemas.nargs = nargs;
|
|
5373 fazer_invocacao_atrapalhando_problemas.args = args;
|
|
5374
|
|
5375 GCPRO1_ARRAY (args, nargs);
|
|
5376 {
|
|
5377 Lisp_Object its_way_too_goddamn_late =
|
|
5378 call_trapping_problems
|
1204
|
5379 (class_, 0, flags, 0, va_call_trapping_problems_1,
|
853
|
5380 &fazer_invocacao_atrapalhando_problemas);
|
|
5381 UNGCPRO;
|
|
5382 if (UNBOUNDP (its_way_too_goddamn_late))
|
|
5383 return retval;
|
|
5384 else
|
|
5385 return its_way_too_goddamn_late;
|
|
5386 }
|
|
5387 }
|
|
5388
|
|
5389 struct calln_trapping_problems
|
|
5390 {
|
|
5391 int nargs;
|
|
5392 Lisp_Object *args;
|
|
5393 };
|
|
5394
|
|
5395 static Lisp_Object
|
|
5396 calln_trapping_problems_1 (void *puta)
|
|
5397 {
|
|
5398 struct calln_trapping_problems *p = (struct calln_trapping_problems *) puta;
|
|
5399
|
|
5400 return Ffuncall (p->nargs, p->args);
|
428
|
5401 }
|
|
5402
|
|
5403 static Lisp_Object
|
853
|
5404 calln_trapping_problems (Lisp_Object warning_class,
|
867
|
5405 const CIbyte *warning_string, int flags,
|
853
|
5406 struct call_trapping_problems_result *problem,
|
|
5407 int nargs, Lisp_Object *args)
|
|
5408 {
|
|
5409 struct calln_trapping_problems foo;
|
|
5410 struct gcpro gcpro1;
|
|
5411
|
|
5412 if (SYMBOLP (args[0]))
|
|
5413 {
|
|
5414 Lisp_Object tem = XSYMBOL (args[0])->function;
|
|
5415 if (NILP (tem) || UNBOUNDP (tem))
|
|
5416 {
|
|
5417 if (problem)
|
|
5418 {
|
|
5419 problem->caught_error = 0;
|
|
5420 problem->caught_throw = 0;
|
|
5421 problem->error_conditions = Qnil;
|
|
5422 problem->data = Qnil;
|
|
5423 problem->backtrace = Qnil;
|
|
5424 problem->thrown_tag = Qnil;
|
|
5425 problem->thrown_value = Qnil;
|
|
5426 }
|
|
5427 return Qnil;
|
|
5428 }
|
|
5429 }
|
|
5430
|
|
5431 foo.nargs = nargs;
|
|
5432 foo.args = args;
|
|
5433
|
|
5434 GCPRO1_ARRAY (args, nargs);
|
|
5435 RETURN_UNGCPRO (call_trapping_problems (warning_class, warning_string,
|
|
5436 flags, problem,
|
|
5437 calln_trapping_problems_1,
|
|
5438 &foo));
|
|
5439 }
|
|
5440
|
|
5441 /* #### fix these functions to follow the calling convention of
|
|
5442 call_trapping_problems! */
|
|
5443
|
|
5444 Lisp_Object
|
867
|
5445 call0_trapping_problems (const CIbyte *warning_string, Lisp_Object function,
|
853
|
5446 int flags)
|
|
5447 {
|
|
5448 return calln_trapping_problems (Qerror, warning_string, flags, 0, 1,
|
|
5449 &function);
|
428
|
5450 }
|
|
5451
|
|
5452 Lisp_Object
|
867
|
5453 call1_trapping_problems (const CIbyte *warning_string, Lisp_Object function,
|
853
|
5454 Lisp_Object object, int flags)
|
|
5455 {
|
|
5456 Lisp_Object args[2];
|
|
5457
|
|
5458 args[0] = function;
|
|
5459 args[1] = object;
|
|
5460
|
|
5461 return calln_trapping_problems (Qerror, warning_string, flags, 0, 2,
|
|
5462 args);
|
|
5463 }
|
|
5464
|
|
5465 Lisp_Object
|
867
|
5466 call2_trapping_problems (const CIbyte *warning_string, Lisp_Object function,
|
853
|
5467 Lisp_Object object1, Lisp_Object object2,
|
|
5468 int flags)
|
|
5469 {
|
|
5470 Lisp_Object args[3];
|
|
5471
|
|
5472 args[0] = function;
|
|
5473 args[1] = object1;
|
|
5474 args[2] = object2;
|
|
5475
|
|
5476 return calln_trapping_problems (Qerror, warning_string, flags, 0, 3,
|
|
5477 args);
|
|
5478 }
|
|
5479
|
|
5480 Lisp_Object
|
867
|
5481 call3_trapping_problems (const CIbyte *warning_string, Lisp_Object function,
|
853
|
5482 Lisp_Object object1, Lisp_Object object2,
|
|
5483 Lisp_Object object3, int flags)
|
|
5484 {
|
|
5485 Lisp_Object args[4];
|
|
5486
|
|
5487 args[0] = function;
|
|
5488 args[1] = object1;
|
|
5489 args[2] = object2;
|
|
5490 args[3] = object3;
|
|
5491
|
|
5492 return calln_trapping_problems (Qerror, warning_string, flags, 0, 4,
|
|
5493 args);
|
|
5494 }
|
|
5495
|
|
5496 Lisp_Object
|
867
|
5497 call4_trapping_problems (const CIbyte *warning_string, Lisp_Object function,
|
853
|
5498 Lisp_Object object1, Lisp_Object object2,
|
|
5499 Lisp_Object object3, Lisp_Object object4,
|
|
5500 int flags)
|
|
5501 {
|
|
5502 Lisp_Object args[5];
|
|
5503
|
|
5504 args[0] = function;
|
|
5505 args[1] = object1;
|
|
5506 args[2] = object2;
|
|
5507 args[3] = object3;
|
|
5508 args[4] = object4;
|
|
5509
|
|
5510 return calln_trapping_problems (Qerror, warning_string, flags, 0, 5,
|
|
5511 args);
|
|
5512 }
|
|
5513
|
|
5514 Lisp_Object
|
867
|
5515 call5_trapping_problems (const CIbyte *warning_string, Lisp_Object function,
|
853
|
5516 Lisp_Object object1, Lisp_Object object2,
|
|
5517 Lisp_Object object3, Lisp_Object object4,
|
|
5518 Lisp_Object object5, int flags)
|
|
5519 {
|
|
5520 Lisp_Object args[6];
|
|
5521
|
|
5522 args[0] = function;
|
|
5523 args[1] = object1;
|
|
5524 args[2] = object2;
|
|
5525 args[3] = object3;
|
|
5526 args[4] = object4;
|
|
5527 args[5] = object5;
|
|
5528
|
|
5529 return calln_trapping_problems (Qerror, warning_string, flags, 0, 6,
|
|
5530 args);
|
|
5531 }
|
|
5532
|
|
5533 struct eval_in_buffer_trapping_problems
|
|
5534 {
|
|
5535 struct buffer *buf;
|
|
5536 Lisp_Object form;
|
|
5537 };
|
|
5538
|
|
5539 static Lisp_Object
|
|
5540 eval_in_buffer_trapping_problems_1 (void *arg)
|
|
5541 {
|
|
5542 struct eval_in_buffer_trapping_problems *p =
|
|
5543 (struct eval_in_buffer_trapping_problems *) arg;
|
|
5544
|
|
5545 return eval_in_buffer (p->buf, p->form);
|
|
5546 }
|
|
5547
|
|
5548 /* #### fix these functions to follow the calling convention of
|
|
5549 call_trapping_problems! */
|
|
5550
|
|
5551 Lisp_Object
|
867
|
5552 eval_in_buffer_trapping_problems (const CIbyte *warning_string,
|
853
|
5553 struct buffer *buf, Lisp_Object form,
|
|
5554 int flags)
|
|
5555 {
|
|
5556 struct eval_in_buffer_trapping_problems p;
|
|
5557 Lisp_Object buffer = wrap_buffer (buf);
|
428
|
5558 struct gcpro gcpro1, gcpro2;
|
|
5559
|
853
|
5560 GCPRO2 (buffer, form);
|
|
5561 p.buf = buf;
|
|
5562 p.form = form;
|
|
5563 RETURN_UNGCPRO (call_trapping_problems (Qerror, warning_string, flags, 0,
|
|
5564 eval_in_buffer_trapping_problems_1,
|
|
5565 &p));
|
|
5566 }
|
|
5567
|
|
5568 Lisp_Object
|
1333
|
5569 run_hook_trapping_problems (Lisp_Object warning_class,
|
853
|
5570 Lisp_Object hook_symbol,
|
|
5571 int flags)
|
|
5572 {
|
1333
|
5573 return run_hook_with_args_trapping_problems (warning_class, 1, &hook_symbol,
|
853
|
5574 RUN_HOOKS_TO_COMPLETION,
|
|
5575 flags);
|
428
|
5576 }
|
|
5577
|
|
5578 static Lisp_Object
|
853
|
5579 safe_run_hook_trapping_problems_1 (void *puta)
|
|
5580 {
|
|
5581 Lisp_Object hook = VOID_TO_LISP (puta);
|
|
5582
|
|
5583 run_hook (hook);
|
428
|
5584 return Qnil;
|
|
5585 }
|
|
5586
|
853
|
5587 /* Same as run_hook_trapping_problems() but also set the hook to nil
|
|
5588 if an error occurs (but not a quit). */
|
|
5589
|
428
|
5590 Lisp_Object
|
1333
|
5591 safe_run_hook_trapping_problems (Lisp_Object warning_class,
|
|
5592 Lisp_Object hook_symbol, int flags)
|
853
|
5593 {
|
428
|
5594 Lisp_Object tem;
|
853
|
5595 struct gcpro gcpro1, gcpro2;
|
|
5596 struct call_trapping_problems_result prob;
|
428
|
5597
|
|
5598 if (!initialized || preparing_for_armageddon)
|
|
5599 return Qnil;
|
|
5600 tem = find_symbol_value (hook_symbol);
|
|
5601 if (NILP (tem) || UNBOUNDP (tem))
|
|
5602 return Qnil;
|
|
5603
|
853
|
5604 GCPRO2 (hook_symbol, tem);
|
1333
|
5605 tem = call_trapping_problems (Qerror, NULL,
|
|
5606 flags | POSTPONE_WARNING_ISSUE,
|
853
|
5607 &prob,
|
|
5608 safe_run_hook_trapping_problems_1,
|
|
5609 LISP_TO_VOID (hook_symbol));
|
1333
|
5610 {
|
|
5611 Lisp_Object hook_name = XSYMBOL_NAME (hook_symbol);
|
|
5612 Ibyte *hook_str = XSTRING_DATA (hook_name);
|
|
5613 Ibyte *err = alloca_ibytes (XSTRING_LENGTH (hook_name) + 100);
|
|
5614
|
|
5615 if (prob.caught_throw || (prob.caught_error && !EQ (prob.error_conditions,
|
|
5616 Qquit)))
|
|
5617 {
|
|
5618 Fset (hook_symbol, Qnil);
|
|
5619 qxesprintf (err, "Error in `%s' (resetting to nil)", hook_str);
|
|
5620 }
|
|
5621 else
|
|
5622 qxesprintf (err, "Quit in `%s'", hook_str);
|
|
5623
|
|
5624
|
|
5625 issue_call_trapping_problems_warning (warning_class, (CIbyte *) err,
|
|
5626 &prob);
|
|
5627 }
|
|
5628
|
|
5629 UNGCPRO;
|
|
5630 return tem;
|
853
|
5631 }
|
|
5632
|
|
5633 struct run_hook_with_args_in_buffer_trapping_problems
|
|
5634 {
|
|
5635 struct buffer *buf;
|
|
5636 int nargs;
|
|
5637 Lisp_Object *args;
|
|
5638 enum run_hooks_condition cond;
|
|
5639 };
|
|
5640
|
|
5641 static Lisp_Object
|
|
5642 run_hook_with_args_in_buffer_trapping_problems_1 (void *puta)
|
|
5643 {
|
|
5644 struct run_hook_with_args_in_buffer_trapping_problems *porra =
|
|
5645 (struct run_hook_with_args_in_buffer_trapping_problems *) puta;
|
|
5646
|
|
5647 return run_hook_with_args_in_buffer (porra->buf, porra->nargs, porra->args,
|
|
5648 porra->cond);
|
|
5649 }
|
|
5650
|
|
5651 /* #### fix these functions to follow the calling convention of
|
|
5652 call_trapping_problems! */
|
428
|
5653
|
|
5654 Lisp_Object
|
1333
|
5655 run_hook_with_args_in_buffer_trapping_problems (Lisp_Object warning_class,
|
853
|
5656 struct buffer *buf, int nargs,
|
|
5657 Lisp_Object *args,
|
|
5658 enum run_hooks_condition cond,
|
|
5659 int flags)
|
|
5660 {
|
|
5661 Lisp_Object sym, val, ret;
|
|
5662 struct run_hook_with_args_in_buffer_trapping_problems diversity_and_distrust;
|
428
|
5663 struct gcpro gcpro1;
|
1333
|
5664 Lisp_Object hook_name;
|
|
5665 Ibyte *hook_str;
|
|
5666 Ibyte *err;
|
428
|
5667
|
|
5668 if (!initialized || preparing_for_armageddon)
|
853
|
5669 /* We need to bail out of here pronto. */
|
428
|
5670 return Qnil;
|
|
5671
|
853
|
5672 GCPRO1_ARRAY (args, nargs);
|
|
5673
|
|
5674 sym = args[0];
|
|
5675 val = symbol_value_in_buffer (sym, wrap_buffer (buf));
|
|
5676 ret = (cond == RUN_HOOKS_UNTIL_FAILURE ? Qt : Qnil);
|
|
5677
|
|
5678 if (UNBOUNDP (val) || NILP (val))
|
|
5679 RETURN_UNGCPRO (ret);
|
|
5680
|
|
5681 diversity_and_distrust.buf = buf;
|
|
5682 diversity_and_distrust.nargs = nargs;
|
|
5683 diversity_and_distrust.args = args;
|
|
5684 diversity_and_distrust.cond = cond;
|
|
5685
|
1333
|
5686 hook_name = XSYMBOL_NAME (args[0]);
|
|
5687 hook_str = XSTRING_DATA (hook_name);
|
|
5688 err = alloca_ibytes (XSTRING_LENGTH (hook_name) + 100);
|
|
5689 qxesprintf (err, "Error in `%s'", hook_str);
|
853
|
5690 RETURN_UNGCPRO
|
|
5691 (call_trapping_problems
|
1333
|
5692 (warning_class, (CIbyte *) err, flags, 0,
|
853
|
5693 run_hook_with_args_in_buffer_trapping_problems_1,
|
|
5694 &diversity_and_distrust));
|
428
|
5695 }
|
|
5696
|
|
5697 Lisp_Object
|
1333
|
5698 run_hook_with_args_trapping_problems (Lisp_Object warning_class,
|
853
|
5699 int nargs,
|
|
5700 Lisp_Object *args,
|
|
5701 enum run_hooks_condition cond,
|
|
5702 int flags)
|
|
5703 {
|
|
5704 return run_hook_with_args_in_buffer_trapping_problems
|
1333
|
5705 (warning_class, current_buffer, nargs, args, cond, flags);
|
428
|
5706 }
|
|
5707
|
|
5708 Lisp_Object
|
1333
|
5709 va_run_hook_with_args_trapping_problems (Lisp_Object warning_class,
|
853
|
5710 Lisp_Object hook_var,
|
|
5711 int nargs, ...)
|
|
5712 {
|
|
5713 /* This function can GC */
|
|
5714 struct gcpro gcpro1;
|
|
5715 int i;
|
|
5716 va_list vargs;
|
|
5717 Lisp_Object *funcall_args = alloca_array (Lisp_Object, 1 + nargs);
|
|
5718 int flags;
|
|
5719
|
|
5720 va_start (vargs, nargs);
|
|
5721 funcall_args[0] = hook_var;
|
|
5722 for (i = 0; i < nargs; i++)
|
|
5723 funcall_args[i + 1] = va_arg (vargs, Lisp_Object);
|
|
5724 flags = va_arg (vargs, int);
|
|
5725 va_end (vargs);
|
|
5726
|
|
5727 GCPRO1_ARRAY (funcall_args, nargs + 1);
|
|
5728 RETURN_UNGCPRO (run_hook_with_args_in_buffer_trapping_problems
|
1333
|
5729 (warning_class, current_buffer, nargs + 1, funcall_args,
|
853
|
5730 RUN_HOOKS_TO_COMPLETION, flags));
|
428
|
5731 }
|
|
5732
|
|
5733 Lisp_Object
|
1333
|
5734 va_run_hook_with_args_in_buffer_trapping_problems (Lisp_Object warning_class,
|
853
|
5735 struct buffer *buf,
|
|
5736 Lisp_Object hook_var,
|
|
5737 int nargs, ...)
|
|
5738 {
|
|
5739 /* This function can GC */
|
|
5740 struct gcpro gcpro1;
|
|
5741 int i;
|
|
5742 va_list vargs;
|
|
5743 Lisp_Object *funcall_args = alloca_array (Lisp_Object, 1 + nargs);
|
|
5744 int flags;
|
|
5745
|
|
5746 va_start (vargs, nargs);
|
|
5747 funcall_args[0] = hook_var;
|
|
5748 for (i = 0; i < nargs; i++)
|
|
5749 funcall_args[i + 1] = va_arg (vargs, Lisp_Object);
|
|
5750 flags = va_arg (vargs, int);
|
|
5751 va_end (vargs);
|
|
5752
|
|
5753 GCPRO1_ARRAY (funcall_args, nargs + 1);
|
|
5754 RETURN_UNGCPRO (run_hook_with_args_in_buffer_trapping_problems
|
1333
|
5755 (warning_class, buf, nargs + 1, funcall_args,
|
853
|
5756 RUN_HOOKS_TO_COMPLETION, flags));
|
428
|
5757 }
|
|
5758
|
|
5759
|
|
5760 /************************************************************************/
|
|
5761 /* The special binding stack */
|
771
|
5762 /* Most C code should simply use specbind() and unbind_to_1(). */
|
428
|
5763 /* When performance is critical, use the macros in backtrace.h. */
|
|
5764 /************************************************************************/
|
|
5765
|
|
5766 #define min_max_specpdl_size 400
|
|
5767
|
|
5768 void
|
647
|
5769 grow_specpdl (EMACS_INT reserved)
|
|
5770 {
|
|
5771 EMACS_INT size_needed = specpdl_depth() + reserved;
|
428
|
5772 if (size_needed >= max_specpdl_size)
|
|
5773 {
|
|
5774 if (max_specpdl_size < min_max_specpdl_size)
|
|
5775 max_specpdl_size = min_max_specpdl_size;
|
|
5776 if (size_needed >= max_specpdl_size)
|
|
5777 {
|
1951
|
5778 /* Leave room for some specpdl in the debugger. */
|
|
5779 max_specpdl_size = size_needed + 100;
|
|
5780 if (max_specpdl_size > specpdl_size)
|
|
5781 {
|
|
5782 specpdl_size = max_specpdl_size;
|
|
5783 XREALLOC_ARRAY (specpdl, struct specbinding, specpdl_size);
|
|
5784 specpdl_ptr = specpdl + specpdl_depth();
|
|
5785 }
|
563
|
5786 signal_continuable_error
|
|
5787 (Qstack_overflow,
|
|
5788 "Variable binding depth exceeds max-specpdl-size", Qunbound);
|
428
|
5789 }
|
|
5790 }
|
|
5791 while (specpdl_size < size_needed)
|
|
5792 {
|
|
5793 specpdl_size *= 2;
|
|
5794 if (specpdl_size > max_specpdl_size)
|
|
5795 specpdl_size = max_specpdl_size;
|
|
5796 }
|
|
5797 XREALLOC_ARRAY (specpdl, struct specbinding, specpdl_size);
|
|
5798 specpdl_ptr = specpdl + specpdl_depth();
|
853
|
5799 check_specbind_stack_sanity ();
|
428
|
5800 }
|
|
5801
|
|
5802
|
|
5803 /* Handle unbinding buffer-local variables */
|
|
5804 static Lisp_Object
|
|
5805 specbind_unwind_local (Lisp_Object ovalue)
|
|
5806 {
|
|
5807 Lisp_Object current = Fcurrent_buffer ();
|
|
5808 Lisp_Object symbol = specpdl_ptr->symbol;
|
853
|
5809 Lisp_Object victim = ovalue;
|
|
5810 Lisp_Object buf = get_buffer (XCAR (victim), 0);
|
|
5811 ovalue = XCDR (victim);
|
428
|
5812
|
|
5813 free_cons (victim);
|
|
5814
|
|
5815 if (NILP (buf))
|
|
5816 {
|
|
5817 /* Deleted buffer -- do nothing */
|
|
5818 }
|
|
5819 else if (symbol_value_buffer_local_info (symbol, XBUFFER (buf)) == 0)
|
|
5820 {
|
|
5821 /* Was buffer-local when binding was made, now no longer is.
|
|
5822 * (kill-local-variable can do this.)
|
|
5823 * Do nothing in this case.
|
|
5824 */
|
|
5825 }
|
|
5826 else if (EQ (buf, current))
|
|
5827 Fset (symbol, ovalue);
|
|
5828 else
|
|
5829 {
|
|
5830 /* Urk! Somebody switched buffers */
|
|
5831 struct gcpro gcpro1;
|
|
5832 GCPRO1 (current);
|
|
5833 Fset_buffer (buf);
|
|
5834 Fset (symbol, ovalue);
|
|
5835 Fset_buffer (current);
|
|
5836 UNGCPRO;
|
|
5837 }
|
|
5838 return symbol;
|
|
5839 }
|
|
5840
|
|
5841 static Lisp_Object
|
|
5842 specbind_unwind_wasnt_local (Lisp_Object buffer)
|
|
5843 {
|
|
5844 Lisp_Object current = Fcurrent_buffer ();
|
|
5845 Lisp_Object symbol = specpdl_ptr->symbol;
|
|
5846
|
|
5847 buffer = get_buffer (buffer, 0);
|
|
5848 if (NILP (buffer))
|
|
5849 {
|
|
5850 /* Deleted buffer -- do nothing */
|
|
5851 }
|
|
5852 else if (symbol_value_buffer_local_info (symbol, XBUFFER (buffer)) == 0)
|
|
5853 {
|
|
5854 /* Was buffer-local when binding was made, now no longer is.
|
|
5855 * (kill-local-variable can do this.)
|
|
5856 * Do nothing in this case.
|
|
5857 */
|
|
5858 }
|
|
5859 else if (EQ (buffer, current))
|
|
5860 Fkill_local_variable (symbol);
|
|
5861 else
|
|
5862 {
|
|
5863 /* Urk! Somebody switched buffers */
|
|
5864 struct gcpro gcpro1;
|
|
5865 GCPRO1 (current);
|
|
5866 Fset_buffer (buffer);
|
|
5867 Fkill_local_variable (symbol);
|
|
5868 Fset_buffer (current);
|
|
5869 UNGCPRO;
|
|
5870 }
|
|
5871 return symbol;
|
|
5872 }
|
|
5873
|
|
5874
|
|
5875 void
|
|
5876 specbind (Lisp_Object symbol, Lisp_Object value)
|
|
5877 {
|
|
5878 SPECBIND (symbol, value);
|
853
|
5879
|
|
5880 check_specbind_stack_sanity ();
|
428
|
5881 }
|
|
5882
|
|
5883 void
|
|
5884 specbind_magic (Lisp_Object symbol, Lisp_Object value)
|
|
5885 {
|
|
5886 int buffer_local =
|
|
5887 symbol_value_buffer_local_info (symbol, current_buffer);
|
|
5888
|
|
5889 if (buffer_local == 0)
|
|
5890 {
|
|
5891 specpdl_ptr->old_value = find_symbol_value (symbol);
|
771
|
5892 specpdl_ptr->func = 0; /* Handled specially by unbind_to_1 */
|
428
|
5893 }
|
|
5894 else if (buffer_local > 0)
|
|
5895 {
|
|
5896 /* Already buffer-local */
|
|
5897 specpdl_ptr->old_value = noseeum_cons (Fcurrent_buffer (),
|
|
5898 find_symbol_value (symbol));
|
|
5899 specpdl_ptr->func = specbind_unwind_local;
|
|
5900 }
|
|
5901 else
|
|
5902 {
|
|
5903 /* About to become buffer-local */
|
|
5904 specpdl_ptr->old_value = Fcurrent_buffer ();
|
|
5905 specpdl_ptr->func = specbind_unwind_wasnt_local;
|
|
5906 }
|
|
5907
|
|
5908 specpdl_ptr->symbol = symbol;
|
|
5909 specpdl_ptr++;
|
|
5910 specpdl_depth_counter++;
|
|
5911
|
|
5912 Fset (symbol, value);
|
853
|
5913
|
|
5914 check_specbind_stack_sanity ();
|
428
|
5915 }
|
|
5916
|
771
|
5917 /* Record an unwind-protect -- FUNCTION will be called with ARG no matter
|
|
5918 whether a normal or non-local exit occurs. (You need to call unbind_to_1()
|
|
5919 before your function returns normally, passing in the integer returned
|
|
5920 by this function.) Note: As long as the unwind-protect exists, ARG is
|
|
5921 automatically GCPRO'd. The return value from FUNCTION is completely
|
|
5922 ignored. #### We should eliminate it entirely. */
|
|
5923
|
|
5924 int
|
428
|
5925 record_unwind_protect (Lisp_Object (*function) (Lisp_Object arg),
|
|
5926 Lisp_Object arg)
|
|
5927 {
|
|
5928 SPECPDL_RESERVE (1);
|
|
5929 specpdl_ptr->func = function;
|
|
5930 specpdl_ptr->symbol = Qnil;
|
|
5931 specpdl_ptr->old_value = arg;
|
|
5932 specpdl_ptr++;
|
|
5933 specpdl_depth_counter++;
|
853
|
5934 check_specbind_stack_sanity ();
|
771
|
5935 return specpdl_depth_counter - 1;
|
|
5936 }
|
|
5937
|
|
5938 static Lisp_Object
|
802
|
5939 restore_lisp_object (Lisp_Object cons)
|
|
5940 {
|
|
5941 Lisp_Object opaque = XCAR (cons);
|
|
5942 Lisp_Object *addr = (Lisp_Object *) get_opaque_ptr (opaque);
|
|
5943 *addr = XCDR (cons);
|
|
5944 free_opaque_ptr (opaque);
|
853
|
5945 free_cons (cons);
|
802
|
5946 return Qnil;
|
|
5947 }
|
|
5948
|
|
5949 /* Establish an unwind-protect which will restore the Lisp_Object pointed to
|
|
5950 by ADDR with the value VAL. */
|
814
|
5951 static int
|
802
|
5952 record_unwind_protect_restoring_lisp_object (Lisp_Object *addr,
|
|
5953 Lisp_Object val)
|
|
5954 {
|
|
5955 Lisp_Object opaque = make_opaque_ptr (addr);
|
|
5956 return record_unwind_protect (restore_lisp_object,
|
|
5957 noseeum_cons (opaque, val));
|
|
5958 }
|
|
5959
|
|
5960 /* Similar to specbind() but for any C variable whose value is a
|
|
5961 Lisp_Object. Sets up an unwind-protect to restore the variable
|
|
5962 pointed to by ADDR to its existing value, and then changes its
|
|
5963 value to NEWVAL. Returns the previous value of specpdl_depth();
|
|
5964 pass this to unbind_to() after you are done. */
|
|
5965 int
|
|
5966 internal_bind_lisp_object (Lisp_Object *addr, Lisp_Object newval)
|
|
5967 {
|
|
5968 int count = specpdl_depth ();
|
|
5969 record_unwind_protect_restoring_lisp_object (addr, *addr);
|
|
5970 *addr = newval;
|
|
5971 return count;
|
|
5972 }
|
|
5973
|
|
5974 static Lisp_Object
|
|
5975 restore_int (Lisp_Object cons)
|
|
5976 {
|
|
5977 Lisp_Object opaque = XCAR (cons);
|
|
5978 Lisp_Object lval = XCDR (cons);
|
|
5979 int *addr = (int *) get_opaque_ptr (opaque);
|
|
5980 int val;
|
|
5981
|
|
5982 if (INTP (lval))
|
|
5983 val = XINT (lval);
|
|
5984 else
|
|
5985 {
|
|
5986 val = (int) get_opaque_ptr (lval);
|
|
5987 free_opaque_ptr (lval);
|
|
5988 }
|
|
5989
|
|
5990 *addr = val;
|
|
5991 free_opaque_ptr (opaque);
|
853
|
5992 free_cons (cons);
|
802
|
5993 return Qnil;
|
|
5994 }
|
|
5995
|
|
5996 /* Establish an unwind-protect which will restore the int pointed to
|
|
5997 by ADDR with the value VAL. This function works correctly with
|
|
5998 all ints, even those that don't fit into a Lisp integer. */
|
1333
|
5999 int
|
802
|
6000 record_unwind_protect_restoring_int (int *addr, int val)
|
|
6001 {
|
|
6002 Lisp_Object opaque = make_opaque_ptr (addr);
|
|
6003 Lisp_Object lval;
|
|
6004
|
|
6005 if (NUMBER_FITS_IN_AN_EMACS_INT (val))
|
|
6006 lval = make_int (val);
|
|
6007 else
|
|
6008 lval = make_opaque_ptr ((void *) val);
|
|
6009 return record_unwind_protect (restore_int, noseeum_cons (opaque, lval));
|
|
6010 }
|
|
6011
|
|
6012 /* Similar to specbind() but for any C variable whose value is an int.
|
|
6013 Sets up an unwind-protect to restore the variable pointed to by
|
|
6014 ADDR to its existing value, and then changes its value to NEWVAL.
|
|
6015 Returns the previous value of specpdl_depth(); pass this to
|
|
6016 unbind_to() after you are done. This function works correctly with
|
|
6017 all ints, even those that don't fit into a Lisp integer. */
|
|
6018 int
|
|
6019 internal_bind_int (int *addr, int newval)
|
|
6020 {
|
|
6021 int count = specpdl_depth ();
|
|
6022 record_unwind_protect_restoring_int (addr, *addr);
|
|
6023 *addr = newval;
|
|
6024 return count;
|
|
6025 }
|
|
6026
|
|
6027 static Lisp_Object
|
771
|
6028 free_pointer (Lisp_Object opaque)
|
|
6029 {
|
1726
|
6030 xfree (get_opaque_ptr (opaque), void *);
|
771
|
6031 free_opaque_ptr (opaque);
|
|
6032 return Qnil;
|
|
6033 }
|
|
6034
|
|
6035 /* Establish an unwind-protect which will free the specified block.
|
|
6036 */
|
|
6037 int
|
|
6038 record_unwind_protect_freeing (void *ptr)
|
|
6039 {
|
|
6040 Lisp_Object opaque = make_opaque_ptr (ptr);
|
|
6041 return record_unwind_protect (free_pointer, opaque);
|
|
6042 }
|
|
6043
|
|
6044 static Lisp_Object
|
|
6045 free_dynarr (Lisp_Object opaque)
|
|
6046 {
|
|
6047 Dynarr_free (get_opaque_ptr (opaque));
|
|
6048 free_opaque_ptr (opaque);
|
|
6049 return Qnil;
|
|
6050 }
|
|
6051
|
|
6052 int
|
|
6053 record_unwind_protect_freeing_dynarr (void *ptr)
|
|
6054 {
|
|
6055 Lisp_Object opaque = make_opaque_ptr (ptr);
|
|
6056 return record_unwind_protect (free_dynarr, opaque);
|
|
6057 }
|
428
|
6058
|
|
6059 /* Unwind the stack till specpdl_depth() == COUNT.
|
|
6060 VALUE is not used, except that, purely as a convenience to the
|
771
|
6061 caller, it is protected from garbage-protection and returned. */
|
428
|
6062 Lisp_Object
|
771
|
6063 unbind_to_1 (int count, Lisp_Object value)
|
428
|
6064 {
|
|
6065 UNBIND_TO_GCPRO (count, value);
|
853
|
6066 check_specbind_stack_sanity ();
|
428
|
6067 return value;
|
|
6068 }
|
|
6069
|
|
6070 /* Don't call this directly.
|
|
6071 Only for use by UNBIND_TO* macros in backtrace.h */
|
|
6072 void
|
|
6073 unbind_to_hairy (int count)
|
|
6074 {
|
442
|
6075 ++specpdl_ptr;
|
|
6076 ++specpdl_depth_counter;
|
|
6077
|
428
|
6078 while (specpdl_depth_counter != count)
|
|
6079 {
|
1313
|
6080 Lisp_Object oquit = Qunbound;
|
|
6081
|
|
6082 /* Do this check BEFORE decrementing the values below, because once
|
|
6083 they're decremented, GC protection is lost on
|
|
6084 specpdl_ptr->old_value. */
|
1322
|
6085 if (specpdl_ptr[-1].func == Fprogn)
|
1313
|
6086 {
|
|
6087 /* Allow QUIT within unwind-protect routines, but defer any
|
|
6088 existing QUIT until afterwards. Only do this, however, for
|
|
6089 unwind-protects established by Lisp code, not by C code
|
|
6090 (e.g. free_opaque_ptr() or something), because the act of
|
|
6091 checking for QUIT can cause all sorts of weird things to
|
|
6092 happen, since it churns the event loop -- redisplay, running
|
|
6093 Lisp, etc. Code should not have to worry about this just
|
|
6094 because of establishing an unwind-protect. */
|
|
6095 check_quit (); /* make Vquit_flag accurate */
|
|
6096 oquit = Vquit_flag;
|
|
6097 Vquit_flag = Qnil;
|
|
6098 }
|
|
6099
|
428
|
6100 --specpdl_ptr;
|
|
6101 --specpdl_depth_counter;
|
|
6102
|
1313
|
6103 /* #### At this point, there is no GC protection on old_value. This
|
|
6104 could be a real problem, depending on what unwind-protect function
|
|
6105 is called. It looks like it just so happens that the ones
|
|
6106 actually called don't have a problem with this, e.g. Fprogn. But
|
|
6107 we should look into fixing this. (Many unwind-protect functions
|
|
6108 free values. Is it a problem if freed values are
|
|
6109 GC-protected?) */
|
428
|
6110 if (specpdl_ptr->func != 0)
|
1313
|
6111 {
|
|
6112 /* An unwind-protect */
|
|
6113 (*specpdl_ptr->func) (specpdl_ptr->old_value);
|
|
6114 }
|
|
6115
|
428
|
6116 else
|
|
6117 {
|
|
6118 /* We checked symbol for validity when we specbound it,
|
|
6119 so only need to call Fset if symbol has magic value. */
|
440
|
6120 Lisp_Symbol *sym = XSYMBOL (specpdl_ptr->symbol);
|
428
|
6121 if (!SYMBOL_VALUE_MAGIC_P (sym->value))
|
|
6122 sym->value = specpdl_ptr->old_value;
|
|
6123 else
|
|
6124 Fset (specpdl_ptr->symbol, specpdl_ptr->old_value);
|
|
6125 }
|
|
6126
|
|
6127 #if 0 /* martin */
|
|
6128 #ifndef EXCEEDINGLY_QUESTIONABLE_CODE
|
|
6129 /* There should never be anything here for us to remove.
|
|
6130 If so, it indicates a logic error in Emacs. Catches
|
|
6131 should get removed when a throw or signal occurs, or
|
|
6132 when a catch or condition-case exits normally. But
|
|
6133 it's too dangerous to just remove this code. --ben */
|
|
6134
|
|
6135 /* Furthermore, this code is not in FSFmacs!!!
|
|
6136 Braino on mly's part? */
|
|
6137 /* If we're unwound past the pdlcount of a catch frame,
|
|
6138 that catch can't possibly still be valid. */
|
|
6139 while (catchlist && catchlist->pdlcount > specpdl_depth_counter)
|
|
6140 {
|
|
6141 catchlist = catchlist->next;
|
|
6142 /* Don't mess with gcprolist, backtrace_list here */
|
|
6143 }
|
|
6144 #endif
|
|
6145 #endif
|
1313
|
6146
|
|
6147 if (!UNBOUNDP (oquit))
|
|
6148 Vquit_flag = oquit;
|
428
|
6149 }
|
853
|
6150 check_specbind_stack_sanity ();
|
428
|
6151 }
|
|
6152
|
|
6153
|
|
6154
|
|
6155 /* Get the value of symbol's global binding, even if that binding is
|
|
6156 not now dynamically visible. May return Qunbound or magic values. */
|
|
6157
|
|
6158 Lisp_Object
|
|
6159 top_level_value (Lisp_Object symbol)
|
|
6160 {
|
|
6161 REGISTER struct specbinding *ptr = specpdl;
|
|
6162
|
|
6163 CHECK_SYMBOL (symbol);
|
|
6164 for (; ptr != specpdl_ptr; ptr++)
|
|
6165 {
|
|
6166 if (EQ (ptr->symbol, symbol))
|
|
6167 return ptr->old_value;
|
|
6168 }
|
|
6169 return XSYMBOL (symbol)->value;
|
|
6170 }
|
|
6171
|
|
6172 #if 0
|
|
6173
|
|
6174 Lisp_Object
|
|
6175 top_level_set (Lisp_Object symbol, Lisp_Object newval)
|
|
6176 {
|
|
6177 REGISTER struct specbinding *ptr = specpdl;
|
|
6178
|
|
6179 CHECK_SYMBOL (symbol);
|
|
6180 for (; ptr != specpdl_ptr; ptr++)
|
|
6181 {
|
|
6182 if (EQ (ptr->symbol, symbol))
|
|
6183 {
|
|
6184 ptr->old_value = newval;
|
|
6185 return newval;
|
|
6186 }
|
|
6187 }
|
|
6188 return Fset (symbol, newval);
|
|
6189 }
|
|
6190
|
|
6191 #endif /* 0 */
|
|
6192
|
|
6193
|
|
6194 /************************************************************************/
|
|
6195 /* Backtraces */
|
|
6196 /************************************************************************/
|
|
6197
|
|
6198 DEFUN ("backtrace-debug", Fbacktrace_debug, 2, 2, 0, /*
|
|
6199 Set the debug-on-exit flag of eval frame LEVEL levels down to FLAG.
|
|
6200 The debugger is entered when that frame exits, if the flag is non-nil.
|
|
6201 */
|
|
6202 (level, flag))
|
|
6203 {
|
|
6204 REGISTER struct backtrace *backlist = backtrace_list;
|
|
6205 REGISTER int i;
|
|
6206
|
|
6207 CHECK_INT (level);
|
|
6208
|
|
6209 for (i = 0; backlist && i < XINT (level); i++)
|
|
6210 {
|
|
6211 backlist = backlist->next;
|
|
6212 }
|
|
6213
|
|
6214 if (backlist)
|
|
6215 backlist->debug_on_exit = !NILP (flag);
|
|
6216
|
|
6217 return flag;
|
|
6218 }
|
|
6219
|
|
6220 static void
|
|
6221 backtrace_specials (int speccount, int speclimit, Lisp_Object stream)
|
|
6222 {
|
|
6223 int printing_bindings = 0;
|
|
6224
|
|
6225 for (; speccount > speclimit; speccount--)
|
|
6226 {
|
|
6227 if (specpdl[speccount - 1].func == 0
|
|
6228 || specpdl[speccount - 1].func == specbind_unwind_local
|
|
6229 || specpdl[speccount - 1].func == specbind_unwind_wasnt_local)
|
|
6230 {
|
826
|
6231 write_c_string (stream, !printing_bindings ? " # bind (" : " ");
|
428
|
6232 Fprin1 (specpdl[speccount - 1].symbol, stream);
|
|
6233 printing_bindings = 1;
|
|
6234 }
|
|
6235 else
|
|
6236 {
|
826
|
6237 if (printing_bindings) write_c_string (stream, ")\n");
|
|
6238 write_c_string (stream, " # (unwind-protect ...)\n");
|
428
|
6239 printing_bindings = 0;
|
|
6240 }
|
|
6241 }
|
826
|
6242 if (printing_bindings) write_c_string (stream, ")\n");
|
428
|
6243 }
|
|
6244
|
1292
|
6245 static Lisp_Object
|
|
6246 backtrace_unevalled_args (Lisp_Object *args)
|
|
6247 {
|
|
6248 if (args)
|
|
6249 return *args;
|
|
6250 else
|
|
6251 return list1 (build_string ("[internal]"));
|
|
6252 }
|
|
6253
|
428
|
6254 DEFUN ("backtrace", Fbacktrace, 0, 2, "", /*
|
|
6255 Print a trace of Lisp function calls currently active.
|
438
|
6256 Optional arg STREAM specifies the output stream to send the backtrace to,
|
444
|
6257 and defaults to the value of `standard-output'.
|
|
6258 Optional second arg DETAILED non-nil means show places where currently
|
|
6259 active variable bindings, catches, condition-cases, and
|
|
6260 unwind-protects, as well as function calls, were made.
|
428
|
6261 */
|
|
6262 (stream, detailed))
|
|
6263 {
|
|
6264 /* This function can GC */
|
|
6265 struct backtrace *backlist = backtrace_list;
|
|
6266 struct catchtag *catches = catchlist;
|
|
6267 int speccount = specpdl_depth();
|
|
6268
|
|
6269 int old_nl = print_escape_newlines;
|
|
6270 int old_pr = print_readably;
|
|
6271 Lisp_Object old_level = Vprint_level;
|
|
6272 Lisp_Object oiq = Vinhibit_quit;
|
|
6273 struct gcpro gcpro1, gcpro2;
|
|
6274
|
|
6275 /* We can't allow quits in here because that could cause the values
|
|
6276 of print_readably and print_escape_newlines to get screwed up.
|
|
6277 Normally we would use a record_unwind_protect but that would
|
|
6278 screw up the functioning of this function. */
|
|
6279 Vinhibit_quit = Qt;
|
|
6280
|
|
6281 entering_debugger = 0;
|
|
6282
|
872
|
6283 if (!NILP (detailed))
|
|
6284 Vprint_level = make_int (50);
|
|
6285 else
|
|
6286 Vprint_level = make_int (3);
|
428
|
6287 print_readably = 0;
|
|
6288 print_escape_newlines = 1;
|
|
6289
|
|
6290 GCPRO2 (stream, old_level);
|
|
6291
|
1261
|
6292 stream = canonicalize_printcharfun (stream);
|
428
|
6293
|
|
6294 for (;;)
|
|
6295 {
|
|
6296 if (!NILP (detailed) && catches && catches->backlist == backlist)
|
|
6297 {
|
|
6298 int catchpdl = catches->pdlcount;
|
438
|
6299 if (speccount > catchpdl
|
|
6300 && specpdl[catchpdl].func == condition_case_unwind)
|
428
|
6301 /* This is a condition-case catchpoint */
|
|
6302 catchpdl = catchpdl + 1;
|
|
6303
|
|
6304 backtrace_specials (speccount, catchpdl, stream);
|
|
6305
|
|
6306 speccount = catches->pdlcount;
|
|
6307 if (catchpdl == speccount)
|
|
6308 {
|
826
|
6309 write_c_string (stream, " # (catch ");
|
428
|
6310 Fprin1 (catches->tag, stream);
|
826
|
6311 write_c_string (stream, " ...)\n");
|
428
|
6312 }
|
|
6313 else
|
|
6314 {
|
826
|
6315 write_c_string (stream, " # (condition-case ... . ");
|
428
|
6316 Fprin1 (Fcdr (Fcar (catches->tag)), stream);
|
826
|
6317 write_c_string (stream, ")\n");
|
428
|
6318 }
|
|
6319 catches = catches->next;
|
|
6320 }
|
|
6321 else if (!backlist)
|
|
6322 break;
|
|
6323 else
|
|
6324 {
|
|
6325 if (!NILP (detailed) && backlist->pdlcount < speccount)
|
|
6326 {
|
|
6327 backtrace_specials (speccount, backlist->pdlcount, stream);
|
|
6328 speccount = backlist->pdlcount;
|
|
6329 }
|
826
|
6330 write_c_string (stream, backlist->debug_on_exit ? "* " : " ");
|
428
|
6331 if (backlist->nargs == UNEVALLED)
|
|
6332 {
|
1292
|
6333 Fprin1 (Fcons (*backlist->function,
|
|
6334 backtrace_unevalled_args (backlist->args)),
|
|
6335 stream);
|
826
|
6336 write_c_string (stream, "\n"); /* from FSFmacs 19.30 */
|
428
|
6337 }
|
|
6338 else
|
|
6339 {
|
|
6340 Lisp_Object tem = *backlist->function;
|
|
6341 Fprin1 (tem, stream); /* This can QUIT */
|
826
|
6342 write_c_string (stream, "(");
|
428
|
6343 if (backlist->nargs == MANY)
|
|
6344 {
|
|
6345 int i;
|
|
6346 Lisp_Object tail = Qnil;
|
|
6347 struct gcpro ngcpro1;
|
|
6348
|
|
6349 NGCPRO1 (tail);
|
|
6350 for (tail = *backlist->args, i = 0;
|
|
6351 !NILP (tail);
|
|
6352 tail = Fcdr (tail), i++)
|
|
6353 {
|
826
|
6354 if (i != 0) write_c_string (stream, " ");
|
428
|
6355 Fprin1 (Fcar (tail), stream);
|
|
6356 }
|
|
6357 NUNGCPRO;
|
|
6358 }
|
|
6359 else
|
|
6360 {
|
|
6361 int i;
|
|
6362 for (i = 0; i < backlist->nargs; i++)
|
|
6363 {
|
826
|
6364 if (!i && EQ (tem, Qbyte_code))
|
|
6365 {
|
|
6366 write_c_string (stream, "\"...\"");
|
|
6367 continue;
|
|
6368 }
|
|
6369 if (i != 0) write_c_string (stream, " ");
|
428
|
6370 Fprin1 (backlist->args[i], stream);
|
|
6371 }
|
|
6372 }
|
826
|
6373 write_c_string (stream, ")\n");
|
428
|
6374 }
|
|
6375 backlist = backlist->next;
|
|
6376 }
|
|
6377 }
|
|
6378 Vprint_level = old_level;
|
|
6379 print_readably = old_pr;
|
|
6380 print_escape_newlines = old_nl;
|
|
6381 UNGCPRO;
|
|
6382 Vinhibit_quit = oiq;
|
|
6383 return Qnil;
|
|
6384 }
|
|
6385
|
|
6386
|
444
|
6387 DEFUN ("backtrace-frame", Fbacktrace_frame, 1, 1, 0, /*
|
|
6388 Return the function and arguments NFRAMES up from current execution point.
|
428
|
6389 If that frame has not evaluated the arguments yet (or is a special form),
|
|
6390 the value is (nil FUNCTION ARG-FORMS...).
|
|
6391 If that frame has evaluated its arguments and called its function already,
|
|
6392 the value is (t FUNCTION ARG-VALUES...).
|
|
6393 A &rest arg is represented as the tail of the list ARG-VALUES.
|
|
6394 FUNCTION is whatever was supplied as car of evaluated list,
|
|
6395 or a lambda expression for macro calls.
|
444
|
6396 If NFRAMES is more than the number of frames, the value is nil.
|
428
|
6397 */
|
|
6398 (nframes))
|
|
6399 {
|
|
6400 REGISTER struct backtrace *backlist = backtrace_list;
|
|
6401 REGISTER int i;
|
|
6402 Lisp_Object tem;
|
|
6403
|
|
6404 CHECK_NATNUM (nframes);
|
|
6405
|
|
6406 /* Find the frame requested. */
|
|
6407 for (i = XINT (nframes); backlist && (i-- > 0);)
|
|
6408 backlist = backlist->next;
|
|
6409
|
|
6410 if (!backlist)
|
|
6411 return Qnil;
|
|
6412 if (backlist->nargs == UNEVALLED)
|
1292
|
6413 return Fcons (Qnil, Fcons (*backlist->function,
|
|
6414 backtrace_unevalled_args (backlist->args)));
|
428
|
6415 else
|
|
6416 {
|
|
6417 if (backlist->nargs == MANY)
|
|
6418 tem = *backlist->args;
|
|
6419 else
|
|
6420 tem = Flist (backlist->nargs, backlist->args);
|
|
6421
|
|
6422 return Fcons (Qt, Fcons (*backlist->function, tem));
|
|
6423 }
|
|
6424 }
|
|
6425
|
|
6426
|
|
6427 /************************************************************************/
|
|
6428 /* Warnings */
|
|
6429 /************************************************************************/
|
|
6430
|
1123
|
6431 static int
|
|
6432 warning_will_be_discarded (Lisp_Object level)
|
|
6433 {
|
|
6434 /* Don't even generate debug warnings if they're going to be discarded,
|
|
6435 to avoid excessive consing. */
|
|
6436 return (EQ (level, Qdebug) && !NILP (Vlog_warning_minimum_level) &&
|
|
6437 !EQ (Vlog_warning_minimum_level, Qdebug));
|
|
6438 }
|
|
6439
|
428
|
6440 void
|
1204
|
6441 warn_when_safe_lispobj (Lisp_Object class_, Lisp_Object level,
|
428
|
6442 Lisp_Object obj)
|
|
6443 {
|
1123
|
6444 if (warning_will_be_discarded (level))
|
793
|
6445 return;
|
1123
|
6446
|
1204
|
6447 obj = list1 (list3 (class_, level, obj));
|
428
|
6448 if (NILP (Vpending_warnings))
|
|
6449 Vpending_warnings = Vpending_warnings_tail = obj;
|
|
6450 else
|
|
6451 {
|
|
6452 Fsetcdr (Vpending_warnings_tail, obj);
|
|
6453 Vpending_warnings_tail = obj;
|
|
6454 }
|
|
6455 }
|
|
6456
|
|
6457 /* #### This should probably accept Lisp objects; but then we have
|
|
6458 to make sure that Feval() isn't called, since it might not be safe.
|
|
6459
|
|
6460 An alternative approach is to just pass some non-string type of
|
|
6461 Lisp_Object to warn_when_safe_lispobj(); `prin1-to-string' will
|
|
6462 automatically be called when it is safe to do so. */
|
|
6463
|
|
6464 void
|
1204
|
6465 warn_when_safe (Lisp_Object class_, Lisp_Object level, const CIbyte *fmt, ...)
|
428
|
6466 {
|
|
6467 Lisp_Object obj;
|
|
6468 va_list args;
|
|
6469
|
1123
|
6470 if (warning_will_be_discarded (level))
|
793
|
6471 return;
|
1123
|
6472
|
428
|
6473 va_start (args, fmt);
|
771
|
6474 obj = emacs_vsprintf_string (CGETTEXT (fmt), args);
|
428
|
6475 va_end (args);
|
|
6476
|
1204
|
6477 warn_when_safe_lispobj (class_, level, obj);
|
428
|
6478 }
|
|
6479
|
|
6480
|
|
6481
|
|
6482
|
|
6483 /************************************************************************/
|
|
6484 /* Initialization */
|
|
6485 /************************************************************************/
|
|
6486
|
|
6487 void
|
|
6488 syms_of_eval (void)
|
|
6489 {
|
442
|
6490 INIT_LRECORD_IMPLEMENTATION (subr);
|
|
6491
|
563
|
6492 DEFSYMBOL (Qinhibit_quit);
|
|
6493 DEFSYMBOL (Qautoload);
|
|
6494 DEFSYMBOL (Qdebug_on_error);
|
|
6495 DEFSYMBOL (Qstack_trace_on_error);
|
|
6496 DEFSYMBOL (Qdebug_on_signal);
|
|
6497 DEFSYMBOL (Qstack_trace_on_signal);
|
|
6498 DEFSYMBOL (Qdebugger);
|
|
6499 DEFSYMBOL (Qmacro);
|
428
|
6500 defsymbol (&Qand_rest, "&rest");
|
|
6501 defsymbol (&Qand_optional, "&optional");
|
|
6502 /* Note that the process code also uses Qexit */
|
563
|
6503 DEFSYMBOL (Qexit);
|
|
6504 DEFSYMBOL (Qsetq);
|
|
6505 DEFSYMBOL (Qinteractive);
|
|
6506 DEFSYMBOL (Qcommandp);
|
|
6507 DEFSYMBOL (Qdefun);
|
|
6508 DEFSYMBOL (Qprogn);
|
|
6509 DEFSYMBOL (Qvalues);
|
|
6510 DEFSYMBOL (Qdisplay_warning);
|
|
6511 DEFSYMBOL (Qrun_hooks);
|
887
|
6512 DEFSYMBOL (Qfinalize_list);
|
563
|
6513 DEFSYMBOL (Qif);
|
428
|
6514
|
|
6515 DEFSUBR (For);
|
|
6516 DEFSUBR (Fand);
|
|
6517 DEFSUBR (Fif);
|
|
6518 DEFSUBR_MACRO (Fwhen);
|
|
6519 DEFSUBR_MACRO (Funless);
|
|
6520 DEFSUBR (Fcond);
|
|
6521 DEFSUBR (Fprogn);
|
|
6522 DEFSUBR (Fprog1);
|
|
6523 DEFSUBR (Fprog2);
|
|
6524 DEFSUBR (Fsetq);
|
|
6525 DEFSUBR (Fquote);
|
|
6526 DEFSUBR (Ffunction);
|
|
6527 DEFSUBR (Fdefun);
|
|
6528 DEFSUBR (Fdefmacro);
|
|
6529 DEFSUBR (Fdefvar);
|
|
6530 DEFSUBR (Fdefconst);
|
|
6531 DEFSUBR (Fuser_variable_p);
|
|
6532 DEFSUBR (Flet);
|
|
6533 DEFSUBR (FletX);
|
|
6534 DEFSUBR (Fwhile);
|
|
6535 DEFSUBR (Fmacroexpand_internal);
|
|
6536 DEFSUBR (Fcatch);
|
|
6537 DEFSUBR (Fthrow);
|
|
6538 DEFSUBR (Funwind_protect);
|
|
6539 DEFSUBR (Fcondition_case);
|
|
6540 DEFSUBR (Fcall_with_condition_handler);
|
|
6541 DEFSUBR (Fsignal);
|
|
6542 DEFSUBR (Finteractive_p);
|
|
6543 DEFSUBR (Fcommandp);
|
|
6544 DEFSUBR (Fcommand_execute);
|
|
6545 DEFSUBR (Fautoload);
|
|
6546 DEFSUBR (Feval);
|
|
6547 DEFSUBR (Fapply);
|
|
6548 DEFSUBR (Ffuncall);
|
|
6549 DEFSUBR (Ffunctionp);
|
|
6550 DEFSUBR (Ffunction_min_args);
|
|
6551 DEFSUBR (Ffunction_max_args);
|
|
6552 DEFSUBR (Frun_hooks);
|
|
6553 DEFSUBR (Frun_hook_with_args);
|
|
6554 DEFSUBR (Frun_hook_with_args_until_success);
|
|
6555 DEFSUBR (Frun_hook_with_args_until_failure);
|
|
6556 DEFSUBR (Fbacktrace_debug);
|
|
6557 DEFSUBR (Fbacktrace);
|
|
6558 DEFSUBR (Fbacktrace_frame);
|
|
6559 }
|
|
6560
|
|
6561 void
|
814
|
6562 init_eval_semi_early (void)
|
428
|
6563 {
|
|
6564 specpdl_ptr = specpdl;
|
|
6565 specpdl_depth_counter = 0;
|
|
6566 catchlist = 0;
|
|
6567 Vcondition_handlers = Qnil;
|
|
6568 backtrace_list = 0;
|
|
6569 Vquit_flag = Qnil;
|
|
6570 debug_on_next_call = 0;
|
|
6571 lisp_eval_depth = 0;
|
|
6572 entering_debugger = 0;
|
|
6573 }
|
|
6574
|
|
6575 void
|
|
6576 reinit_vars_of_eval (void)
|
|
6577 {
|
|
6578 preparing_for_armageddon = 0;
|
|
6579 in_warnings = 0;
|
|
6580 specpdl_size = 50;
|
|
6581 specpdl = xnew_array (struct specbinding, specpdl_size);
|
|
6582 /* XEmacs change: increase these values. */
|
|
6583 max_specpdl_size = 3000;
|
442
|
6584 max_lisp_eval_depth = 1000;
|
|
6585 #ifdef DEFEND_AGAINST_THROW_RECURSION
|
428
|
6586 throw_level = 0;
|
|
6587 #endif
|
2367
|
6588 init_eval_semi_early ();
|
428
|
6589 }
|
|
6590
|
|
6591 void
|
|
6592 vars_of_eval (void)
|
|
6593 {
|
|
6594 DEFVAR_INT ("max-specpdl-size", &max_specpdl_size /*
|
|
6595 Limit on number of Lisp variable bindings & unwind-protects before error.
|
|
6596 */ );
|
|
6597
|
|
6598 DEFVAR_INT ("max-lisp-eval-depth", &max_lisp_eval_depth /*
|
|
6599 Limit on depth in `eval', `apply' and `funcall' before error.
|
|
6600 This limit is to catch infinite recursions for you before they cause
|
|
6601 actual stack overflow in C, which would be fatal for Emacs.
|
|
6602 You can safely make it considerably larger than its default value,
|
|
6603 if that proves inconveniently small.
|
|
6604 */ );
|
|
6605
|
|
6606 DEFVAR_LISP ("quit-flag", &Vquit_flag /*
|
853
|
6607 t causes running Lisp code to abort, unless `inhibit-quit' is non-nil.
|
|
6608 `critical' causes running Lisp code to abort regardless of `inhibit-quit'.
|
|
6609 Normally, you do not need to set this value yourself. It is set to
|
|
6610 t each time a Control-G is detected, and to `critical' each time a
|
|
6611 Shift-Control-G is detected. The XEmacs core C code is littered with
|
|
6612 calls to the QUIT; macro, which check the values of `quit-flag' and
|
2500
|
6613 `inhibit-quit' and ABORT (or more accurately, call (signal 'quit)) if
|
853
|
6614 it's correct to do so.
|
428
|
6615 */ );
|
|
6616 Vquit_flag = Qnil;
|
|
6617
|
|
6618 DEFVAR_LISP ("inhibit-quit", &Vinhibit_quit /*
|
|
6619 Non-nil inhibits C-g quitting from happening immediately.
|
|
6620 Note that `quit-flag' will still be set by typing C-g,
|
|
6621 so a quit will be signalled as soon as `inhibit-quit' is nil.
|
|
6622 To prevent this happening, set `quit-flag' to nil
|
853
|
6623 before making `inhibit-quit' nil.
|
|
6624
|
|
6625 The value of `inhibit-quit' is ignored if a critical quit is
|
|
6626 requested by typing control-shift-G in a window-system frame;
|
|
6627 this is explained in more detail in `quit-flag'.
|
428
|
6628 */ );
|
|
6629 Vinhibit_quit = Qnil;
|
|
6630
|
|
6631 DEFVAR_LISP ("stack-trace-on-error", &Vstack_trace_on_error /*
|
|
6632 *Non-nil means automatically display a backtrace buffer
|
|
6633 after any error that is not handled by a `condition-case'.
|
|
6634 If the value is a list, an error only means to display a backtrace
|
|
6635 if one of its condition symbols appears in the list.
|
|
6636 See also variable `stack-trace-on-signal'.
|
|
6637 */ );
|
|
6638 Vstack_trace_on_error = Qnil;
|
|
6639
|
|
6640 DEFVAR_LISP ("stack-trace-on-signal", &Vstack_trace_on_signal /*
|
|
6641 *Non-nil means automatically display a backtrace buffer
|
|
6642 after any error that is signalled, whether or not it is handled by
|
|
6643 a `condition-case'.
|
|
6644 If the value is a list, an error only means to display a backtrace
|
|
6645 if one of its condition symbols appears in the list.
|
|
6646 See also variable `stack-trace-on-error'.
|
|
6647 */ );
|
|
6648 Vstack_trace_on_signal = Qnil;
|
|
6649
|
|
6650 DEFVAR_LISP ("debug-ignored-errors", &Vdebug_ignored_errors /*
|
|
6651 *List of errors for which the debugger should not be called.
|
|
6652 Each element may be a condition-name or a regexp that matches error messages.
|
|
6653 If any element applies to a given error, that error skips the debugger
|
|
6654 and just returns to top level.
|
|
6655 This overrides the variable `debug-on-error'.
|
|
6656 It does not apply to errors handled by `condition-case'.
|
|
6657 */ );
|
|
6658 Vdebug_ignored_errors = Qnil;
|
|
6659
|
|
6660 DEFVAR_LISP ("debug-on-error", &Vdebug_on_error /*
|
|
6661 *Non-nil means enter debugger if an unhandled error is signalled.
|
|
6662 The debugger will not be entered if the error is handled by
|
|
6663 a `condition-case'.
|
|
6664 If the value is a list, an error only means to enter the debugger
|
|
6665 if one of its condition symbols appears in the list.
|
|
6666 This variable is overridden by `debug-ignored-errors'.
|
|
6667 See also variables `debug-on-quit' and `debug-on-signal'.
|
1123
|
6668
|
|
6669 If this variable is set while XEmacs is running noninteractively (using
|
|
6670 `-batch'), and XEmacs was configured with `--debug' (#define XEMACS_DEBUG
|
|
6671 in the C code), instead of trying to invoke the Lisp debugger (which
|
|
6672 obviously won't work), XEmacs will break out to a C debugger using
|
|
6673 \(force-debugging-signal t). This is useful because debugging
|
|
6674 noninteractive runs of XEmacs is often very difficult, since they typically
|
|
6675 happen as part of sometimes large and complex make suites (e.g. rebuilding
|
2500
|
6676 the XEmacs packages). NOTE: This runs ABORT()!!! (As well as and after
|
1123
|
6677 executing INT 3 under MS Windows, which should invoke a debugger if it's
|
|
6678 active.) This is guaranteed to kill XEmacs! (But in this situation, XEmacs
|
|
6679 is about to die anyway, and if no debugger is present, this will usefully
|
|
6680 dump core.) The most useful way to set this flag when debugging
|
|
6681 noninteractive runs, especially in makefiles, is using the environment
|
|
6682 variable XEMACSDEBUG, like this:
|
771
|
6683
|
|
6684 \(using csh) setenv XEMACSDEBUG '(setq debug-on-error t)'
|
|
6685 \(using bash) export XEMACSDEBUG='(setq debug-on-error t)'
|
428
|
6686 */ );
|
|
6687 Vdebug_on_error = Qnil;
|
|
6688
|
|
6689 DEFVAR_LISP ("debug-on-signal", &Vdebug_on_signal /*
|
|
6690 *Non-nil means enter debugger if an error is signalled.
|
|
6691 The debugger will be entered whether or not the error is handled by
|
|
6692 a `condition-case'.
|
|
6693 If the value is a list, an error only means to enter the debugger
|
|
6694 if one of its condition symbols appears in the list.
|
|
6695 See also variable `debug-on-quit'.
|
1123
|
6696
|
|
6697 This will attempt to enter a C debugger when XEmacs is run noninteractively
|
|
6698 and under the same conditions as described in `debug-on-error'.
|
428
|
6699 */ );
|
|
6700 Vdebug_on_signal = Qnil;
|
|
6701
|
|
6702 DEFVAR_BOOL ("debug-on-quit", &debug_on_quit /*
|
|
6703 *Non-nil means enter debugger if quit is signalled (C-G, for example).
|
|
6704 Does not apply if quit is handled by a `condition-case'. Entering the
|
|
6705 debugger can also be achieved at any time (for X11 console) by typing
|
|
6706 control-shift-G to signal a critical quit.
|
|
6707 */ );
|
|
6708 debug_on_quit = 0;
|
|
6709
|
|
6710 DEFVAR_BOOL ("debug-on-next-call", &debug_on_next_call /*
|
|
6711 Non-nil means enter debugger before next `eval', `apply' or `funcall'.
|
|
6712 */ );
|
|
6713
|
1292
|
6714 DEFVAR_BOOL ("backtrace-with-interal-sections",
|
|
6715 &backtrace_with_internal_sections /*
|
|
6716 Non-nil means backtraces will contain additional information indicating
|
|
6717 when particular sections of the C code have been entered, e.g. redisplay(),
|
|
6718 byte-char conversion, internal-external conversion, etc. This can be
|
|
6719 particularly useful when XEmacs crashes, in helping to pinpoint the problem.
|
|
6720 */ );
|
|
6721 #ifdef ERROR_CHECK_STRUCTURES
|
|
6722 backtrace_with_internal_sections = 1;
|
|
6723 #else
|
|
6724 backtrace_with_internal_sections = 0;
|
|
6725 #endif
|
|
6726
|
428
|
6727 DEFVAR_LISP ("debugger", &Vdebugger /*
|
|
6728 Function to call to invoke debugger.
|
|
6729 If due to frame exit, args are `exit' and the value being returned;
|
|
6730 this function's value will be returned instead of that.
|
|
6731 If due to error, args are `error' and a list of the args to `signal'.
|
|
6732 If due to `apply' or `funcall' entry, one arg, `lambda'.
|
|
6733 If due to `eval' entry, one arg, t.
|
|
6734 */ );
|
|
6735 Vdebugger = Qnil;
|
|
6736
|
853
|
6737 staticpro (&Vcatch_everything_tag);
|
|
6738 Vcatch_everything_tag = make_opaque (OPAQUE_CLEAR, 0);
|
|
6739
|
428
|
6740 staticpro (&Vpending_warnings);
|
|
6741 Vpending_warnings = Qnil;
|
1204
|
6742 dump_add_root_lisp_object (&Vpending_warnings_tail);
|
428
|
6743 Vpending_warnings_tail = Qnil;
|
|
6744
|
793
|
6745 DEFVAR_LISP ("log-warning-minimum-level", &Vlog_warning_minimum_level);
|
|
6746 Vlog_warning_minimum_level = Qinfo;
|
|
6747
|
428
|
6748 staticpro (&Vautoload_queue);
|
|
6749 Vautoload_queue = Qnil;
|
|
6750
|
|
6751 staticpro (&Vcondition_handlers);
|
|
6752
|
853
|
6753 staticpro (&Vdeletable_permanent_display_objects);
|
|
6754 Vdeletable_permanent_display_objects = Qnil;
|
|
6755
|
|
6756 staticpro (&Vmodifiable_buffers);
|
|
6757 Vmodifiable_buffers = Qnil;
|
|
6758
|
|
6759 inhibit_flags = 0;
|
|
6760 }
|