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