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