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.
|
1292
|
4 Copyright (C) 2000, 2001, 2002, 2003 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 Lisp_Object symbol, tail, val = Qnil;
|
|
1158 int nargs;
|
|
1159 struct gcpro gcpro1;
|
|
1160
|
|
1161 GET_LIST_LENGTH (args, nargs);
|
|
1162
|
|
1163 if (nargs & 1) /* Odd number of arguments? */
|
|
1164 Fsignal (Qwrong_number_of_arguments, list2 (Qsetq, make_int (nargs)));
|
|
1165
|
|
1166 GCPRO1 (val);
|
|
1167
|
|
1168 PROPERTY_LIST_LOOP (tail, symbol, val, args)
|
|
1169 {
|
|
1170 val = Feval (val);
|
|
1171 Fset (symbol, val);
|
|
1172 }
|
|
1173
|
|
1174 UNGCPRO;
|
|
1175 return val;
|
|
1176 }
|
|
1177
|
|
1178 DEFUN ("quote", Fquote, 1, UNEVALLED, 0, /*
|
|
1179 Return the argument, without evaluating it. `(quote x)' yields `x'.
|
|
1180 */
|
|
1181 (args))
|
|
1182 {
|
|
1183 return XCAR (args);
|
|
1184 }
|
|
1185
|
|
1186 DEFUN ("function", Ffunction, 1, UNEVALLED, 0, /*
|
|
1187 Like `quote', but preferred for objects which are functions.
|
|
1188 In byte compilation, `function' causes its argument to be compiled.
|
|
1189 `quote' cannot do that.
|
|
1190 */
|
|
1191 (args))
|
|
1192 {
|
|
1193 return XCAR (args);
|
|
1194 }
|
|
1195
|
|
1196
|
|
1197 /************************************************************************/
|
|
1198 /* Defining functions/variables */
|
|
1199 /************************************************************************/
|
|
1200 static Lisp_Object
|
|
1201 define_function (Lisp_Object name, Lisp_Object defn)
|
|
1202 {
|
|
1203 Ffset (name, defn);
|
|
1204 LOADHIST_ATTACH (name);
|
|
1205 return name;
|
|
1206 }
|
|
1207
|
|
1208 DEFUN ("defun", Fdefun, 2, UNEVALLED, 0, /*
|
|
1209 \(defun NAME ARGLIST [DOCSTRING] BODY...): define NAME as a function.
|
|
1210 The definition is (lambda ARGLIST [DOCSTRING] BODY...).
|
|
1211 See also the function `interactive'.
|
|
1212 */
|
|
1213 (args))
|
|
1214 {
|
|
1215 /* This function can GC */
|
|
1216 return define_function (XCAR (args),
|
|
1217 Fcons (Qlambda, XCDR (args)));
|
|
1218 }
|
|
1219
|
|
1220 DEFUN ("defmacro", Fdefmacro, 2, UNEVALLED, 0, /*
|
|
1221 \(defmacro NAME ARGLIST [DOCSTRING] BODY...): define NAME as a macro.
|
|
1222 The definition is (macro lambda ARGLIST [DOCSTRING] BODY...).
|
|
1223 When the macro is called, as in (NAME ARGS...),
|
|
1224 the function (lambda ARGLIST BODY...) is applied to
|
|
1225 the list ARGS... as it appears in the expression,
|
|
1226 and the result should be a form to be evaluated instead of the original.
|
|
1227 */
|
|
1228 (args))
|
|
1229 {
|
|
1230 /* This function can GC */
|
|
1231 return define_function (XCAR (args),
|
|
1232 Fcons (Qmacro, Fcons (Qlambda, XCDR (args))));
|
|
1233 }
|
|
1234
|
|
1235 DEFUN ("defvar", Fdefvar, 1, UNEVALLED, 0, /*
|
|
1236 \(defvar SYMBOL INITVALUE DOCSTRING): define SYMBOL as a variable.
|
|
1237 You are not required to define a variable in order to use it,
|
|
1238 but the definition can supply documentation and an initial value
|
|
1239 in a way that tags can recognize.
|
|
1240
|
|
1241 INITVALUE is evaluated, and used to set SYMBOL, only if SYMBOL's value is
|
|
1242 void. (However, when you evaluate a defvar interactively, it acts like a
|
|
1243 defconst: SYMBOL's value is always set regardless of whether it's currently
|
|
1244 void.)
|
|
1245 If SYMBOL is buffer-local, its default value is what is set;
|
|
1246 buffer-local values are not affected.
|
|
1247 INITVALUE and DOCSTRING are optional.
|
|
1248 If DOCSTRING starts with *, this variable is identified as a user option.
|
442
|
1249 This means that M-x set-variable recognizes it.
|
428
|
1250 If INITVALUE is missing, SYMBOL's value is not set.
|
|
1251
|
|
1252 In lisp-interaction-mode defvar is treated as defconst.
|
|
1253 */
|
|
1254 (args))
|
|
1255 {
|
|
1256 /* This function can GC */
|
|
1257 Lisp_Object sym = XCAR (args);
|
|
1258
|
|
1259 if (!NILP (args = XCDR (args)))
|
|
1260 {
|
|
1261 Lisp_Object val = XCAR (args);
|
|
1262
|
|
1263 if (NILP (Fdefault_boundp (sym)))
|
|
1264 {
|
|
1265 struct gcpro gcpro1;
|
|
1266 GCPRO1 (val);
|
|
1267 val = Feval (val);
|
|
1268 Fset_default (sym, val);
|
|
1269 UNGCPRO;
|
|
1270 }
|
|
1271
|
|
1272 if (!NILP (args = XCDR (args)))
|
|
1273 {
|
|
1274 Lisp_Object doc = XCAR (args);
|
|
1275 Fput (sym, Qvariable_documentation, doc);
|
|
1276 if (!NILP (args = XCDR (args)))
|
563
|
1277 signal_error (Qwrong_number_of_arguments, "too many arguments", Qunbound);
|
428
|
1278 }
|
|
1279 }
|
|
1280
|
|
1281 #ifdef I18N3
|
|
1282 if (!NILP (Vfile_domain))
|
|
1283 Fput (sym, Qvariable_domain, Vfile_domain);
|
|
1284 #endif
|
|
1285
|
|
1286 LOADHIST_ATTACH (sym);
|
|
1287 return sym;
|
|
1288 }
|
|
1289
|
|
1290 DEFUN ("defconst", Fdefconst, 2, UNEVALLED, 0, /*
|
|
1291 \(defconst SYMBOL INITVALUE DOCSTRING): define SYMBOL as a constant
|
|
1292 variable.
|
|
1293 The intent is that programs do not change this value, but users may.
|
|
1294 Always sets the value of SYMBOL to the result of evalling INITVALUE.
|
|
1295 If SYMBOL is buffer-local, its default value is what is set;
|
|
1296 buffer-local values are not affected.
|
|
1297 DOCSTRING is optional.
|
|
1298 If DOCSTRING starts with *, this variable is identified as a user option.
|
442
|
1299 This means that M-x set-variable recognizes it.
|
428
|
1300
|
|
1301 Note: do not use `defconst' for user options in libraries that are not
|
|
1302 normally loaded, since it is useful for users to be able to specify
|
|
1303 their own values for such variables before loading the library.
|
|
1304 Since `defconst' unconditionally assigns the variable,
|
|
1305 it would override the user's choice.
|
|
1306 */
|
|
1307 (args))
|
|
1308 {
|
|
1309 /* This function can GC */
|
|
1310 Lisp_Object sym = XCAR (args);
|
|
1311 Lisp_Object val = Feval (XCAR (args = XCDR (args)));
|
|
1312 struct gcpro gcpro1;
|
|
1313
|
|
1314 GCPRO1 (val);
|
|
1315
|
|
1316 Fset_default (sym, val);
|
|
1317
|
|
1318 UNGCPRO;
|
|
1319
|
|
1320 if (!NILP (args = XCDR (args)))
|
|
1321 {
|
|
1322 Lisp_Object doc = XCAR (args);
|
|
1323 Fput (sym, Qvariable_documentation, doc);
|
|
1324 if (!NILP (args = XCDR (args)))
|
563
|
1325 signal_error (Qwrong_number_of_arguments, "too many arguments", Qunbound);
|
428
|
1326 }
|
|
1327
|
|
1328 #ifdef I18N3
|
|
1329 if (!NILP (Vfile_domain))
|
|
1330 Fput (sym, Qvariable_domain, Vfile_domain);
|
|
1331 #endif
|
|
1332
|
|
1333 LOADHIST_ATTACH (sym);
|
|
1334 return sym;
|
|
1335 }
|
|
1336
|
|
1337 DEFUN ("user-variable-p", Fuser_variable_p, 1, 1, 0, /*
|
|
1338 Return t if VARIABLE is intended to be set and modified by users.
|
|
1339 \(The alternative is a variable used internally in a Lisp program.)
|
|
1340 Determined by whether the first character of the documentation
|
|
1341 for the variable is `*'.
|
|
1342 */
|
|
1343 (variable))
|
|
1344 {
|
|
1345 Lisp_Object documentation = Fget (variable, Qvariable_documentation, Qnil);
|
|
1346
|
|
1347 return
|
|
1348 ((INTP (documentation) && XINT (documentation) < 0) ||
|
|
1349
|
|
1350 (STRINGP (documentation) &&
|
826
|
1351 (string_byte (documentation, 0) == '*')) ||
|
428
|
1352
|
|
1353 /* If (STRING . INTEGER), a negative integer means a user variable. */
|
|
1354 (CONSP (documentation)
|
|
1355 && STRINGP (XCAR (documentation))
|
|
1356 && INTP (XCDR (documentation))
|
|
1357 && XINT (XCDR (documentation)) < 0)) ?
|
|
1358 Qt : Qnil;
|
|
1359 }
|
|
1360
|
|
1361 DEFUN ("macroexpand-internal", Fmacroexpand_internal, 1, 2, 0, /*
|
|
1362 Return result of expanding macros at top level of FORM.
|
|
1363 If FORM is not a macro call, it is returned unchanged.
|
|
1364 Otherwise, the macro is expanded and the expansion is considered
|
|
1365 in place of FORM. When a non-macro-call results, it is returned.
|
|
1366
|
442
|
1367 The second optional arg ENVIRONMENT specifies an environment of macro
|
428
|
1368 definitions to shadow the loaded ones for use in file byte-compilation.
|
|
1369 */
|
442
|
1370 (form, environment))
|
428
|
1371 {
|
|
1372 /* This function can GC */
|
|
1373 /* With cleanups from Hallvard Furuseth. */
|
|
1374 REGISTER Lisp_Object expander, sym, def, tem;
|
|
1375
|
|
1376 while (1)
|
|
1377 {
|
|
1378 /* Come back here each time we expand a macro call,
|
|
1379 in case it expands into another macro call. */
|
|
1380 if (!CONSP (form))
|
|
1381 break;
|
|
1382 /* Set SYM, give DEF and TEM right values in case SYM is not a symbol. */
|
|
1383 def = sym = XCAR (form);
|
|
1384 tem = Qnil;
|
|
1385 /* Trace symbols aliases to other symbols
|
|
1386 until we get a symbol that is not an alias. */
|
|
1387 while (SYMBOLP (def))
|
|
1388 {
|
|
1389 QUIT;
|
|
1390 sym = def;
|
442
|
1391 tem = Fassq (sym, environment);
|
428
|
1392 if (NILP (tem))
|
|
1393 {
|
|
1394 def = XSYMBOL (sym)->function;
|
|
1395 if (!UNBOUNDP (def))
|
|
1396 continue;
|
|
1397 }
|
|
1398 break;
|
|
1399 }
|
442
|
1400 /* Right now TEM is the result from SYM in ENVIRONMENT,
|
428
|
1401 and if TEM is nil then DEF is SYM's function definition. */
|
|
1402 if (NILP (tem))
|
|
1403 {
|
442
|
1404 /* SYM is not mentioned in ENVIRONMENT.
|
428
|
1405 Look at its function definition. */
|
|
1406 if (UNBOUNDP (def)
|
|
1407 || !CONSP (def))
|
|
1408 /* Not defined or definition not suitable */
|
|
1409 break;
|
|
1410 if (EQ (XCAR (def), Qautoload))
|
|
1411 {
|
|
1412 /* Autoloading function: will it be a macro when loaded? */
|
|
1413 tem = Felt (def, make_int (4));
|
|
1414 if (EQ (tem, Qt) || EQ (tem, Qmacro))
|
|
1415 {
|
|
1416 /* Yes, load it and try again. */
|
970
|
1417 /* do_autoload GCPROs both arguments */
|
428
|
1418 do_autoload (def, sym);
|
|
1419 continue;
|
|
1420 }
|
|
1421 else
|
|
1422 break;
|
|
1423 }
|
|
1424 else if (!EQ (XCAR (def), Qmacro))
|
|
1425 break;
|
|
1426 else expander = XCDR (def);
|
|
1427 }
|
|
1428 else
|
|
1429 {
|
|
1430 expander = XCDR (tem);
|
|
1431 if (NILP (expander))
|
|
1432 break;
|
|
1433 }
|
|
1434 form = apply1 (expander, XCDR (form));
|
|
1435 }
|
|
1436 return form;
|
|
1437 }
|
|
1438
|
|
1439
|
|
1440 /************************************************************************/
|
|
1441 /* Non-local exits */
|
|
1442 /************************************************************************/
|
|
1443
|
1318
|
1444 #ifdef ERROR_CHECK_TRAPPING_PROBLEMS
|
|
1445
|
|
1446 int
|
|
1447 proper_redisplay_wrapping_in_place (void)
|
|
1448 {
|
|
1449 return !in_display
|
|
1450 || ((get_inhibit_flags () & INTERNAL_INHIBIT_ERRORS)
|
|
1451 && (get_inhibit_flags () & INTERNAL_INHIBIT_THROWS));
|
|
1452 }
|
|
1453
|
|
1454 static void
|
|
1455 check_proper_critical_section_nonlocal_exit_protection (void)
|
|
1456 {
|
|
1457 assert_with_message
|
|
1458 (proper_redisplay_wrapping_in_place (),
|
|
1459 "Attempted non-local exit from within redisplay without being properly wrapped");
|
|
1460 }
|
|
1461
|
|
1462 static void
|
|
1463 check_proper_critical_section_lisp_protection (void)
|
|
1464 {
|
|
1465 assert_with_message
|
|
1466 (proper_redisplay_wrapping_in_place (),
|
|
1467 "Attempt to call Lisp code from within redisplay without being properly wrapped");
|
|
1468 }
|
|
1469
|
|
1470 #endif /* ERROR_CHECK_TRAPPING_PROBLEMS */
|
|
1471
|
428
|
1472 DEFUN ("catch", Fcatch, 1, UNEVALLED, 0, /*
|
|
1473 \(catch TAG BODY...): eval BODY allowing nonlocal exits using `throw'.
|
|
1474 TAG is evalled to get the tag to use. Then the BODY is executed.
|
2297
|
1475 Within BODY, (throw TAG) with same (`eq') tag exits BODY and this `catch'.
|
428
|
1476 If no throw happens, `catch' returns the value of the last BODY form.
|
|
1477 If a throw happens, it specifies the value to return from `catch'.
|
|
1478 */
|
|
1479 (args))
|
|
1480 {
|
|
1481 /* This function can GC */
|
|
1482 Lisp_Object tag = Feval (XCAR (args));
|
|
1483 Lisp_Object body = XCDR (args);
|
853
|
1484 return internal_catch (tag, Fprogn, body, 0, 0);
|
428
|
1485 }
|
|
1486
|
|
1487 /* Set up a catch, then call C function FUNC on argument ARG.
|
|
1488 FUNC should return a Lisp_Object.
|
|
1489 This is how catches are done from within C code. */
|
|
1490
|
|
1491 Lisp_Object
|
|
1492 internal_catch (Lisp_Object tag,
|
|
1493 Lisp_Object (*func) (Lisp_Object arg),
|
|
1494 Lisp_Object arg,
|
853
|
1495 int * volatile threw,
|
|
1496 Lisp_Object * volatile thrown_tag)
|
428
|
1497 {
|
|
1498 /* This structure is made part of the chain `catchlist'. */
|
|
1499 struct catchtag c;
|
|
1500
|
|
1501 /* Fill in the components of c, and put it on the list. */
|
|
1502 c.next = catchlist;
|
|
1503 c.tag = tag;
|
853
|
1504 c.actual_tag = Qnil;
|
428
|
1505 c.val = Qnil;
|
|
1506 c.backlist = backtrace_list;
|
|
1507 #if 0 /* FSFmacs */
|
|
1508 /* #### */
|
|
1509 c.handlerlist = handlerlist;
|
|
1510 #endif
|
|
1511 c.lisp_eval_depth = lisp_eval_depth;
|
|
1512 c.pdlcount = specpdl_depth();
|
|
1513 #if 0 /* FSFmacs */
|
|
1514 c.poll_suppress_count = async_timer_suppress_count;
|
|
1515 #endif
|
|
1516 c.gcpro = gcprolist;
|
|
1517 catchlist = &c;
|
|
1518
|
|
1519 /* Call FUNC. */
|
|
1520 if (SETJMP (c.jmp))
|
|
1521 {
|
|
1522 /* Throw works by a longjmp that comes right here. */
|
|
1523 if (threw) *threw = 1;
|
853
|
1524 if (thrown_tag) *thrown_tag = c.actual_tag;
|
428
|
1525 return c.val;
|
|
1526 }
|
|
1527 c.val = (*func) (arg);
|
|
1528 if (threw) *threw = 0;
|
853
|
1529 if (thrown_tag) *thrown_tag = Qnil;
|
428
|
1530 catchlist = c.next;
|
853
|
1531 check_catchlist_sanity ();
|
428
|
1532 return c.val;
|
|
1533 }
|
|
1534
|
|
1535
|
|
1536 /* Unwind the specbind, catch, and handler stacks back to CATCH, and
|
|
1537 jump to that CATCH, returning VALUE as the value of that catch.
|
|
1538
|
2297
|
1539 This is the guts of Fthrow and Fsignal; they differ only in the
|
|
1540 way they choose the catch tag to throw to. A catch tag for a
|
428
|
1541 condition-case form has a TAG of Qnil.
|
|
1542
|
|
1543 Before each catch is discarded, unbind all special bindings and
|
|
1544 execute all unwind-protect clauses made above that catch. Unwind
|
|
1545 the handler stack as we go, so that the proper handlers are in
|
|
1546 effect for each unwind-protect clause we run. At the end, restore
|
|
1547 some static info saved in CATCH, and longjmp to the location
|
|
1548 specified in the
|
|
1549
|
|
1550 This is used for correct unwinding in Fthrow and Fsignal. */
|
|
1551
|
2268
|
1552 static DECLARE_DOESNT_RETURN (unwind_to_catch (struct catchtag *, Lisp_Object,
|
|
1553 Lisp_Object));
|
|
1554
|
|
1555 static DOESNT_RETURN
|
853
|
1556 unwind_to_catch (struct catchtag *c, Lisp_Object val, Lisp_Object tag)
|
428
|
1557 {
|
|
1558 REGISTER int last_time;
|
|
1559
|
|
1560 /* Unwind the specbind, catch, and handler stacks back to CATCH
|
|
1561 Before each catch is discarded, unbind all special bindings
|
|
1562 and execute all unwind-protect clauses made above that catch.
|
|
1563 At the end, restore some static info saved in CATCH,
|
|
1564 and longjmp to the location specified.
|
|
1565 */
|
|
1566
|
|
1567 /* Save the value somewhere it will be GC'ed.
|
|
1568 (Can't overwrite tag slot because an unwind-protect may
|
|
1569 want to throw to this same tag, which isn't yet invalid.) */
|
|
1570 c->val = val;
|
853
|
1571 c->actual_tag = tag;
|
428
|
1572
|
|
1573 #if 0 /* FSFmacs */
|
|
1574 /* Restore the polling-suppression count. */
|
|
1575 set_poll_suppress_count (catch->poll_suppress_count);
|
|
1576 #endif
|
|
1577
|
617
|
1578 #if 1
|
428
|
1579 do
|
|
1580 {
|
|
1581 last_time = catchlist == c;
|
|
1582
|
|
1583 /* Unwind the specpdl stack, and then restore the proper set of
|
|
1584 handlers. */
|
771
|
1585 unbind_to (catchlist->pdlcount);
|
428
|
1586 catchlist = catchlist->next;
|
853
|
1587 check_catchlist_sanity ();
|
428
|
1588 }
|
|
1589 while (! last_time);
|
617
|
1590 #else
|
|
1591 /* Former XEmacs code. This is definitely not as correct because
|
|
1592 there may be a number of catches we're unwinding, and a number
|
|
1593 of unwind-protects in the process. By not undoing the catches till
|
|
1594 the end, there may be invalid catches still current. (This would
|
|
1595 be a particular problem with code like this:
|
|
1596
|
|
1597 (catch 'foo
|
|
1598 (call-some-code-which-does...
|
|
1599 (catch 'bar
|
|
1600 (unwind-protect
|
|
1601 (call-some-code-which-does...
|
|
1602 (catch 'bar
|
|
1603 (call-some-code-which-does...
|
|
1604 (throw 'foo nil))))
|
|
1605 (throw 'bar nil)))))
|
|
1606
|
|
1607 This would try to throw to the inner (catch 'bar)!
|
|
1608
|
|
1609 --ben
|
|
1610 */
|
428
|
1611 /* Unwind the specpdl stack */
|
771
|
1612 unbind_to (c->pdlcount);
|
428
|
1613 catchlist = c->next;
|
853
|
1614 check_catchlist_sanity ();
|
617
|
1615 #endif /* Former code */
|
428
|
1616
|
1204
|
1617 UNWIND_GCPRO_TO (c->gcpro);
|
1292
|
1618 if (profiling_active)
|
|
1619 {
|
|
1620 while (backtrace_list != c->backlist)
|
|
1621 {
|
|
1622 profile_record_unwind (backtrace_list);
|
|
1623 backtrace_list = backtrace_list->next;
|
|
1624 }
|
|
1625 }
|
|
1626 else
|
|
1627 backtrace_list = c->backlist;
|
428
|
1628 lisp_eval_depth = c->lisp_eval_depth;
|
|
1629
|
442
|
1630 #ifdef DEFEND_AGAINST_THROW_RECURSION
|
428
|
1631 throw_level = 0;
|
|
1632 #endif
|
|
1633 LONGJMP (c->jmp, 1);
|
|
1634 }
|
|
1635
|
2268
|
1636 static DECLARE_DOESNT_RETURN (throw_or_bomb_out (Lisp_Object, Lisp_Object, int,
|
|
1637 Lisp_Object, Lisp_Object));
|
|
1638
|
428
|
1639 static DOESNT_RETURN
|
|
1640 throw_or_bomb_out (Lisp_Object tag, Lisp_Object val, int bomb_out_p,
|
|
1641 Lisp_Object sig, Lisp_Object data)
|
|
1642 {
|
442
|
1643 #ifdef DEFEND_AGAINST_THROW_RECURSION
|
428
|
1644 /* die if we recurse more than is reasonable */
|
|
1645 if (++throw_level > 20)
|
793
|
1646 abort ();
|
428
|
1647 #endif
|
|
1648
|
1318
|
1649 #ifdef ERROR_CHECK_TRAPPING_PROBLEMS
|
1123
|
1650 check_proper_critical_section_nonlocal_exit_protection ();
|
1318
|
1651 #endif
|
1123
|
1652
|
428
|
1653 /* If bomb_out_p is t, this is being called from Fsignal as a
|
|
1654 "last resort" when there is no handler for this error and
|
|
1655 the debugger couldn't be invoked, so we are throwing to
|
|
1656 'top-level. If this tag doesn't exist (happens during the
|
|
1657 initialization stages) we would get in an infinite recursive
|
|
1658 Fsignal/Fthrow loop, so instead we bomb out to the
|
|
1659 really-early-error-handler.
|
|
1660
|
|
1661 Note that in fact the only time that the "last resort"
|
|
1662 occurs is when there's no catch for 'top-level -- the
|
|
1663 'top-level catch and the catch-all error handler are
|
|
1664 established at the same time, in initial_command_loop/
|
|
1665 top_level_1.
|
|
1666
|
853
|
1667 [[#### Fix this horrifitude!]]
|
|
1668
|
|
1669 I don't think this is horrifitude, just defensive programming. --ben
|
428
|
1670 */
|
|
1671
|
|
1672 while (1)
|
|
1673 {
|
|
1674 REGISTER struct catchtag *c;
|
|
1675
|
|
1676 #if 0 /* FSFmacs */
|
|
1677 if (!NILP (tag)) /* #### */
|
|
1678 #endif
|
|
1679 for (c = catchlist; c; c = c->next)
|
|
1680 {
|
853
|
1681 if (EQ (c->tag, tag) || EQ (c->tag, Vcatch_everything_tag))
|
|
1682 unwind_to_catch (c, val, tag);
|
428
|
1683 }
|
|
1684 if (!bomb_out_p)
|
|
1685 tag = Fsignal (Qno_catch, list2 (tag, val));
|
|
1686 else
|
|
1687 call1 (Qreally_early_error_handler, Fcons (sig, data));
|
|
1688 }
|
|
1689 }
|
|
1690
|
|
1691 /* See above, where CATCHLIST is defined, for a description of how
|
|
1692 Fthrow() works.
|
|
1693
|
|
1694 Fthrow() is also called by Fsignal(), to do a non-local jump
|
|
1695 back to the appropriate condition-case handler after (maybe)
|
|
1696 the debugger is entered. In that case, TAG is the value
|
|
1697 of Vcondition_handlers that was in place just after the
|
|
1698 condition-case handler was set up. The car of this will be
|
|
1699 some data referring to the handler: Its car will be Qunbound
|
|
1700 (thus, this tag can never be generated by Lisp code), and
|
|
1701 its CDR will be the HANDLERS argument to condition_case_1()
|
|
1702 (either Qerror, Qt, or a list of handlers as in `condition-case').
|
|
1703 This works fine because Fthrow() does not care what TAG was
|
|
1704 passed to it: it just looks up the catch list for something
|
|
1705 that is EQ() to TAG. When it finds it, it will longjmp()
|
|
1706 back to the place that established the catch (in this case,
|
|
1707 condition_case_1). See below for more info.
|
|
1708 */
|
|
1709
|
2268
|
1710 DEFUN_NORETURN ("throw", Fthrow, 2, 2, 0, /*
|
444
|
1711 Throw to the catch for TAG and return VALUE from it.
|
2297
|
1712 Both TAG and VALUE are evalled. Tags are the same iff they are `eq'.
|
428
|
1713 */
|
444
|
1714 (tag, value))
|
|
1715 {
|
|
1716 throw_or_bomb_out (tag, value, 0, Qnil, Qnil); /* Doesn't return */
|
2268
|
1717 RETURN_NOT_REACHED (Qnil);
|
428
|
1718 }
|
|
1719
|
|
1720 DEFUN ("unwind-protect", Funwind_protect, 1, UNEVALLED, 0, /*
|
|
1721 Do BODYFORM, protecting with UNWINDFORMS.
|
|
1722 Usage looks like (unwind-protect BODYFORM UNWINDFORMS...).
|
|
1723 If BODYFORM completes normally, its value is returned
|
|
1724 after executing the UNWINDFORMS.
|
|
1725 If BODYFORM exits nonlocally, the UNWINDFORMS are executed anyway.
|
|
1726 */
|
|
1727 (args))
|
|
1728 {
|
|
1729 /* This function can GC */
|
|
1730 int speccount = specpdl_depth();
|
|
1731
|
|
1732 record_unwind_protect (Fprogn, XCDR (args));
|
771
|
1733 return unbind_to_1 (speccount, Feval (XCAR (args)));
|
428
|
1734 }
|
|
1735
|
|
1736
|
|
1737 /************************************************************************/
|
1292
|
1738 /* Trapping errors */
|
428
|
1739 /************************************************************************/
|
|
1740
|
|
1741 static Lisp_Object
|
|
1742 condition_bind_unwind (Lisp_Object loser)
|
|
1743 {
|
617
|
1744 /* There is no problem freeing stuff here like there is in
|
|
1745 condition_case_unwind(), because there are no outside pointers
|
|
1746 (like the tag below in the catchlist) pointing to the objects. */
|
853
|
1747
|
428
|
1748 /* ((handler-fun . handler-args) ... other handlers) */
|
|
1749 Lisp_Object tem = XCAR (loser);
|
853
|
1750 int first = 1;
|
428
|
1751
|
|
1752 while (CONSP (tem))
|
|
1753 {
|
853
|
1754 Lisp_Object victim = tem;
|
|
1755 if (first && OPAQUE_PTRP (XCAR (victim)))
|
|
1756 free_opaque_ptr (XCAR (victim));
|
|
1757 first = 0;
|
|
1758 tem = XCDR (victim);
|
428
|
1759 free_cons (victim);
|
|
1760 }
|
|
1761
|
|
1762 if (EQ (loser, Vcondition_handlers)) /* may have been rebound to some tail */
|
853
|
1763 Vcondition_handlers = XCDR (loser);
|
|
1764
|
|
1765 free_cons (loser);
|
428
|
1766 return Qnil;
|
|
1767 }
|
|
1768
|
|
1769 static Lisp_Object
|
|
1770 condition_case_unwind (Lisp_Object loser)
|
|
1771 {
|
|
1772 /* ((<unbound> . clauses) ... other handlers */
|
617
|
1773 /* NO! Doing this now leaves the tag deleted in a still-active
|
|
1774 catch. With the recent changes to unwind_to_catch(), the
|
|
1775 evil situation might not happen any more; it certainly could
|
|
1776 happen before because it did. But it's very precarious to rely
|
|
1777 on something like this. #### Instead we should rewrite, adopting
|
|
1778 the FSF's mechanism with a struct handler instead of
|
|
1779 Vcondition_handlers; then we have NO Lisp-object structures used
|
|
1780 to hold all of the values, and there's no possibility either of
|
|
1781 crashes from freeing objects too quickly, or objects not getting
|
|
1782 freed and hanging around till the next GC.
|
|
1783
|
|
1784 In practice, the extra consing here should not matter because
|
|
1785 it only happens when we throw past the condition-case, which almost
|
|
1786 always is the result of an error. Most of the time, there will be
|
|
1787 no error, and we will free the objects below in the main function.
|
|
1788
|
|
1789 --ben
|
|
1790
|
|
1791 DO NOT DO: free_cons (XCAR (loser));
|
|
1792 */
|
|
1793
|
428
|
1794 if (EQ (loser, Vcondition_handlers)) /* may have been rebound to some tail */
|
617
|
1795 Vcondition_handlers = XCDR (loser);
|
|
1796
|
|
1797 /* DO NOT DO: free_cons (loser); */
|
428
|
1798 return Qnil;
|
|
1799 }
|
|
1800
|
|
1801 /* Split out from condition_case_3 so that primitive C callers
|
|
1802 don't have to cons up a lisp handler form to be evaluated. */
|
|
1803
|
|
1804 /* Call a function BFUN of one argument BARG, trapping errors as
|
|
1805 specified by HANDLERS. If no error occurs that is indicated by
|
|
1806 HANDLERS as something to be caught, the return value of this
|
|
1807 function is the return value from BFUN. If such an error does
|
|
1808 occur, HFUN is called, and its return value becomes the
|
|
1809 return value of condition_case_1(). The second argument passed
|
|
1810 to HFUN will always be HARG. The first argument depends on
|
|
1811 HANDLERS:
|
|
1812
|
|
1813 If HANDLERS is Qt, all errors (this includes QUIT, but not
|
|
1814 non-local exits with `throw') cause HFUN to be invoked, and VAL
|
|
1815 (the first argument to HFUN) is a cons (SIG . DATA) of the
|
|
1816 arguments passed to `signal'. The debugger is not invoked even if
|
|
1817 `debug-on-error' was set.
|
|
1818
|
|
1819 A HANDLERS value of Qerror is the same as Qt except that the
|
|
1820 debugger is invoked if `debug-on-error' was set.
|
|
1821
|
|
1822 Otherwise, HANDLERS should be a list of lists (CONDITION-NAME BODY ...)
|
|
1823 exactly as in `condition-case', and errors will be trapped
|
|
1824 as indicated in HANDLERS. VAL (the first argument to HFUN) will
|
|
1825 be a cons whose car is the cons (SIG . DATA) and whose CDR is the
|
|
1826 list (BODY ...) from the appropriate slot in HANDLERS.
|
|
1827
|
|
1828 This function pushes HANDLERS onto the front of Vcondition_handlers
|
|
1829 (actually with a Qunbound marker as well -- see Fthrow() above
|
|
1830 for why), establishes a catch whose tag is this new value of
|
|
1831 Vcondition_handlers, and calls BFUN. When Fsignal() is called,
|
|
1832 it calls Fthrow(), setting TAG to this same new value of
|
|
1833 Vcondition_handlers and setting VAL to the same thing that will
|
|
1834 be passed to HFUN, as above. Fthrow() longjmp()s back to the
|
|
1835 jump point we just established, and we in turn just call the
|
|
1836 HFUN and return its value.
|
|
1837
|
|
1838 For a real condition-case, HFUN will always be
|
|
1839 run_condition_case_handlers() and HARG is the argument VAR
|
|
1840 to condition-case. That function just binds VAR to the cons
|
|
1841 (SIG . DATA) that is the CAR of VAL, and calls the handler
|
|
1842 (BODY ...) that is the CDR of VAL. Note that before calling
|
|
1843 Fthrow(), Fsignal() restored Vcondition_handlers to the value
|
|
1844 it had *before* condition_case_1() was called. This maintains
|
|
1845 consistency (so that the state of things at exit of
|
|
1846 condition_case_1() is the same as at entry), and implies
|
|
1847 that the handler can signal the same error again (possibly
|
|
1848 after processing of its own), without getting in an infinite
|
|
1849 loop. */
|
|
1850
|
|
1851 Lisp_Object
|
|
1852 condition_case_1 (Lisp_Object handlers,
|
|
1853 Lisp_Object (*bfun) (Lisp_Object barg),
|
|
1854 Lisp_Object barg,
|
|
1855 Lisp_Object (*hfun) (Lisp_Object val, Lisp_Object harg),
|
|
1856 Lisp_Object harg)
|
|
1857 {
|
|
1858 int speccount = specpdl_depth();
|
|
1859 struct catchtag c;
|
617
|
1860 struct gcpro gcpro1, gcpro2, gcpro3;
|
428
|
1861
|
|
1862 #if 0 /* FSFmacs */
|
|
1863 c.tag = Qnil;
|
|
1864 #else
|
|
1865 /* Do consing now so out-of-memory error happens up front */
|
|
1866 /* (unbound . stuff) is a special condition-case kludge marker
|
|
1867 which is known specially by Fsignal.
|
617
|
1868 [[ This is an abomination, but to fix it would require either
|
428
|
1869 making condition_case cons (a union of the conditions of the clauses)
|
617
|
1870 or changing the byte-compiler output (no thanks).]]
|
|
1871
|
|
1872 The above comment is clearly wrong. FSF does not do it this way
|
|
1873 and did not change the byte-compiler output. Instead they use a
|
|
1874 `struct handler' to hold the various values (in place of our
|
|
1875 Vcondition_handlers) and chain them together, with pointers from
|
|
1876 the `struct catchtag' to the `struct handler'. We should perhaps
|
|
1877 consider moving to something similar, but not before I merge my
|
|
1878 stderr-proc workspace, which contains changes to these
|
|
1879 functions. --ben */
|
428
|
1880 c.tag = noseeum_cons (noseeum_cons (Qunbound, handlers),
|
|
1881 Vcondition_handlers);
|
|
1882 #endif
|
|
1883 c.val = Qnil;
|
853
|
1884 c.actual_tag = Qnil;
|
428
|
1885 c.backlist = backtrace_list;
|
|
1886 #if 0 /* FSFmacs */
|
|
1887 /* #### */
|
|
1888 c.handlerlist = handlerlist;
|
|
1889 #endif
|
|
1890 c.lisp_eval_depth = lisp_eval_depth;
|
|
1891 c.pdlcount = specpdl_depth();
|
|
1892 #if 0 /* FSFmacs */
|
|
1893 c.poll_suppress_count = async_timer_suppress_count;
|
|
1894 #endif
|
|
1895 c.gcpro = gcprolist;
|
|
1896 /* #### FSFmacs does the following statement *after* the setjmp(). */
|
|
1897 c.next = catchlist;
|
|
1898
|
|
1899 if (SETJMP (c.jmp))
|
|
1900 {
|
|
1901 /* throw does ungcpro, etc */
|
|
1902 return (*hfun) (c.val, harg);
|
|
1903 }
|
|
1904
|
|
1905 record_unwind_protect (condition_case_unwind, c.tag);
|
|
1906
|
|
1907 catchlist = &c;
|
|
1908 #if 0 /* FSFmacs */
|
|
1909 h.handler = handlers;
|
|
1910 h.var = Qnil;
|
|
1911 h.next = handlerlist;
|
|
1912 h.tag = &c;
|
|
1913 handlerlist = &h;
|
|
1914 #else
|
|
1915 Vcondition_handlers = c.tag;
|
|
1916 #endif
|
|
1917 GCPRO1 (harg); /* Somebody has to gc-protect */
|
|
1918 c.val = ((*bfun) (barg));
|
|
1919 UNGCPRO;
|
617
|
1920
|
|
1921 /* Once we change `catchlist' below, the stuff in c will not be GCPRO'd. */
|
|
1922 GCPRO3 (harg, c.val, c.tag);
|
|
1923
|
428
|
1924 catchlist = c.next;
|
853
|
1925 check_catchlist_sanity ();
|
617
|
1926 /* Note: The unbind also resets Vcondition_handlers. Maybe we should
|
|
1927 delete this here. */
|
428
|
1928 Vcondition_handlers = XCDR (c.tag);
|
771
|
1929 unbind_to (speccount);
|
617
|
1930
|
|
1931 UNGCPRO;
|
|
1932 /* free the conses *after* the unbind, because the unbind will run
|
|
1933 condition_case_unwind above. */
|
853
|
1934 free_cons (XCAR (c.tag));
|
|
1935 free_cons (c.tag);
|
617
|
1936 return c.val;
|
428
|
1937 }
|
|
1938
|
|
1939 static Lisp_Object
|
|
1940 run_condition_case_handlers (Lisp_Object val, Lisp_Object var)
|
|
1941 {
|
|
1942 /* This function can GC */
|
|
1943 #if 0 /* FSFmacs */
|
|
1944 if (!NILP (h.var))
|
|
1945 specbind (h.var, c.val);
|
|
1946 val = Fprogn (Fcdr (h.chosen_clause));
|
|
1947
|
|
1948 /* Note that this just undoes the binding of h.var; whoever
|
|
1949 longjmp()ed to us unwound the stack to c.pdlcount before
|
|
1950 throwing. */
|
771
|
1951 unbind_to (c.pdlcount);
|
428
|
1952 return val;
|
|
1953 #else
|
|
1954 int speccount;
|
|
1955
|
|
1956 CHECK_TRUE_LIST (val);
|
|
1957 if (NILP (var))
|
|
1958 return Fprogn (Fcdr (val)); /* tail call */
|
|
1959
|
|
1960 speccount = specpdl_depth();
|
|
1961 specbind (var, Fcar (val));
|
|
1962 val = Fprogn (Fcdr (val));
|
771
|
1963 return unbind_to_1 (speccount, val);
|
428
|
1964 #endif
|
|
1965 }
|
|
1966
|
|
1967 /* Here for bytecode to call non-consfully. This is exactly like
|
|
1968 condition-case except that it takes three arguments rather
|
|
1969 than a single list of arguments. */
|
|
1970 Lisp_Object
|
|
1971 condition_case_3 (Lisp_Object bodyform, Lisp_Object var, Lisp_Object handlers)
|
|
1972 {
|
|
1973 /* This function can GC */
|
|
1974 EXTERNAL_LIST_LOOP_2 (handler, handlers)
|
|
1975 {
|
|
1976 if (NILP (handler))
|
|
1977 ;
|
|
1978 else if (CONSP (handler))
|
|
1979 {
|
|
1980 Lisp_Object conditions = XCAR (handler);
|
|
1981 /* CONDITIONS must a condition name or a list of condition names */
|
|
1982 if (SYMBOLP (conditions))
|
|
1983 ;
|
|
1984 else
|
|
1985 {
|
|
1986 EXTERNAL_LIST_LOOP_2 (condition, conditions)
|
|
1987 if (!SYMBOLP (condition))
|
|
1988 goto invalid_condition_handler;
|
|
1989 }
|
|
1990 }
|
|
1991 else
|
|
1992 {
|
|
1993 invalid_condition_handler:
|
563
|
1994 sferror ("Invalid condition handler", handler);
|
428
|
1995 }
|
|
1996 }
|
|
1997
|
|
1998 CHECK_SYMBOL (var);
|
|
1999
|
|
2000 return condition_case_1 (handlers,
|
|
2001 Feval, bodyform,
|
|
2002 run_condition_case_handlers,
|
|
2003 var);
|
|
2004 }
|
|
2005
|
|
2006 DEFUN ("condition-case", Fcondition_case, 2, UNEVALLED, 0, /*
|
|
2007 Regain control when an error is signalled.
|
|
2008 Usage looks like (condition-case VAR BODYFORM HANDLERS...).
|
|
2009 Executes BODYFORM and returns its value if no error happens.
|
|
2010 Each element of HANDLERS looks like (CONDITION-NAME BODY...)
|
|
2011 where the BODY is made of Lisp expressions.
|
|
2012
|
771
|
2013 A typical usage of `condition-case' looks like this:
|
|
2014
|
|
2015 (condition-case nil
|
|
2016 ;; you need a progn here if you want more than one statement ...
|
|
2017 (progn
|
|
2018 (do-something)
|
|
2019 (do-something-else))
|
|
2020 (error
|
|
2021 (issue-warning-or)
|
|
2022 ;; but strangely, you don't need one here.
|
|
2023 (return-a-value-etc)
|
|
2024 ))
|
|
2025
|
428
|
2026 A handler is applicable to an error if CONDITION-NAME is one of the
|
|
2027 error's condition names. If an error happens, the first applicable
|
|
2028 handler is run. As a special case, a CONDITION-NAME of t matches
|
|
2029 all errors, even those without the `error' condition name on them
|
|
2030 \(e.g. `quit').
|
|
2031
|
|
2032 The car of a handler may be a list of condition names
|
|
2033 instead of a single condition name.
|
|
2034
|
|
2035 When a handler handles an error,
|
|
2036 control returns to the condition-case and the handler BODY... is executed
|
|
2037 with VAR bound to (SIGNALED-CONDITIONS . SIGNAL-DATA).
|
|
2038 VAR may be nil; then you do not get access to the signal information.
|
|
2039
|
|
2040 The value of the last BODY form is returned from the condition-case.
|
|
2041 See also the function `signal' for more info.
|
|
2042
|
|
2043 Note that at the time the condition handler is invoked, the Lisp stack
|
|
2044 and the current catches, condition-cases, and bindings have all been
|
|
2045 popped back to the state they were in just before the call to
|
|
2046 `condition-case'. This means that resignalling the error from
|
|
2047 within the handler will not result in an infinite loop.
|
|
2048
|
|
2049 If you want to establish an error handler that is called with the
|
|
2050 Lisp stack, bindings, etc. as they were when `signal' was called,
|
|
2051 rather than when the handler was set, use `call-with-condition-handler'.
|
|
2052 */
|
|
2053 (args))
|
|
2054 {
|
|
2055 /* This function can GC */
|
|
2056 Lisp_Object var = XCAR (args);
|
|
2057 Lisp_Object bodyform = XCAR (XCDR (args));
|
|
2058 Lisp_Object handlers = XCDR (XCDR (args));
|
|
2059 return condition_case_3 (bodyform, var, handlers);
|
|
2060 }
|
|
2061
|
|
2062 DEFUN ("call-with-condition-handler", Fcall_with_condition_handler, 2, MANY, 0, /*
|
|
2063 Regain control when an error is signalled, without popping the stack.
|
|
2064 Usage looks like (call-with-condition-handler HANDLER FUNCTION &rest ARGS).
|
|
2065 This function is similar to `condition-case', but the handler is invoked
|
|
2066 with the same environment (Lisp stack, bindings, catches, condition-cases)
|
|
2067 that was current when `signal' was called, rather than when the handler
|
|
2068 was established.
|
|
2069
|
|
2070 HANDLER should be a function of one argument, which is a cons of the args
|
|
2071 \(SIG . DATA) that were passed to `signal'. It is invoked whenever
|
|
2072 `signal' is called (this differs from `condition-case', which allows
|
|
2073 you to specify which errors are trapped). If the handler function
|
|
2074 returns, `signal' continues as if the handler were never invoked.
|
|
2075 \(It continues to look for handlers established earlier than this one,
|
|
2076 and invokes the standard error-handler if none is found.)
|
|
2077 */
|
|
2078 (int nargs, Lisp_Object *args)) /* Note! Args side-effected! */
|
|
2079 {
|
|
2080 /* This function can GC */
|
|
2081 int speccount = specpdl_depth();
|
|
2082 Lisp_Object tem;
|
|
2083
|
853
|
2084 tem = Ffunction_max_args (args[0]);
|
|
2085 if (! (XINT (Ffunction_min_args (args[0])) <= 1
|
|
2086 && (NILP (tem) || 1 <= XINT (tem))))
|
|
2087 invalid_argument ("Must be function of one argument", args[0]);
|
|
2088
|
|
2089 /* (handler-fun . handler-args) but currently there are no handler-args */
|
428
|
2090 tem = noseeum_cons (list1 (args[0]), Vcondition_handlers);
|
|
2091 record_unwind_protect (condition_bind_unwind, tem);
|
|
2092 Vcondition_handlers = tem;
|
|
2093
|
|
2094 /* Caller should have GC-protected args */
|
771
|
2095 return unbind_to_1 (speccount, Ffuncall (nargs - 1, args + 1));
|
428
|
2096 }
|
|
2097
|
853
|
2098 /* This is the C version of the above function. It calls FUN, passing it
|
|
2099 ARG, first setting up HANDLER to catch signals in the environment in
|
|
2100 which they were signalled. (HANDLER is only invoked if there was no
|
|
2101 handler (either from condition-case or call-with-condition-handler) set
|
|
2102 later on that handled the signal; therefore, this is a real error.
|
|
2103
|
|
2104 HANDLER is invoked with three arguments: the ERROR-SYMBOL and DATA as
|
|
2105 passed to `signal', and HANDLER_ARG. Originally I made HANDLER_ARG and
|
|
2106 ARG be void * to facilitate passing structures, but I changed to
|
|
2107 Lisp_Objects because all the other C interfaces to catch/condition-case/etc.
|
|
2108 take Lisp_Objects, and it is easy enough to use make_opaque_ptr() et al.
|
|
2109 to convert between Lisp_Objects and structure pointers. */
|
|
2110
|
|
2111 Lisp_Object
|
|
2112 call_with_condition_handler (Lisp_Object (*handler) (Lisp_Object, Lisp_Object,
|
|
2113 Lisp_Object),
|
|
2114 Lisp_Object handler_arg,
|
|
2115 Lisp_Object (*fun) (Lisp_Object),
|
|
2116 Lisp_Object arg)
|
|
2117 {
|
|
2118 /* This function can GC */
|
1111
|
2119 int speccount = specpdl_depth ();
|
853
|
2120 Lisp_Object tem;
|
|
2121
|
|
2122 /* ((handler-fun . (handler-arg . nil)) ... ) */
|
1111
|
2123 tem = noseeum_cons (noseeum_cons (make_opaque_ptr ((void *) handler),
|
853
|
2124 noseeum_cons (handler_arg, Qnil)),
|
|
2125 Vcondition_handlers);
|
|
2126 record_unwind_protect (condition_bind_unwind, tem);
|
|
2127 Vcondition_handlers = tem;
|
|
2128
|
|
2129 return unbind_to_1 (speccount, (*fun) (arg));
|
|
2130 }
|
|
2131
|
428
|
2132 static int
|
|
2133 condition_type_p (Lisp_Object type, Lisp_Object conditions)
|
|
2134 {
|
|
2135 if (EQ (type, Qt))
|
|
2136 /* (condition-case c # (t c)) catches -all- signals
|
|
2137 * Use with caution! */
|
|
2138 return 1;
|
|
2139
|
|
2140 if (SYMBOLP (type))
|
|
2141 return !NILP (Fmemq (type, conditions));
|
|
2142
|
|
2143 for (; CONSP (type); type = XCDR (type))
|
|
2144 if (!NILP (Fmemq (XCAR (type), conditions)))
|
|
2145 return 1;
|
|
2146
|
|
2147 return 0;
|
|
2148 }
|
|
2149
|
|
2150 static Lisp_Object
|
|
2151 return_from_signal (Lisp_Object value)
|
|
2152 {
|
|
2153 #if 1
|
|
2154 /* Most callers are not prepared to handle gc if this
|
|
2155 returns. So, since this feature is not very useful,
|
|
2156 take it out. */
|
|
2157 /* Have called debugger; return value to signaller */
|
|
2158 return value;
|
|
2159 #else /* But the reality is that that stinks, because: */
|
|
2160 /* GACK!!! Really want some way for debug-on-quit errors
|
|
2161 to be continuable!! */
|
563
|
2162 signal_error (Qunimplemented,
|
|
2163 "Returning a value from an error is no longer supported",
|
|
2164 Qunbound);
|
428
|
2165 #endif
|
|
2166 }
|
|
2167
|
|
2168
|
|
2169 /************************************************************************/
|
|
2170 /* the workhorse error-signaling function */
|
|
2171 /************************************************************************/
|
|
2172
|
853
|
2173 /* This exists only for debugging purposes, as a place to put a breakpoint
|
|
2174 that won't get signalled for errors occurring when
|
|
2175 call_with_suspended_errors() was invoked. */
|
|
2176
|
872
|
2177 /* Don't make static or it might be compiled away */
|
|
2178 void signal_1 (void);
|
|
2179
|
|
2180 void
|
853
|
2181 signal_1 (void)
|
|
2182 {
|
|
2183 }
|
|
2184
|
428
|
2185 /* #### This function has not been synched with FSF. It diverges
|
|
2186 significantly. */
|
|
2187
|
853
|
2188 /* The simplest external error function: it would be called
|
|
2189 signal_continuable_error() in the terminology below, but it's
|
|
2190 Lisp-callable. */
|
|
2191
|
|
2192 DEFUN ("signal", Fsignal, 2, 2, 0, /*
|
|
2193 Signal a continuable error. Args are ERROR-SYMBOL, and associated DATA.
|
|
2194 An error symbol is a symbol defined using `define-error'.
|
|
2195 DATA should be a list. Its elements are printed as part of the error message.
|
|
2196 If the signal is handled, DATA is made available to the handler.
|
|
2197 See also the function `signal-error', and the functions to handle errors:
|
|
2198 `condition-case' and `call-with-condition-handler'.
|
|
2199
|
|
2200 Note that this function can return, if the debugger is invoked and the
|
|
2201 user invokes the "return from signal" option.
|
|
2202 */
|
|
2203 (error_symbol, data))
|
428
|
2204 {
|
|
2205 /* This function can GC */
|
853
|
2206 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4;
|
|
2207 Lisp_Object conditions = Qnil;
|
|
2208 Lisp_Object handlers = Qnil;
|
428
|
2209 /* signal_call_debugger() could get called more than once
|
|
2210 (once when a call-with-condition-handler is about to
|
|
2211 be dealt with, and another when a condition-case handler
|
|
2212 is about to be invoked). So make sure the debugger and/or
|
|
2213 stack trace aren't done more than once. */
|
|
2214 int stack_trace_displayed = 0;
|
|
2215 int debugger_entered = 0;
|
853
|
2216
|
|
2217 /* Fsignal() is one of these functions that's called all the time
|
|
2218 with newly-created Lisp objects. We allow this; but we must GC-
|
|
2219 protect the objects because all sorts of weird stuff could
|
|
2220 happen. */
|
|
2221
|
|
2222 GCPRO4 (conditions, handlers, error_symbol, data);
|
|
2223
|
|
2224 if (!(inhibit_flags & CALL_WITH_SUSPENDED_ERRORS))
|
|
2225 signal_1 ();
|
428
|
2226
|
|
2227 if (!initialized)
|
|
2228 {
|
|
2229 /* who knows how much has been initialized? Safest bet is
|
|
2230 just to bomb out immediately. */
|
771
|
2231 stderr_out ("Error before initialization is complete!\n");
|
428
|
2232 abort ();
|
|
2233 }
|
|
2234
|
1123
|
2235 assert (!gc_in_progress);
|
|
2236
|
|
2237 /* We abort if in_display and we are not protected, as garbage
|
|
2238 collections and non-local exits will invariably be fatal, but in
|
|
2239 messy, difficult-to-debug ways. See enter_redisplay_critical_section().
|
|
2240 */
|
|
2241
|
1318
|
2242 #ifdef ERROR_CHECK_TRAPPING_PROBLEMS
|
1123
|
2243 check_proper_critical_section_nonlocal_exit_protection ();
|
1318
|
2244 #endif
|
428
|
2245
|
853
|
2246 conditions = Fget (error_symbol, Qerror_conditions, Qnil);
|
428
|
2247
|
|
2248 for (handlers = Vcondition_handlers;
|
|
2249 CONSP (handlers);
|
|
2250 handlers = XCDR (handlers))
|
|
2251 {
|
|
2252 Lisp_Object handler_fun = XCAR (XCAR (handlers));
|
|
2253 Lisp_Object handler_data = XCDR (XCAR (handlers));
|
|
2254 Lisp_Object outer_handlers = XCDR (handlers);
|
|
2255
|
|
2256 if (!UNBOUNDP (handler_fun))
|
|
2257 {
|
|
2258 /* call-with-condition-handler */
|
|
2259 Lisp_Object tem;
|
|
2260 Lisp_Object all_handlers = Vcondition_handlers;
|
|
2261 struct gcpro ngcpro1;
|
|
2262 NGCPRO1 (all_handlers);
|
|
2263 Vcondition_handlers = outer_handlers;
|
|
2264
|
853
|
2265 tem = signal_call_debugger (conditions, error_symbol, data,
|
428
|
2266 outer_handlers, 1,
|
|
2267 &stack_trace_displayed,
|
|
2268 &debugger_entered);
|
|
2269 if (!UNBOUNDP (tem))
|
|
2270 RETURN_NUNGCPRO (return_from_signal (tem));
|
|
2271
|
853
|
2272 if (OPAQUE_PTRP (handler_fun))
|
|
2273 {
|
|
2274 if (NILP (handler_data))
|
|
2275 {
|
|
2276 Lisp_Object (*hfun) (Lisp_Object, Lisp_Object) =
|
|
2277 (Lisp_Object (*) (Lisp_Object, Lisp_Object))
|
|
2278 (get_opaque_ptr (handler_fun));
|
|
2279
|
|
2280 tem = (*hfun) (error_symbol, data);
|
|
2281 }
|
|
2282 else
|
|
2283 {
|
|
2284 Lisp_Object (*hfun) (Lisp_Object, Lisp_Object, Lisp_Object) =
|
|
2285 (Lisp_Object (*) (Lisp_Object, Lisp_Object, Lisp_Object))
|
|
2286 (get_opaque_ptr (handler_fun));
|
|
2287
|
|
2288 assert (NILP (XCDR (handler_data)));
|
|
2289 tem = (*hfun) (error_symbol, data, XCAR (handler_data));
|
|
2290 }
|
|
2291 }
|
|
2292 else
|
|
2293 {
|
|
2294 tem = Fcons (error_symbol, data);
|
|
2295 if (NILP (handler_data))
|
|
2296 tem = call1 (handler_fun, tem);
|
|
2297 else
|
|
2298 {
|
|
2299 /* (This code won't be used (for now?).) */
|
|
2300 struct gcpro nngcpro1;
|
|
2301 Lisp_Object args[3];
|
|
2302 NNGCPRO1 (args[0]);
|
|
2303 nngcpro1.nvars = 3;
|
|
2304 args[0] = handler_fun;
|
|
2305 args[1] = tem;
|
|
2306 args[2] = handler_data;
|
|
2307 nngcpro1.var = args;
|
|
2308 tem = Fapply (3, args);
|
|
2309 NNUNGCPRO;
|
|
2310 }
|
|
2311 }
|
428
|
2312 NUNGCPRO;
|
|
2313 #if 0
|
|
2314 if (!EQ (tem, Qsignal))
|
|
2315 return return_from_signal (tem);
|
|
2316 #endif
|
|
2317 /* If handler didn't throw, try another handler */
|
|
2318 Vcondition_handlers = all_handlers;
|
|
2319 }
|
|
2320
|
|
2321 /* It's a condition-case handler */
|
|
2322
|
|
2323 /* t is used by handlers for all conditions, set up by C code.
|
|
2324 * debugger is not called even if debug_on_error */
|
|
2325 else if (EQ (handler_data, Qt))
|
|
2326 {
|
|
2327 UNGCPRO;
|
853
|
2328 return Fthrow (handlers, Fcons (error_symbol, data));
|
428
|
2329 }
|
|
2330 /* `error' is used similarly to the way `t' is used, but in
|
|
2331 addition it invokes the debugger if debug_on_error.
|
|
2332 This is normally used for the outer command-loop error
|
|
2333 handler. */
|
|
2334 else if (EQ (handler_data, Qerror))
|
|
2335 {
|
853
|
2336 Lisp_Object tem = signal_call_debugger (conditions, error_symbol,
|
|
2337 data,
|
428
|
2338 outer_handlers, 0,
|
|
2339 &stack_trace_displayed,
|
|
2340 &debugger_entered);
|
|
2341
|
|
2342 UNGCPRO;
|
|
2343 if (!UNBOUNDP (tem))
|
|
2344 return return_from_signal (tem);
|
|
2345
|
853
|
2346 tem = Fcons (error_symbol, data);
|
428
|
2347 return Fthrow (handlers, tem);
|
|
2348 }
|
|
2349 else
|
|
2350 {
|
|
2351 /* handler established by real (Lisp) condition-case */
|
|
2352 Lisp_Object h;
|
|
2353
|
|
2354 for (h = handler_data; CONSP (h); h = Fcdr (h))
|
|
2355 {
|
|
2356 Lisp_Object clause = Fcar (h);
|
|
2357 Lisp_Object tem = Fcar (clause);
|
|
2358
|
|
2359 if (condition_type_p (tem, conditions))
|
|
2360 {
|
853
|
2361 tem = signal_call_debugger (conditions, error_symbol, data,
|
428
|
2362 outer_handlers, 1,
|
|
2363 &stack_trace_displayed,
|
|
2364 &debugger_entered);
|
|
2365 UNGCPRO;
|
|
2366 if (!UNBOUNDP (tem))
|
|
2367 return return_from_signal (tem);
|
|
2368
|
|
2369 /* Doesn't return */
|
853
|
2370 tem = Fcons (Fcons (error_symbol, data), Fcdr (clause));
|
428
|
2371 return Fthrow (handlers, tem);
|
|
2372 }
|
|
2373 }
|
|
2374 }
|
|
2375 }
|
|
2376
|
|
2377 /* If no handler is present now, try to run the debugger,
|
|
2378 and if that fails, throw to top level.
|
|
2379
|
|
2380 #### The only time that no handler is present is during
|
|
2381 temacs or perhaps very early in XEmacs. In both cases,
|
|
2382 there is no 'top-level catch. (That's why the
|
|
2383 "bomb-out" hack was added.)
|
|
2384
|
853
|
2385 [[#### Fix this horrifitude!]]
|
|
2386
|
|
2387 I don't think this is horrifitude, but just defensive coding. --ben */
|
|
2388
|
|
2389 signal_call_debugger (conditions, error_symbol, data, Qnil, 0,
|
428
|
2390 &stack_trace_displayed,
|
|
2391 &debugger_entered);
|
|
2392 UNGCPRO;
|
853
|
2393 throw_or_bomb_out (Qtop_level, Qt, 1, error_symbol,
|
|
2394 data); /* Doesn't return */
|
2268
|
2395 RETURN_NOT_REACHED (Qnil);
|
428
|
2396 }
|
|
2397
|
|
2398 /****************** Error functions class 1 ******************/
|
|
2399
|
|
2400 /* Class 1: General functions that signal an error.
|
|
2401 These functions take an error type and a list of associated error
|
|
2402 data. */
|
|
2403
|
853
|
2404 /* No signal_continuable_error_1(); it's called Fsignal(). */
|
428
|
2405
|
|
2406 /* Signal a non-continuable error. */
|
|
2407
|
|
2408 DOESNT_RETURN
|
563
|
2409 signal_error_1 (Lisp_Object sig, Lisp_Object data)
|
428
|
2410 {
|
|
2411 for (;;)
|
|
2412 Fsignal (sig, data);
|
|
2413 }
|
853
|
2414
|
|
2415 #ifdef ERROR_CHECK_CATCH
|
|
2416
|
|
2417 void
|
|
2418 check_catchlist_sanity (void)
|
|
2419 {
|
|
2420 #if 0
|
|
2421 /* vou me tomar no cu! i just masked andy's missing-unbind
|
|
2422 bug! */
|
442
|
2423 struct catchtag *c;
|
|
2424 int found_error_tag = 0;
|
|
2425
|
|
2426 for (c = catchlist; c; c = c->next)
|
|
2427 {
|
|
2428 if (EQ (c->tag, Qunbound_suspended_errors_tag))
|
|
2429 {
|
|
2430 found_error_tag = 1;
|
|
2431 break;
|
|
2432 }
|
|
2433 }
|
|
2434
|
|
2435 assert (found_error_tag || NILP (Vcurrent_error_state));
|
853
|
2436 #endif /* vou me tomar no cul */
|
|
2437 }
|
|
2438
|
|
2439 void
|
|
2440 check_specbind_stack_sanity (void)
|
|
2441 {
|
|
2442 }
|
|
2443
|
|
2444 #endif /* ERROR_CHECK_CATCH */
|
428
|
2445
|
|
2446 /* Signal a non-continuable error or display a warning or do nothing,
|
|
2447 according to ERRB. CLASS is the class of warning and should
|
|
2448 refer to what sort of operation is being done (e.g. Qtoolbar,
|
|
2449 Qresource, etc.). */
|
|
2450
|
|
2451 void
|
1204
|
2452 maybe_signal_error_1 (Lisp_Object sig, Lisp_Object data, Lisp_Object class_,
|
578
|
2453 Error_Behavior errb)
|
428
|
2454 {
|
|
2455 if (ERRB_EQ (errb, ERROR_ME_NOT))
|
|
2456 return;
|
793
|
2457 else if (ERRB_EQ (errb, ERROR_ME_DEBUG_WARN))
|
1204
|
2458 warn_when_safe_lispobj (class_, Qdebug, Fcons (sig, data));
|
428
|
2459 else if (ERRB_EQ (errb, ERROR_ME_WARN))
|
1204
|
2460 warn_when_safe_lispobj (class_, Qwarning, Fcons (sig, data));
|
428
|
2461 else
|
|
2462 for (;;)
|
|
2463 Fsignal (sig, data);
|
|
2464 }
|
|
2465
|
|
2466 /* Signal a continuable error or display a warning or do nothing,
|
|
2467 according to ERRB. */
|
|
2468
|
|
2469 Lisp_Object
|
563
|
2470 maybe_signal_continuable_error_1 (Lisp_Object sig, Lisp_Object data,
|
1204
|
2471 Lisp_Object class_, Error_Behavior errb)
|
428
|
2472 {
|
|
2473 if (ERRB_EQ (errb, ERROR_ME_NOT))
|
|
2474 return Qnil;
|
793
|
2475 else if (ERRB_EQ (errb, ERROR_ME_DEBUG_WARN))
|
|
2476 {
|
1204
|
2477 warn_when_safe_lispobj (class_, Qdebug, Fcons (sig, data));
|
793
|
2478 return Qnil;
|
|
2479 }
|
428
|
2480 else if (ERRB_EQ (errb, ERROR_ME_WARN))
|
|
2481 {
|
1204
|
2482 warn_when_safe_lispobj (class_, Qwarning, Fcons (sig, data));
|
428
|
2483 return Qnil;
|
|
2484 }
|
|
2485 else
|
|
2486 return Fsignal (sig, data);
|
|
2487 }
|
|
2488
|
|
2489
|
|
2490 /****************** Error functions class 2 ******************/
|
|
2491
|
563
|
2492 /* Class 2: Signal an error with a string and an associated object.
|
|
2493 Normally these functions are used to attach one associated object,
|
|
2494 but to attach no objects, specify Qunbound for FROB, and for more
|
|
2495 than one object, make a list of the objects with Qunbound as the
|
|
2496 first element. (If you have specifically two objects to attach,
|
|
2497 consider using the function in class 3 below.) These functions
|
|
2498 signal an error of a specified type, whose data is one or more
|
|
2499 objects (usually two), a string the related Lisp object(s)
|
|
2500 specified as FROB. */
|
|
2501
|
|
2502 /* Out of REASON and FROB, return a list of elements suitable for passing
|
|
2503 to signal_error_1(). */
|
|
2504
|
|
2505 Lisp_Object
|
867
|
2506 build_error_data (const CIbyte *reason, Lisp_Object frob)
|
563
|
2507 {
|
|
2508 if (EQ (frob, Qunbound))
|
|
2509 frob = Qnil;
|
|
2510 else if (CONSP (frob) && EQ (XCAR (frob), Qunbound))
|
|
2511 frob = XCDR (frob);
|
|
2512 else
|
|
2513 frob = list1 (frob);
|
|
2514 if (!reason)
|
|
2515 return frob;
|
|
2516 else
|
771
|
2517 return Fcons (build_msg_string (reason), frob);
|
563
|
2518 }
|
|
2519
|
|
2520 DOESNT_RETURN
|
867
|
2521 signal_error (Lisp_Object type, const CIbyte *reason, Lisp_Object frob)
|
563
|
2522 {
|
|
2523 signal_error_1 (type, build_error_data (reason, frob));
|
|
2524 }
|
|
2525
|
|
2526 void
|
867
|
2527 maybe_signal_error (Lisp_Object type, const CIbyte *reason,
|
1204
|
2528 Lisp_Object frob, Lisp_Object class_,
|
578
|
2529 Error_Behavior errb)
|
563
|
2530 {
|
|
2531 /* Optimization: */
|
|
2532 if (ERRB_EQ (errb, ERROR_ME_NOT))
|
|
2533 return;
|
1204
|
2534 maybe_signal_error_1 (type, build_error_data (reason, frob), class_, errb);
|
563
|
2535 }
|
|
2536
|
|
2537 Lisp_Object
|
867
|
2538 signal_continuable_error (Lisp_Object type, const CIbyte *reason,
|
563
|
2539 Lisp_Object frob)
|
|
2540 {
|
|
2541 return Fsignal (type, build_error_data (reason, frob));
|
|
2542 }
|
|
2543
|
|
2544 Lisp_Object
|
867
|
2545 maybe_signal_continuable_error (Lisp_Object type, const CIbyte *reason,
|
1204
|
2546 Lisp_Object frob, Lisp_Object class_,
|
578
|
2547 Error_Behavior errb)
|
563
|
2548 {
|
|
2549 /* Optimization: */
|
|
2550 if (ERRB_EQ (errb, ERROR_ME_NOT))
|
|
2551 return Qnil;
|
|
2552 return maybe_signal_continuable_error_1 (type,
|
|
2553 build_error_data (reason, frob),
|
1204
|
2554 class_, errb);
|
563
|
2555 }
|
|
2556
|
|
2557
|
|
2558 /****************** Error functions class 3 ******************/
|
|
2559
|
|
2560 /* Class 3: Signal an error with a string and two associated objects.
|
|
2561 These functions signal an error of a specified type, whose data
|
|
2562 is three objects, a string and two related Lisp objects.
|
|
2563 (The equivalent could be accomplished using the class 2 functions,
|
|
2564 but these are more convenient in this particular case.) */
|
|
2565
|
|
2566 DOESNT_RETURN
|
867
|
2567 signal_error_2 (Lisp_Object type, const CIbyte *reason,
|
563
|
2568 Lisp_Object frob0, Lisp_Object frob1)
|
|
2569 {
|
771
|
2570 signal_error_1 (type, list3 (build_msg_string (reason), frob0,
|
563
|
2571 frob1));
|
|
2572 }
|
|
2573
|
|
2574 void
|
867
|
2575 maybe_signal_error_2 (Lisp_Object type, const CIbyte *reason,
|
563
|
2576 Lisp_Object frob0, Lisp_Object frob1,
|
1204
|
2577 Lisp_Object class_, Error_Behavior errb)
|
563
|
2578 {
|
|
2579 /* Optimization: */
|
|
2580 if (ERRB_EQ (errb, ERROR_ME_NOT))
|
|
2581 return;
|
771
|
2582 maybe_signal_error_1 (type, list3 (build_msg_string (reason), frob0,
|
1204
|
2583 frob1), class_, errb);
|
563
|
2584 }
|
|
2585
|
|
2586 Lisp_Object
|
867
|
2587 signal_continuable_error_2 (Lisp_Object type, const CIbyte *reason,
|
563
|
2588 Lisp_Object frob0, Lisp_Object frob1)
|
|
2589 {
|
771
|
2590 return Fsignal (type, list3 (build_msg_string (reason), frob0,
|
563
|
2591 frob1));
|
|
2592 }
|
|
2593
|
|
2594 Lisp_Object
|
867
|
2595 maybe_signal_continuable_error_2 (Lisp_Object type, const CIbyte *reason,
|
563
|
2596 Lisp_Object frob0, Lisp_Object frob1,
|
1204
|
2597 Lisp_Object class_, Error_Behavior errb)
|
563
|
2598 {
|
|
2599 /* Optimization: */
|
|
2600 if (ERRB_EQ (errb, ERROR_ME_NOT))
|
|
2601 return Qnil;
|
|
2602 return maybe_signal_continuable_error_1
|
771
|
2603 (type, list3 (build_msg_string (reason), frob0, frob1),
|
1204
|
2604 class_, errb);
|
563
|
2605 }
|
|
2606
|
|
2607
|
|
2608 /****************** Error functions class 4 ******************/
|
|
2609
|
|
2610 /* Class 4: Printf-like functions that signal an error.
|
442
|
2611 These functions signal an error of a specified type, whose data
|
428
|
2612 is a single string, created using the arguments. */
|
|
2613
|
|
2614 DOESNT_RETURN
|
867
|
2615 signal_ferror (Lisp_Object type, const CIbyte *fmt, ...)
|
442
|
2616 {
|
|
2617 Lisp_Object obj;
|
|
2618 va_list args;
|
|
2619
|
|
2620 va_start (args, fmt);
|
771
|
2621 obj = emacs_vsprintf_string (CGETTEXT (fmt), args);
|
442
|
2622 va_end (args);
|
|
2623
|
|
2624 /* Fsignal GC-protects its args */
|
563
|
2625 signal_error (type, 0, obj);
|
442
|
2626 }
|
|
2627
|
|
2628 void
|
1204
|
2629 maybe_signal_ferror (Lisp_Object type, Lisp_Object class_, Error_Behavior errb,
|
867
|
2630 const CIbyte *fmt, ...)
|
442
|
2631 {
|
|
2632 Lisp_Object obj;
|
|
2633 va_list args;
|
|
2634
|
|
2635 /* Optimization: */
|
|
2636 if (ERRB_EQ (errb, ERROR_ME_NOT))
|
|
2637 return;
|
|
2638
|
|
2639 va_start (args, fmt);
|
771
|
2640 obj = emacs_vsprintf_string (CGETTEXT (fmt), args);
|
442
|
2641 va_end (args);
|
|
2642
|
|
2643 /* Fsignal GC-protects its args */
|
1204
|
2644 maybe_signal_error (type, 0, obj, class_, errb);
|
442
|
2645 }
|
|
2646
|
|
2647 Lisp_Object
|
867
|
2648 signal_continuable_ferror (Lisp_Object type, const CIbyte *fmt, ...)
|
428
|
2649 {
|
|
2650 Lisp_Object obj;
|
|
2651 va_list args;
|
|
2652
|
|
2653 va_start (args, fmt);
|
771
|
2654 obj = emacs_vsprintf_string (CGETTEXT (fmt), args);
|
442
|
2655 va_end (args);
|
|
2656
|
|
2657 /* Fsignal GC-protects its args */
|
|
2658 return Fsignal (type, list1 (obj));
|
|
2659 }
|
|
2660
|
|
2661 Lisp_Object
|
1204
|
2662 maybe_signal_continuable_ferror (Lisp_Object type, Lisp_Object class_,
|
867
|
2663 Error_Behavior errb, const CIbyte *fmt, ...)
|
442
|
2664 {
|
|
2665 Lisp_Object obj;
|
|
2666 va_list args;
|
|
2667
|
|
2668 /* Optimization: */
|
|
2669 if (ERRB_EQ (errb, ERROR_ME_NOT))
|
|
2670 return Qnil;
|
|
2671
|
|
2672 va_start (args, fmt);
|
771
|
2673 obj = emacs_vsprintf_string (CGETTEXT (fmt), args);
|
442
|
2674 va_end (args);
|
|
2675
|
|
2676 /* Fsignal GC-protects its args */
|
1204
|
2677 return maybe_signal_continuable_error (type, 0, obj, class_, errb);
|
442
|
2678 }
|
|
2679
|
|
2680
|
|
2681 /****************** Error functions class 5 ******************/
|
|
2682
|
563
|
2683 /* Class 5: Printf-like functions that signal an error.
|
442
|
2684 These functions signal an error of a specified type, whose data
|
563
|
2685 is a one or more objects, a string (created using the arguments)
|
|
2686 and additional Lisp objects specified in FROB. (The syntax of FROB
|
|
2687 is the same as for class 2.)
|
|
2688
|
|
2689 There is no need for a class 6 because you can always attach 2
|
|
2690 objects using class 5 (for FROB, specify a list with three
|
|
2691 elements, the first of which is Qunbound), and these functions are
|
|
2692 not commonly used.
|
|
2693 */
|
442
|
2694
|
|
2695 DOESNT_RETURN
|
867
|
2696 signal_ferror_with_frob (Lisp_Object type, Lisp_Object frob, const CIbyte *fmt,
|
563
|
2697 ...)
|
442
|
2698 {
|
|
2699 Lisp_Object obj;
|
|
2700 va_list args;
|
|
2701
|
|
2702 va_start (args, fmt);
|
771
|
2703 obj = emacs_vsprintf_string (CGETTEXT (fmt), args);
|
442
|
2704 va_end (args);
|
|
2705
|
|
2706 /* Fsignal GC-protects its args */
|
563
|
2707 signal_error_1 (type, Fcons (obj, build_error_data (0, frob)));
|
442
|
2708 }
|
|
2709
|
|
2710 void
|
563
|
2711 maybe_signal_ferror_with_frob (Lisp_Object type, Lisp_Object frob,
|
1204
|
2712 Lisp_Object class_, Error_Behavior errb,
|
867
|
2713 const CIbyte *fmt, ...)
|
442
|
2714 {
|
|
2715 Lisp_Object obj;
|
|
2716 va_list args;
|
|
2717
|
|
2718 /* Optimization: */
|
|
2719 if (ERRB_EQ (errb, ERROR_ME_NOT))
|
|
2720 return;
|
|
2721
|
|
2722 va_start (args, fmt);
|
771
|
2723 obj = emacs_vsprintf_string (CGETTEXT (fmt), args);
|
428
|
2724 va_end (args);
|
|
2725
|
|
2726 /* Fsignal GC-protects its args */
|
1204
|
2727 maybe_signal_error_1 (type, Fcons (obj, build_error_data (0, frob)), class_,
|
563
|
2728 errb);
|
428
|
2729 }
|
|
2730
|
|
2731 Lisp_Object
|
563
|
2732 signal_continuable_ferror_with_frob (Lisp_Object type, Lisp_Object frob,
|
867
|
2733 const CIbyte *fmt, ...)
|
428
|
2734 {
|
|
2735 Lisp_Object obj;
|
|
2736 va_list args;
|
|
2737
|
|
2738 va_start (args, fmt);
|
771
|
2739 obj = emacs_vsprintf_string (CGETTEXT (fmt), args);
|
428
|
2740 va_end (args);
|
|
2741
|
|
2742 /* Fsignal GC-protects its args */
|
563
|
2743 return Fsignal (type, Fcons (obj, build_error_data (0, frob)));
|
428
|
2744 }
|
|
2745
|
|
2746 Lisp_Object
|
563
|
2747 maybe_signal_continuable_ferror_with_frob (Lisp_Object type, Lisp_Object frob,
|
1204
|
2748 Lisp_Object class_,
|
578
|
2749 Error_Behavior errb,
|
867
|
2750 const CIbyte *fmt, ...)
|
428
|
2751 {
|
|
2752 Lisp_Object obj;
|
|
2753 va_list args;
|
|
2754
|
|
2755 /* Optimization: */
|
|
2756 if (ERRB_EQ (errb, ERROR_ME_NOT))
|
|
2757 return Qnil;
|
|
2758
|
|
2759 va_start (args, fmt);
|
771
|
2760 obj = emacs_vsprintf_string (CGETTEXT (fmt), args);
|
428
|
2761 va_end (args);
|
|
2762
|
|
2763 /* Fsignal GC-protects its args */
|
563
|
2764 return maybe_signal_continuable_error_1 (type,
|
|
2765 Fcons (obj,
|
|
2766 build_error_data (0, frob)),
|
1204
|
2767 class_, errb);
|
428
|
2768 }
|
|
2769
|
|
2770
|
|
2771 /* This is what the QUIT macro calls to signal a quit */
|
|
2772 void
|
|
2773 signal_quit (void)
|
|
2774 {
|
853
|
2775 /* This function cannot GC. GC is prohibited because most callers do
|
|
2776 not expect GC occurring in QUIT. Remove this if/when that gets fixed.
|
|
2777 --ben */
|
|
2778
|
|
2779 int count;
|
|
2780
|
428
|
2781 if (EQ (Vquit_flag, Qcritical))
|
|
2782 debug_on_quit |= 2; /* set critical bit. */
|
|
2783 Vquit_flag = Qnil;
|
853
|
2784 count = begin_gc_forbidden ();
|
428
|
2785 /* note that this is continuable. */
|
|
2786 Fsignal (Qquit, Qnil);
|
853
|
2787 unbind_to (count);
|
428
|
2788 }
|
|
2789
|
|
2790
|
563
|
2791 /************************ convenience error functions ***********************/
|
|
2792
|
436
|
2793 Lisp_Object
|
428
|
2794 signal_void_function_error (Lisp_Object function)
|
|
2795 {
|
436
|
2796 return Fsignal (Qvoid_function, list1 (function));
|
428
|
2797 }
|
|
2798
|
436
|
2799 Lisp_Object
|
428
|
2800 signal_invalid_function_error (Lisp_Object function)
|
|
2801 {
|
436
|
2802 return Fsignal (Qinvalid_function, list1 (function));
|
428
|
2803 }
|
|
2804
|
436
|
2805 Lisp_Object
|
428
|
2806 signal_wrong_number_of_arguments_error (Lisp_Object function, int nargs)
|
|
2807 {
|
436
|
2808 return Fsignal (Qwrong_number_of_arguments,
|
|
2809 list2 (function, make_int (nargs)));
|
428
|
2810 }
|
|
2811
|
|
2812 /* Used in list traversal macros for efficiency. */
|
436
|
2813 DOESNT_RETURN
|
428
|
2814 signal_malformed_list_error (Lisp_Object list)
|
|
2815 {
|
563
|
2816 signal_error (Qmalformed_list, 0, list);
|
428
|
2817 }
|
|
2818
|
436
|
2819 DOESNT_RETURN
|
428
|
2820 signal_malformed_property_list_error (Lisp_Object list)
|
|
2821 {
|
563
|
2822 signal_error (Qmalformed_property_list, 0, list);
|
428
|
2823 }
|
|
2824
|
436
|
2825 DOESNT_RETURN
|
428
|
2826 signal_circular_list_error (Lisp_Object list)
|
|
2827 {
|
563
|
2828 signal_error (Qcircular_list, 0, list);
|
428
|
2829 }
|
|
2830
|
436
|
2831 DOESNT_RETURN
|
428
|
2832 signal_circular_property_list_error (Lisp_Object list)
|
|
2833 {
|
563
|
2834 signal_error (Qcircular_property_list, 0, list);
|
428
|
2835 }
|
442
|
2836
|
2267
|
2837 /* Called from within emacs_doprnt_1, so REASON is not formatted. */
|
442
|
2838 DOESNT_RETURN
|
867
|
2839 syntax_error (const CIbyte *reason, Lisp_Object frob)
|
442
|
2840 {
|
563
|
2841 signal_error (Qsyntax_error, reason, frob);
|
442
|
2842 }
|
|
2843
|
|
2844 DOESNT_RETURN
|
867
|
2845 syntax_error_2 (const CIbyte *reason, Lisp_Object frob1, Lisp_Object frob2)
|
442
|
2846 {
|
563
|
2847 signal_error_2 (Qsyntax_error, reason, frob1, frob2);
|
|
2848 }
|
|
2849
|
|
2850 void
|
867
|
2851 maybe_syntax_error (const CIbyte *reason, Lisp_Object frob,
|
1204
|
2852 Lisp_Object class_, Error_Behavior errb)
|
|
2853 {
|
|
2854 maybe_signal_error (Qsyntax_error, reason, frob, class_, errb);
|
563
|
2855 }
|
|
2856
|
|
2857 DOESNT_RETURN
|
867
|
2858 sferror (const CIbyte *reason, Lisp_Object frob)
|
563
|
2859 {
|
|
2860 signal_error (Qstructure_formation_error, reason, frob);
|
|
2861 }
|
|
2862
|
|
2863 DOESNT_RETURN
|
867
|
2864 sferror_2 (const CIbyte *reason, Lisp_Object frob1, Lisp_Object frob2)
|
563
|
2865 {
|
|
2866 signal_error_2 (Qstructure_formation_error, reason, frob1, frob2);
|
|
2867 }
|
|
2868
|
|
2869 void
|
867
|
2870 maybe_sferror (const CIbyte *reason, Lisp_Object frob,
|
1204
|
2871 Lisp_Object class_, Error_Behavior errb)
|
|
2872 {
|
|
2873 maybe_signal_error (Qstructure_formation_error, reason, frob, class_, errb);
|
442
|
2874 }
|
|
2875
|
|
2876 DOESNT_RETURN
|
867
|
2877 invalid_argument (const CIbyte *reason, Lisp_Object frob)
|
442
|
2878 {
|
563
|
2879 signal_error (Qinvalid_argument, reason, frob);
|
442
|
2880 }
|
|
2881
|
|
2882 DOESNT_RETURN
|
867
|
2883 invalid_argument_2 (const CIbyte *reason, Lisp_Object frob1,
|
609
|
2884 Lisp_Object frob2)
|
442
|
2885 {
|
563
|
2886 signal_error_2 (Qinvalid_argument, reason, frob1, frob2);
|
|
2887 }
|
|
2888
|
|
2889 void
|
867
|
2890 maybe_invalid_argument (const CIbyte *reason, Lisp_Object frob,
|
1204
|
2891 Lisp_Object class_, Error_Behavior errb)
|
|
2892 {
|
|
2893 maybe_signal_error (Qinvalid_argument, reason, frob, class_, errb);
|
563
|
2894 }
|
|
2895
|
|
2896 DOESNT_RETURN
|
867
|
2897 invalid_constant (const CIbyte *reason, Lisp_Object frob)
|
563
|
2898 {
|
|
2899 signal_error (Qinvalid_constant, reason, frob);
|
|
2900 }
|
|
2901
|
|
2902 DOESNT_RETURN
|
867
|
2903 invalid_constant_2 (const CIbyte *reason, Lisp_Object frob1,
|
609
|
2904 Lisp_Object frob2)
|
563
|
2905 {
|
|
2906 signal_error_2 (Qinvalid_constant, reason, frob1, frob2);
|
|
2907 }
|
|
2908
|
|
2909 void
|
867
|
2910 maybe_invalid_constant (const CIbyte *reason, Lisp_Object frob,
|
1204
|
2911 Lisp_Object class_, Error_Behavior errb)
|
|
2912 {
|
|
2913 maybe_signal_error (Qinvalid_constant, reason, frob, class_, errb);
|
442
|
2914 }
|
|
2915
|
|
2916 DOESNT_RETURN
|
867
|
2917 invalid_operation (const CIbyte *reason, Lisp_Object frob)
|
442
|
2918 {
|
563
|
2919 signal_error (Qinvalid_operation, reason, frob);
|
442
|
2920 }
|
|
2921
|
|
2922 DOESNT_RETURN
|
867
|
2923 invalid_operation_2 (const CIbyte *reason, Lisp_Object frob1,
|
609
|
2924 Lisp_Object frob2)
|
442
|
2925 {
|
563
|
2926 signal_error_2 (Qinvalid_operation, reason, frob1, frob2);
|
|
2927 }
|
|
2928
|
|
2929 void
|
867
|
2930 maybe_invalid_operation (const CIbyte *reason, Lisp_Object frob,
|
1204
|
2931 Lisp_Object class_, Error_Behavior errb)
|
|
2932 {
|
|
2933 maybe_signal_error (Qinvalid_operation, reason, frob, class_, errb);
|
442
|
2934 }
|
|
2935
|
|
2936 DOESNT_RETURN
|
867
|
2937 invalid_change (const CIbyte *reason, Lisp_Object frob)
|
442
|
2938 {
|
563
|
2939 signal_error (Qinvalid_change, reason, frob);
|
442
|
2940 }
|
|
2941
|
|
2942 DOESNT_RETURN
|
867
|
2943 invalid_change_2 (const CIbyte *reason, Lisp_Object frob1, Lisp_Object frob2)
|
442
|
2944 {
|
563
|
2945 signal_error_2 (Qinvalid_change, reason, frob1, frob2);
|
|
2946 }
|
|
2947
|
|
2948 void
|
867
|
2949 maybe_invalid_change (const CIbyte *reason, Lisp_Object frob,
|
1204
|
2950 Lisp_Object class_, Error_Behavior errb)
|
|
2951 {
|
|
2952 maybe_signal_error (Qinvalid_change, reason, frob, class_, errb);
|
563
|
2953 }
|
|
2954
|
|
2955 DOESNT_RETURN
|
867
|
2956 invalid_state (const CIbyte *reason, Lisp_Object frob)
|
563
|
2957 {
|
|
2958 signal_error (Qinvalid_state, reason, frob);
|
|
2959 }
|
|
2960
|
|
2961 DOESNT_RETURN
|
867
|
2962 invalid_state_2 (const CIbyte *reason, Lisp_Object frob1, Lisp_Object frob2)
|
563
|
2963 {
|
|
2964 signal_error_2 (Qinvalid_state, reason, frob1, frob2);
|
|
2965 }
|
|
2966
|
|
2967 void
|
867
|
2968 maybe_invalid_state (const CIbyte *reason, Lisp_Object frob,
|
1204
|
2969 Lisp_Object class_, Error_Behavior errb)
|
|
2970 {
|
|
2971 maybe_signal_error (Qinvalid_state, reason, frob, class_, errb);
|
563
|
2972 }
|
|
2973
|
|
2974 DOESNT_RETURN
|
867
|
2975 wtaerror (const CIbyte *reason, Lisp_Object frob)
|
563
|
2976 {
|
|
2977 signal_error (Qwrong_type_argument, reason, frob);
|
|
2978 }
|
|
2979
|
|
2980 DOESNT_RETURN
|
867
|
2981 stack_overflow (const CIbyte *reason, Lisp_Object frob)
|
563
|
2982 {
|
|
2983 signal_error (Qstack_overflow, reason, frob);
|
|
2984 }
|
|
2985
|
|
2986 DOESNT_RETURN
|
867
|
2987 out_of_memory (const CIbyte *reason, Lisp_Object frob)
|
563
|
2988 {
|
|
2989 signal_error (Qout_of_memory, reason, frob);
|
|
2990 }
|
|
2991
|
|
2992 DOESNT_RETURN
|
867
|
2993 printing_unreadable_object (const CIbyte *fmt, ...)
|
563
|
2994 {
|
|
2995 Lisp_Object obj;
|
|
2996 va_list args;
|
|
2997
|
|
2998 va_start (args, fmt);
|
771
|
2999 obj = emacs_vsprintf_string (CGETTEXT (fmt), args);
|
563
|
3000 va_end (args);
|
|
3001
|
|
3002 /* Fsignal GC-protects its args */
|
|
3003 signal_error (Qprinting_unreadable_object, 0, obj);
|
442
|
3004 }
|
|
3005
|
428
|
3006
|
|
3007 /************************************************************************/
|
|
3008 /* User commands */
|
|
3009 /************************************************************************/
|
|
3010
|
|
3011 DEFUN ("commandp", Fcommandp, 1, 1, 0, /*
|
|
3012 Return t if FUNCTION makes provisions for interactive calling.
|
|
3013 This means it contains a description for how to read arguments to give it.
|
|
3014 The value is nil for an invalid function or a symbol with no function
|
|
3015 definition.
|
|
3016
|
|
3017 Interactively callable functions include
|
|
3018
|
|
3019 -- strings and vectors (treated as keyboard macros)
|
|
3020 -- lambda-expressions that contain a top-level call to `interactive'
|
|
3021 -- autoload definitions made by `autoload' with non-nil fourth argument
|
|
3022 (i.e. the interactive flag)
|
|
3023 -- compiled-function objects with a non-nil `compiled-function-interactive'
|
|
3024 value
|
|
3025 -- subrs (built-in functions) that are interactively callable
|
|
3026
|
|
3027 Also, a symbol satisfies `commandp' if its function definition does so.
|
|
3028 */
|
|
3029 (function))
|
|
3030 {
|
|
3031 Lisp_Object fun = indirect_function (function, 0);
|
|
3032
|
|
3033 if (COMPILED_FUNCTIONP (fun))
|
|
3034 return XCOMPILED_FUNCTION (fun)->flags.interactivep ? Qt : Qnil;
|
|
3035
|
|
3036 /* Lists may represent commands. */
|
|
3037 if (CONSP (fun))
|
|
3038 {
|
|
3039 Lisp_Object funcar = XCAR (fun);
|
|
3040 if (EQ (funcar, Qlambda))
|
|
3041 return Fassq (Qinteractive, Fcdr (Fcdr (fun)));
|
|
3042 if (EQ (funcar, Qautoload))
|
|
3043 return Fcar (Fcdr (Fcdr (Fcdr (fun))));
|
|
3044 else
|
|
3045 return Qnil;
|
|
3046 }
|
|
3047
|
|
3048 /* Emacs primitives are interactive if their DEFUN specifies an
|
|
3049 interactive spec. */
|
|
3050 if (SUBRP (fun))
|
|
3051 return XSUBR (fun)->prompt ? Qt : Qnil;
|
|
3052
|
|
3053 /* Strings and vectors are keyboard macros. */
|
|
3054 if (VECTORP (fun) || STRINGP (fun))
|
|
3055 return Qt;
|
|
3056
|
|
3057 /* Everything else (including Qunbound) is not a command. */
|
|
3058 return Qnil;
|
|
3059 }
|
|
3060
|
|
3061 DEFUN ("command-execute", Fcommand_execute, 1, 3, 0, /*
|
|
3062 Execute CMD as an editor command.
|
|
3063 CMD must be an object that satisfies the `commandp' predicate.
|
|
3064 Optional second arg RECORD-FLAG is as in `call-interactively'.
|
|
3065 The argument KEYS specifies the value to use instead of (this-command-keys)
|
|
3066 when reading the arguments.
|
|
3067 */
|
444
|
3068 (cmd, record_flag, keys))
|
428
|
3069 {
|
|
3070 /* This function can GC */
|
|
3071 Lisp_Object prefixarg;
|
|
3072 Lisp_Object final = cmd;
|
|
3073 struct backtrace backtrace;
|
|
3074 struct console *con = XCONSOLE (Vselected_console);
|
|
3075
|
|
3076 prefixarg = con->prefix_arg;
|
|
3077 con->prefix_arg = Qnil;
|
|
3078 Vcurrent_prefix_arg = prefixarg;
|
|
3079 debug_on_next_call = 0; /* #### from FSFmacs; correct? */
|
|
3080
|
|
3081 if (SYMBOLP (cmd) && !NILP (Fget (cmd, Qdisabled, Qnil)))
|
733
|
3082 return run_hook (Qdisabled_command_hook);
|
428
|
3083
|
|
3084 for (;;)
|
|
3085 {
|
|
3086 final = indirect_function (cmd, 1);
|
|
3087 if (CONSP (final) && EQ (Fcar (final), Qautoload))
|
970
|
3088 {
|
|
3089 /* do_autoload GCPROs both arguments */
|
|
3090 do_autoload (final, cmd);
|
|
3091 }
|
428
|
3092 else
|
|
3093 break;
|
|
3094 }
|
|
3095
|
|
3096 if (CONSP (final) || SUBRP (final) || COMPILED_FUNCTIONP (final))
|
|
3097 {
|
|
3098 backtrace.function = &Qcall_interactively;
|
|
3099 backtrace.args = &cmd;
|
|
3100 backtrace.nargs = 1;
|
|
3101 backtrace.evalargs = 0;
|
1292
|
3102 backtrace.pdlcount = specpdl_depth ();
|
428
|
3103 backtrace.debug_on_exit = 0;
|
1292
|
3104 backtrace.function_being_called = 0;
|
428
|
3105 PUSH_BACKTRACE (backtrace);
|
|
3106
|
1292
|
3107 PROFILE_ENTER_FUNCTION ();
|
444
|
3108 final = Fcall_interactively (cmd, record_flag, keys);
|
1292
|
3109 PROFILE_EXIT_FUNCTION ();
|
428
|
3110
|
|
3111 POP_BACKTRACE (backtrace);
|
|
3112 return final;
|
|
3113 }
|
|
3114 else if (STRINGP (final) || VECTORP (final))
|
|
3115 {
|
|
3116 return Fexecute_kbd_macro (final, prefixarg);
|
|
3117 }
|
|
3118 else
|
|
3119 {
|
|
3120 Fsignal (Qwrong_type_argument,
|
|
3121 Fcons (Qcommandp,
|
|
3122 (EQ (cmd, final)
|
|
3123 ? list1 (cmd)
|
|
3124 : list2 (cmd, final))));
|
|
3125 return Qnil;
|
|
3126 }
|
|
3127 }
|
|
3128
|
|
3129 DEFUN ("interactive-p", Finteractive_p, 0, 0, 0, /*
|
|
3130 Return t if function in which this appears was called interactively.
|
|
3131 This means that the function was called with call-interactively (which
|
|
3132 includes being called as the binding of a key)
|
|
3133 and input is currently coming from the keyboard (not in keyboard macro).
|
|
3134 */
|
|
3135 ())
|
|
3136 {
|
|
3137 REGISTER struct backtrace *btp;
|
|
3138 REGISTER Lisp_Object fun;
|
|
3139
|
|
3140 if (!INTERACTIVE)
|
|
3141 return Qnil;
|
|
3142
|
|
3143 /* Unless the object was compiled, skip the frame of interactive-p itself
|
|
3144 (if interpreted) or the frame of byte-code (if called from a compiled
|
|
3145 function). Note that *btp->function may be a symbol pointing at a
|
|
3146 compiled function. */
|
|
3147 btp = backtrace_list;
|
|
3148
|
|
3149 #if 0 /* FSFmacs */
|
|
3150
|
|
3151 /* #### FSFmacs does the following instead. I can't figure
|
|
3152 out which one is more correct. */
|
|
3153 /* If this isn't a byte-compiled function, there may be a frame at
|
|
3154 the top for Finteractive_p itself. If so, skip it. */
|
|
3155 fun = Findirect_function (*btp->function);
|
|
3156 if (SUBRP (fun) && XSUBR (fun) == &Sinteractive_p)
|
|
3157 btp = btp->next;
|
|
3158
|
|
3159 /* If we're running an Emacs 18-style byte-compiled function, there
|
|
3160 may be a frame for Fbyte_code. Now, given the strictest
|
|
3161 definition, this function isn't really being called
|
|
3162 interactively, but because that's the way Emacs 18 always builds
|
|
3163 byte-compiled functions, we'll accept it for now. */
|
|
3164 if (EQ (*btp->function, Qbyte_code))
|
|
3165 btp = btp->next;
|
|
3166
|
|
3167 /* If this isn't a byte-compiled function, then we may now be
|
|
3168 looking at several frames for special forms. Skip past them. */
|
|
3169 while (btp &&
|
|
3170 btp->nargs == UNEVALLED)
|
|
3171 btp = btp->next;
|
|
3172
|
|
3173 #else
|
|
3174
|
|
3175 if (! (COMPILED_FUNCTIONP (Findirect_function (*btp->function))))
|
|
3176 btp = btp->next;
|
|
3177 for (;
|
|
3178 btp && (btp->nargs == UNEVALLED
|
|
3179 || EQ (*btp->function, Qbyte_code));
|
|
3180 btp = btp->next)
|
|
3181 {}
|
|
3182 /* btp now points at the frame of the innermost function
|
|
3183 that DOES eval its args.
|
|
3184 If it is a built-in function (such as load or eval-region)
|
|
3185 return nil. */
|
|
3186 /* Beats me why this is necessary, but it is */
|
|
3187 if (btp && EQ (*btp->function, Qcall_interactively))
|
|
3188 return Qt;
|
|
3189
|
|
3190 #endif
|
|
3191
|
|
3192 fun = Findirect_function (*btp->function);
|
|
3193 if (SUBRP (fun))
|
|
3194 return Qnil;
|
|
3195 /* btp points to the frame of a Lisp function that called interactive-p.
|
|
3196 Return t if that function was called interactively. */
|
|
3197 if (btp && btp->next && EQ (*btp->next->function, Qcall_interactively))
|
|
3198 return Qt;
|
|
3199 return Qnil;
|
|
3200 }
|
|
3201
|
|
3202
|
|
3203 /************************************************************************/
|
|
3204 /* Autoloading */
|
|
3205 /************************************************************************/
|
|
3206
|
|
3207 DEFUN ("autoload", Fautoload, 2, 5, 0, /*
|
444
|
3208 Define FUNCTION to autoload from FILENAME.
|
|
3209 FUNCTION is a symbol; FILENAME is a file name string to pass to `load'.
|
|
3210 The remaining optional arguments provide additional info about the
|
|
3211 real definition.
|
|
3212 DOCSTRING is documentation for FUNCTION.
|
|
3213 INTERACTIVE, if non-nil, says FUNCTION can be called interactively.
|
|
3214 TYPE indicates the type of the object:
|
428
|
3215 nil or omitted says FUNCTION is a function,
|
|
3216 `keymap' says FUNCTION is really a keymap, and
|
|
3217 `macro' or t says FUNCTION is really a macro.
|
444
|
3218 If FUNCTION already has a non-void function definition that is not an
|
|
3219 autoload object, this function does nothing and returns nil.
|
428
|
3220 */
|
444
|
3221 (function, filename, docstring, interactive, type))
|
428
|
3222 {
|
|
3223 /* This function can GC */
|
|
3224 CHECK_SYMBOL (function);
|
444
|
3225 CHECK_STRING (filename);
|
428
|
3226
|
|
3227 /* If function is defined and not as an autoload, don't override */
|
|
3228 {
|
|
3229 Lisp_Object f = XSYMBOL (function)->function;
|
|
3230 if (!UNBOUNDP (f) && !(CONSP (f) && EQ (XCAR (f), Qautoload)))
|
|
3231 return Qnil;
|
|
3232 }
|
|
3233
|
|
3234 if (purify_flag)
|
|
3235 {
|
|
3236 /* Attempt to avoid consing identical (string=) pure strings. */
|
444
|
3237 filename = Fsymbol_name (Fintern (filename, Qnil));
|
428
|
3238 }
|
440
|
3239
|
444
|
3240 return Ffset (function, Fcons (Qautoload, list4 (filename,
|
428
|
3241 docstring,
|
|
3242 interactive,
|
|
3243 type)));
|
|
3244 }
|
|
3245
|
|
3246 Lisp_Object
|
|
3247 un_autoload (Lisp_Object oldqueue)
|
|
3248 {
|
|
3249 /* This function can GC */
|
|
3250 REGISTER Lisp_Object queue, first, second;
|
|
3251
|
|
3252 /* Queue to unwind is current value of Vautoload_queue.
|
|
3253 oldqueue is the shadowed value to leave in Vautoload_queue. */
|
|
3254 queue = Vautoload_queue;
|
|
3255 Vautoload_queue = oldqueue;
|
|
3256 while (CONSP (queue))
|
|
3257 {
|
|
3258 first = XCAR (queue);
|
|
3259 second = Fcdr (first);
|
|
3260 first = Fcar (first);
|
|
3261 if (NILP (second))
|
|
3262 Vfeatures = first;
|
|
3263 else
|
|
3264 Ffset (first, second);
|
|
3265 queue = Fcdr (queue);
|
|
3266 }
|
|
3267 return Qnil;
|
|
3268 }
|
|
3269
|
970
|
3270 /* do_autoload GCPROs both arguments */
|
428
|
3271 void
|
|
3272 do_autoload (Lisp_Object fundef,
|
|
3273 Lisp_Object funname)
|
|
3274 {
|
|
3275 /* This function can GC */
|
|
3276 int speccount = specpdl_depth();
|
|
3277 Lisp_Object fun = funname;
|
970
|
3278 struct gcpro gcpro1, gcpro2, gcpro3;
|
428
|
3279
|
|
3280 CHECK_SYMBOL (funname);
|
970
|
3281 GCPRO3 (fundef, funname, fun);
|
428
|
3282
|
|
3283 /* Value saved here is to be restored into Vautoload_queue */
|
|
3284 record_unwind_protect (un_autoload, Vautoload_queue);
|
|
3285 Vautoload_queue = Qt;
|
|
3286 call4 (Qload, Fcar (Fcdr (fundef)), Qnil, noninteractive ? Qt : Qnil, Qnil);
|
|
3287
|
|
3288 {
|
|
3289 Lisp_Object queue;
|
|
3290
|
|
3291 /* Save the old autoloads, in case we ever do an unload. */
|
|
3292 for (queue = Vautoload_queue; CONSP (queue); queue = XCDR (queue))
|
|
3293 {
|
|
3294 Lisp_Object first = XCAR (queue);
|
|
3295 Lisp_Object second = Fcdr (first);
|
|
3296
|
|
3297 first = Fcar (first);
|
|
3298
|
|
3299 /* Note: This test is subtle. The cdr of an autoload-queue entry
|
|
3300 may be an atom if the autoload entry was generated by a defalias
|
|
3301 or fset. */
|
|
3302 if (CONSP (second))
|
|
3303 Fput (first, Qautoload, (XCDR (second)));
|
|
3304 }
|
|
3305 }
|
|
3306
|
|
3307 /* Once loading finishes, don't undo it. */
|
|
3308 Vautoload_queue = Qt;
|
771
|
3309 unbind_to (speccount);
|
428
|
3310
|
|
3311 fun = indirect_function (fun, 0);
|
|
3312
|
|
3313 #if 0 /* FSFmacs */
|
|
3314 if (!NILP (Fequal (fun, fundef)))
|
|
3315 #else
|
|
3316 if (UNBOUNDP (fun)
|
|
3317 || (CONSP (fun)
|
|
3318 && EQ (XCAR (fun), Qautoload)))
|
|
3319 #endif
|
563
|
3320 invalid_state ("Autoloading failed to define function", funname);
|
428
|
3321 UNGCPRO;
|
|
3322 }
|
|
3323
|
|
3324
|
|
3325 /************************************************************************/
|
|
3326 /* eval, funcall, apply */
|
|
3327 /************************************************************************/
|
|
3328
|
814
|
3329 /* NOTE: If you are hearing the endless complaint that function calls in
|
|
3330 elisp are extremely slow, it just isn't true any more! The stuff below
|
|
3331 -- in particular, the calling of subrs and compiled functions, the most
|
|
3332 common cases -- has been highly optimized. There isn't a whole lot left
|
|
3333 to do to squeeze more speed out except by switching to lexical
|
|
3334 variables, which would eliminate the specbind loop. (But the real gain
|
|
3335 from lexical variables would come from better optimization -- with
|
|
3336 dynamic binding, you have the constant problem that any function call
|
|
3337 that you haven't explicitly proven to be side-effect-free might
|
|
3338 potentially side effect your local variables, which makes optimization
|
|
3339 extremely difficult when there are function calls anywhere in a chunk of
|
|
3340 code to be optimized. Even worse, you don't know that *your* local
|
|
3341 variables aren't side-effecting an outer function's local variables, so
|
|
3342 it's impossible to optimize away almost *any* variable assignment.) */
|
|
3343
|
428
|
3344 static Lisp_Object funcall_lambda (Lisp_Object fun,
|
442
|
3345 int nargs, Lisp_Object args[]);
|
428
|
3346 static int in_warnings;
|
|
3347
|
|
3348
|
814
|
3349 void handle_compiled_function_with_and_rest (Lisp_Compiled_Function *f,
|
|
3350 int nargs,
|
|
3351 Lisp_Object args[]);
|
|
3352
|
|
3353 /* The theory behind making this a separate function is to shrink
|
|
3354 funcall_compiled_function() so as to increase the likelihood of a cache
|
|
3355 hit in the L1 cache -- &rest processing is not going to be fast anyway.
|
|
3356 The idea is the same as with execute_rare_opcode() in bytecode.c. We
|
|
3357 make this non-static to ensure the compiler doesn't inline it. */
|
|
3358
|
|
3359 void
|
|
3360 handle_compiled_function_with_and_rest (Lisp_Compiled_Function *f, int nargs,
|
|
3361 Lisp_Object args[])
|
|
3362 {
|
|
3363 REGISTER int i = 0;
|
|
3364 int max_non_rest_args = f->args_in_array - 1;
|
|
3365 int bindargs = min (nargs, max_non_rest_args);
|
|
3366
|
|
3367 for (i = 0; i < bindargs; i++)
|
|
3368 SPECBIND_FAST_UNSAFE (f->args[i], args[i]);
|
|
3369 for (i = bindargs; i < max_non_rest_args; i++)
|
|
3370 SPECBIND_FAST_UNSAFE (f->args[i], Qnil);
|
|
3371 SPECBIND_FAST_UNSAFE
|
|
3372 (f->args[max_non_rest_args],
|
|
3373 nargs > max_non_rest_args ?
|
|
3374 Flist (nargs - max_non_rest_args, &args[max_non_rest_args]) :
|
|
3375 Qnil);
|
|
3376 }
|
|
3377
|
|
3378 /* Apply compiled-function object FUN to the NARGS evaluated arguments
|
|
3379 in ARGS, and return the result of evaluation. */
|
|
3380 inline static Lisp_Object
|
|
3381 funcall_compiled_function (Lisp_Object fun, int nargs, Lisp_Object args[])
|
|
3382 {
|
|
3383 /* This function can GC */
|
|
3384 int speccount = specpdl_depth();
|
|
3385 REGISTER int i = 0;
|
|
3386 Lisp_Compiled_Function *f = XCOMPILED_FUNCTION (fun);
|
|
3387
|
|
3388 if (!OPAQUEP (f->instructions))
|
|
3389 /* Lazily munge the instructions into a more efficient form */
|
|
3390 optimize_compiled_function (fun);
|
|
3391
|
|
3392 /* optimize_compiled_function() guaranteed that f->specpdl_depth is
|
|
3393 the required space on the specbinding stack for binding the args
|
|
3394 and local variables of fun. So just reserve it once. */
|
|
3395 SPECPDL_RESERVE (f->specpdl_depth);
|
|
3396
|
|
3397 if (nargs == f->max_args) /* Optimize for the common case -- no unspecified
|
|
3398 optional arguments. */
|
|
3399 {
|
|
3400 #if 1
|
|
3401 for (i = 0; i < nargs; i++)
|
|
3402 SPECBIND_FAST_UNSAFE (f->args[i], args[i]);
|
|
3403 #else
|
|
3404 /* Here's an alternate way to write the loop that tries to further
|
|
3405 optimize funcalls for functions with few arguments by partially
|
|
3406 unrolling the loop. It's not clear whether this is a win since it
|
|
3407 increases the size of the function and the possibility of L1 cache
|
|
3408 misses. (Microsoft VC++ 6 with /O2 /G5 generates 0x90 == 144 bytes
|
|
3409 per SPECBIND_FAST_UNSAFE().) Tests under VC++ 6, running the byte
|
|
3410 compiler repeatedly and looking at the total time, show very
|
|
3411 little difference between the simple loop above, the unrolled code
|
|
3412 below, and a "partly unrolled" solution with only cases 0-2 below
|
|
3413 instead of 0-4. Therefore, I'm keeping it at the simple loop
|
|
3414 because it's smaller. */
|
|
3415 switch (nargs)
|
|
3416 {
|
|
3417 default:
|
|
3418 for (i = nargs - 1; i >= 4; i--)
|
|
3419 SPECBIND_FAST_UNSAFE (f->args[i], args[i]);
|
|
3420 case 4: SPECBIND_FAST_UNSAFE (f->args[3], args[3]);
|
|
3421 case 3: SPECBIND_FAST_UNSAFE (f->args[2], args[2]);
|
|
3422 case 2: SPECBIND_FAST_UNSAFE (f->args[1], args[1]);
|
|
3423 case 1: SPECBIND_FAST_UNSAFE (f->args[0], args[0]);
|
|
3424 case 0: break;
|
|
3425 }
|
|
3426 #endif
|
|
3427 }
|
|
3428 else if (nargs < f->min_args)
|
|
3429 goto wrong_number_of_arguments;
|
|
3430 else if (nargs < f->max_args)
|
|
3431 {
|
|
3432 for (i = 0; i < nargs; i++)
|
|
3433 SPECBIND_FAST_UNSAFE (f->args[i], args[i]);
|
|
3434 for (i = nargs; i < f->max_args; i++)
|
|
3435 SPECBIND_FAST_UNSAFE (f->args[i], Qnil);
|
|
3436 }
|
|
3437 else if (f->max_args == MANY)
|
|
3438 handle_compiled_function_with_and_rest (f, nargs, args);
|
|
3439 else
|
|
3440 {
|
|
3441 wrong_number_of_arguments:
|
|
3442 /* The actual printed compiled_function object is incomprehensible.
|
|
3443 Check the backtrace to see if we can get a more meaningful symbol. */
|
|
3444 if (EQ (fun, indirect_function (*backtrace_list->function, 0)))
|
|
3445 fun = *backtrace_list->function;
|
|
3446 return Fsignal (Qwrong_number_of_arguments,
|
|
3447 list2 (fun, make_int (nargs)));
|
|
3448 }
|
|
3449
|
|
3450 {
|
|
3451 Lisp_Object value =
|
|
3452 execute_optimized_program ((Opbyte *) XOPAQUE_DATA (f->instructions),
|
|
3453 f->stack_depth,
|
|
3454 XVECTOR_DATA (f->constants));
|
|
3455
|
|
3456 /* The attempt to optimize this by only unbinding variables failed
|
|
3457 because using buffer-local variables as function parameters
|
|
3458 leads to specpdl_ptr->func != 0 */
|
|
3459 /* UNBIND_TO_GCPRO_VARIABLES_ONLY (speccount, value); */
|
|
3460 UNBIND_TO_GCPRO (speccount, value);
|
|
3461 return value;
|
|
3462 }
|
|
3463 }
|
|
3464
|
428
|
3465 DEFUN ("eval", Feval, 1, 1, 0, /*
|
|
3466 Evaluate FORM and return its value.
|
|
3467 */
|
|
3468 (form))
|
|
3469 {
|
|
3470 /* This function can GC */
|
|
3471 Lisp_Object fun, val, original_fun, original_args;
|
|
3472 int nargs;
|
|
3473 struct backtrace backtrace;
|
|
3474
|
1318
|
3475 #ifdef ERROR_CHECK_TRAPPING_PROBLEMS
|
|
3476 check_proper_critical_section_lisp_protection ();
|
|
3477 #endif
|
|
3478
|
428
|
3479 /* I think this is a pretty safe place to call Lisp code, don't you? */
|
853
|
3480 while (!in_warnings && !NILP (Vpending_warnings)
|
|
3481 /* well, perhaps not so safe after all! */
|
|
3482 && !(inhibit_flags & INHIBIT_ANY_CHANGE_AFFECTING_REDISPLAY))
|
428
|
3483 {
|
|
3484 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4;
|
1204
|
3485 Lisp_Object this_warning_cons, this_warning, class_, level, messij;
|
853
|
3486 int speccount = internal_bind_int (&in_warnings, 1);
|
|
3487
|
428
|
3488 this_warning_cons = Vpending_warnings;
|
|
3489 this_warning = XCAR (this_warning_cons);
|
|
3490 /* in case an error occurs in the warn function, at least
|
|
3491 it won't happen infinitely */
|
|
3492 Vpending_warnings = XCDR (Vpending_warnings);
|
853
|
3493 free_cons (this_warning_cons);
|
1204
|
3494 class_ = XCAR (this_warning);
|
428
|
3495 level = XCAR (XCDR (this_warning));
|
|
3496 messij = XCAR (XCDR (XCDR (this_warning)));
|
|
3497 free_list (this_warning);
|
|
3498
|
|
3499 if (NILP (Vpending_warnings))
|
|
3500 Vpending_warnings_tail = Qnil; /* perhaps not strictly necessary,
|
|
3501 but safer */
|
|
3502
|
1204
|
3503 GCPRO4 (form, class_, level, messij);
|
428
|
3504 if (!STRINGP (messij))
|
|
3505 messij = Fprin1_to_string (messij, Qnil);
|
1204
|
3506 call3 (Qdisplay_warning, class_, messij, level);
|
428
|
3507 UNGCPRO;
|
771
|
3508 unbind_to (speccount);
|
428
|
3509 }
|
|
3510
|
|
3511 if (!CONSP (form))
|
|
3512 {
|
|
3513 if (SYMBOLP (form))
|
|
3514 return Fsymbol_value (form);
|
|
3515 else
|
|
3516 return form;
|
|
3517 }
|
|
3518
|
|
3519 QUIT;
|
814
|
3520 if (need_to_garbage_collect)
|
428
|
3521 {
|
|
3522 struct gcpro gcpro1;
|
|
3523 GCPRO1 (form);
|
|
3524 garbage_collect_1 ();
|
|
3525 UNGCPRO;
|
|
3526 }
|
|
3527
|
|
3528 if (++lisp_eval_depth > max_lisp_eval_depth)
|
|
3529 {
|
|
3530 if (max_lisp_eval_depth < 100)
|
|
3531 max_lisp_eval_depth = 100;
|
|
3532 if (lisp_eval_depth > max_lisp_eval_depth)
|
563
|
3533 stack_overflow ("Lisp nesting exceeds `max-lisp-eval-depth'",
|
|
3534 Qunbound);
|
428
|
3535 }
|
|
3536
|
|
3537 /* We guaranteed CONSP (form) above */
|
|
3538 original_fun = XCAR (form);
|
|
3539 original_args = XCDR (form);
|
|
3540
|
|
3541 GET_EXTERNAL_LIST_LENGTH (original_args, nargs);
|
|
3542
|
|
3543 backtrace.pdlcount = specpdl_depth();
|
|
3544 backtrace.function = &original_fun; /* This also protects them from gc */
|
|
3545 backtrace.args = &original_args;
|
|
3546 backtrace.nargs = UNEVALLED;
|
|
3547 backtrace.evalargs = 1;
|
|
3548 backtrace.debug_on_exit = 0;
|
1292
|
3549 backtrace.function_being_called = 0;
|
428
|
3550 PUSH_BACKTRACE (backtrace);
|
|
3551
|
|
3552 if (debug_on_next_call)
|
|
3553 do_debug_on_call (Qt);
|
|
3554
|
|
3555 /* At this point, only original_fun and original_args
|
|
3556 have values that will be used below. */
|
|
3557 retry:
|
|
3558 fun = indirect_function (original_fun, 1);
|
|
3559
|
|
3560 if (SUBRP (fun))
|
|
3561 {
|
|
3562 Lisp_Subr *subr = XSUBR (fun);
|
|
3563 int max_args = subr->max_args;
|
|
3564
|
|
3565 if (nargs < subr->min_args)
|
|
3566 goto wrong_number_of_arguments;
|
|
3567
|
|
3568 if (max_args == UNEVALLED) /* Optimize for the common case */
|
|
3569 {
|
|
3570 backtrace.evalargs = 0;
|
1292
|
3571 PROFILE_ENTER_FUNCTION ();
|
428
|
3572 val = (((Lisp_Object (*) (Lisp_Object)) subr_function (subr))
|
|
3573 (original_args));
|
1292
|
3574 PROFILE_EXIT_FUNCTION ();
|
428
|
3575 }
|
|
3576 else if (nargs <= max_args)
|
|
3577 {
|
|
3578 struct gcpro gcpro1;
|
|
3579 Lisp_Object args[SUBR_MAX_ARGS];
|
|
3580 REGISTER Lisp_Object *p = args;
|
|
3581
|
|
3582 GCPRO1 (args[0]);
|
|
3583 gcpro1.nvars = 0;
|
|
3584
|
|
3585 {
|
|
3586 LIST_LOOP_2 (arg, original_args)
|
|
3587 {
|
|
3588 *p++ = Feval (arg);
|
|
3589 gcpro1.nvars++;
|
|
3590 }
|
|
3591 }
|
|
3592
|
|
3593 /* &optional args default to nil. */
|
|
3594 while (p - args < max_args)
|
|
3595 *p++ = Qnil;
|
|
3596
|
|
3597 backtrace.args = args;
|
|
3598 backtrace.nargs = nargs;
|
|
3599
|
1292
|
3600 PROFILE_ENTER_FUNCTION ();
|
428
|
3601 FUNCALL_SUBR (val, subr, args, max_args);
|
1292
|
3602 PROFILE_EXIT_FUNCTION ();
|
428
|
3603
|
|
3604 UNGCPRO;
|
|
3605 }
|
|
3606 else if (max_args == MANY)
|
|
3607 {
|
|
3608 /* Pass a vector of evaluated arguments */
|
|
3609 struct gcpro gcpro1;
|
|
3610 Lisp_Object *args = alloca_array (Lisp_Object, nargs);
|
|
3611 REGISTER Lisp_Object *p = args;
|
|
3612
|
|
3613 GCPRO1 (args[0]);
|
|
3614 gcpro1.nvars = 0;
|
|
3615
|
|
3616 {
|
|
3617 LIST_LOOP_2 (arg, original_args)
|
|
3618 {
|
|
3619 *p++ = Feval (arg);
|
|
3620 gcpro1.nvars++;
|
|
3621 }
|
|
3622 }
|
|
3623
|
|
3624 backtrace.args = args;
|
|
3625 backtrace.nargs = nargs;
|
|
3626
|
1292
|
3627 PROFILE_ENTER_FUNCTION ();
|
428
|
3628 val = (((Lisp_Object (*) (int, Lisp_Object *)) subr_function (subr))
|
|
3629 (nargs, args));
|
1292
|
3630 PROFILE_EXIT_FUNCTION ();
|
428
|
3631
|
|
3632 UNGCPRO;
|
|
3633 }
|
|
3634 else
|
|
3635 {
|
|
3636 wrong_number_of_arguments:
|
440
|
3637 val = signal_wrong_number_of_arguments_error (original_fun, nargs);
|
428
|
3638 }
|
|
3639 }
|
|
3640 else if (COMPILED_FUNCTIONP (fun))
|
|
3641 {
|
|
3642 struct gcpro gcpro1;
|
|
3643 Lisp_Object *args = alloca_array (Lisp_Object, nargs);
|
|
3644 REGISTER Lisp_Object *p = args;
|
|
3645
|
|
3646 GCPRO1 (args[0]);
|
|
3647 gcpro1.nvars = 0;
|
|
3648
|
|
3649 {
|
|
3650 LIST_LOOP_2 (arg, original_args)
|
|
3651 {
|
|
3652 *p++ = Feval (arg);
|
|
3653 gcpro1.nvars++;
|
|
3654 }
|
|
3655 }
|
|
3656
|
|
3657 backtrace.args = args;
|
|
3658 backtrace.nargs = nargs;
|
|
3659 backtrace.evalargs = 0;
|
|
3660
|
1292
|
3661 PROFILE_ENTER_FUNCTION ();
|
428
|
3662 val = funcall_compiled_function (fun, nargs, args);
|
1292
|
3663 PROFILE_EXIT_FUNCTION ();
|
428
|
3664
|
|
3665 /* Do the debug-on-exit now, while args is still GCPROed. */
|
|
3666 if (backtrace.debug_on_exit)
|
|
3667 val = do_debug_on_exit (val);
|
|
3668 /* Don't do it again when we return to eval. */
|
|
3669 backtrace.debug_on_exit = 0;
|
|
3670
|
|
3671 UNGCPRO;
|
|
3672 }
|
|
3673 else if (CONSP (fun))
|
|
3674 {
|
|
3675 Lisp_Object funcar = XCAR (fun);
|
|
3676
|
|
3677 if (EQ (funcar, Qautoload))
|
|
3678 {
|
970
|
3679 /* do_autoload GCPROs both arguments */
|
428
|
3680 do_autoload (fun, original_fun);
|
|
3681 goto retry;
|
|
3682 }
|
|
3683 else if (EQ (funcar, Qmacro))
|
|
3684 {
|
1292
|
3685 PROFILE_ENTER_FUNCTION ();
|
428
|
3686 val = Feval (apply1 (XCDR (fun), original_args));
|
1292
|
3687 PROFILE_EXIT_FUNCTION ();
|
428
|
3688 }
|
|
3689 else if (EQ (funcar, Qlambda))
|
|
3690 {
|
|
3691 struct gcpro gcpro1;
|
|
3692 Lisp_Object *args = alloca_array (Lisp_Object, nargs);
|
|
3693 REGISTER Lisp_Object *p = args;
|
|
3694
|
|
3695 GCPRO1 (args[0]);
|
|
3696 gcpro1.nvars = 0;
|
|
3697
|
|
3698 {
|
|
3699 LIST_LOOP_2 (arg, original_args)
|
|
3700 {
|
|
3701 *p++ = Feval (arg);
|
|
3702 gcpro1.nvars++;
|
|
3703 }
|
|
3704 }
|
|
3705
|
|
3706 UNGCPRO;
|
|
3707
|
|
3708 backtrace.args = args; /* this also GCPROs `args' */
|
|
3709 backtrace.nargs = nargs;
|
|
3710 backtrace.evalargs = 0;
|
|
3711
|
1292
|
3712 PROFILE_ENTER_FUNCTION ();
|
428
|
3713 val = funcall_lambda (fun, nargs, args);
|
1292
|
3714 PROFILE_EXIT_FUNCTION ();
|
428
|
3715
|
|
3716 /* Do the debug-on-exit now, while args is still GCPROed. */
|
|
3717 if (backtrace.debug_on_exit)
|
|
3718 val = do_debug_on_exit (val);
|
|
3719 /* Don't do it again when we return to eval. */
|
|
3720 backtrace.debug_on_exit = 0;
|
|
3721 }
|
|
3722 else
|
|
3723 {
|
|
3724 goto invalid_function;
|
|
3725 }
|
|
3726 }
|
|
3727 else /* ! (SUBRP (fun) || COMPILED_FUNCTIONP (fun) || CONSP (fun)) */
|
|
3728 {
|
|
3729 invalid_function:
|
436
|
3730 val = signal_invalid_function_error (fun);
|
428
|
3731 }
|
|
3732
|
|
3733 lisp_eval_depth--;
|
|
3734 if (backtrace.debug_on_exit)
|
|
3735 val = do_debug_on_exit (val);
|
|
3736 POP_BACKTRACE (backtrace);
|
|
3737 return val;
|
|
3738 }
|
|
3739
|
|
3740
|
1111
|
3741
|
|
3742 static void
|
|
3743 run_post_gc_hook (void)
|
|
3744 {
|
|
3745 Lisp_Object args[2];
|
|
3746
|
|
3747 args[0] = Qpost_gc_hook;
|
|
3748 args[1] = Fcons (Fcons (Qfinalize_list, zap_finalize_list ()), Qnil);
|
|
3749
|
|
3750 run_hook_with_args_trapping_problems
|
1333
|
3751 (Qgarbage_collecting, 2, args, RUN_HOOKS_TO_COMPLETION,
|
1111
|
3752 INHIBIT_QUIT | NO_INHIBIT_ERRORS);
|
|
3753 }
|
|
3754
|
428
|
3755 DEFUN ("funcall", Ffuncall, 1, MANY, 0, /*
|
|
3756 Call first argument as a function, passing the remaining arguments to it.
|
|
3757 Thus, (funcall 'cons 'x 'y) returns (x . y).
|
|
3758 */
|
|
3759 (int nargs, Lisp_Object *args))
|
|
3760 {
|
|
3761 /* This function can GC */
|
|
3762 Lisp_Object fun;
|
|
3763 Lisp_Object val;
|
|
3764 struct backtrace backtrace;
|
|
3765 int fun_nargs = nargs - 1;
|
|
3766 Lisp_Object *fun_args = args + 1;
|
|
3767
|
1318
|
3768 /* QUIT will check for proper redisplay wrapping */
|
|
3769
|
428
|
3770 QUIT;
|
851
|
3771
|
|
3772 if (funcall_allocation_flag)
|
|
3773 {
|
|
3774 if (need_to_garbage_collect)
|
|
3775 /* Callers should gcpro lexpr args */
|
|
3776 garbage_collect_1 ();
|
|
3777 if (need_to_check_c_alloca)
|
|
3778 {
|
|
3779 if (++funcall_alloca_count >= MAX_FUNCALLS_BETWEEN_ALLOCA_CLEANUP)
|
|
3780 {
|
|
3781 xemacs_c_alloca (0);
|
|
3782 funcall_alloca_count = 0;
|
|
3783 }
|
|
3784 }
|
887
|
3785 if (need_to_signal_post_gc)
|
|
3786 {
|
|
3787 need_to_signal_post_gc = 0;
|
1111
|
3788 recompute_funcall_allocation_flag ();
|
|
3789 run_post_gc_hook ();
|
887
|
3790 }
|
851
|
3791 }
|
428
|
3792
|
|
3793 if (++lisp_eval_depth > max_lisp_eval_depth)
|
|
3794 {
|
|
3795 if (max_lisp_eval_depth < 100)
|
|
3796 max_lisp_eval_depth = 100;
|
|
3797 if (lisp_eval_depth > max_lisp_eval_depth)
|
563
|
3798 stack_overflow ("Lisp nesting exceeds `max-lisp-eval-depth'",
|
|
3799 Qunbound);
|
428
|
3800 }
|
|
3801
|
1292
|
3802 backtrace.pdlcount = specpdl_depth ();
|
428
|
3803 backtrace.function = &args[0];
|
|
3804 backtrace.args = fun_args;
|
|
3805 backtrace.nargs = fun_nargs;
|
|
3806 backtrace.evalargs = 0;
|
|
3807 backtrace.debug_on_exit = 0;
|
1292
|
3808 backtrace.function_being_called = 0;
|
428
|
3809 PUSH_BACKTRACE (backtrace);
|
|
3810
|
|
3811 if (debug_on_next_call)
|
|
3812 do_debug_on_call (Qlambda);
|
|
3813
|
|
3814 retry:
|
|
3815
|
|
3816 fun = args[0];
|
|
3817
|
|
3818 /* We could call indirect_function directly, but profiling shows
|
|
3819 this is worth optimizing by partially unrolling the loop. */
|
|
3820 if (SYMBOLP (fun))
|
|
3821 {
|
|
3822 fun = XSYMBOL (fun)->function;
|
|
3823 if (SYMBOLP (fun))
|
|
3824 {
|
|
3825 fun = XSYMBOL (fun)->function;
|
|
3826 if (SYMBOLP (fun))
|
|
3827 fun = indirect_function (fun, 1);
|
|
3828 }
|
|
3829 }
|
|
3830
|
|
3831 if (SUBRP (fun))
|
|
3832 {
|
|
3833 Lisp_Subr *subr = XSUBR (fun);
|
|
3834 int max_args = subr->max_args;
|
|
3835 Lisp_Object spacious_args[SUBR_MAX_ARGS];
|
|
3836
|
|
3837 if (fun_nargs == max_args) /* Optimize for the common case */
|
|
3838 {
|
|
3839 funcall_subr:
|
1292
|
3840 PROFILE_ENTER_FUNCTION ();
|
428
|
3841 FUNCALL_SUBR (val, subr, fun_args, max_args);
|
1292
|
3842 PROFILE_EXIT_FUNCTION ();
|
428
|
3843 }
|
436
|
3844 else if (fun_nargs < subr->min_args)
|
|
3845 {
|
|
3846 goto wrong_number_of_arguments;
|
|
3847 }
|
428
|
3848 else if (fun_nargs < max_args)
|
|
3849 {
|
|
3850 Lisp_Object *p = spacious_args;
|
|
3851
|
|
3852 /* Default optionals to nil */
|
|
3853 while (fun_nargs--)
|
|
3854 *p++ = *fun_args++;
|
|
3855 while (p - spacious_args < max_args)
|
|
3856 *p++ = Qnil;
|
|
3857
|
|
3858 fun_args = spacious_args;
|
|
3859 goto funcall_subr;
|
|
3860 }
|
|
3861 else if (max_args == MANY)
|
|
3862 {
|
1292
|
3863 PROFILE_ENTER_FUNCTION ();
|
436
|
3864 val = SUBR_FUNCTION (subr, MANY) (fun_nargs, fun_args);
|
1292
|
3865 PROFILE_EXIT_FUNCTION ();
|
428
|
3866 }
|
|
3867 else if (max_args == UNEVALLED) /* Can't funcall a special form */
|
|
3868 {
|
|
3869 goto invalid_function;
|
|
3870 }
|
|
3871 else
|
|
3872 {
|
|
3873 wrong_number_of_arguments:
|
436
|
3874 val = signal_wrong_number_of_arguments_error (fun, fun_nargs);
|
428
|
3875 }
|
|
3876 }
|
|
3877 else if (COMPILED_FUNCTIONP (fun))
|
|
3878 {
|
1292
|
3879 PROFILE_ENTER_FUNCTION ();
|
428
|
3880 val = funcall_compiled_function (fun, fun_nargs, fun_args);
|
1292
|
3881 PROFILE_EXIT_FUNCTION ();
|
428
|
3882 }
|
|
3883 else if (CONSP (fun))
|
|
3884 {
|
|
3885 Lisp_Object funcar = XCAR (fun);
|
|
3886
|
|
3887 if (EQ (funcar, Qlambda))
|
|
3888 {
|
1292
|
3889 PROFILE_ENTER_FUNCTION ();
|
428
|
3890 val = funcall_lambda (fun, fun_nargs, fun_args);
|
1292
|
3891 PROFILE_EXIT_FUNCTION ();
|
428
|
3892 }
|
|
3893 else if (EQ (funcar, Qautoload))
|
|
3894 {
|
970
|
3895 /* do_autoload GCPROs both arguments */
|
428
|
3896 do_autoload (fun, args[0]);
|
|
3897 goto retry;
|
|
3898 }
|
|
3899 else /* Can't funcall a macro */
|
|
3900 {
|
|
3901 goto invalid_function;
|
|
3902 }
|
|
3903 }
|
|
3904 else if (UNBOUNDP (fun))
|
|
3905 {
|
436
|
3906 val = signal_void_function_error (args[0]);
|
428
|
3907 }
|
|
3908 else
|
|
3909 {
|
|
3910 invalid_function:
|
436
|
3911 val = signal_invalid_function_error (fun);
|
428
|
3912 }
|
|
3913
|
|
3914 lisp_eval_depth--;
|
|
3915 if (backtrace.debug_on_exit)
|
|
3916 val = do_debug_on_exit (val);
|
|
3917 POP_BACKTRACE (backtrace);
|
|
3918 return val;
|
|
3919 }
|
|
3920
|
|
3921 DEFUN ("functionp", Ffunctionp, 1, 1, 0, /*
|
|
3922 Return t if OBJECT can be called as a function, else nil.
|
|
3923 A function is an object that can be applied to arguments,
|
|
3924 using for example `funcall' or `apply'.
|
|
3925 */
|
|
3926 (object))
|
|
3927 {
|
|
3928 if (SYMBOLP (object))
|
|
3929 object = indirect_function (object, 0);
|
|
3930
|
919
|
3931 if (COMPILED_FUNCTIONP (object) || SUBRP (object))
|
|
3932 return Qt;
|
|
3933 if (CONSP (object))
|
|
3934 {
|
|
3935 Lisp_Object car = XCAR (object);
|
|
3936 if (EQ (car, Qlambda))
|
|
3937 return Qt;
|
|
3938 if (EQ (car, Qautoload)
|
|
3939 && NILP (Fcar_safe (Fcdr_safe (Fcdr_safe (Fcdr_safe (XCDR (object)))))))
|
|
3940 return Qt;
|
|
3941 }
|
|
3942 return Qnil;
|
428
|
3943 }
|
|
3944
|
|
3945 static Lisp_Object
|
|
3946 function_argcount (Lisp_Object function, int function_min_args_p)
|
|
3947 {
|
|
3948 Lisp_Object orig_function = function;
|
|
3949 Lisp_Object arglist;
|
|
3950
|
|
3951 retry:
|
|
3952
|
|
3953 if (SYMBOLP (function))
|
|
3954 function = indirect_function (function, 1);
|
|
3955
|
|
3956 if (SUBRP (function))
|
|
3957 {
|
442
|
3958 /* Using return with the ?: operator tickles a DEC CC compiler bug. */
|
|
3959 if (function_min_args_p)
|
|
3960 return Fsubr_min_args (function);
|
|
3961 else
|
|
3962 return Fsubr_max_args (function);
|
428
|
3963 }
|
|
3964 else if (COMPILED_FUNCTIONP (function))
|
|
3965 {
|
814
|
3966 Lisp_Compiled_Function *f = XCOMPILED_FUNCTION (function);
|
|
3967
|
1737
|
3968 if (!OPAQUEP (f->instructions))
|
|
3969 /* Lazily munge the instructions into a more efficient form */
|
|
3970 /* Needed to set max_args */
|
|
3971 optimize_compiled_function (function);
|
|
3972
|
814
|
3973 if (function_min_args_p)
|
|
3974 return make_int (f->min_args);
|
|
3975 else if (f->max_args == MANY)
|
|
3976 return Qnil;
|
|
3977 else
|
|
3978 return make_int (f->max_args);
|
428
|
3979 }
|
|
3980 else if (CONSP (function))
|
|
3981 {
|
|
3982 Lisp_Object funcar = XCAR (function);
|
|
3983
|
|
3984 if (EQ (funcar, Qmacro))
|
|
3985 {
|
|
3986 function = XCDR (function);
|
|
3987 goto retry;
|
|
3988 }
|
|
3989 else if (EQ (funcar, Qautoload))
|
|
3990 {
|
970
|
3991 /* do_autoload GCPROs both arguments */
|
428
|
3992 do_autoload (function, orig_function);
|
442
|
3993 function = orig_function;
|
428
|
3994 goto retry;
|
|
3995 }
|
|
3996 else if (EQ (funcar, Qlambda))
|
|
3997 {
|
|
3998 arglist = Fcar (XCDR (function));
|
|
3999 }
|
|
4000 else
|
|
4001 {
|
|
4002 goto invalid_function;
|
|
4003 }
|
|
4004 }
|
|
4005 else
|
|
4006 {
|
|
4007 invalid_function:
|
442
|
4008 return signal_invalid_function_error (orig_function);
|
428
|
4009 }
|
|
4010
|
|
4011 {
|
|
4012 int argcount = 0;
|
|
4013
|
|
4014 EXTERNAL_LIST_LOOP_2 (arg, arglist)
|
|
4015 {
|
|
4016 if (EQ (arg, Qand_optional))
|
|
4017 {
|
|
4018 if (function_min_args_p)
|
|
4019 break;
|
|
4020 }
|
|
4021 else if (EQ (arg, Qand_rest))
|
|
4022 {
|
|
4023 if (function_min_args_p)
|
|
4024 break;
|
|
4025 else
|
|
4026 return Qnil;
|
|
4027 }
|
|
4028 else
|
|
4029 {
|
|
4030 argcount++;
|
|
4031 }
|
|
4032 }
|
|
4033
|
|
4034 return make_int (argcount);
|
|
4035 }
|
|
4036 }
|
|
4037
|
|
4038 DEFUN ("function-min-args", Ffunction_min_args, 1, 1, 0, /*
|
617
|
4039 Return the minimum number of arguments a function may be called with.
|
428
|
4040 The function may be any form that can be passed to `funcall',
|
|
4041 any special form, or any macro.
|
853
|
4042
|
|
4043 To check if a function can be called with a specified number of
|
|
4044 arguments, use `function-allows-args'.
|
428
|
4045 */
|
|
4046 (function))
|
|
4047 {
|
|
4048 return function_argcount (function, 1);
|
|
4049 }
|
|
4050
|
|
4051 DEFUN ("function-max-args", Ffunction_max_args, 1, 1, 0, /*
|
617
|
4052 Return the maximum number of arguments a function may be called with.
|
428
|
4053 The function may be any form that can be passed to `funcall',
|
|
4054 any special form, or any macro.
|
|
4055 If the function takes an arbitrary number of arguments or is
|
|
4056 a built-in special form, nil is returned.
|
853
|
4057
|
|
4058 To check if a function can be called with a specified number of
|
|
4059 arguments, use `function-allows-args'.
|
428
|
4060 */
|
|
4061 (function))
|
|
4062 {
|
|
4063 return function_argcount (function, 0);
|
|
4064 }
|
|
4065
|
|
4066
|
|
4067 DEFUN ("apply", Fapply, 2, MANY, 0, /*
|
|
4068 Call FUNCTION with the remaining args, using the last arg as a list of args.
|
|
4069 Thus, (apply '+ 1 2 '(3 4)) returns 10.
|
|
4070 */
|
|
4071 (int nargs, Lisp_Object *args))
|
|
4072 {
|
|
4073 /* This function can GC */
|
|
4074 Lisp_Object fun = args[0];
|
|
4075 Lisp_Object spread_arg = args [nargs - 1];
|
|
4076 int numargs;
|
|
4077 int funcall_nargs;
|
|
4078
|
|
4079 GET_EXTERNAL_LIST_LENGTH (spread_arg, numargs);
|
|
4080
|
|
4081 if (numargs == 0)
|
|
4082 /* (apply foo 0 1 '()) */
|
|
4083 return Ffuncall (nargs - 1, args);
|
|
4084 else if (numargs == 1)
|
|
4085 {
|
|
4086 /* (apply foo 0 1 '(2)) */
|
|
4087 args [nargs - 1] = XCAR (spread_arg);
|
|
4088 return Ffuncall (nargs, args);
|
|
4089 }
|
|
4090
|
|
4091 /* -1 for function, -1 for spread arg */
|
|
4092 numargs = nargs - 2 + numargs;
|
|
4093 /* +1 for function */
|
|
4094 funcall_nargs = 1 + numargs;
|
|
4095
|
|
4096 if (SYMBOLP (fun))
|
|
4097 fun = indirect_function (fun, 0);
|
|
4098
|
|
4099 if (SUBRP (fun))
|
|
4100 {
|
|
4101 Lisp_Subr *subr = XSUBR (fun);
|
|
4102 int max_args = subr->max_args;
|
|
4103
|
|
4104 if (numargs < subr->min_args
|
|
4105 || (max_args >= 0 && max_args < numargs))
|
|
4106 {
|
|
4107 /* Let funcall get the error */
|
|
4108 }
|
|
4109 else if (max_args > numargs)
|
|
4110 {
|
|
4111 /* Avoid having funcall cons up yet another new vector of arguments
|
|
4112 by explicitly supplying nil's for optional values */
|
|
4113 funcall_nargs += (max_args - numargs);
|
|
4114 }
|
|
4115 }
|
|
4116 else if (UNBOUNDP (fun))
|
|
4117 {
|
|
4118 /* Let funcall get the error */
|
|
4119 fun = args[0];
|
|
4120 }
|
|
4121
|
|
4122 {
|
|
4123 REGISTER int i;
|
|
4124 Lisp_Object *funcall_args = alloca_array (Lisp_Object, funcall_nargs);
|
|
4125 struct gcpro gcpro1;
|
|
4126
|
|
4127 GCPRO1 (*funcall_args);
|
|
4128 gcpro1.nvars = funcall_nargs;
|
|
4129
|
|
4130 /* Copy in the unspread args */
|
|
4131 memcpy (funcall_args, args, (nargs - 1) * sizeof (Lisp_Object));
|
|
4132 /* Spread the last arg we got. Its first element goes in
|
|
4133 the slot that it used to occupy, hence this value of I. */
|
|
4134 for (i = nargs - 1;
|
|
4135 !NILP (spread_arg); /* i < 1 + numargs */
|
|
4136 i++, spread_arg = XCDR (spread_arg))
|
|
4137 {
|
|
4138 funcall_args [i] = XCAR (spread_arg);
|
|
4139 }
|
|
4140 /* Supply nil for optional args (to subrs) */
|
|
4141 for (; i < funcall_nargs; i++)
|
|
4142 funcall_args[i] = Qnil;
|
|
4143
|
|
4144
|
|
4145 RETURN_UNGCPRO (Ffuncall (funcall_nargs, funcall_args));
|
|
4146 }
|
|
4147 }
|
|
4148
|
|
4149
|
|
4150 /* Apply lambda list FUN to the NARGS evaluated arguments in ARGS and
|
|
4151 return the result of evaluation. */
|
|
4152
|
|
4153 static Lisp_Object
|
|
4154 funcall_lambda (Lisp_Object fun, int nargs, Lisp_Object args[])
|
|
4155 {
|
|
4156 /* This function can GC */
|
442
|
4157 Lisp_Object arglist, body, tail;
|
428
|
4158 int speccount = specpdl_depth();
|
|
4159 REGISTER int i = 0;
|
|
4160
|
|
4161 tail = XCDR (fun);
|
|
4162
|
|
4163 if (!CONSP (tail))
|
|
4164 goto invalid_function;
|
|
4165
|
|
4166 arglist = XCAR (tail);
|
|
4167 body = XCDR (tail);
|
|
4168
|
|
4169 {
|
|
4170 int optional = 0, rest = 0;
|
|
4171
|
442
|
4172 EXTERNAL_LIST_LOOP_2 (symbol, arglist)
|
428
|
4173 {
|
|
4174 if (!SYMBOLP (symbol))
|
|
4175 goto invalid_function;
|
|
4176 if (EQ (symbol, Qand_rest))
|
|
4177 rest = 1;
|
|
4178 else if (EQ (symbol, Qand_optional))
|
|
4179 optional = 1;
|
|
4180 else if (rest)
|
|
4181 {
|
|
4182 specbind (symbol, Flist (nargs - i, &args[i]));
|
|
4183 i = nargs;
|
|
4184 }
|
|
4185 else if (i < nargs)
|
|
4186 specbind (symbol, args[i++]);
|
|
4187 else if (!optional)
|
|
4188 goto wrong_number_of_arguments;
|
|
4189 else
|
|
4190 specbind (symbol, Qnil);
|
|
4191 }
|
|
4192 }
|
|
4193
|
|
4194 if (i < nargs)
|
|
4195 goto wrong_number_of_arguments;
|
|
4196
|
771
|
4197 return unbind_to_1 (speccount, Fprogn (body));
|
428
|
4198
|
|
4199 wrong_number_of_arguments:
|
436
|
4200 return signal_wrong_number_of_arguments_error (fun, nargs);
|
428
|
4201
|
|
4202 invalid_function:
|
436
|
4203 return signal_invalid_function_error (fun);
|
428
|
4204 }
|
|
4205
|
|
4206
|
|
4207 /************************************************************************/
|
|
4208 /* Run hook variables in various ways. */
|
|
4209 /************************************************************************/
|
|
4210
|
|
4211 DEFUN ("run-hooks", Frun_hooks, 1, MANY, 0, /*
|
|
4212 Run each hook in HOOKS. Major mode functions use this.
|
|
4213 Each argument should be a symbol, a hook variable.
|
|
4214 These symbols are processed in the order specified.
|
|
4215 If a hook symbol has a non-nil value, that value may be a function
|
|
4216 or a list of functions to be called to run the hook.
|
|
4217 If the value is a function, it is called with no arguments.
|
|
4218 If it is a list, the elements are called, in order, with no arguments.
|
|
4219
|
|
4220 To make a hook variable buffer-local, use `make-local-hook',
|
|
4221 not `make-local-variable'.
|
|
4222 */
|
|
4223 (int nargs, Lisp_Object *args))
|
|
4224 {
|
|
4225 REGISTER int i;
|
|
4226
|
|
4227 for (i = 0; i < nargs; i++)
|
|
4228 run_hook_with_args (1, args + i, RUN_HOOKS_TO_COMPLETION);
|
|
4229
|
|
4230 return Qnil;
|
|
4231 }
|
|
4232
|
|
4233 DEFUN ("run-hook-with-args", Frun_hook_with_args, 1, MANY, 0, /*
|
|
4234 Run HOOK with the specified arguments ARGS.
|
|
4235 HOOK should be a symbol, a hook variable. If HOOK has a non-nil
|
|
4236 value, that value may be a function or a list of functions to be
|
|
4237 called to run the hook. If the value is a function, it is called with
|
|
4238 the given arguments and its return value is returned. If it is a list
|
|
4239 of functions, those functions are called, in order,
|
|
4240 with the given arguments ARGS.
|
444
|
4241 It is best not to depend on the value returned by `run-hook-with-args',
|
428
|
4242 as that may change.
|
|
4243
|
|
4244 To make a hook variable buffer-local, use `make-local-hook',
|
|
4245 not `make-local-variable'.
|
|
4246 */
|
|
4247 (int nargs, Lisp_Object *args))
|
|
4248 {
|
|
4249 return run_hook_with_args (nargs, args, RUN_HOOKS_TO_COMPLETION);
|
|
4250 }
|
|
4251
|
|
4252 DEFUN ("run-hook-with-args-until-success", Frun_hook_with_args_until_success, 1, MANY, 0, /*
|
|
4253 Run HOOK with the specified arguments ARGS.
|
|
4254 HOOK should be a symbol, a hook variable. Its value should
|
|
4255 be a list of functions. We call those functions, one by one,
|
|
4256 passing arguments ARGS to each of them, until one of them
|
|
4257 returns a non-nil value. Then we return that value.
|
|
4258 If all the functions return nil, we return nil.
|
|
4259
|
|
4260 To make a hook variable buffer-local, use `make-local-hook',
|
|
4261 not `make-local-variable'.
|
|
4262 */
|
|
4263 (int nargs, Lisp_Object *args))
|
|
4264 {
|
|
4265 return run_hook_with_args (nargs, args, RUN_HOOKS_UNTIL_SUCCESS);
|
|
4266 }
|
|
4267
|
|
4268 DEFUN ("run-hook-with-args-until-failure", Frun_hook_with_args_until_failure, 1, MANY, 0, /*
|
|
4269 Run HOOK with the specified arguments ARGS.
|
|
4270 HOOK should be a symbol, a hook variable. Its value should
|
|
4271 be a list of functions. We call those functions, one by one,
|
|
4272 passing arguments ARGS to each of them, until one of them
|
|
4273 returns nil. Then we return nil.
|
|
4274 If all the functions return non-nil, we return non-nil.
|
|
4275
|
|
4276 To make a hook variable buffer-local, use `make-local-hook',
|
|
4277 not `make-local-variable'.
|
|
4278 */
|
|
4279 (int nargs, Lisp_Object *args))
|
|
4280 {
|
|
4281 return run_hook_with_args (nargs, args, RUN_HOOKS_UNTIL_FAILURE);
|
|
4282 }
|
|
4283
|
|
4284 /* ARGS[0] should be a hook symbol.
|
|
4285 Call each of the functions in the hook value, passing each of them
|
|
4286 as arguments all the rest of ARGS (all NARGS - 1 elements).
|
|
4287 COND specifies a condition to test after each call
|
|
4288 to decide whether to stop.
|
|
4289 The caller (or its caller, etc) must gcpro all of ARGS,
|
|
4290 except that it isn't necessary to gcpro ARGS[0]. */
|
|
4291
|
|
4292 Lisp_Object
|
|
4293 run_hook_with_args_in_buffer (struct buffer *buf, int nargs, Lisp_Object *args,
|
|
4294 enum run_hooks_condition cond)
|
|
4295 {
|
|
4296 Lisp_Object sym, val, ret;
|
|
4297
|
|
4298 if (!initialized || preparing_for_armageddon)
|
|
4299 /* We need to bail out of here pronto. */
|
|
4300 return Qnil;
|
|
4301
|
|
4302 /* Whenever gc_in_progress is true, preparing_for_armageddon
|
|
4303 will also be true unless something is really hosed. */
|
|
4304 assert (!gc_in_progress);
|
|
4305
|
|
4306 sym = args[0];
|
771
|
4307 val = symbol_value_in_buffer (sym, wrap_buffer (buf));
|
428
|
4308 ret = (cond == RUN_HOOKS_UNTIL_FAILURE ? Qt : Qnil);
|
|
4309
|
|
4310 if (UNBOUNDP (val) || NILP (val))
|
|
4311 return ret;
|
|
4312 else if (!CONSP (val) || EQ (XCAR (val), Qlambda))
|
|
4313 {
|
|
4314 args[0] = val;
|
|
4315 return Ffuncall (nargs, args);
|
|
4316 }
|
|
4317 else
|
|
4318 {
|
|
4319 struct gcpro gcpro1, gcpro2, gcpro3;
|
|
4320 Lisp_Object globals = Qnil;
|
|
4321 GCPRO3 (sym, val, globals);
|
|
4322
|
|
4323 for (;
|
|
4324 CONSP (val) && ((cond == RUN_HOOKS_TO_COMPLETION)
|
|
4325 || (cond == RUN_HOOKS_UNTIL_SUCCESS ? NILP (ret)
|
|
4326 : !NILP (ret)));
|
|
4327 val = XCDR (val))
|
|
4328 {
|
|
4329 if (EQ (XCAR (val), Qt))
|
|
4330 {
|
|
4331 /* t indicates this hook has a local binding;
|
|
4332 it means to run the global binding too. */
|
|
4333 globals = Fdefault_value (sym);
|
|
4334
|
|
4335 if ((! CONSP (globals) || EQ (XCAR (globals), Qlambda)) &&
|
|
4336 ! NILP (globals))
|
|
4337 {
|
|
4338 args[0] = globals;
|
|
4339 ret = Ffuncall (nargs, args);
|
|
4340 }
|
|
4341 else
|
|
4342 {
|
|
4343 for (;
|
|
4344 CONSP (globals) && ((cond == RUN_HOOKS_TO_COMPLETION)
|
|
4345 || (cond == RUN_HOOKS_UNTIL_SUCCESS
|
|
4346 ? NILP (ret)
|
|
4347 : !NILP (ret)));
|
|
4348 globals = XCDR (globals))
|
|
4349 {
|
|
4350 args[0] = XCAR (globals);
|
|
4351 /* In a global value, t should not occur. If it does, we
|
|
4352 must ignore it to avoid an endless loop. */
|
|
4353 if (!EQ (args[0], Qt))
|
|
4354 ret = Ffuncall (nargs, args);
|
|
4355 }
|
|
4356 }
|
|
4357 }
|
|
4358 else
|
|
4359 {
|
|
4360 args[0] = XCAR (val);
|
|
4361 ret = Ffuncall (nargs, args);
|
|
4362 }
|
|
4363 }
|
|
4364
|
|
4365 UNGCPRO;
|
|
4366 return ret;
|
|
4367 }
|
|
4368 }
|
|
4369
|
|
4370 Lisp_Object
|
|
4371 run_hook_with_args (int nargs, Lisp_Object *args,
|
|
4372 enum run_hooks_condition cond)
|
|
4373 {
|
|
4374 return run_hook_with_args_in_buffer (current_buffer, nargs, args, cond);
|
|
4375 }
|
|
4376
|
|
4377 #if 0
|
|
4378
|
853
|
4379 /* From FSF 19.30, not currently used; seems like a big kludge. */
|
428
|
4380
|
|
4381 /* Run a hook symbol ARGS[0], but use FUNLIST instead of the actual
|
|
4382 present value of that symbol.
|
|
4383 Call each element of FUNLIST,
|
|
4384 passing each of them the rest of ARGS.
|
|
4385 The caller (or its caller, etc) must gcpro all of ARGS,
|
|
4386 except that it isn't necessary to gcpro ARGS[0]. */
|
|
4387
|
|
4388 Lisp_Object
|
|
4389 run_hook_list_with_args (Lisp_Object funlist, int nargs, Lisp_Object *args)
|
|
4390 {
|
853
|
4391 omitted;
|
428
|
4392 }
|
|
4393
|
|
4394 #endif /* 0 */
|
|
4395
|
|
4396 void
|
|
4397 va_run_hook_with_args (Lisp_Object hook_var, int nargs, ...)
|
|
4398 {
|
|
4399 /* This function can GC */
|
|
4400 struct gcpro gcpro1;
|
|
4401 int i;
|
|
4402 va_list vargs;
|
|
4403 Lisp_Object *funcall_args = alloca_array (Lisp_Object, 1 + nargs);
|
|
4404
|
|
4405 va_start (vargs, nargs);
|
|
4406 funcall_args[0] = hook_var;
|
|
4407 for (i = 0; i < nargs; i++)
|
|
4408 funcall_args[i + 1] = va_arg (vargs, Lisp_Object);
|
|
4409 va_end (vargs);
|
|
4410
|
|
4411 GCPRO1 (*funcall_args);
|
|
4412 gcpro1.nvars = nargs + 1;
|
|
4413 run_hook_with_args (nargs + 1, funcall_args, RUN_HOOKS_TO_COMPLETION);
|
|
4414 UNGCPRO;
|
|
4415 }
|
|
4416
|
|
4417 void
|
|
4418 va_run_hook_with_args_in_buffer (struct buffer *buf, Lisp_Object hook_var,
|
|
4419 int nargs, ...)
|
|
4420 {
|
|
4421 /* This function can GC */
|
|
4422 struct gcpro gcpro1;
|
|
4423 int i;
|
|
4424 va_list vargs;
|
|
4425 Lisp_Object *funcall_args = alloca_array (Lisp_Object, 1 + nargs);
|
|
4426
|
|
4427 va_start (vargs, nargs);
|
|
4428 funcall_args[0] = hook_var;
|
|
4429 for (i = 0; i < nargs; i++)
|
|
4430 funcall_args[i + 1] = va_arg (vargs, Lisp_Object);
|
|
4431 va_end (vargs);
|
|
4432
|
|
4433 GCPRO1 (*funcall_args);
|
|
4434 gcpro1.nvars = nargs + 1;
|
|
4435 run_hook_with_args_in_buffer (buf, nargs + 1, funcall_args,
|
|
4436 RUN_HOOKS_TO_COMPLETION);
|
|
4437 UNGCPRO;
|
|
4438 }
|
|
4439
|
|
4440 Lisp_Object
|
|
4441 run_hook (Lisp_Object hook)
|
|
4442 {
|
853
|
4443 return run_hook_with_args (1, &hook, RUN_HOOKS_TO_COMPLETION);
|
428
|
4444 }
|
|
4445
|
|
4446
|
|
4447 /************************************************************************/
|
|
4448 /* Front-ends to eval, funcall, apply */
|
|
4449 /************************************************************************/
|
|
4450
|
|
4451 /* Apply fn to arg */
|
|
4452 Lisp_Object
|
|
4453 apply1 (Lisp_Object fn, Lisp_Object arg)
|
|
4454 {
|
|
4455 /* This function can GC */
|
|
4456 struct gcpro gcpro1;
|
|
4457 Lisp_Object args[2];
|
|
4458
|
|
4459 if (NILP (arg))
|
|
4460 return Ffuncall (1, &fn);
|
|
4461 GCPRO1 (args[0]);
|
|
4462 gcpro1.nvars = 2;
|
|
4463 args[0] = fn;
|
|
4464 args[1] = arg;
|
|
4465 RETURN_UNGCPRO (Fapply (2, args));
|
|
4466 }
|
|
4467
|
|
4468 /* Call function fn on no arguments */
|
|
4469 Lisp_Object
|
|
4470 call0 (Lisp_Object fn)
|
|
4471 {
|
|
4472 /* This function can GC */
|
|
4473 struct gcpro gcpro1;
|
|
4474
|
|
4475 GCPRO1 (fn);
|
|
4476 RETURN_UNGCPRO (Ffuncall (1, &fn));
|
|
4477 }
|
|
4478
|
|
4479 /* Call function fn with argument arg0 */
|
|
4480 Lisp_Object
|
|
4481 call1 (Lisp_Object fn,
|
|
4482 Lisp_Object arg0)
|
|
4483 {
|
|
4484 /* This function can GC */
|
|
4485 struct gcpro gcpro1;
|
|
4486 Lisp_Object args[2];
|
|
4487 args[0] = fn;
|
|
4488 args[1] = arg0;
|
|
4489 GCPRO1 (args[0]);
|
|
4490 gcpro1.nvars = 2;
|
|
4491 RETURN_UNGCPRO (Ffuncall (2, args));
|
|
4492 }
|
|
4493
|
|
4494 /* Call function fn with arguments arg0, arg1 */
|
|
4495 Lisp_Object
|
|
4496 call2 (Lisp_Object fn,
|
|
4497 Lisp_Object arg0, Lisp_Object arg1)
|
|
4498 {
|
|
4499 /* This function can GC */
|
|
4500 struct gcpro gcpro1;
|
|
4501 Lisp_Object args[3];
|
|
4502 args[0] = fn;
|
|
4503 args[1] = arg0;
|
|
4504 args[2] = arg1;
|
|
4505 GCPRO1 (args[0]);
|
|
4506 gcpro1.nvars = 3;
|
|
4507 RETURN_UNGCPRO (Ffuncall (3, args));
|
|
4508 }
|
|
4509
|
|
4510 /* Call function fn with arguments arg0, arg1, arg2 */
|
|
4511 Lisp_Object
|
|
4512 call3 (Lisp_Object fn,
|
|
4513 Lisp_Object arg0, Lisp_Object arg1, Lisp_Object arg2)
|
|
4514 {
|
|
4515 /* This function can GC */
|
|
4516 struct gcpro gcpro1;
|
|
4517 Lisp_Object args[4];
|
|
4518 args[0] = fn;
|
|
4519 args[1] = arg0;
|
|
4520 args[2] = arg1;
|
|
4521 args[3] = arg2;
|
|
4522 GCPRO1 (args[0]);
|
|
4523 gcpro1.nvars = 4;
|
|
4524 RETURN_UNGCPRO (Ffuncall (4, args));
|
|
4525 }
|
|
4526
|
|
4527 /* Call function fn with arguments arg0, arg1, arg2, arg3 */
|
|
4528 Lisp_Object
|
|
4529 call4 (Lisp_Object fn,
|
|
4530 Lisp_Object arg0, Lisp_Object arg1, Lisp_Object arg2,
|
|
4531 Lisp_Object arg3)
|
|
4532 {
|
|
4533 /* This function can GC */
|
|
4534 struct gcpro gcpro1;
|
|
4535 Lisp_Object args[5];
|
|
4536 args[0] = fn;
|
|
4537 args[1] = arg0;
|
|
4538 args[2] = arg1;
|
|
4539 args[3] = arg2;
|
|
4540 args[4] = arg3;
|
|
4541 GCPRO1 (args[0]);
|
|
4542 gcpro1.nvars = 5;
|
|
4543 RETURN_UNGCPRO (Ffuncall (5, args));
|
|
4544 }
|
|
4545
|
|
4546 /* Call function fn with arguments arg0, arg1, arg2, arg3, arg4 */
|
|
4547 Lisp_Object
|
|
4548 call5 (Lisp_Object fn,
|
|
4549 Lisp_Object arg0, Lisp_Object arg1, Lisp_Object arg2,
|
|
4550 Lisp_Object arg3, Lisp_Object arg4)
|
|
4551 {
|
|
4552 /* This function can GC */
|
|
4553 struct gcpro gcpro1;
|
|
4554 Lisp_Object args[6];
|
|
4555 args[0] = fn;
|
|
4556 args[1] = arg0;
|
|
4557 args[2] = arg1;
|
|
4558 args[3] = arg2;
|
|
4559 args[4] = arg3;
|
|
4560 args[5] = arg4;
|
|
4561 GCPRO1 (args[0]);
|
|
4562 gcpro1.nvars = 6;
|
|
4563 RETURN_UNGCPRO (Ffuncall (6, args));
|
|
4564 }
|
|
4565
|
|
4566 Lisp_Object
|
|
4567 call6 (Lisp_Object fn,
|
|
4568 Lisp_Object arg0, Lisp_Object arg1, Lisp_Object arg2,
|
|
4569 Lisp_Object arg3, Lisp_Object arg4, Lisp_Object arg5)
|
|
4570 {
|
|
4571 /* This function can GC */
|
|
4572 struct gcpro gcpro1;
|
|
4573 Lisp_Object args[7];
|
|
4574 args[0] = fn;
|
|
4575 args[1] = arg0;
|
|
4576 args[2] = arg1;
|
|
4577 args[3] = arg2;
|
|
4578 args[4] = arg3;
|
|
4579 args[5] = arg4;
|
|
4580 args[6] = arg5;
|
|
4581 GCPRO1 (args[0]);
|
|
4582 gcpro1.nvars = 7;
|
|
4583 RETURN_UNGCPRO (Ffuncall (7, args));
|
|
4584 }
|
|
4585
|
|
4586 Lisp_Object
|
|
4587 call7 (Lisp_Object fn,
|
|
4588 Lisp_Object arg0, Lisp_Object arg1, Lisp_Object arg2,
|
|
4589 Lisp_Object arg3, Lisp_Object arg4, Lisp_Object arg5,
|
|
4590 Lisp_Object arg6)
|
|
4591 {
|
|
4592 /* This function can GC */
|
|
4593 struct gcpro gcpro1;
|
|
4594 Lisp_Object args[8];
|
|
4595 args[0] = fn;
|
|
4596 args[1] = arg0;
|
|
4597 args[2] = arg1;
|
|
4598 args[3] = arg2;
|
|
4599 args[4] = arg3;
|
|
4600 args[5] = arg4;
|
|
4601 args[6] = arg5;
|
|
4602 args[7] = arg6;
|
|
4603 GCPRO1 (args[0]);
|
|
4604 gcpro1.nvars = 8;
|
|
4605 RETURN_UNGCPRO (Ffuncall (8, args));
|
|
4606 }
|
|
4607
|
|
4608 Lisp_Object
|
|
4609 call8 (Lisp_Object fn,
|
|
4610 Lisp_Object arg0, Lisp_Object arg1, Lisp_Object arg2,
|
|
4611 Lisp_Object arg3, Lisp_Object arg4, Lisp_Object arg5,
|
|
4612 Lisp_Object arg6, Lisp_Object arg7)
|
|
4613 {
|
|
4614 /* This function can GC */
|
|
4615 struct gcpro gcpro1;
|
|
4616 Lisp_Object args[9];
|
|
4617 args[0] = fn;
|
|
4618 args[1] = arg0;
|
|
4619 args[2] = arg1;
|
|
4620 args[3] = arg2;
|
|
4621 args[4] = arg3;
|
|
4622 args[5] = arg4;
|
|
4623 args[6] = arg5;
|
|
4624 args[7] = arg6;
|
|
4625 args[8] = arg7;
|
|
4626 GCPRO1 (args[0]);
|
|
4627 gcpro1.nvars = 9;
|
|
4628 RETURN_UNGCPRO (Ffuncall (9, args));
|
|
4629 }
|
|
4630
|
|
4631 Lisp_Object
|
|
4632 call0_in_buffer (struct buffer *buf, Lisp_Object fn)
|
|
4633 {
|
|
4634 if (current_buffer == buf)
|
|
4635 return call0 (fn);
|
|
4636 else
|
|
4637 {
|
|
4638 Lisp_Object val;
|
|
4639 int speccount = specpdl_depth();
|
|
4640 record_unwind_protect (Fset_buffer, Fcurrent_buffer ());
|
|
4641 set_buffer_internal (buf);
|
|
4642 val = call0 (fn);
|
771
|
4643 unbind_to (speccount);
|
428
|
4644 return val;
|
|
4645 }
|
|
4646 }
|
|
4647
|
|
4648 Lisp_Object
|
|
4649 call1_in_buffer (struct buffer *buf, Lisp_Object fn,
|
|
4650 Lisp_Object arg0)
|
|
4651 {
|
|
4652 if (current_buffer == buf)
|
|
4653 return call1 (fn, arg0);
|
|
4654 else
|
|
4655 {
|
|
4656 Lisp_Object val;
|
|
4657 int speccount = specpdl_depth();
|
|
4658 record_unwind_protect (Fset_buffer, Fcurrent_buffer ());
|
|
4659 set_buffer_internal (buf);
|
|
4660 val = call1 (fn, arg0);
|
771
|
4661 unbind_to (speccount);
|
428
|
4662 return val;
|
|
4663 }
|
|
4664 }
|
|
4665
|
|
4666 Lisp_Object
|
|
4667 call2_in_buffer (struct buffer *buf, Lisp_Object fn,
|
|
4668 Lisp_Object arg0, Lisp_Object arg1)
|
|
4669 {
|
|
4670 if (current_buffer == buf)
|
|
4671 return call2 (fn, arg0, arg1);
|
|
4672 else
|
|
4673 {
|
|
4674 Lisp_Object val;
|
|
4675 int speccount = specpdl_depth();
|
|
4676 record_unwind_protect (Fset_buffer, Fcurrent_buffer ());
|
|
4677 set_buffer_internal (buf);
|
|
4678 val = call2 (fn, arg0, arg1);
|
771
|
4679 unbind_to (speccount);
|
428
|
4680 return val;
|
|
4681 }
|
|
4682 }
|
|
4683
|
|
4684 Lisp_Object
|
|
4685 call3_in_buffer (struct buffer *buf, Lisp_Object fn,
|
|
4686 Lisp_Object arg0, Lisp_Object arg1, Lisp_Object arg2)
|
|
4687 {
|
|
4688 if (current_buffer == buf)
|
|
4689 return call3 (fn, arg0, arg1, arg2);
|
|
4690 else
|
|
4691 {
|
|
4692 Lisp_Object val;
|
|
4693 int speccount = specpdl_depth();
|
|
4694 record_unwind_protect (Fset_buffer, Fcurrent_buffer ());
|
|
4695 set_buffer_internal (buf);
|
|
4696 val = call3 (fn, arg0, arg1, arg2);
|
771
|
4697 unbind_to (speccount);
|
428
|
4698 return val;
|
|
4699 }
|
|
4700 }
|
|
4701
|
|
4702 Lisp_Object
|
|
4703 call4_in_buffer (struct buffer *buf, Lisp_Object fn,
|
|
4704 Lisp_Object arg0, Lisp_Object arg1, Lisp_Object arg2,
|
|
4705 Lisp_Object arg3)
|
|
4706 {
|
|
4707 if (current_buffer == buf)
|
|
4708 return call4 (fn, arg0, arg1, arg2, arg3);
|
|
4709 else
|
|
4710 {
|
|
4711 Lisp_Object val;
|
|
4712 int speccount = specpdl_depth();
|
|
4713 record_unwind_protect (Fset_buffer, Fcurrent_buffer ());
|
|
4714 set_buffer_internal (buf);
|
|
4715 val = call4 (fn, arg0, arg1, arg2, arg3);
|
771
|
4716 unbind_to (speccount);
|
428
|
4717 return val;
|
|
4718 }
|
|
4719 }
|
|
4720
|
|
4721 Lisp_Object
|
|
4722 eval_in_buffer (struct buffer *buf, Lisp_Object form)
|
|
4723 {
|
|
4724 if (current_buffer == buf)
|
|
4725 return Feval (form);
|
|
4726 else
|
|
4727 {
|
|
4728 Lisp_Object val;
|
|
4729 int speccount = specpdl_depth();
|
|
4730 record_unwind_protect (Fset_buffer, Fcurrent_buffer ());
|
|
4731 set_buffer_internal (buf);
|
|
4732 val = Feval (form);
|
771
|
4733 unbind_to (speccount);
|
428
|
4734 return val;
|
|
4735 }
|
|
4736 }
|
|
4737
|
|
4738
|
|
4739 /************************************************************************/
|
|
4740 /* Error-catching front-ends to eval, funcall, apply */
|
|
4741 /************************************************************************/
|
|
4742
|
853
|
4743 int
|
|
4744 get_inhibit_flags (void)
|
|
4745 {
|
|
4746 return inhibit_flags;
|
|
4747 }
|
|
4748
|
|
4749 void
|
2286
|
4750 check_allowed_operation (int what, Lisp_Object obj, Lisp_Object UNUSED (prop))
|
853
|
4751 {
|
|
4752 if (inhibit_flags & INHIBIT_EXISTING_BUFFER_TEXT_MODIFICATION)
|
|
4753 {
|
|
4754 if (what == OPERATION_MODIFY_BUFFER_TEXT && BUFFERP (obj)
|
|
4755 && NILP (memq_no_quit (obj, Vmodifiable_buffers)))
|
|
4756 invalid_change
|
|
4757 ("Modification of this buffer not currently permitted", obj);
|
|
4758 }
|
|
4759 if (inhibit_flags & INHIBIT_EXISTING_PERMANENT_DISPLAY_OBJECT_DELETION)
|
|
4760 {
|
|
4761 if (what == OPERATION_DELETE_OBJECT
|
|
4762 && (BUFFERP (obj) || WINDOWP (obj) || FRAMEP (obj) || DEVICEP (obj)
|
|
4763 || CONSOLEP (obj))
|
|
4764 && NILP (memq_no_quit (obj, Vdeletable_permanent_display_objects)))
|
|
4765 invalid_change
|
|
4766 ("Deletion of this object not currently permitted", obj);
|
|
4767 }
|
|
4768 }
|
|
4769
|
|
4770 void
|
|
4771 note_object_created (Lisp_Object obj)
|
|
4772 {
|
|
4773 if (inhibit_flags & INHIBIT_EXISTING_BUFFER_TEXT_MODIFICATION)
|
|
4774 {
|
|
4775 if (BUFFERP (obj))
|
|
4776 Vmodifiable_buffers = Fcons (obj, Vmodifiable_buffers);
|
|
4777 }
|
|
4778 if (inhibit_flags & INHIBIT_EXISTING_PERMANENT_DISPLAY_OBJECT_DELETION)
|
|
4779 {
|
|
4780 if (BUFFERP (obj) || WINDOWP (obj) || FRAMEP (obj) || DEVICEP (obj)
|
|
4781 || CONSOLEP (obj))
|
|
4782 Vdeletable_permanent_display_objects =
|
|
4783 Fcons (obj, Vdeletable_permanent_display_objects);
|
|
4784 }
|
|
4785 }
|
|
4786
|
|
4787 void
|
|
4788 note_object_deleted (Lisp_Object obj)
|
|
4789 {
|
|
4790 if (inhibit_flags & INHIBIT_EXISTING_BUFFER_TEXT_MODIFICATION)
|
|
4791 {
|
|
4792 if (BUFFERP (obj))
|
|
4793 Vmodifiable_buffers = delq_no_quit (obj, Vmodifiable_buffers);
|
|
4794 }
|
|
4795 if (inhibit_flags & INHIBIT_EXISTING_PERMANENT_DISPLAY_OBJECT_DELETION)
|
|
4796 {
|
|
4797 if (BUFFERP (obj) || WINDOWP (obj) || FRAMEP (obj) || DEVICEP (obj)
|
|
4798 || CONSOLEP (obj))
|
|
4799 Vdeletable_permanent_display_objects =
|
|
4800 delq_no_quit (obj, Vdeletable_permanent_display_objects);
|
|
4801 }
|
|
4802 }
|
|
4803
|
|
4804 struct call_trapping_problems
|
|
4805 {
|
|
4806 Lisp_Object catchtag;
|
|
4807 Lisp_Object error_conditions;
|
|
4808 Lisp_Object data;
|
|
4809 Lisp_Object backtrace;
|
|
4810 Lisp_Object warning_class;
|
|
4811
|
867
|
4812 const CIbyte *warning_string;
|
853
|
4813 Lisp_Object (*fun) (void *);
|
|
4814 void *arg;
|
|
4815 };
|
428
|
4816
|
2268
|
4817 static DECLARE_DOESNT_RETURN_TYPE
|
|
4818 (Lisp_Object, flagged_a_squirmer (Lisp_Object, Lisp_Object, Lisp_Object));
|
|
4819
|
|
4820 static DOESNT_RETURN_TYPE (Lisp_Object)
|
853
|
4821 flagged_a_squirmer (Lisp_Object error_conditions, Lisp_Object data,
|
|
4822 Lisp_Object opaque)
|
|
4823 {
|
|
4824 struct call_trapping_problems *p =
|
|
4825 (struct call_trapping_problems *) get_opaque_ptr (opaque);
|
|
4826
|
1123
|
4827 if (!(inhibit_flags & INHIBIT_WARNING_ISSUE)
|
|
4828 && !warning_will_be_discarded (current_warning_level ()))
|
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 }
|
|
4901 else if (p->caught_error)
|
|
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
|
|
4982 (If FLAGS contains INHIBIT_WARNING_ISSUE, no warnings are issued;
|
|
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
|
|
6522 }
|
|
6523
|
|
6524 void
|
|
6525 vars_of_eval (void)
|
|
6526 {
|
|
6527 reinit_vars_of_eval ();
|
|
6528
|
|
6529 DEFVAR_INT ("max-specpdl-size", &max_specpdl_size /*
|
|
6530 Limit on number of Lisp variable bindings & unwind-protects before error.
|
|
6531 */ );
|
|
6532
|
|
6533 DEFVAR_INT ("max-lisp-eval-depth", &max_lisp_eval_depth /*
|
|
6534 Limit on depth in `eval', `apply' and `funcall' before error.
|
|
6535 This limit is to catch infinite recursions for you before they cause
|
|
6536 actual stack overflow in C, which would be fatal for Emacs.
|
|
6537 You can safely make it considerably larger than its default value,
|
|
6538 if that proves inconveniently small.
|
|
6539 */ );
|
|
6540
|
|
6541 DEFVAR_LISP ("quit-flag", &Vquit_flag /*
|
853
|
6542 t causes running Lisp code to abort, unless `inhibit-quit' is non-nil.
|
|
6543 `critical' causes running Lisp code to abort regardless of `inhibit-quit'.
|
|
6544 Normally, you do not need to set this value yourself. It is set to
|
|
6545 t each time a Control-G is detected, and to `critical' each time a
|
|
6546 Shift-Control-G is detected. The XEmacs core C code is littered with
|
|
6547 calls to the QUIT; macro, which check the values of `quit-flag' and
|
|
6548 `inhibit-quit' and abort (or more accurately, call (signal 'quit)) if
|
|
6549 it's correct to do so.
|
428
|
6550 */ );
|
|
6551 Vquit_flag = Qnil;
|
|
6552
|
|
6553 DEFVAR_LISP ("inhibit-quit", &Vinhibit_quit /*
|
|
6554 Non-nil inhibits C-g quitting from happening immediately.
|
|
6555 Note that `quit-flag' will still be set by typing C-g,
|
|
6556 so a quit will be signalled as soon as `inhibit-quit' is nil.
|
|
6557 To prevent this happening, set `quit-flag' to nil
|
853
|
6558 before making `inhibit-quit' nil.
|
|
6559
|
|
6560 The value of `inhibit-quit' is ignored if a critical quit is
|
|
6561 requested by typing control-shift-G in a window-system frame;
|
|
6562 this is explained in more detail in `quit-flag'.
|
428
|
6563 */ );
|
|
6564 Vinhibit_quit = Qnil;
|
|
6565
|
|
6566 DEFVAR_LISP ("stack-trace-on-error", &Vstack_trace_on_error /*
|
|
6567 *Non-nil means automatically display a backtrace buffer
|
|
6568 after any error that is not handled by a `condition-case'.
|
|
6569 If the value is a list, an error only means to display a backtrace
|
|
6570 if one of its condition symbols appears in the list.
|
|
6571 See also variable `stack-trace-on-signal'.
|
|
6572 */ );
|
|
6573 Vstack_trace_on_error = Qnil;
|
|
6574
|
|
6575 DEFVAR_LISP ("stack-trace-on-signal", &Vstack_trace_on_signal /*
|
|
6576 *Non-nil means automatically display a backtrace buffer
|
|
6577 after any error that is signalled, whether or not it is handled by
|
|
6578 a `condition-case'.
|
|
6579 If the value is a list, an error only means to display a backtrace
|
|
6580 if one of its condition symbols appears in the list.
|
|
6581 See also variable `stack-trace-on-error'.
|
|
6582 */ );
|
|
6583 Vstack_trace_on_signal = Qnil;
|
|
6584
|
|
6585 DEFVAR_LISP ("debug-ignored-errors", &Vdebug_ignored_errors /*
|
|
6586 *List of errors for which the debugger should not be called.
|
|
6587 Each element may be a condition-name or a regexp that matches error messages.
|
|
6588 If any element applies to a given error, that error skips the debugger
|
|
6589 and just returns to top level.
|
|
6590 This overrides the variable `debug-on-error'.
|
|
6591 It does not apply to errors handled by `condition-case'.
|
|
6592 */ );
|
|
6593 Vdebug_ignored_errors = Qnil;
|
|
6594
|
|
6595 DEFVAR_LISP ("debug-on-error", &Vdebug_on_error /*
|
|
6596 *Non-nil means enter debugger if an unhandled error is signalled.
|
|
6597 The debugger will not be entered if the error is handled by
|
|
6598 a `condition-case'.
|
|
6599 If the value is a list, an error only means to enter the debugger
|
|
6600 if one of its condition symbols appears in the list.
|
|
6601 This variable is overridden by `debug-ignored-errors'.
|
|
6602 See also variables `debug-on-quit' and `debug-on-signal'.
|
1123
|
6603
|
|
6604 If this variable is set while XEmacs is running noninteractively (using
|
|
6605 `-batch'), and XEmacs was configured with `--debug' (#define XEMACS_DEBUG
|
|
6606 in the C code), instead of trying to invoke the Lisp debugger (which
|
|
6607 obviously won't work), XEmacs will break out to a C debugger using
|
|
6608 \(force-debugging-signal t). This is useful because debugging
|
|
6609 noninteractive runs of XEmacs is often very difficult, since they typically
|
|
6610 happen as part of sometimes large and complex make suites (e.g. rebuilding
|
|
6611 the XEmacs packages). NOTE: This runs abort()!!! (As well as and after
|
|
6612 executing INT 3 under MS Windows, which should invoke a debugger if it's
|
|
6613 active.) This is guaranteed to kill XEmacs! (But in this situation, XEmacs
|
|
6614 is about to die anyway, and if no debugger is present, this will usefully
|
|
6615 dump core.) The most useful way to set this flag when debugging
|
|
6616 noninteractive runs, especially in makefiles, is using the environment
|
|
6617 variable XEMACSDEBUG, like this:
|
771
|
6618
|
|
6619 \(using csh) setenv XEMACSDEBUG '(setq debug-on-error t)'
|
|
6620 \(using bash) export XEMACSDEBUG='(setq debug-on-error t)'
|
428
|
6621 */ );
|
|
6622 Vdebug_on_error = Qnil;
|
|
6623
|
|
6624 DEFVAR_LISP ("debug-on-signal", &Vdebug_on_signal /*
|
|
6625 *Non-nil means enter debugger if an error is signalled.
|
|
6626 The debugger will be entered whether or not the error is handled by
|
|
6627 a `condition-case'.
|
|
6628 If the value is a list, an error only means to enter the debugger
|
|
6629 if one of its condition symbols appears in the list.
|
|
6630 See also variable `debug-on-quit'.
|
1123
|
6631
|
|
6632 This will attempt to enter a C debugger when XEmacs is run noninteractively
|
|
6633 and under the same conditions as described in `debug-on-error'.
|
428
|
6634 */ );
|
|
6635 Vdebug_on_signal = Qnil;
|
|
6636
|
|
6637 DEFVAR_BOOL ("debug-on-quit", &debug_on_quit /*
|
|
6638 *Non-nil means enter debugger if quit is signalled (C-G, for example).
|
|
6639 Does not apply if quit is handled by a `condition-case'. Entering the
|
|
6640 debugger can also be achieved at any time (for X11 console) by typing
|
|
6641 control-shift-G to signal a critical quit.
|
|
6642 */ );
|
|
6643 debug_on_quit = 0;
|
|
6644
|
|
6645 DEFVAR_BOOL ("debug-on-next-call", &debug_on_next_call /*
|
|
6646 Non-nil means enter debugger before next `eval', `apply' or `funcall'.
|
|
6647 */ );
|
|
6648
|
1292
|
6649 DEFVAR_BOOL ("backtrace-with-interal-sections",
|
|
6650 &backtrace_with_internal_sections /*
|
|
6651 Non-nil means backtraces will contain additional information indicating
|
|
6652 when particular sections of the C code have been entered, e.g. redisplay(),
|
|
6653 byte-char conversion, internal-external conversion, etc. This can be
|
|
6654 particularly useful when XEmacs crashes, in helping to pinpoint the problem.
|
|
6655 */ );
|
|
6656 #ifdef ERROR_CHECK_STRUCTURES
|
|
6657 backtrace_with_internal_sections = 1;
|
|
6658 #else
|
|
6659 backtrace_with_internal_sections = 0;
|
|
6660 #endif
|
|
6661
|
428
|
6662 DEFVAR_LISP ("debugger", &Vdebugger /*
|
|
6663 Function to call to invoke debugger.
|
|
6664 If due to frame exit, args are `exit' and the value being returned;
|
|
6665 this function's value will be returned instead of that.
|
|
6666 If due to error, args are `error' and a list of the args to `signal'.
|
|
6667 If due to `apply' or `funcall' entry, one arg, `lambda'.
|
|
6668 If due to `eval' entry, one arg, t.
|
|
6669 */ );
|
|
6670 Vdebugger = Qnil;
|
|
6671
|
853
|
6672 staticpro (&Vcatch_everything_tag);
|
|
6673 Vcatch_everything_tag = make_opaque (OPAQUE_CLEAR, 0);
|
|
6674
|
428
|
6675 staticpro (&Vpending_warnings);
|
|
6676 Vpending_warnings = Qnil;
|
1204
|
6677 dump_add_root_lisp_object (&Vpending_warnings_tail);
|
428
|
6678 Vpending_warnings_tail = Qnil;
|
|
6679
|
793
|
6680 DEFVAR_LISP ("log-warning-minimum-level", &Vlog_warning_minimum_level);
|
|
6681 Vlog_warning_minimum_level = Qinfo;
|
|
6682
|
428
|
6683 staticpro (&Vautoload_queue);
|
|
6684 Vautoload_queue = Qnil;
|
|
6685
|
|
6686 staticpro (&Vcondition_handlers);
|
|
6687
|
853
|
6688 staticpro (&Vdeletable_permanent_display_objects);
|
|
6689 Vdeletable_permanent_display_objects = Qnil;
|
|
6690
|
|
6691 staticpro (&Vmodifiable_buffers);
|
|
6692 Vmodifiable_buffers = Qnil;
|
|
6693
|
|
6694 inhibit_flags = 0;
|
|
6695 }
|