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.
|
563
|
4 Copyright (C) 2000, 2001 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
|
|
25 #include <config.h>
|
|
26 #include "lisp.h"
|
|
27
|
|
28 #include "commands.h"
|
|
29 #include "backtrace.h"
|
|
30 #include "bytecode.h"
|
|
31 #include "buffer.h"
|
|
32 #include "console.h"
|
|
33 #include "opaque.h"
|
|
34
|
|
35 #ifdef ERROR_CHECK_GC
|
|
36 int always_gc; /* Debugging hack */
|
|
37 #else
|
|
38 #define always_gc 0
|
|
39 #endif
|
|
40
|
|
41 struct backtrace *backtrace_list;
|
|
42
|
|
43 /* Note: you must always fill in all of the fields in a backtrace structure
|
|
44 before pushing them on the backtrace_list. The profiling code depends
|
|
45 on this. */
|
|
46
|
|
47 #define PUSH_BACKTRACE(bt) do { \
|
|
48 (bt).next = backtrace_list; \
|
|
49 backtrace_list = &(bt); \
|
|
50 } while (0)
|
|
51
|
|
52 #define POP_BACKTRACE(bt) do { \
|
|
53 backtrace_list = (bt).next; \
|
|
54 } while (0)
|
|
55
|
|
56 /* Macros for calling subrs with an argument list whose length is only
|
|
57 known at runtime. See EXFUN and DEFUN for similar hackery. */
|
|
58
|
|
59 #define AV_0(av)
|
|
60 #define AV_1(av) av[0]
|
|
61 #define AV_2(av) AV_1(av), av[1]
|
|
62 #define AV_3(av) AV_2(av), av[2]
|
|
63 #define AV_4(av) AV_3(av), av[3]
|
|
64 #define AV_5(av) AV_4(av), av[4]
|
|
65 #define AV_6(av) AV_5(av), av[5]
|
|
66 #define AV_7(av) AV_6(av), av[6]
|
|
67 #define AV_8(av) AV_7(av), av[7]
|
|
68
|
|
69 #define PRIMITIVE_FUNCALL_1(fn, av, ac) \
|
444
|
70 (((Lisp_Object (*)(EXFUN_##ac)) (fn)) (AV_##ac (av)))
|
428
|
71
|
|
72 /* If subrs take more than 8 arguments, more cases need to be added
|
|
73 to this switch. (But wait - don't do it - if you really need
|
|
74 a SUBR with more than 8 arguments, use max_args == MANY.
|
|
75 See the DEFUN macro in lisp.h) */
|
|
76 #define PRIMITIVE_FUNCALL(rv, fn, av, ac) do { \
|
|
77 void (*PF_fn)(void) = (void (*)(void)) fn; \
|
|
78 Lisp_Object *PF_av = (av); \
|
|
79 switch (ac) \
|
|
80 { \
|
436
|
81 default:rv = PRIMITIVE_FUNCALL_1(PF_fn, PF_av, 0); break; \
|
428
|
82 case 1: rv = PRIMITIVE_FUNCALL_1(PF_fn, PF_av, 1); break; \
|
|
83 case 2: rv = PRIMITIVE_FUNCALL_1(PF_fn, PF_av, 2); break; \
|
|
84 case 3: rv = PRIMITIVE_FUNCALL_1(PF_fn, PF_av, 3); break; \
|
|
85 case 4: rv = PRIMITIVE_FUNCALL_1(PF_fn, PF_av, 4); break; \
|
|
86 case 5: rv = PRIMITIVE_FUNCALL_1(PF_fn, PF_av, 5); break; \
|
|
87 case 6: rv = PRIMITIVE_FUNCALL_1(PF_fn, PF_av, 6); break; \
|
|
88 case 7: rv = PRIMITIVE_FUNCALL_1(PF_fn, PF_av, 7); break; \
|
|
89 case 8: rv = PRIMITIVE_FUNCALL_1(PF_fn, PF_av, 8); break; \
|
|
90 } \
|
|
91 } while (0)
|
|
92
|
|
93 #define FUNCALL_SUBR(rv, subr, av, ac) \
|
|
94 PRIMITIVE_FUNCALL (rv, subr_function (subr), av, ac);
|
|
95
|
|
96
|
|
97 /* This is the list of current catches (and also condition-cases).
|
|
98 This is a stack: the most recent catch is at the head of the
|
|
99 list. Catches are created by declaring a 'struct catchtag'
|
|
100 locally, filling the .TAG field in with the tag, and doing
|
|
101 a setjmp() on .JMP. Fthrow() will store the value passed
|
|
102 to it in .VAL and longjmp() back to .JMP, back to the function
|
|
103 that established the catch. This will always be either
|
|
104 internal_catch() (catches established internally or through
|
|
105 `catch') or condition_case_1 (condition-cases established
|
|
106 internally or through `condition-case').
|
|
107
|
|
108 The catchtag also records the current position in the
|
|
109 call stack (stored in BACKTRACE_LIST), the current position
|
|
110 in the specpdl stack (used for variable bindings and
|
|
111 unwind-protects), the value of LISP_EVAL_DEPTH, and the
|
|
112 current position in the GCPRO stack. All of these are
|
|
113 restored by Fthrow().
|
|
114 */
|
|
115
|
|
116 struct catchtag *catchlist;
|
|
117
|
|
118 Lisp_Object Qautoload, Qmacro, Qexit;
|
|
119 Lisp_Object Qinteractive, Qcommandp, Qdefun, Qprogn, Qvalues;
|
|
120 Lisp_Object Vquit_flag, Vinhibit_quit;
|
|
121 Lisp_Object Qand_rest, Qand_optional;
|
|
122 Lisp_Object Qdebug_on_error, Qstack_trace_on_error;
|
|
123 Lisp_Object Qdebug_on_signal, Qstack_trace_on_signal;
|
|
124 Lisp_Object Qdebugger;
|
|
125 Lisp_Object Qinhibit_quit;
|
|
126 Lisp_Object Qrun_hooks;
|
|
127 Lisp_Object Qsetq;
|
|
128 Lisp_Object Qdisplay_warning;
|
|
129 Lisp_Object Vpending_warnings, Vpending_warnings_tail;
|
|
130 Lisp_Object Qif;
|
|
131
|
|
132 /* Records whether we want errors to occur. This will be a boolean,
|
|
133 nil (errors OK) or t (no errors). If t, an error will cause a
|
|
134 throw to Qunbound_suspended_errors_tag.
|
|
135
|
|
136 See call_with_suspended_errors(). */
|
|
137 Lisp_Object Vcurrent_error_state;
|
|
138
|
|
139 /* Current warning class when warnings occur, or nil for no warnings.
|
|
140 Only meaningful when Vcurrent_error_state is non-nil.
|
|
141 See call_with_suspended_errors(). */
|
|
142 Lisp_Object Vcurrent_warning_class;
|
|
143
|
|
144 /* Special catch tag used in call_with_suspended_errors(). */
|
|
145 Lisp_Object Qunbound_suspended_errors_tag;
|
|
146
|
|
147 /* Non-nil means record all fset's and provide's, to be undone
|
|
148 if the file being autoloaded is not fully loaded.
|
|
149 They are recorded by being consed onto the front of Vautoload_queue:
|
|
150 (FUN . ODEF) for a defun, (OFEATURES . nil) for a provide. */
|
|
151 Lisp_Object Vautoload_queue;
|
|
152
|
|
153 /* Current number of specbindings allocated in specpdl. */
|
|
154 int specpdl_size;
|
|
155
|
|
156 /* Pointer to beginning of specpdl. */
|
|
157 struct specbinding *specpdl;
|
|
158
|
|
159 /* Pointer to first unused element in specpdl. */
|
|
160 struct specbinding *specpdl_ptr;
|
|
161
|
|
162 /* specpdl_ptr - specpdl */
|
|
163 int specpdl_depth_counter;
|
|
164
|
|
165 /* Maximum size allowed for specpdl allocation */
|
458
|
166 Fixnum max_specpdl_size;
|
428
|
167
|
|
168 /* Depth in Lisp evaluations and function calls. */
|
|
169 static int lisp_eval_depth;
|
|
170
|
|
171 /* Maximum allowed depth in Lisp evaluations and function calls. */
|
458
|
172 Fixnum max_lisp_eval_depth;
|
428
|
173
|
|
174 /* Nonzero means enter debugger before next function call */
|
|
175 static int debug_on_next_call;
|
|
176
|
|
177 /* List of conditions (non-nil atom means all) which cause a backtrace
|
|
178 if an error is handled by the command loop's error handler. */
|
|
179 Lisp_Object Vstack_trace_on_error;
|
|
180
|
|
181 /* List of conditions (non-nil atom means all) which enter the debugger
|
|
182 if an error is handled by the command loop's error handler. */
|
|
183 Lisp_Object Vdebug_on_error;
|
|
184
|
|
185 /* List of conditions and regexps specifying error messages which
|
|
186 do not enter the debugger even if Vdebug_on_error says they should. */
|
|
187 Lisp_Object Vdebug_ignored_errors;
|
|
188
|
|
189 /* List of conditions (non-nil atom means all) which cause a backtrace
|
|
190 if any error is signalled. */
|
|
191 Lisp_Object Vstack_trace_on_signal;
|
|
192
|
|
193 /* List of conditions (non-nil atom means all) which enter the debugger
|
|
194 if any error is signalled. */
|
|
195 Lisp_Object Vdebug_on_signal;
|
|
196
|
|
197 /* Nonzero means enter debugger if a quit signal
|
|
198 is handled by the command loop's error handler.
|
|
199
|
|
200 From lisp, this is a boolean variable and may have the values 0 and 1.
|
|
201 But, eval.c temporarily uses the second bit of this variable to indicate
|
|
202 that a critical_quit is in progress. The second bit is reset immediately
|
|
203 after it is processed in signal_call_debugger(). */
|
|
204 int debug_on_quit;
|
|
205
|
|
206 #if 0 /* FSFmacs */
|
|
207 /* entering_debugger is basically equivalent */
|
|
208 /* The value of num_nonmacro_input_chars as of the last time we
|
|
209 started to enter the debugger. If we decide to enter the debugger
|
|
210 again when this is still equal to num_nonmacro_input_chars, then we
|
|
211 know that the debugger itself has an error, and we should just
|
|
212 signal the error instead of entering an infinite loop of debugger
|
|
213 invocations. */
|
|
214 int when_entered_debugger;
|
|
215 #endif
|
|
216
|
|
217 /* Nonzero means we are trying to enter the debugger.
|
|
218 This is to prevent recursive attempts.
|
|
219 Cleared by the debugger calling Fbacktrace */
|
|
220 static int entering_debugger;
|
|
221
|
|
222 /* Function to call to invoke the debugger */
|
|
223 Lisp_Object Vdebugger;
|
|
224
|
|
225 /* Chain of condition handlers currently in effect.
|
|
226 The elements of this chain are contained in the stack frames
|
|
227 of Fcondition_case and internal_condition_case.
|
|
228 When an error is signaled (by calling Fsignal, below),
|
|
229 this chain is searched for an element that applies.
|
|
230
|
|
231 Each element of this list is one of the following:
|
|
232
|
|
233 A list of a handler function and possibly args to pass to
|
|
234 the function. This is a handler established with
|
|
235 `call-with-condition-handler' (q.v.).
|
|
236
|
|
237 A list whose car is Qunbound and whose cdr is Qt.
|
|
238 This is a special condition-case handler established
|
|
239 by C code with condition_case_1(). All errors are
|
|
240 trapped; the debugger is not invoked even if
|
|
241 `debug-on-error' was set.
|
|
242
|
|
243 A list whose car is Qunbound and whose cdr is Qerror.
|
|
244 This is a special condition-case handler established
|
|
245 by C code with condition_case_1(). It is like Qt
|
|
246 except that the debugger is invoked normally if it is
|
|
247 called for.
|
|
248
|
|
249 A list whose car is Qunbound and whose cdr is a list
|
|
250 of lists (CONDITION-NAME BODY ...) exactly as in
|
|
251 `condition-case'. This is a normal `condition-case'
|
|
252 handler.
|
|
253
|
|
254 Note that in all cases *except* the first, there is a
|
|
255 corresponding catch, whose TAG is the value of
|
|
256 Vcondition_handlers just after the handler data just
|
|
257 described is pushed onto it. The reason is that
|
|
258 `condition-case' handlers need to throw back to the
|
|
259 place where the handler was installed before invoking
|
|
260 it, while `call-with-condition-handler' handlers are
|
|
261 invoked in the environment that `signal' was invoked
|
|
262 in.
|
|
263 */
|
|
264 static Lisp_Object Vcondition_handlers;
|
|
265
|
|
266
|
442
|
267 #define DEFEND_AGAINST_THROW_RECURSION
|
|
268
|
|
269 #ifdef DEFEND_AGAINST_THROW_RECURSION
|
428
|
270 /* Used for error catching purposes by throw_or_bomb_out */
|
|
271 static int throw_level;
|
442
|
272 #endif
|
|
273
|
|
274 #ifdef ERROR_CHECK_TYPECHECK
|
|
275 void check_error_state_sanity (void);
|
|
276 #endif
|
428
|
277
|
|
278
|
|
279 /************************************************************************/
|
|
280 /* The subr object type */
|
|
281 /************************************************************************/
|
|
282
|
|
283 static void
|
|
284 print_subr (Lisp_Object obj, Lisp_Object printcharfun, int escapeflag)
|
|
285 {
|
|
286 Lisp_Subr *subr = XSUBR (obj);
|
609
|
287 const CBufbyte *header =
|
428
|
288 (subr->max_args == UNEVALLED) ? "#<special-form " : "#<subr ";
|
609
|
289 const CBufbyte *name = subr_name (subr);
|
|
290 const CBufbyte *trailer = subr->prompt ? " (interactive)>" : ">";
|
428
|
291
|
|
292 if (print_readably)
|
563
|
293 printing_unreadable_object ("%s%s%s", header, name, trailer);
|
428
|
294
|
|
295 write_c_string (header, printcharfun);
|
|
296 write_c_string (name, printcharfun);
|
|
297 write_c_string (trailer, printcharfun);
|
|
298 }
|
|
299
|
|
300 static const struct lrecord_description subr_description[] = {
|
440
|
301 { XD_DOC_STRING, offsetof (Lisp_Subr, doc) },
|
428
|
302 { XD_END }
|
|
303 };
|
|
304
|
|
305 DEFINE_BASIC_LRECORD_IMPLEMENTATION ("subr", subr,
|
442
|
306 0, print_subr, 0, 0, 0,
|
428
|
307 subr_description,
|
|
308 Lisp_Subr);
|
|
309
|
|
310 /************************************************************************/
|
|
311 /* Entering the debugger */
|
|
312 /************************************************************************/
|
|
313
|
|
314 /* unwind-protect used by call_debugger() to restore the value of
|
|
315 entering_debugger. (We cannot use specbind() because the
|
|
316 variable is not Lisp-accessible.) */
|
|
317
|
|
318 static Lisp_Object
|
|
319 restore_entering_debugger (Lisp_Object arg)
|
|
320 {
|
|
321 entering_debugger = ! NILP (arg);
|
|
322 return arg;
|
|
323 }
|
|
324
|
|
325 /* Actually call the debugger. ARG is a list of args that will be
|
|
326 passed to the debugger function, as follows;
|
|
327
|
|
328 If due to frame exit, args are `exit' and the value being returned;
|
|
329 this function's value will be returned instead of that.
|
|
330 If due to error, args are `error' and a list of the args to `signal'.
|
|
331 If due to `apply' or `funcall' entry, one arg, `lambda'.
|
|
332 If due to `eval' entry, one arg, t.
|
|
333
|
|
334 */
|
|
335
|
|
336 static Lisp_Object
|
|
337 call_debugger_259 (Lisp_Object arg)
|
|
338 {
|
|
339 return apply1 (Vdebugger, arg);
|
|
340 }
|
|
341
|
|
342 /* Call the debugger, doing some encapsulation. We make sure we have
|
|
343 some room on the eval and specpdl stacks, and bind entering_debugger
|
|
344 to 1 during this call. This is used to trap errors that may occur
|
|
345 when entering the debugger (e.g. the value of `debugger' is invalid),
|
|
346 so that the debugger will not be recursively entered if debug-on-error
|
|
347 is set. (Otherwise, XEmacs would infinitely recurse, attempting to
|
|
348 enter the debugger.) entering_debugger gets reset to 0 as soon
|
|
349 as a backtrace is displayed, so that further errors can indeed be
|
|
350 handled normally.
|
|
351
|
|
352 We also establish a catch for 'debugger. If the debugger function
|
|
353 throws to this instead of returning a value, it means that the user
|
|
354 pressed 'c' (pretend like the debugger was never entered). The
|
|
355 function then returns Qunbound. (If the user pressed 'r', for
|
|
356 return a value, then the debugger function returns normally with
|
|
357 this value.)
|
|
358
|
|
359 The difference between 'c' and 'r' is as follows:
|
|
360
|
|
361 debug-on-call:
|
|
362 No difference. The call proceeds as normal.
|
|
363 debug-on-exit:
|
|
364 With 'r', the specified value is returned as the function's
|
|
365 return value. With 'c', the value that would normally be
|
|
366 returned is returned.
|
|
367 signal:
|
|
368 With 'r', the specified value is returned as the return
|
|
369 value of `signal'. (This is the only time that `signal'
|
|
370 can return, instead of making a non-local exit.) With `c',
|
|
371 `signal' will continue looking for handlers as if the
|
|
372 debugger was never entered, and will probably end up
|
|
373 throwing to a handler or to top-level.
|
|
374 */
|
|
375
|
|
376 static Lisp_Object
|
|
377 call_debugger (Lisp_Object arg)
|
|
378 {
|
|
379 int threw;
|
|
380 Lisp_Object val;
|
|
381 int speccount;
|
|
382
|
|
383 if (lisp_eval_depth + 20 > max_lisp_eval_depth)
|
|
384 max_lisp_eval_depth = lisp_eval_depth + 20;
|
|
385 if (specpdl_size + 40 > max_specpdl_size)
|
|
386 max_specpdl_size = specpdl_size + 40;
|
|
387 debug_on_next_call = 0;
|
|
388
|
|
389 speccount = specpdl_depth();
|
|
390 record_unwind_protect (restore_entering_debugger,
|
|
391 (entering_debugger ? Qt : Qnil));
|
|
392 entering_debugger = 1;
|
|
393 val = internal_catch (Qdebugger, call_debugger_259, arg, &threw);
|
|
394
|
|
395 return unbind_to (speccount, ((threw)
|
|
396 ? Qunbound /* Not returning a value */
|
|
397 : val));
|
|
398 }
|
|
399
|
|
400 /* Called when debug-on-exit behavior is called for. Enter the debugger
|
|
401 with the appropriate args for this. VAL is the exit value that is
|
|
402 about to be returned. */
|
|
403
|
|
404 static Lisp_Object
|
|
405 do_debug_on_exit (Lisp_Object val)
|
|
406 {
|
|
407 /* This is falsified by call_debugger */
|
|
408 Lisp_Object v = call_debugger (list2 (Qexit, val));
|
|
409
|
|
410 return !UNBOUNDP (v) ? v : val;
|
|
411 }
|
|
412
|
|
413 /* Called when debug-on-call behavior is called for. Enter the debugger
|
|
414 with the appropriate args for this. VAL is either t for a call
|
|
415 through `eval' or 'lambda for a call through `funcall'.
|
|
416
|
|
417 #### The differentiation here between EVAL and FUNCALL is bogus.
|
|
418 FUNCALL can be defined as
|
|
419
|
|
420 (defmacro func (fun &rest args)
|
|
421 (cons (eval fun) args))
|
|
422
|
|
423 and should be treated as such.
|
|
424 */
|
|
425
|
|
426 static void
|
|
427 do_debug_on_call (Lisp_Object code)
|
|
428 {
|
|
429 debug_on_next_call = 0;
|
|
430 backtrace_list->debug_on_exit = 1;
|
|
431 call_debugger (list1 (code));
|
|
432 }
|
|
433
|
|
434 /* LIST is the value of one of the variables `debug-on-error',
|
|
435 `debug-on-signal', `stack-trace-on-error', or `stack-trace-on-signal',
|
|
436 and CONDITIONS is the list of error conditions associated with
|
|
437 the error being signalled. This returns non-nil if LIST
|
|
438 matches CONDITIONS. (A nil value for LIST does not match
|
|
439 CONDITIONS. A non-list value for LIST does match CONDITIONS.
|
|
440 A list matches CONDITIONS when one of the symbols in LIST is the
|
|
441 same as one of the symbols in CONDITIONS.) */
|
|
442
|
|
443 static int
|
|
444 wants_debugger (Lisp_Object list, Lisp_Object conditions)
|
|
445 {
|
|
446 if (NILP (list))
|
|
447 return 0;
|
|
448 if (! CONSP (list))
|
|
449 return 1;
|
|
450
|
|
451 while (CONSP (conditions))
|
|
452 {
|
|
453 Lisp_Object this, tail;
|
|
454 this = XCAR (conditions);
|
|
455 for (tail = list; CONSP (tail); tail = XCDR (tail))
|
|
456 if (EQ (XCAR (tail), this))
|
|
457 return 1;
|
|
458 conditions = XCDR (conditions);
|
|
459 }
|
|
460 return 0;
|
|
461 }
|
|
462
|
|
463
|
|
464 /* Return 1 if an error with condition-symbols CONDITIONS,
|
|
465 and described by SIGNAL-DATA, should skip the debugger
|
|
466 according to debugger-ignore-errors. */
|
|
467
|
|
468 static int
|
|
469 skip_debugger (Lisp_Object conditions, Lisp_Object data)
|
|
470 {
|
|
471 /* This function can GC */
|
|
472 Lisp_Object tail;
|
|
473 int first_string = 1;
|
|
474 Lisp_Object error_message = Qnil;
|
|
475
|
|
476 for (tail = Vdebug_ignored_errors; CONSP (tail); tail = XCDR (tail))
|
|
477 {
|
|
478 if (STRINGP (XCAR (tail)))
|
|
479 {
|
|
480 if (first_string)
|
|
481 {
|
|
482 error_message = Ferror_message_string (data);
|
|
483 first_string = 0;
|
|
484 }
|
|
485 if (fast_lisp_string_match (XCAR (tail), error_message) >= 0)
|
|
486 return 1;
|
|
487 }
|
|
488 else
|
|
489 {
|
|
490 Lisp_Object contail;
|
|
491
|
|
492 for (contail = conditions; CONSP (contail); contail = XCDR (contail))
|
|
493 if (EQ (XCAR (tail), XCAR (contail)))
|
|
494 return 1;
|
|
495 }
|
|
496 }
|
|
497
|
|
498 return 0;
|
|
499 }
|
|
500
|
|
501 /* Actually generate a backtrace on STREAM. */
|
|
502
|
|
503 static Lisp_Object
|
|
504 backtrace_259 (Lisp_Object stream)
|
|
505 {
|
|
506 return Fbacktrace (stream, Qt);
|
|
507 }
|
|
508
|
|
509 /* An error was signaled. Maybe call the debugger, if the `debug-on-error'
|
|
510 etc. variables call for this. CONDITIONS is the list of conditions
|
|
511 associated with the error being signalled. SIG is the actual error
|
|
512 being signalled, and DATA is the associated data (these are exactly
|
|
513 the same as the arguments to `signal'). ACTIVE_HANDLERS is the
|
|
514 list of error handlers that are to be put in place while the debugger
|
|
515 is called. This is generally the remaining handlers that are
|
|
516 outside of the innermost handler trapping this error. This way,
|
|
517 if the same error occurs inside of the debugger, you usually don't get
|
|
518 the debugger entered recursively.
|
|
519
|
|
520 This function returns Qunbound if it didn't call the debugger or if
|
|
521 the user asked (through 'c') that XEmacs should pretend like the
|
|
522 debugger was never entered. Otherwise, it returns the value
|
|
523 that the user specified with `r'. (Note that much of the time,
|
|
524 the user will abort with C-], and we will never have a chance to
|
|
525 return anything at all.)
|
|
526
|
|
527 SIGNAL_VARS_ONLY means we should only look at debug-on-signal
|
|
528 and stack-trace-on-signal to control whether we do anything.
|
|
529 This is so that debug-on-error doesn't make handled errors
|
|
530 cause the debugger to get invoked.
|
|
531
|
|
532 STACK_TRACE_DISPLAYED and DEBUGGER_ENTERED are used so that
|
|
533 those functions aren't done more than once in a single `signal'
|
|
534 session. */
|
|
535
|
|
536 static Lisp_Object
|
|
537 signal_call_debugger (Lisp_Object conditions,
|
|
538 Lisp_Object sig, Lisp_Object data,
|
|
539 Lisp_Object active_handlers,
|
|
540 int signal_vars_only,
|
|
541 int *stack_trace_displayed,
|
|
542 int *debugger_entered)
|
|
543 {
|
|
544 /* This function can GC */
|
|
545 Lisp_Object val = Qunbound;
|
|
546 Lisp_Object all_handlers = Vcondition_handlers;
|
|
547 Lisp_Object temp_data = Qnil;
|
|
548 int speccount = specpdl_depth();
|
|
549 struct gcpro gcpro1, gcpro2;
|
|
550 GCPRO2 (all_handlers, temp_data);
|
|
551
|
|
552 Vcondition_handlers = active_handlers;
|
|
553
|
|
554 temp_data = Fcons (sig, data); /* needed for skip_debugger */
|
|
555
|
|
556 if (!entering_debugger && !*stack_trace_displayed && !signal_vars_only
|
|
557 && wants_debugger (Vstack_trace_on_error, conditions)
|
|
558 && !skip_debugger (conditions, temp_data))
|
|
559 {
|
|
560 specbind (Qdebug_on_error, Qnil);
|
|
561 specbind (Qstack_trace_on_error, Qnil);
|
|
562 specbind (Qdebug_on_signal, Qnil);
|
|
563 specbind (Qstack_trace_on_signal, Qnil);
|
|
564
|
442
|
565 if (!noninteractive)
|
|
566 internal_with_output_to_temp_buffer (build_string ("*Backtrace*"),
|
|
567 backtrace_259,
|
|
568 Qnil,
|
|
569 Qnil);
|
|
570 else /* in batch mode, we want this going to stderr. */
|
|
571 backtrace_259 (Qnil);
|
428
|
572 unbind_to (speccount, Qnil);
|
|
573 *stack_trace_displayed = 1;
|
|
574 }
|
|
575
|
|
576 if (!entering_debugger && !*debugger_entered && !signal_vars_only
|
|
577 && (EQ (sig, Qquit)
|
|
578 ? debug_on_quit
|
|
579 : wants_debugger (Vdebug_on_error, conditions))
|
|
580 && !skip_debugger (conditions, temp_data))
|
|
581 {
|
|
582 debug_on_quit &= ~2; /* reset critical bit */
|
|
583 specbind (Qdebug_on_error, Qnil);
|
|
584 specbind (Qstack_trace_on_error, Qnil);
|
|
585 specbind (Qdebug_on_signal, Qnil);
|
|
586 specbind (Qstack_trace_on_signal, Qnil);
|
|
587
|
|
588 val = call_debugger (list2 (Qerror, (Fcons (sig, data))));
|
|
589 *debugger_entered = 1;
|
|
590 }
|
|
591
|
|
592 if (!entering_debugger && !*stack_trace_displayed
|
|
593 && wants_debugger (Vstack_trace_on_signal, conditions))
|
|
594 {
|
|
595 specbind (Qdebug_on_error, Qnil);
|
|
596 specbind (Qstack_trace_on_error, Qnil);
|
|
597 specbind (Qdebug_on_signal, Qnil);
|
|
598 specbind (Qstack_trace_on_signal, Qnil);
|
|
599
|
442
|
600 if (!noninteractive)
|
|
601 internal_with_output_to_temp_buffer (build_string ("*Backtrace*"),
|
|
602 backtrace_259,
|
|
603 Qnil,
|
|
604 Qnil);
|
|
605 else /* in batch mode, we want this going to stderr. */
|
|
606 backtrace_259 (Qnil);
|
428
|
607 unbind_to (speccount, Qnil);
|
|
608 *stack_trace_displayed = 1;
|
|
609 }
|
|
610
|
|
611 if (!entering_debugger && !*debugger_entered
|
|
612 && (EQ (sig, Qquit)
|
|
613 ? debug_on_quit
|
|
614 : wants_debugger (Vdebug_on_signal, conditions)))
|
|
615 {
|
|
616 debug_on_quit &= ~2; /* reset critical bit */
|
|
617 specbind (Qdebug_on_error, Qnil);
|
|
618 specbind (Qstack_trace_on_error, Qnil);
|
|
619 specbind (Qdebug_on_signal, Qnil);
|
|
620 specbind (Qstack_trace_on_signal, Qnil);
|
|
621
|
|
622 val = call_debugger (list2 (Qerror, (Fcons (sig, data))));
|
|
623 *debugger_entered = 1;
|
|
624 }
|
|
625
|
|
626 UNGCPRO;
|
|
627 Vcondition_handlers = all_handlers;
|
|
628 return unbind_to (speccount, val);
|
|
629 }
|
|
630
|
|
631
|
|
632 /************************************************************************/
|
|
633 /* The basic special forms */
|
|
634 /************************************************************************/
|
|
635
|
|
636 /* Except for Fprogn(), the basic special forms below are only called
|
|
637 from interpreted code. The byte compiler turns them into bytecodes. */
|
|
638
|
|
639 DEFUN ("or", For, 0, UNEVALLED, 0, /*
|
|
640 Eval args until one of them yields non-nil, then return that value.
|
|
641 The remaining args are not evalled at all.
|
|
642 If all args return nil, return nil.
|
|
643 */
|
|
644 (args))
|
|
645 {
|
|
646 /* This function can GC */
|
442
|
647 REGISTER Lisp_Object val;
|
428
|
648
|
|
649 LIST_LOOP_2 (arg, args)
|
|
650 {
|
|
651 if (!NILP (val = Feval (arg)))
|
|
652 return val;
|
|
653 }
|
|
654
|
|
655 return Qnil;
|
|
656 }
|
|
657
|
|
658 DEFUN ("and", Fand, 0, UNEVALLED, 0, /*
|
|
659 Eval args until one of them yields nil, then return nil.
|
|
660 The remaining args are not evalled at all.
|
|
661 If no arg yields nil, return the last arg's value.
|
|
662 */
|
|
663 (args))
|
|
664 {
|
|
665 /* This function can GC */
|
442
|
666 REGISTER Lisp_Object val = Qt;
|
428
|
667
|
|
668 LIST_LOOP_2 (arg, args)
|
|
669 {
|
|
670 if (NILP (val = Feval (arg)))
|
|
671 return val;
|
|
672 }
|
|
673
|
|
674 return val;
|
|
675 }
|
|
676
|
|
677 DEFUN ("if", Fif, 2, UNEVALLED, 0, /*
|
|
678 \(if COND THEN ELSE...): if COND yields non-nil, do THEN, else do ELSE...
|
|
679 Returns the value of THEN or the value of the last of the ELSE's.
|
|
680 THEN must be one expression, but ELSE... can be zero or more expressions.
|
|
681 If COND yields nil, and there are no ELSE's, the value is nil.
|
|
682 */
|
|
683 (args))
|
|
684 {
|
|
685 /* This function can GC */
|
|
686 Lisp_Object condition = XCAR (args);
|
|
687 Lisp_Object then_form = XCAR (XCDR (args));
|
|
688 Lisp_Object else_forms = XCDR (XCDR (args));
|
|
689
|
|
690 if (!NILP (Feval (condition)))
|
|
691 return Feval (then_form);
|
|
692 else
|
|
693 return Fprogn (else_forms);
|
|
694 }
|
|
695
|
|
696 /* Macros `when' and `unless' are trivially defined in Lisp,
|
|
697 but it helps for bootstrapping to have them ALWAYS defined. */
|
|
698
|
|
699 DEFUN ("when", Fwhen, 1, MANY, 0, /*
|
|
700 \(when COND BODY...): if COND yields non-nil, do BODY, else return nil.
|
|
701 BODY can be zero or more expressions. If BODY is nil, return nil.
|
|
702 */
|
|
703 (int nargs, Lisp_Object *args))
|
|
704 {
|
|
705 Lisp_Object cond = args[0];
|
|
706 Lisp_Object body;
|
|
707
|
|
708 switch (nargs)
|
|
709 {
|
|
710 case 1: body = Qnil; break;
|
|
711 case 2: body = args[1]; break;
|
|
712 default: body = Fcons (Qprogn, Flist (nargs-1, args+1)); break;
|
|
713 }
|
|
714
|
|
715 return list3 (Qif, cond, body);
|
|
716 }
|
|
717
|
|
718 DEFUN ("unless", Funless, 1, MANY, 0, /*
|
|
719 \(unless COND BODY...): if COND yields nil, do BODY, else return nil.
|
|
720 BODY can be zero or more expressions. If BODY is nil, return nil.
|
|
721 */
|
|
722 (int nargs, Lisp_Object *args))
|
|
723 {
|
|
724 Lisp_Object cond = args[0];
|
|
725 Lisp_Object body = Flist (nargs-1, args+1);
|
|
726 return Fcons (Qif, Fcons (cond, Fcons (Qnil, body)));
|
|
727 }
|
|
728
|
|
729 DEFUN ("cond", Fcond, 0, UNEVALLED, 0, /*
|
444
|
730 \(cond CLAUSES...): try each clause until one succeeds.
|
428
|
731 Each clause looks like (CONDITION BODY...). CONDITION is evaluated
|
|
732 and, if the value is non-nil, this clause succeeds:
|
|
733 then the expressions in BODY are evaluated and the last one's
|
|
734 value is the value of the cond-form.
|
|
735 If no clause succeeds, cond returns nil.
|
|
736 If a clause has one element, as in (CONDITION),
|
|
737 CONDITION's value if non-nil is returned from the cond-form.
|
|
738 */
|
|
739 (args))
|
|
740 {
|
|
741 /* This function can GC */
|
442
|
742 REGISTER Lisp_Object val;
|
428
|
743
|
|
744 LIST_LOOP_2 (clause, args)
|
|
745 {
|
|
746 CHECK_CONS (clause);
|
|
747 if (!NILP (val = Feval (XCAR (clause))))
|
|
748 {
|
|
749 if (!NILP (clause = XCDR (clause)))
|
|
750 {
|
|
751 CHECK_TRUE_LIST (clause);
|
|
752 val = Fprogn (clause);
|
|
753 }
|
|
754 return val;
|
|
755 }
|
|
756 }
|
|
757
|
|
758 return Qnil;
|
|
759 }
|
|
760
|
|
761 DEFUN ("progn", Fprogn, 0, UNEVALLED, 0, /*
|
|
762 \(progn BODY...): eval BODY forms sequentially and return value of last one.
|
|
763 */
|
|
764 (args))
|
|
765 {
|
|
766 /* This function can GC */
|
|
767 /* Caller must provide a true list in ARGS */
|
442
|
768 REGISTER Lisp_Object val = Qnil;
|
428
|
769 struct gcpro gcpro1;
|
|
770
|
|
771 GCPRO1 (args);
|
|
772
|
|
773 {
|
|
774 LIST_LOOP_2 (form, args)
|
|
775 val = Feval (form);
|
|
776 }
|
|
777
|
|
778 UNGCPRO;
|
|
779 return val;
|
|
780 }
|
|
781
|
|
782 /* Fprog1() is the canonical example of a function that must GCPRO a
|
|
783 Lisp_Object across calls to Feval(). */
|
|
784
|
|
785 DEFUN ("prog1", Fprog1, 1, UNEVALLED, 0, /*
|
|
786 Similar to `progn', but the value of the first form is returned.
|
|
787 \(prog1 FIRST BODY...): All the arguments are evaluated sequentially.
|
|
788 The value of FIRST is saved during evaluation of the remaining args,
|
|
789 whose values are discarded.
|
|
790 */
|
|
791 (args))
|
|
792 {
|
|
793 /* This function can GC */
|
442
|
794 REGISTER Lisp_Object val;
|
428
|
795 struct gcpro gcpro1;
|
|
796
|
|
797 val = Feval (XCAR (args));
|
|
798
|
|
799 GCPRO1 (val);
|
|
800
|
|
801 {
|
|
802 LIST_LOOP_2 (form, XCDR (args))
|
|
803 Feval (form);
|
|
804 }
|
|
805
|
|
806 UNGCPRO;
|
|
807 return val;
|
|
808 }
|
|
809
|
|
810 DEFUN ("prog2", Fprog2, 2, UNEVALLED, 0, /*
|
|
811 Similar to `progn', but the value of the second form is returned.
|
|
812 \(prog2 FIRST SECOND BODY...): All the arguments are evaluated sequentially.
|
|
813 The value of SECOND is saved during evaluation of the remaining args,
|
|
814 whose values are discarded.
|
|
815 */
|
|
816 (args))
|
|
817 {
|
|
818 /* This function can GC */
|
442
|
819 REGISTER Lisp_Object val;
|
428
|
820 struct gcpro gcpro1;
|
|
821
|
|
822 Feval (XCAR (args));
|
|
823 args = XCDR (args);
|
|
824 val = Feval (XCAR (args));
|
|
825 args = XCDR (args);
|
|
826
|
|
827 GCPRO1 (val);
|
|
828
|
442
|
829 {
|
|
830 LIST_LOOP_2 (form, args)
|
|
831 Feval (form);
|
|
832 }
|
428
|
833
|
|
834 UNGCPRO;
|
|
835 return val;
|
|
836 }
|
|
837
|
|
838 DEFUN ("let*", FletX, 1, UNEVALLED, 0, /*
|
|
839 \(let* VARLIST BODY...): bind variables according to VARLIST then eval BODY.
|
|
840 The value of the last form in BODY is returned.
|
|
841 Each element of VARLIST is a symbol (which is bound to nil)
|
|
842 or a list (SYMBOL VALUEFORM) (which binds SYMBOL to the value of VALUEFORM).
|
|
843 Each VALUEFORM can refer to the symbols already bound by this VARLIST.
|
|
844 */
|
|
845 (args))
|
|
846 {
|
|
847 /* This function can GC */
|
|
848 Lisp_Object varlist = XCAR (args);
|
|
849 Lisp_Object body = XCDR (args);
|
|
850 int speccount = specpdl_depth();
|
|
851
|
|
852 EXTERNAL_LIST_LOOP_3 (var, varlist, tail)
|
|
853 {
|
|
854 Lisp_Object symbol, value, tem;
|
|
855 if (SYMBOLP (var))
|
|
856 symbol = var, value = Qnil;
|
|
857 else
|
|
858 {
|
|
859 CHECK_CONS (var);
|
|
860 symbol = XCAR (var);
|
|
861 tem = XCDR (var);
|
|
862 if (NILP (tem))
|
|
863 value = Qnil;
|
|
864 else
|
|
865 {
|
|
866 CHECK_CONS (tem);
|
|
867 value = Feval (XCAR (tem));
|
|
868 if (!NILP (XCDR (tem)))
|
563
|
869 sferror
|
428
|
870 ("`let' bindings can have only one value-form", var);
|
|
871 }
|
|
872 }
|
|
873 specbind (symbol, value);
|
|
874 }
|
|
875 return unbind_to (speccount, Fprogn (body));
|
|
876 }
|
|
877
|
|
878 DEFUN ("let", Flet, 1, UNEVALLED, 0, /*
|
|
879 \(let VARLIST BODY...): bind variables according to VARLIST then eval BODY.
|
|
880 The value of the last form in BODY is returned.
|
|
881 Each element of VARLIST is a symbol (which is bound to nil)
|
|
882 or a list (SYMBOL VALUEFORM) (which binds SYMBOL to the value of VALUEFORM).
|
|
883 All the VALUEFORMs are evalled before any symbols are bound.
|
|
884 */
|
|
885 (args))
|
|
886 {
|
|
887 /* This function can GC */
|
|
888 Lisp_Object varlist = XCAR (args);
|
|
889 Lisp_Object body = XCDR (args);
|
|
890 int speccount = specpdl_depth();
|
|
891 Lisp_Object *temps;
|
|
892 int idx;
|
|
893 struct gcpro gcpro1;
|
|
894
|
|
895 /* Make space to hold the values to give the bound variables. */
|
|
896 {
|
|
897 int varcount;
|
|
898 GET_EXTERNAL_LIST_LENGTH (varlist, varcount);
|
|
899 temps = alloca_array (Lisp_Object, varcount);
|
|
900 }
|
|
901
|
|
902 /* Compute the values and store them in `temps' */
|
|
903 GCPRO1 (*temps);
|
|
904 gcpro1.nvars = 0;
|
|
905
|
|
906 idx = 0;
|
442
|
907 {
|
|
908 LIST_LOOP_2 (var, varlist)
|
|
909 {
|
|
910 Lisp_Object *value = &temps[idx++];
|
|
911 if (SYMBOLP (var))
|
|
912 *value = Qnil;
|
|
913 else
|
|
914 {
|
|
915 Lisp_Object tem;
|
|
916 CHECK_CONS (var);
|
|
917 tem = XCDR (var);
|
|
918 if (NILP (tem))
|
|
919 *value = Qnil;
|
|
920 else
|
|
921 {
|
|
922 CHECK_CONS (tem);
|
|
923 *value = Feval (XCAR (tem));
|
|
924 gcpro1.nvars = idx;
|
|
925
|
|
926 if (!NILP (XCDR (tem)))
|
563
|
927 sferror
|
442
|
928 ("`let' bindings can have only one value-form", var);
|
|
929 }
|
|
930 }
|
|
931 }
|
|
932 }
|
428
|
933
|
|
934 idx = 0;
|
442
|
935 {
|
|
936 LIST_LOOP_2 (var, varlist)
|
|
937 {
|
|
938 specbind (SYMBOLP (var) ? var : XCAR (var), temps[idx++]);
|
|
939 }
|
|
940 }
|
428
|
941
|
|
942 UNGCPRO;
|
|
943
|
|
944 return unbind_to (speccount, Fprogn (body));
|
|
945 }
|
|
946
|
|
947 DEFUN ("while", Fwhile, 1, UNEVALLED, 0, /*
|
|
948 \(while TEST BODY...): if TEST yields non-nil, eval BODY... and repeat.
|
|
949 The order of execution is thus TEST, BODY, TEST, BODY and so on
|
|
950 until TEST returns nil.
|
|
951 */
|
|
952 (args))
|
|
953 {
|
|
954 /* This function can GC */
|
|
955 Lisp_Object test = XCAR (args);
|
|
956 Lisp_Object body = XCDR (args);
|
|
957
|
|
958 while (!NILP (Feval (test)))
|
|
959 {
|
|
960 QUIT;
|
|
961 Fprogn (body);
|
|
962 }
|
|
963
|
|
964 return Qnil;
|
|
965 }
|
|
966
|
|
967 DEFUN ("setq", Fsetq, 0, UNEVALLED, 0, /*
|
|
968 \(setq SYM VAL SYM VAL ...): set each SYM to the value of its VAL.
|
|
969 The symbols SYM are variables; they are literal (not evaluated).
|
|
970 The values VAL are expressions; they are evaluated.
|
|
971 Thus, (setq x (1+ y)) sets `x' to the value of `(1+ y)'.
|
|
972 The second VAL is not computed until after the first SYM is set, and so on;
|
|
973 each VAL can use the new value of variables set earlier in the `setq'.
|
|
974 The return value of the `setq' form is the value of the last VAL.
|
|
975 */
|
|
976 (args))
|
|
977 {
|
|
978 /* This function can GC */
|
|
979 Lisp_Object symbol, tail, val = Qnil;
|
|
980 int nargs;
|
|
981 struct gcpro gcpro1;
|
|
982
|
|
983 GET_LIST_LENGTH (args, nargs);
|
|
984
|
|
985 if (nargs & 1) /* Odd number of arguments? */
|
|
986 Fsignal (Qwrong_number_of_arguments, list2 (Qsetq, make_int (nargs)));
|
|
987
|
|
988 GCPRO1 (val);
|
|
989
|
|
990 PROPERTY_LIST_LOOP (tail, symbol, val, args)
|
|
991 {
|
|
992 val = Feval (val);
|
|
993 Fset (symbol, val);
|
|
994 }
|
|
995
|
|
996 UNGCPRO;
|
|
997 return val;
|
|
998 }
|
|
999
|
|
1000 DEFUN ("quote", Fquote, 1, UNEVALLED, 0, /*
|
|
1001 Return the argument, without evaluating it. `(quote x)' yields `x'.
|
|
1002 */
|
|
1003 (args))
|
|
1004 {
|
|
1005 return XCAR (args);
|
|
1006 }
|
|
1007
|
|
1008 DEFUN ("function", Ffunction, 1, UNEVALLED, 0, /*
|
|
1009 Like `quote', but preferred for objects which are functions.
|
|
1010 In byte compilation, `function' causes its argument to be compiled.
|
|
1011 `quote' cannot do that.
|
|
1012 */
|
|
1013 (args))
|
|
1014 {
|
|
1015 return XCAR (args);
|
|
1016 }
|
|
1017
|
|
1018
|
|
1019 /************************************************************************/
|
|
1020 /* Defining functions/variables */
|
|
1021 /************************************************************************/
|
|
1022 static Lisp_Object
|
|
1023 define_function (Lisp_Object name, Lisp_Object defn)
|
|
1024 {
|
|
1025 Ffset (name, defn);
|
|
1026 LOADHIST_ATTACH (name);
|
|
1027 return name;
|
|
1028 }
|
|
1029
|
|
1030 DEFUN ("defun", Fdefun, 2, UNEVALLED, 0, /*
|
|
1031 \(defun NAME ARGLIST [DOCSTRING] BODY...): define NAME as a function.
|
|
1032 The definition is (lambda ARGLIST [DOCSTRING] BODY...).
|
|
1033 See also the function `interactive'.
|
|
1034 */
|
|
1035 (args))
|
|
1036 {
|
|
1037 /* This function can GC */
|
|
1038 return define_function (XCAR (args),
|
|
1039 Fcons (Qlambda, XCDR (args)));
|
|
1040 }
|
|
1041
|
|
1042 DEFUN ("defmacro", Fdefmacro, 2, UNEVALLED, 0, /*
|
|
1043 \(defmacro NAME ARGLIST [DOCSTRING] BODY...): define NAME as a macro.
|
|
1044 The definition is (macro lambda ARGLIST [DOCSTRING] BODY...).
|
|
1045 When the macro is called, as in (NAME ARGS...),
|
|
1046 the function (lambda ARGLIST BODY...) is applied to
|
|
1047 the list ARGS... as it appears in the expression,
|
|
1048 and the result should be a form to be evaluated instead of the original.
|
|
1049 */
|
|
1050 (args))
|
|
1051 {
|
|
1052 /* This function can GC */
|
|
1053 return define_function (XCAR (args),
|
|
1054 Fcons (Qmacro, Fcons (Qlambda, XCDR (args))));
|
|
1055 }
|
|
1056
|
|
1057 DEFUN ("defvar", Fdefvar, 1, UNEVALLED, 0, /*
|
|
1058 \(defvar SYMBOL INITVALUE DOCSTRING): define SYMBOL as a variable.
|
|
1059 You are not required to define a variable in order to use it,
|
|
1060 but the definition can supply documentation and an initial value
|
|
1061 in a way that tags can recognize.
|
|
1062
|
|
1063 INITVALUE is evaluated, and used to set SYMBOL, only if SYMBOL's value is
|
|
1064 void. (However, when you evaluate a defvar interactively, it acts like a
|
|
1065 defconst: SYMBOL's value is always set regardless of whether it's currently
|
|
1066 void.)
|
|
1067 If SYMBOL is buffer-local, its default value is what is set;
|
|
1068 buffer-local values are not affected.
|
|
1069 INITVALUE and DOCSTRING are optional.
|
|
1070 If DOCSTRING starts with *, this variable is identified as a user option.
|
442
|
1071 This means that M-x set-variable recognizes it.
|
428
|
1072 If INITVALUE is missing, SYMBOL's value is not set.
|
|
1073
|
|
1074 In lisp-interaction-mode defvar is treated as defconst.
|
|
1075 */
|
|
1076 (args))
|
|
1077 {
|
|
1078 /* This function can GC */
|
|
1079 Lisp_Object sym = XCAR (args);
|
|
1080
|
|
1081 if (!NILP (args = XCDR (args)))
|
|
1082 {
|
|
1083 Lisp_Object val = XCAR (args);
|
|
1084
|
|
1085 if (NILP (Fdefault_boundp (sym)))
|
|
1086 {
|
|
1087 struct gcpro gcpro1;
|
|
1088 GCPRO1 (val);
|
|
1089 val = Feval (val);
|
|
1090 Fset_default (sym, val);
|
|
1091 UNGCPRO;
|
|
1092 }
|
|
1093
|
|
1094 if (!NILP (args = XCDR (args)))
|
|
1095 {
|
|
1096 Lisp_Object doc = XCAR (args);
|
|
1097 Fput (sym, Qvariable_documentation, doc);
|
|
1098 if (!NILP (args = XCDR (args)))
|
563
|
1099 signal_error (Qwrong_number_of_arguments, "too many arguments", Qunbound);
|
428
|
1100 }
|
|
1101 }
|
|
1102
|
|
1103 #ifdef I18N3
|
|
1104 if (!NILP (Vfile_domain))
|
|
1105 Fput (sym, Qvariable_domain, Vfile_domain);
|
|
1106 #endif
|
|
1107
|
|
1108 LOADHIST_ATTACH (sym);
|
|
1109 return sym;
|
|
1110 }
|
|
1111
|
|
1112 DEFUN ("defconst", Fdefconst, 2, UNEVALLED, 0, /*
|
|
1113 \(defconst SYMBOL INITVALUE DOCSTRING): define SYMBOL as a constant
|
|
1114 variable.
|
|
1115 The intent is that programs do not change this value, but users may.
|
|
1116 Always sets the value of SYMBOL to the result of evalling INITVALUE.
|
|
1117 If SYMBOL is buffer-local, its default value is what is set;
|
|
1118 buffer-local values are not affected.
|
|
1119 DOCSTRING is optional.
|
|
1120 If DOCSTRING starts with *, this variable is identified as a user option.
|
442
|
1121 This means that M-x set-variable recognizes it.
|
428
|
1122
|
|
1123 Note: do not use `defconst' for user options in libraries that are not
|
|
1124 normally loaded, since it is useful for users to be able to specify
|
|
1125 their own values for such variables before loading the library.
|
|
1126 Since `defconst' unconditionally assigns the variable,
|
|
1127 it would override the user's choice.
|
|
1128 */
|
|
1129 (args))
|
|
1130 {
|
|
1131 /* This function can GC */
|
|
1132 Lisp_Object sym = XCAR (args);
|
|
1133 Lisp_Object val = Feval (XCAR (args = XCDR (args)));
|
|
1134 struct gcpro gcpro1;
|
|
1135
|
|
1136 GCPRO1 (val);
|
|
1137
|
|
1138 Fset_default (sym, val);
|
|
1139
|
|
1140 UNGCPRO;
|
|
1141
|
|
1142 if (!NILP (args = XCDR (args)))
|
|
1143 {
|
|
1144 Lisp_Object doc = XCAR (args);
|
|
1145 Fput (sym, Qvariable_documentation, doc);
|
|
1146 if (!NILP (args = XCDR (args)))
|
563
|
1147 signal_error (Qwrong_number_of_arguments, "too many arguments", Qunbound);
|
428
|
1148 }
|
|
1149
|
|
1150 #ifdef I18N3
|
|
1151 if (!NILP (Vfile_domain))
|
|
1152 Fput (sym, Qvariable_domain, Vfile_domain);
|
|
1153 #endif
|
|
1154
|
|
1155 LOADHIST_ATTACH (sym);
|
|
1156 return sym;
|
|
1157 }
|
|
1158
|
|
1159 DEFUN ("user-variable-p", Fuser_variable_p, 1, 1, 0, /*
|
|
1160 Return t if VARIABLE is intended to be set and modified by users.
|
|
1161 \(The alternative is a variable used internally in a Lisp program.)
|
|
1162 Determined by whether the first character of the documentation
|
|
1163 for the variable is `*'.
|
|
1164 */
|
|
1165 (variable))
|
|
1166 {
|
|
1167 Lisp_Object documentation = Fget (variable, Qvariable_documentation, Qnil);
|
|
1168
|
|
1169 return
|
|
1170 ((INTP (documentation) && XINT (documentation) < 0) ||
|
|
1171
|
|
1172 (STRINGP (documentation) &&
|
|
1173 (string_byte (XSTRING (documentation), 0) == '*')) ||
|
|
1174
|
|
1175 /* If (STRING . INTEGER), a negative integer means a user variable. */
|
|
1176 (CONSP (documentation)
|
|
1177 && STRINGP (XCAR (documentation))
|
|
1178 && INTP (XCDR (documentation))
|
|
1179 && XINT (XCDR (documentation)) < 0)) ?
|
|
1180 Qt : Qnil;
|
|
1181 }
|
|
1182
|
|
1183 DEFUN ("macroexpand-internal", Fmacroexpand_internal, 1, 2, 0, /*
|
|
1184 Return result of expanding macros at top level of FORM.
|
|
1185 If FORM is not a macro call, it is returned unchanged.
|
|
1186 Otherwise, the macro is expanded and the expansion is considered
|
|
1187 in place of FORM. When a non-macro-call results, it is returned.
|
|
1188
|
442
|
1189 The second optional arg ENVIRONMENT specifies an environment of macro
|
428
|
1190 definitions to shadow the loaded ones for use in file byte-compilation.
|
|
1191 */
|
442
|
1192 (form, environment))
|
428
|
1193 {
|
|
1194 /* This function can GC */
|
|
1195 /* With cleanups from Hallvard Furuseth. */
|
|
1196 REGISTER Lisp_Object expander, sym, def, tem;
|
|
1197
|
|
1198 while (1)
|
|
1199 {
|
|
1200 /* Come back here each time we expand a macro call,
|
|
1201 in case it expands into another macro call. */
|
|
1202 if (!CONSP (form))
|
|
1203 break;
|
|
1204 /* Set SYM, give DEF and TEM right values in case SYM is not a symbol. */
|
|
1205 def = sym = XCAR (form);
|
|
1206 tem = Qnil;
|
|
1207 /* Trace symbols aliases to other symbols
|
|
1208 until we get a symbol that is not an alias. */
|
|
1209 while (SYMBOLP (def))
|
|
1210 {
|
|
1211 QUIT;
|
|
1212 sym = def;
|
442
|
1213 tem = Fassq (sym, environment);
|
428
|
1214 if (NILP (tem))
|
|
1215 {
|
|
1216 def = XSYMBOL (sym)->function;
|
|
1217 if (!UNBOUNDP (def))
|
|
1218 continue;
|
|
1219 }
|
|
1220 break;
|
|
1221 }
|
442
|
1222 /* Right now TEM is the result from SYM in ENVIRONMENT,
|
428
|
1223 and if TEM is nil then DEF is SYM's function definition. */
|
|
1224 if (NILP (tem))
|
|
1225 {
|
442
|
1226 /* SYM is not mentioned in ENVIRONMENT.
|
428
|
1227 Look at its function definition. */
|
|
1228 if (UNBOUNDP (def)
|
|
1229 || !CONSP (def))
|
|
1230 /* Not defined or definition not suitable */
|
|
1231 break;
|
|
1232 if (EQ (XCAR (def), Qautoload))
|
|
1233 {
|
|
1234 /* Autoloading function: will it be a macro when loaded? */
|
|
1235 tem = Felt (def, make_int (4));
|
|
1236 if (EQ (tem, Qt) || EQ (tem, Qmacro))
|
|
1237 {
|
|
1238 /* Yes, load it and try again. */
|
|
1239 do_autoload (def, sym);
|
|
1240 continue;
|
|
1241 }
|
|
1242 else
|
|
1243 break;
|
|
1244 }
|
|
1245 else if (!EQ (XCAR (def), Qmacro))
|
|
1246 break;
|
|
1247 else expander = XCDR (def);
|
|
1248 }
|
|
1249 else
|
|
1250 {
|
|
1251 expander = XCDR (tem);
|
|
1252 if (NILP (expander))
|
|
1253 break;
|
|
1254 }
|
|
1255 form = apply1 (expander, XCDR (form));
|
|
1256 }
|
|
1257 return form;
|
|
1258 }
|
|
1259
|
|
1260
|
|
1261 /************************************************************************/
|
|
1262 /* Non-local exits */
|
|
1263 /************************************************************************/
|
|
1264
|
|
1265 DEFUN ("catch", Fcatch, 1, UNEVALLED, 0, /*
|
|
1266 \(catch TAG BODY...): eval BODY allowing nonlocal exits using `throw'.
|
|
1267 TAG is evalled to get the tag to use. Then the BODY is executed.
|
|
1268 Within BODY, (throw TAG) with same tag exits BODY and exits this `catch'.
|
|
1269 If no throw happens, `catch' returns the value of the last BODY form.
|
|
1270 If a throw happens, it specifies the value to return from `catch'.
|
|
1271 */
|
|
1272 (args))
|
|
1273 {
|
|
1274 /* This function can GC */
|
|
1275 Lisp_Object tag = Feval (XCAR (args));
|
|
1276 Lisp_Object body = XCDR (args);
|
|
1277 return internal_catch (tag, Fprogn, body, 0);
|
|
1278 }
|
|
1279
|
|
1280 /* Set up a catch, then call C function FUNC on argument ARG.
|
|
1281 FUNC should return a Lisp_Object.
|
|
1282 This is how catches are done from within C code. */
|
|
1283
|
|
1284 Lisp_Object
|
|
1285 internal_catch (Lisp_Object tag,
|
|
1286 Lisp_Object (*func) (Lisp_Object arg),
|
|
1287 Lisp_Object arg,
|
|
1288 int * volatile threw)
|
|
1289 {
|
|
1290 /* This structure is made part of the chain `catchlist'. */
|
|
1291 struct catchtag c;
|
|
1292
|
|
1293 /* Fill in the components of c, and put it on the list. */
|
|
1294 c.next = catchlist;
|
|
1295 c.tag = tag;
|
|
1296 c.val = Qnil;
|
|
1297 c.backlist = backtrace_list;
|
|
1298 #if 0 /* FSFmacs */
|
|
1299 /* #### */
|
|
1300 c.handlerlist = handlerlist;
|
|
1301 #endif
|
|
1302 c.lisp_eval_depth = lisp_eval_depth;
|
|
1303 c.pdlcount = specpdl_depth();
|
|
1304 #if 0 /* FSFmacs */
|
|
1305 c.poll_suppress_count = async_timer_suppress_count;
|
|
1306 #endif
|
|
1307 c.gcpro = gcprolist;
|
|
1308 catchlist = &c;
|
|
1309
|
|
1310 /* Call FUNC. */
|
|
1311 if (SETJMP (c.jmp))
|
|
1312 {
|
|
1313 /* Throw works by a longjmp that comes right here. */
|
|
1314 if (threw) *threw = 1;
|
|
1315 return c.val;
|
|
1316 }
|
|
1317 c.val = (*func) (arg);
|
|
1318 if (threw) *threw = 0;
|
|
1319 catchlist = c.next;
|
442
|
1320 #ifdef ERROR_CHECK_TYPECHECK
|
|
1321 check_error_state_sanity ();
|
|
1322 #endif
|
428
|
1323 return c.val;
|
|
1324 }
|
|
1325
|
|
1326
|
|
1327 /* Unwind the specbind, catch, and handler stacks back to CATCH, and
|
|
1328 jump to that CATCH, returning VALUE as the value of that catch.
|
|
1329
|
|
1330 This is the guts Fthrow and Fsignal; they differ only in the way
|
|
1331 they choose the catch tag to throw to. A catch tag for a
|
|
1332 condition-case form has a TAG of Qnil.
|
|
1333
|
|
1334 Before each catch is discarded, unbind all special bindings and
|
|
1335 execute all unwind-protect clauses made above that catch. Unwind
|
|
1336 the handler stack as we go, so that the proper handlers are in
|
|
1337 effect for each unwind-protect clause we run. At the end, restore
|
|
1338 some static info saved in CATCH, and longjmp to the location
|
|
1339 specified in the
|
|
1340
|
|
1341 This is used for correct unwinding in Fthrow and Fsignal. */
|
|
1342
|
|
1343 static void
|
|
1344 unwind_to_catch (struct catchtag *c, Lisp_Object val)
|
|
1345 {
|
|
1346 #if 0 /* FSFmacs */
|
|
1347 /* #### */
|
|
1348 REGISTER int last_time;
|
|
1349 #endif
|
|
1350
|
|
1351 /* Unwind the specbind, catch, and handler stacks back to CATCH
|
|
1352 Before each catch is discarded, unbind all special bindings
|
|
1353 and execute all unwind-protect clauses made above that catch.
|
|
1354 At the end, restore some static info saved in CATCH,
|
|
1355 and longjmp to the location specified.
|
|
1356 */
|
|
1357
|
|
1358 /* Save the value somewhere it will be GC'ed.
|
|
1359 (Can't overwrite tag slot because an unwind-protect may
|
|
1360 want to throw to this same tag, which isn't yet invalid.) */
|
|
1361 c->val = val;
|
|
1362
|
|
1363 #if 0 /* FSFmacs */
|
|
1364 /* Restore the polling-suppression count. */
|
|
1365 set_poll_suppress_count (catch->poll_suppress_count);
|
|
1366 #endif
|
|
1367
|
|
1368 #if 0 /* FSFmacs */
|
|
1369 /* #### FSFmacs has the following loop. Is it more correct? */
|
|
1370 do
|
|
1371 {
|
|
1372 last_time = catchlist == c;
|
|
1373
|
|
1374 /* Unwind the specpdl stack, and then restore the proper set of
|
|
1375 handlers. */
|
|
1376 unbind_to (catchlist->pdlcount, Qnil);
|
|
1377 handlerlist = catchlist->handlerlist;
|
|
1378 catchlist = catchlist->next;
|
442
|
1379 #ifdef ERROR_CHECK_TYPECHECK
|
|
1380 check_error_state_sanity ();
|
|
1381 #endif
|
428
|
1382 }
|
|
1383 while (! last_time);
|
|
1384 #else /* Actual XEmacs code */
|
|
1385 /* Unwind the specpdl stack */
|
|
1386 unbind_to (c->pdlcount, Qnil);
|
|
1387 catchlist = c->next;
|
442
|
1388 #ifdef ERROR_CHECK_TYPECHECK
|
|
1389 check_error_state_sanity ();
|
|
1390 #endif
|
428
|
1391 #endif
|
|
1392
|
|
1393 gcprolist = c->gcpro;
|
|
1394 backtrace_list = c->backlist;
|
|
1395 lisp_eval_depth = c->lisp_eval_depth;
|
|
1396
|
442
|
1397 #ifdef DEFEND_AGAINST_THROW_RECURSION
|
428
|
1398 throw_level = 0;
|
|
1399 #endif
|
|
1400 LONGJMP (c->jmp, 1);
|
|
1401 }
|
|
1402
|
|
1403 static DOESNT_RETURN
|
|
1404 throw_or_bomb_out (Lisp_Object tag, Lisp_Object val, int bomb_out_p,
|
|
1405 Lisp_Object sig, Lisp_Object data)
|
|
1406 {
|
442
|
1407 #ifdef DEFEND_AGAINST_THROW_RECURSION
|
428
|
1408 /* die if we recurse more than is reasonable */
|
|
1409 if (++throw_level > 20)
|
|
1410 abort();
|
|
1411 #endif
|
|
1412
|
|
1413 /* If bomb_out_p is t, this is being called from Fsignal as a
|
|
1414 "last resort" when there is no handler for this error and
|
|
1415 the debugger couldn't be invoked, so we are throwing to
|
|
1416 'top-level. If this tag doesn't exist (happens during the
|
|
1417 initialization stages) we would get in an infinite recursive
|
|
1418 Fsignal/Fthrow loop, so instead we bomb out to the
|
|
1419 really-early-error-handler.
|
|
1420
|
|
1421 Note that in fact the only time that the "last resort"
|
|
1422 occurs is when there's no catch for 'top-level -- the
|
|
1423 'top-level catch and the catch-all error handler are
|
|
1424 established at the same time, in initial_command_loop/
|
|
1425 top_level_1.
|
|
1426
|
|
1427 #### Fix this horrifitude!
|
|
1428 */
|
|
1429
|
|
1430 while (1)
|
|
1431 {
|
|
1432 REGISTER struct catchtag *c;
|
|
1433
|
|
1434 #if 0 /* FSFmacs */
|
|
1435 if (!NILP (tag)) /* #### */
|
|
1436 #endif
|
|
1437 for (c = catchlist; c; c = c->next)
|
|
1438 {
|
|
1439 if (EQ (c->tag, tag))
|
|
1440 unwind_to_catch (c, val);
|
|
1441 }
|
|
1442 if (!bomb_out_p)
|
|
1443 tag = Fsignal (Qno_catch, list2 (tag, val));
|
|
1444 else
|
|
1445 call1 (Qreally_early_error_handler, Fcons (sig, data));
|
|
1446 }
|
|
1447
|
|
1448 /* can't happen. who cares? - (Sun's compiler does) */
|
|
1449 /* throw_level--; */
|
|
1450 /* getting tired of compilation warnings */
|
|
1451 /* return Qnil; */
|
|
1452 }
|
|
1453
|
|
1454 /* See above, where CATCHLIST is defined, for a description of how
|
|
1455 Fthrow() works.
|
|
1456
|
|
1457 Fthrow() is also called by Fsignal(), to do a non-local jump
|
|
1458 back to the appropriate condition-case handler after (maybe)
|
|
1459 the debugger is entered. In that case, TAG is the value
|
|
1460 of Vcondition_handlers that was in place just after the
|
|
1461 condition-case handler was set up. The car of this will be
|
|
1462 some data referring to the handler: Its car will be Qunbound
|
|
1463 (thus, this tag can never be generated by Lisp code), and
|
|
1464 its CDR will be the HANDLERS argument to condition_case_1()
|
|
1465 (either Qerror, Qt, or a list of handlers as in `condition-case').
|
|
1466 This works fine because Fthrow() does not care what TAG was
|
|
1467 passed to it: it just looks up the catch list for something
|
|
1468 that is EQ() to TAG. When it finds it, it will longjmp()
|
|
1469 back to the place that established the catch (in this case,
|
|
1470 condition_case_1). See below for more info.
|
|
1471 */
|
|
1472
|
|
1473 DEFUN ("throw", Fthrow, 2, 2, 0, /*
|
444
|
1474 Throw to the catch for TAG and return VALUE from it.
|
428
|
1475 Both TAG and VALUE are evalled.
|
|
1476 */
|
444
|
1477 (tag, value))
|
|
1478 {
|
|
1479 throw_or_bomb_out (tag, value, 0, Qnil, Qnil); /* Doesn't return */
|
428
|
1480 return Qnil;
|
|
1481 }
|
|
1482
|
|
1483 DEFUN ("unwind-protect", Funwind_protect, 1, UNEVALLED, 0, /*
|
|
1484 Do BODYFORM, protecting with UNWINDFORMS.
|
|
1485 Usage looks like (unwind-protect BODYFORM UNWINDFORMS...).
|
|
1486 If BODYFORM completes normally, its value is returned
|
|
1487 after executing the UNWINDFORMS.
|
|
1488 If BODYFORM exits nonlocally, the UNWINDFORMS are executed anyway.
|
|
1489 */
|
|
1490 (args))
|
|
1491 {
|
|
1492 /* This function can GC */
|
|
1493 int speccount = specpdl_depth();
|
|
1494
|
|
1495 record_unwind_protect (Fprogn, XCDR (args));
|
|
1496 return unbind_to (speccount, Feval (XCAR (args)));
|
|
1497 }
|
|
1498
|
|
1499
|
|
1500 /************************************************************************/
|
|
1501 /* Signalling and trapping errors */
|
|
1502 /************************************************************************/
|
|
1503
|
|
1504 static Lisp_Object
|
|
1505 condition_bind_unwind (Lisp_Object loser)
|
|
1506 {
|
440
|
1507 Lisp_Cons *victim;
|
428
|
1508 /* ((handler-fun . handler-args) ... other handlers) */
|
|
1509 Lisp_Object tem = XCAR (loser);
|
|
1510
|
|
1511 while (CONSP (tem))
|
|
1512 {
|
|
1513 victim = XCONS (tem);
|
|
1514 tem = victim->cdr;
|
|
1515 free_cons (victim);
|
|
1516 }
|
|
1517 victim = XCONS (loser);
|
|
1518
|
|
1519 if (EQ (loser, Vcondition_handlers)) /* may have been rebound to some tail */
|
|
1520 Vcondition_handlers = victim->cdr;
|
|
1521
|
|
1522 free_cons (victim);
|
|
1523 return Qnil;
|
|
1524 }
|
|
1525
|
|
1526 static Lisp_Object
|
|
1527 condition_case_unwind (Lisp_Object loser)
|
|
1528 {
|
440
|
1529 Lisp_Cons *victim;
|
428
|
1530
|
|
1531 /* ((<unbound> . clauses) ... other handlers */
|
|
1532 victim = XCONS (XCAR (loser));
|
|
1533 free_cons (victim);
|
|
1534
|
|
1535 victim = XCONS (loser);
|
|
1536 if (EQ (loser, Vcondition_handlers)) /* may have been rebound to some tail */
|
|
1537 Vcondition_handlers = victim->cdr;
|
|
1538
|
|
1539 free_cons (victim);
|
|
1540 return Qnil;
|
|
1541 }
|
|
1542
|
|
1543 /* Split out from condition_case_3 so that primitive C callers
|
|
1544 don't have to cons up a lisp handler form to be evaluated. */
|
|
1545
|
|
1546 /* Call a function BFUN of one argument BARG, trapping errors as
|
|
1547 specified by HANDLERS. If no error occurs that is indicated by
|
|
1548 HANDLERS as something to be caught, the return value of this
|
|
1549 function is the return value from BFUN. If such an error does
|
|
1550 occur, HFUN is called, and its return value becomes the
|
|
1551 return value of condition_case_1(). The second argument passed
|
|
1552 to HFUN will always be HARG. The first argument depends on
|
|
1553 HANDLERS:
|
|
1554
|
|
1555 If HANDLERS is Qt, all errors (this includes QUIT, but not
|
|
1556 non-local exits with `throw') cause HFUN to be invoked, and VAL
|
|
1557 (the first argument to HFUN) is a cons (SIG . DATA) of the
|
|
1558 arguments passed to `signal'. The debugger is not invoked even if
|
|
1559 `debug-on-error' was set.
|
|
1560
|
|
1561 A HANDLERS value of Qerror is the same as Qt except that the
|
|
1562 debugger is invoked if `debug-on-error' was set.
|
|
1563
|
|
1564 Otherwise, HANDLERS should be a list of lists (CONDITION-NAME BODY ...)
|
|
1565 exactly as in `condition-case', and errors will be trapped
|
|
1566 as indicated in HANDLERS. VAL (the first argument to HFUN) will
|
|
1567 be a cons whose car is the cons (SIG . DATA) and whose CDR is the
|
|
1568 list (BODY ...) from the appropriate slot in HANDLERS.
|
|
1569
|
|
1570 This function pushes HANDLERS onto the front of Vcondition_handlers
|
|
1571 (actually with a Qunbound marker as well -- see Fthrow() above
|
|
1572 for why), establishes a catch whose tag is this new value of
|
|
1573 Vcondition_handlers, and calls BFUN. When Fsignal() is called,
|
|
1574 it calls Fthrow(), setting TAG to this same new value of
|
|
1575 Vcondition_handlers and setting VAL to the same thing that will
|
|
1576 be passed to HFUN, as above. Fthrow() longjmp()s back to the
|
|
1577 jump point we just established, and we in turn just call the
|
|
1578 HFUN and return its value.
|
|
1579
|
|
1580 For a real condition-case, HFUN will always be
|
|
1581 run_condition_case_handlers() and HARG is the argument VAR
|
|
1582 to condition-case. That function just binds VAR to the cons
|
|
1583 (SIG . DATA) that is the CAR of VAL, and calls the handler
|
|
1584 (BODY ...) that is the CDR of VAL. Note that before calling
|
|
1585 Fthrow(), Fsignal() restored Vcondition_handlers to the value
|
|
1586 it had *before* condition_case_1() was called. This maintains
|
|
1587 consistency (so that the state of things at exit of
|
|
1588 condition_case_1() is the same as at entry), and implies
|
|
1589 that the handler can signal the same error again (possibly
|
|
1590 after processing of its own), without getting in an infinite
|
|
1591 loop. */
|
|
1592
|
|
1593 Lisp_Object
|
|
1594 condition_case_1 (Lisp_Object handlers,
|
|
1595 Lisp_Object (*bfun) (Lisp_Object barg),
|
|
1596 Lisp_Object barg,
|
|
1597 Lisp_Object (*hfun) (Lisp_Object val, Lisp_Object harg),
|
|
1598 Lisp_Object harg)
|
|
1599 {
|
|
1600 int speccount = specpdl_depth();
|
|
1601 struct catchtag c;
|
|
1602 struct gcpro gcpro1;
|
|
1603
|
|
1604 #if 0 /* FSFmacs */
|
|
1605 c.tag = Qnil;
|
|
1606 #else
|
|
1607 /* Do consing now so out-of-memory error happens up front */
|
|
1608 /* (unbound . stuff) is a special condition-case kludge marker
|
|
1609 which is known specially by Fsignal.
|
|
1610 This is an abomination, but to fix it would require either
|
|
1611 making condition_case cons (a union of the conditions of the clauses)
|
|
1612 or changing the byte-compiler output (no thanks). */
|
|
1613 c.tag = noseeum_cons (noseeum_cons (Qunbound, handlers),
|
|
1614 Vcondition_handlers);
|
|
1615 #endif
|
|
1616 c.val = Qnil;
|
|
1617 c.backlist = backtrace_list;
|
|
1618 #if 0 /* FSFmacs */
|
|
1619 /* #### */
|
|
1620 c.handlerlist = handlerlist;
|
|
1621 #endif
|
|
1622 c.lisp_eval_depth = lisp_eval_depth;
|
|
1623 c.pdlcount = specpdl_depth();
|
|
1624 #if 0 /* FSFmacs */
|
|
1625 c.poll_suppress_count = async_timer_suppress_count;
|
|
1626 #endif
|
|
1627 c.gcpro = gcprolist;
|
|
1628 /* #### FSFmacs does the following statement *after* the setjmp(). */
|
|
1629 c.next = catchlist;
|
|
1630
|
|
1631 if (SETJMP (c.jmp))
|
|
1632 {
|
|
1633 /* throw does ungcpro, etc */
|
|
1634 return (*hfun) (c.val, harg);
|
|
1635 }
|
|
1636
|
|
1637 record_unwind_protect (condition_case_unwind, c.tag);
|
|
1638
|
|
1639 catchlist = &c;
|
|
1640 #if 0 /* FSFmacs */
|
|
1641 h.handler = handlers;
|
|
1642 h.var = Qnil;
|
|
1643 h.next = handlerlist;
|
|
1644 h.tag = &c;
|
|
1645 handlerlist = &h;
|
|
1646 #else
|
|
1647 Vcondition_handlers = c.tag;
|
|
1648 #endif
|
|
1649 GCPRO1 (harg); /* Somebody has to gc-protect */
|
|
1650
|
|
1651 c.val = ((*bfun) (barg));
|
|
1652
|
|
1653 /* The following is *not* true: (ben)
|
|
1654
|
|
1655 ungcpro, restoring catchlist and condition_handlers are actually
|
|
1656 redundant since unbind_to now restores them. But it looks funny not to
|
|
1657 have this code here, and it doesn't cost anything, so I'm leaving it.*/
|
|
1658 UNGCPRO;
|
|
1659 catchlist = c.next;
|
442
|
1660 #ifdef ERROR_CHECK_TYPECHECK
|
|
1661 check_error_state_sanity ();
|
|
1662 #endif
|
428
|
1663 Vcondition_handlers = XCDR (c.tag);
|
|
1664
|
|
1665 return unbind_to (speccount, c.val);
|
|
1666 }
|
|
1667
|
|
1668 static Lisp_Object
|
|
1669 run_condition_case_handlers (Lisp_Object val, Lisp_Object var)
|
|
1670 {
|
|
1671 /* This function can GC */
|
|
1672 #if 0 /* FSFmacs */
|
|
1673 if (!NILP (h.var))
|
|
1674 specbind (h.var, c.val);
|
|
1675 val = Fprogn (Fcdr (h.chosen_clause));
|
|
1676
|
|
1677 /* Note that this just undoes the binding of h.var; whoever
|
|
1678 longjmp()ed to us unwound the stack to c.pdlcount before
|
|
1679 throwing. */
|
|
1680 unbind_to (c.pdlcount, Qnil);
|
|
1681 return val;
|
|
1682 #else
|
|
1683 int speccount;
|
|
1684
|
|
1685 CHECK_TRUE_LIST (val);
|
|
1686 if (NILP (var))
|
|
1687 return Fprogn (Fcdr (val)); /* tail call */
|
|
1688
|
|
1689 speccount = specpdl_depth();
|
|
1690 specbind (var, Fcar (val));
|
|
1691 val = Fprogn (Fcdr (val));
|
|
1692 return unbind_to (speccount, val);
|
|
1693 #endif
|
|
1694 }
|
|
1695
|
|
1696 /* Here for bytecode to call non-consfully. This is exactly like
|
|
1697 condition-case except that it takes three arguments rather
|
|
1698 than a single list of arguments. */
|
|
1699 Lisp_Object
|
|
1700 condition_case_3 (Lisp_Object bodyform, Lisp_Object var, Lisp_Object handlers)
|
|
1701 {
|
|
1702 /* This function can GC */
|
|
1703 EXTERNAL_LIST_LOOP_2 (handler, handlers)
|
|
1704 {
|
|
1705 if (NILP (handler))
|
|
1706 ;
|
|
1707 else if (CONSP (handler))
|
|
1708 {
|
|
1709 Lisp_Object conditions = XCAR (handler);
|
|
1710 /* CONDITIONS must a condition name or a list of condition names */
|
|
1711 if (SYMBOLP (conditions))
|
|
1712 ;
|
|
1713 else
|
|
1714 {
|
|
1715 EXTERNAL_LIST_LOOP_2 (condition, conditions)
|
|
1716 if (!SYMBOLP (condition))
|
|
1717 goto invalid_condition_handler;
|
|
1718 }
|
|
1719 }
|
|
1720 else
|
|
1721 {
|
|
1722 invalid_condition_handler:
|
563
|
1723 sferror ("Invalid condition handler", handler);
|
428
|
1724 }
|
|
1725 }
|
|
1726
|
|
1727 CHECK_SYMBOL (var);
|
|
1728
|
|
1729 return condition_case_1 (handlers,
|
|
1730 Feval, bodyform,
|
|
1731 run_condition_case_handlers,
|
|
1732 var);
|
|
1733 }
|
|
1734
|
|
1735 DEFUN ("condition-case", Fcondition_case, 2, UNEVALLED, 0, /*
|
|
1736 Regain control when an error is signalled.
|
|
1737 Usage looks like (condition-case VAR BODYFORM HANDLERS...).
|
|
1738 Executes BODYFORM and returns its value if no error happens.
|
|
1739 Each element of HANDLERS looks like (CONDITION-NAME BODY...)
|
|
1740 where the BODY is made of Lisp expressions.
|
|
1741
|
|
1742 A handler is applicable to an error if CONDITION-NAME is one of the
|
|
1743 error's condition names. If an error happens, the first applicable
|
|
1744 handler is run. As a special case, a CONDITION-NAME of t matches
|
|
1745 all errors, even those without the `error' condition name on them
|
|
1746 \(e.g. `quit').
|
|
1747
|
|
1748 The car of a handler may be a list of condition names
|
|
1749 instead of a single condition name.
|
|
1750
|
|
1751 When a handler handles an error,
|
|
1752 control returns to the condition-case and the handler BODY... is executed
|
|
1753 with VAR bound to (SIGNALED-CONDITIONS . SIGNAL-DATA).
|
|
1754 VAR may be nil; then you do not get access to the signal information.
|
|
1755
|
|
1756 The value of the last BODY form is returned from the condition-case.
|
|
1757 See also the function `signal' for more info.
|
|
1758
|
|
1759 Note that at the time the condition handler is invoked, the Lisp stack
|
|
1760 and the current catches, condition-cases, and bindings have all been
|
|
1761 popped back to the state they were in just before the call to
|
|
1762 `condition-case'. This means that resignalling the error from
|
|
1763 within the handler will not result in an infinite loop.
|
|
1764
|
|
1765 If you want to establish an error handler that is called with the
|
|
1766 Lisp stack, bindings, etc. as they were when `signal' was called,
|
|
1767 rather than when the handler was set, use `call-with-condition-handler'.
|
|
1768 */
|
|
1769 (args))
|
|
1770 {
|
|
1771 /* This function can GC */
|
|
1772 Lisp_Object var = XCAR (args);
|
|
1773 Lisp_Object bodyform = XCAR (XCDR (args));
|
|
1774 Lisp_Object handlers = XCDR (XCDR (args));
|
|
1775 return condition_case_3 (bodyform, var, handlers);
|
|
1776 }
|
|
1777
|
|
1778 DEFUN ("call-with-condition-handler", Fcall_with_condition_handler, 2, MANY, 0, /*
|
|
1779 Regain control when an error is signalled, without popping the stack.
|
|
1780 Usage looks like (call-with-condition-handler HANDLER FUNCTION &rest ARGS).
|
|
1781 This function is similar to `condition-case', but the handler is invoked
|
|
1782 with the same environment (Lisp stack, bindings, catches, condition-cases)
|
|
1783 that was current when `signal' was called, rather than when the handler
|
|
1784 was established.
|
|
1785
|
|
1786 HANDLER should be a function of one argument, which is a cons of the args
|
|
1787 \(SIG . DATA) that were passed to `signal'. It is invoked whenever
|
|
1788 `signal' is called (this differs from `condition-case', which allows
|
|
1789 you to specify which errors are trapped). If the handler function
|
|
1790 returns, `signal' continues as if the handler were never invoked.
|
|
1791 \(It continues to look for handlers established earlier than this one,
|
|
1792 and invokes the standard error-handler if none is found.)
|
|
1793 */
|
|
1794 (int nargs, Lisp_Object *args)) /* Note! Args side-effected! */
|
|
1795 {
|
|
1796 /* This function can GC */
|
|
1797 int speccount = specpdl_depth();
|
|
1798 Lisp_Object tem;
|
|
1799
|
|
1800 /* #### If there were a way to check that args[0] were a function
|
|
1801 which accepted one arg, that should be done here ... */
|
|
1802
|
|
1803 /* (handler-fun . handler-args) */
|
|
1804 tem = noseeum_cons (list1 (args[0]), Vcondition_handlers);
|
|
1805 record_unwind_protect (condition_bind_unwind, tem);
|
|
1806 Vcondition_handlers = tem;
|
|
1807
|
|
1808 /* Caller should have GC-protected args */
|
|
1809 return unbind_to (speccount, Ffuncall (nargs - 1, args + 1));
|
|
1810 }
|
|
1811
|
|
1812 static int
|
|
1813 condition_type_p (Lisp_Object type, Lisp_Object conditions)
|
|
1814 {
|
|
1815 if (EQ (type, Qt))
|
|
1816 /* (condition-case c # (t c)) catches -all- signals
|
|
1817 * Use with caution! */
|
|
1818 return 1;
|
|
1819
|
|
1820 if (SYMBOLP (type))
|
|
1821 return !NILP (Fmemq (type, conditions));
|
|
1822
|
|
1823 for (; CONSP (type); type = XCDR (type))
|
|
1824 if (!NILP (Fmemq (XCAR (type), conditions)))
|
|
1825 return 1;
|
|
1826
|
|
1827 return 0;
|
|
1828 }
|
|
1829
|
|
1830 static Lisp_Object
|
|
1831 return_from_signal (Lisp_Object value)
|
|
1832 {
|
|
1833 #if 1
|
|
1834 /* Most callers are not prepared to handle gc if this
|
|
1835 returns. So, since this feature is not very useful,
|
|
1836 take it out. */
|
|
1837 /* Have called debugger; return value to signaller */
|
|
1838 return value;
|
|
1839 #else /* But the reality is that that stinks, because: */
|
|
1840 /* GACK!!! Really want some way for debug-on-quit errors
|
|
1841 to be continuable!! */
|
563
|
1842 signal_error (Qunimplemented,
|
|
1843 "Returning a value from an error is no longer supported",
|
|
1844 Qunbound);
|
428
|
1845 #endif
|
|
1846 }
|
|
1847
|
|
1848 extern int in_display;
|
|
1849
|
|
1850
|
|
1851 /************************************************************************/
|
|
1852 /* the workhorse error-signaling function */
|
|
1853 /************************************************************************/
|
|
1854
|
|
1855 /* #### This function has not been synched with FSF. It diverges
|
|
1856 significantly. */
|
|
1857
|
|
1858 static Lisp_Object
|
|
1859 signal_1 (Lisp_Object sig, Lisp_Object data)
|
|
1860 {
|
|
1861 /* This function can GC */
|
|
1862 struct gcpro gcpro1, gcpro2;
|
|
1863 Lisp_Object conditions;
|
|
1864 Lisp_Object handlers;
|
|
1865 /* signal_call_debugger() could get called more than once
|
|
1866 (once when a call-with-condition-handler is about to
|
|
1867 be dealt with, and another when a condition-case handler
|
|
1868 is about to be invoked). So make sure the debugger and/or
|
|
1869 stack trace aren't done more than once. */
|
|
1870 int stack_trace_displayed = 0;
|
|
1871 int debugger_entered = 0;
|
|
1872 GCPRO2 (conditions, handlers);
|
|
1873
|
|
1874 if (!initialized)
|
|
1875 {
|
|
1876 /* who knows how much has been initialized? Safest bet is
|
|
1877 just to bomb out immediately. */
|
442
|
1878 /* let's not use stderr_out() here, because that does a bunch of
|
|
1879 things that might not be safe yet. */
|
428
|
1880 fprintf (stderr, "Error before initialization is complete!\n");
|
|
1881 abort ();
|
|
1882 }
|
|
1883
|
|
1884 if (gc_in_progress || in_display)
|
|
1885 /* This is one of many reasons why you can't run lisp code from redisplay.
|
|
1886 There is no sensible way to handle errors there. */
|
|
1887 abort ();
|
|
1888
|
|
1889 conditions = Fget (sig, Qerror_conditions, Qnil);
|
|
1890
|
|
1891 for (handlers = Vcondition_handlers;
|
|
1892 CONSP (handlers);
|
|
1893 handlers = XCDR (handlers))
|
|
1894 {
|
|
1895 Lisp_Object handler_fun = XCAR (XCAR (handlers));
|
|
1896 Lisp_Object handler_data = XCDR (XCAR (handlers));
|
|
1897 Lisp_Object outer_handlers = XCDR (handlers);
|
|
1898
|
|
1899 if (!UNBOUNDP (handler_fun))
|
|
1900 {
|
|
1901 /* call-with-condition-handler */
|
|
1902 Lisp_Object tem;
|
|
1903 Lisp_Object all_handlers = Vcondition_handlers;
|
|
1904 struct gcpro ngcpro1;
|
|
1905 NGCPRO1 (all_handlers);
|
|
1906 Vcondition_handlers = outer_handlers;
|
|
1907
|
|
1908 tem = signal_call_debugger (conditions, sig, data,
|
|
1909 outer_handlers, 1,
|
|
1910 &stack_trace_displayed,
|
|
1911 &debugger_entered);
|
|
1912 if (!UNBOUNDP (tem))
|
|
1913 RETURN_NUNGCPRO (return_from_signal (tem));
|
|
1914
|
|
1915 tem = Fcons (sig, data);
|
|
1916 if (NILP (handler_data))
|
|
1917 tem = call1 (handler_fun, tem);
|
|
1918 else
|
|
1919 {
|
|
1920 /* (This code won't be used (for now?).) */
|
|
1921 struct gcpro nngcpro1;
|
|
1922 Lisp_Object args[3];
|
|
1923 NNGCPRO1 (args[0]);
|
|
1924 nngcpro1.nvars = 3;
|
|
1925 args[0] = handler_fun;
|
|
1926 args[1] = tem;
|
|
1927 args[2] = handler_data;
|
|
1928 nngcpro1.var = args;
|
|
1929 tem = Fapply (3, args);
|
|
1930 NNUNGCPRO;
|
|
1931 }
|
|
1932 NUNGCPRO;
|
|
1933 #if 0
|
|
1934 if (!EQ (tem, Qsignal))
|
|
1935 return return_from_signal (tem);
|
|
1936 #endif
|
|
1937 /* If handler didn't throw, try another handler */
|
|
1938 Vcondition_handlers = all_handlers;
|
|
1939 }
|
|
1940
|
|
1941 /* It's a condition-case handler */
|
|
1942
|
|
1943 /* t is used by handlers for all conditions, set up by C code.
|
|
1944 * debugger is not called even if debug_on_error */
|
|
1945 else if (EQ (handler_data, Qt))
|
|
1946 {
|
|
1947 UNGCPRO;
|
|
1948 return Fthrow (handlers, Fcons (sig, data));
|
|
1949 }
|
|
1950 /* `error' is used similarly to the way `t' is used, but in
|
|
1951 addition it invokes the debugger if debug_on_error.
|
|
1952 This is normally used for the outer command-loop error
|
|
1953 handler. */
|
|
1954 else if (EQ (handler_data, Qerror))
|
|
1955 {
|
|
1956 Lisp_Object tem = signal_call_debugger (conditions, sig, data,
|
|
1957 outer_handlers, 0,
|
|
1958 &stack_trace_displayed,
|
|
1959 &debugger_entered);
|
|
1960
|
|
1961 UNGCPRO;
|
|
1962 if (!UNBOUNDP (tem))
|
|
1963 return return_from_signal (tem);
|
|
1964
|
|
1965 tem = Fcons (sig, data);
|
|
1966 return Fthrow (handlers, tem);
|
|
1967 }
|
|
1968 else
|
|
1969 {
|
|
1970 /* handler established by real (Lisp) condition-case */
|
|
1971 Lisp_Object h;
|
|
1972
|
|
1973 for (h = handler_data; CONSP (h); h = Fcdr (h))
|
|
1974 {
|
|
1975 Lisp_Object clause = Fcar (h);
|
|
1976 Lisp_Object tem = Fcar (clause);
|
|
1977
|
|
1978 if (condition_type_p (tem, conditions))
|
|
1979 {
|
|
1980 tem = signal_call_debugger (conditions, sig, data,
|
|
1981 outer_handlers, 1,
|
|
1982 &stack_trace_displayed,
|
|
1983 &debugger_entered);
|
|
1984 UNGCPRO;
|
|
1985 if (!UNBOUNDP (tem))
|
|
1986 return return_from_signal (tem);
|
|
1987
|
|
1988 /* Doesn't return */
|
|
1989 tem = Fcons (Fcons (sig, data), Fcdr (clause));
|
|
1990 return Fthrow (handlers, tem);
|
|
1991 }
|
|
1992 }
|
|
1993 }
|
|
1994 }
|
|
1995
|
|
1996 /* If no handler is present now, try to run the debugger,
|
|
1997 and if that fails, throw to top level.
|
|
1998
|
|
1999 #### The only time that no handler is present is during
|
|
2000 temacs or perhaps very early in XEmacs. In both cases,
|
|
2001 there is no 'top-level catch. (That's why the
|
|
2002 "bomb-out" hack was added.)
|
|
2003
|
|
2004 #### Fix this horrifitude!
|
|
2005 */
|
|
2006 signal_call_debugger (conditions, sig, data, Qnil, 0,
|
|
2007 &stack_trace_displayed,
|
|
2008 &debugger_entered);
|
|
2009 UNGCPRO;
|
|
2010 throw_or_bomb_out (Qtop_level, Qt, 1, sig, data); /* Doesn't return */
|
|
2011 return Qnil;
|
|
2012 }
|
|
2013
|
|
2014
|
|
2015 /****************** Error functions class 1 ******************/
|
|
2016
|
|
2017 /* Class 1: General functions that signal an error.
|
|
2018 These functions take an error type and a list of associated error
|
|
2019 data. */
|
|
2020
|
|
2021 /* The simplest external error function: it would be called
|
563
|
2022 signal_continuable_error_1() in the terminology below, but it's
|
428
|
2023 Lisp-callable. */
|
|
2024
|
|
2025 DEFUN ("signal", Fsignal, 2, 2, 0, /*
|
|
2026 Signal a continuable error. Args are ERROR-SYMBOL, and associated DATA.
|
|
2027 An error symbol is a symbol defined using `define-error'.
|
|
2028 DATA should be a list. Its elements are printed as part of the error message.
|
|
2029 If the signal is handled, DATA is made available to the handler.
|
|
2030 See also the function `signal-error', and the functions to handle errors:
|
|
2031 `condition-case' and `call-with-condition-handler'.
|
|
2032
|
|
2033 Note that this function can return, if the debugger is invoked and the
|
|
2034 user invokes the "return from signal" option.
|
|
2035 */
|
|
2036 (error_symbol, data))
|
|
2037 {
|
|
2038 /* Fsignal() is one of these functions that's called all the time
|
|
2039 with newly-created Lisp objects. We allow this; but we must GC-
|
|
2040 protect the objects because all sorts of weird stuff could
|
|
2041 happen. */
|
|
2042
|
|
2043 struct gcpro gcpro1;
|
|
2044
|
|
2045 GCPRO1 (data);
|
|
2046 if (!NILP (Vcurrent_error_state))
|
|
2047 {
|
|
2048 if (!NILP (Vcurrent_warning_class))
|
|
2049 warn_when_safe_lispobj (Vcurrent_warning_class, Qwarning,
|
|
2050 Fcons (error_symbol, data));
|
|
2051 Fthrow (Qunbound_suspended_errors_tag, Qnil);
|
|
2052 abort (); /* Better not get here! */
|
|
2053 }
|
|
2054 RETURN_UNGCPRO (signal_1 (error_symbol, data));
|
|
2055 }
|
|
2056
|
|
2057 /* Signal a non-continuable error. */
|
|
2058
|
|
2059 DOESNT_RETURN
|
563
|
2060 signal_error_1 (Lisp_Object sig, Lisp_Object data)
|
428
|
2061 {
|
|
2062 for (;;)
|
|
2063 Fsignal (sig, data);
|
|
2064 }
|
442
|
2065 #ifdef ERROR_CHECK_TYPECHECK
|
|
2066 void
|
|
2067 check_error_state_sanity (void)
|
|
2068 {
|
|
2069 struct catchtag *c;
|
|
2070 int found_error_tag = 0;
|
|
2071
|
|
2072 for (c = catchlist; c; c = c->next)
|
|
2073 {
|
|
2074 if (EQ (c->tag, Qunbound_suspended_errors_tag))
|
|
2075 {
|
|
2076 found_error_tag = 1;
|
|
2077 break;
|
|
2078 }
|
|
2079 }
|
|
2080
|
|
2081 assert (found_error_tag || NILP (Vcurrent_error_state));
|
|
2082 }
|
|
2083 #endif
|
428
|
2084
|
|
2085 static Lisp_Object
|
|
2086 restore_current_warning_class (Lisp_Object warning_class)
|
|
2087 {
|
|
2088 Vcurrent_warning_class = warning_class;
|
|
2089 return Qnil;
|
|
2090 }
|
|
2091
|
|
2092 static Lisp_Object
|
|
2093 restore_current_error_state (Lisp_Object error_state)
|
|
2094 {
|
|
2095 Vcurrent_error_state = error_state;
|
|
2096 return Qnil;
|
|
2097 }
|
|
2098
|
442
|
2099 static Lisp_Object
|
|
2100 call_with_suspended_errors_1 (Lisp_Object opaque_arg)
|
|
2101 {
|
|
2102 Lisp_Object val;
|
|
2103 Lisp_Object *kludgy_args = (Lisp_Object *) get_opaque_ptr (opaque_arg);
|
|
2104 Lisp_Object no_error = kludgy_args[2];
|
|
2105 int speccount = specpdl_depth ();
|
|
2106
|
|
2107 if (!EQ (Vcurrent_error_state, no_error))
|
|
2108 {
|
|
2109 record_unwind_protect (restore_current_error_state,
|
|
2110 Vcurrent_error_state);
|
|
2111 Vcurrent_error_state = no_error;
|
|
2112 }
|
|
2113 PRIMITIVE_FUNCALL (val, get_opaque_ptr (kludgy_args[0]),
|
|
2114 kludgy_args + 3, XINT (kludgy_args[1]));
|
|
2115 return unbind_to (speccount, val);
|
|
2116 }
|
|
2117
|
428
|
2118 /* Many functions would like to do one of three things if an error
|
|
2119 occurs:
|
|
2120
|
|
2121 (1) signal the error, as usual.
|
|
2122 (2) silently fail and return some error value.
|
|
2123 (3) do as (2) but issue a warning in the process.
|
|
2124
|
578
|
2125 Currently there's lots of stuff that passes an Error_Behavior
|
428
|
2126 value and calls maybe_signal_error() and other such functions.
|
|
2127 This approach is inherently error-prone and broken. A much
|
|
2128 more robust and easier approach is to use call_with_suspended_errors().
|
|
2129 Wrap this around any function in which you might want errors
|
|
2130 to not be errors.
|
|
2131 */
|
|
2132
|
|
2133 Lisp_Object
|
|
2134 call_with_suspended_errors (lisp_fn_t fun, volatile Lisp_Object retval,
|
578
|
2135 Lisp_Object class, Error_Behavior errb,
|
428
|
2136 int nargs, ...)
|
|
2137 {
|
|
2138 va_list vargs;
|
|
2139 int speccount;
|
442
|
2140 Lisp_Object kludgy_args[23];
|
|
2141 Lisp_Object *args = kludgy_args + 3;
|
428
|
2142 int i;
|
|
2143 Lisp_Object no_error;
|
|
2144
|
|
2145 assert (SYMBOLP (class)); /* sanity-check */
|
|
2146 assert (!NILP (class));
|
|
2147 assert (nargs >= 0 && nargs < 20);
|
|
2148
|
|
2149 /* ERROR_ME means don't trap errors. (However, if errors are
|
|
2150 already trapped, we leave them trapped.)
|
|
2151
|
|
2152 Otherwise, we trap errors, and trap warnings if ERROR_ME_WARN.
|
|
2153
|
|
2154 If ERROR_ME_NOT, it causes no warnings even if warnings
|
|
2155 were previously enabled. However, we never change the
|
|
2156 warning class from one to another. */
|
|
2157 if (!ERRB_EQ (errb, ERROR_ME))
|
|
2158 {
|
|
2159 if (ERRB_EQ (errb, ERROR_ME_NOT)) /* person wants no warnings */
|
|
2160 class = Qnil;
|
|
2161 errb = ERROR_ME_NOT;
|
|
2162 no_error = Qt;
|
|
2163 }
|
|
2164 else
|
|
2165 no_error = Qnil;
|
|
2166
|
|
2167 va_start (vargs, nargs);
|
|
2168 for (i = 0; i < nargs; i++)
|
|
2169 args[i] = va_arg (vargs, Lisp_Object);
|
|
2170 va_end (vargs);
|
|
2171
|
|
2172 /* If error-checking is not disabled, just call the function.
|
|
2173 It's important not to override disabled error-checking with
|
|
2174 enabled error-checking. */
|
|
2175
|
|
2176 if (ERRB_EQ (errb, ERROR_ME))
|
|
2177 {
|
|
2178 Lisp_Object val;
|
|
2179 PRIMITIVE_FUNCALL (val, fun, args, nargs);
|
|
2180 return val;
|
|
2181 }
|
|
2182
|
442
|
2183 speccount = specpdl_depth ();
|
428
|
2184 if (NILP (class) || NILP (Vcurrent_warning_class))
|
|
2185 {
|
|
2186 /* If we're currently calling for no warnings, then make it so.
|
|
2187 If we're currently calling for warnings and we weren't
|
|
2188 previously, then set our warning class; otherwise, leave
|
|
2189 the existing one alone. */
|
|
2190 record_unwind_protect (restore_current_warning_class,
|
|
2191 Vcurrent_warning_class);
|
|
2192 Vcurrent_warning_class = class;
|
|
2193 }
|
|
2194
|
|
2195 {
|
|
2196 int threw;
|
|
2197 Lisp_Object the_retval;
|
|
2198 Lisp_Object opaque1 = make_opaque_ptr (kludgy_args);
|
|
2199 Lisp_Object opaque2 = make_opaque_ptr ((void *) fun);
|
|
2200 struct gcpro gcpro1, gcpro2;
|
|
2201
|
|
2202 GCPRO2 (opaque1, opaque2);
|
|
2203 kludgy_args[0] = opaque2;
|
|
2204 kludgy_args[1] = make_int (nargs);
|
442
|
2205 kludgy_args[2] = no_error;
|
428
|
2206 the_retval = internal_catch (Qunbound_suspended_errors_tag,
|
|
2207 call_with_suspended_errors_1,
|
|
2208 opaque1, &threw);
|
|
2209 free_opaque_ptr (opaque1);
|
|
2210 free_opaque_ptr (opaque2);
|
|
2211 UNGCPRO;
|
|
2212 /* Use the returned value except in non-local exit, when
|
|
2213 RETVAL applies. */
|
|
2214 /* Some perverse compilers require the perverse cast below. */
|
|
2215 return unbind_to (speccount,
|
|
2216 threw ? *((Lisp_Object*) &(retval)) : the_retval);
|
|
2217 }
|
|
2218 }
|
|
2219
|
|
2220 /* Signal a non-continuable error or display a warning or do nothing,
|
|
2221 according to ERRB. CLASS is the class of warning and should
|
|
2222 refer to what sort of operation is being done (e.g. Qtoolbar,
|
|
2223 Qresource, etc.). */
|
|
2224
|
|
2225 void
|
563
|
2226 maybe_signal_error_1 (Lisp_Object sig, Lisp_Object data, Lisp_Object class,
|
578
|
2227 Error_Behavior errb)
|
428
|
2228 {
|
|
2229 if (ERRB_EQ (errb, ERROR_ME_NOT))
|
|
2230 return;
|
|
2231 else if (ERRB_EQ (errb, ERROR_ME_WARN))
|
|
2232 warn_when_safe_lispobj (class, Qwarning, Fcons (sig, data));
|
|
2233 else
|
|
2234 for (;;)
|
|
2235 Fsignal (sig, data);
|
|
2236 }
|
|
2237
|
|
2238 /* Signal a continuable error or display a warning or do nothing,
|
|
2239 according to ERRB. */
|
|
2240
|
|
2241 Lisp_Object
|
563
|
2242 maybe_signal_continuable_error_1 (Lisp_Object sig, Lisp_Object data,
|
578
|
2243 Lisp_Object class, Error_Behavior errb)
|
428
|
2244 {
|
|
2245 if (ERRB_EQ (errb, ERROR_ME_NOT))
|
|
2246 return Qnil;
|
|
2247 else if (ERRB_EQ (errb, ERROR_ME_WARN))
|
|
2248 {
|
|
2249 warn_when_safe_lispobj (class, Qwarning, Fcons (sig, data));
|
|
2250 return Qnil;
|
|
2251 }
|
|
2252 else
|
|
2253 return Fsignal (sig, data);
|
|
2254 }
|
|
2255
|
|
2256
|
|
2257 /****************** Error functions class 2 ******************/
|
|
2258
|
563
|
2259 /* Class 2: Signal an error with a string and an associated object.
|
|
2260 Normally these functions are used to attach one associated object,
|
|
2261 but to attach no objects, specify Qunbound for FROB, and for more
|
|
2262 than one object, make a list of the objects with Qunbound as the
|
|
2263 first element. (If you have specifically two objects to attach,
|
|
2264 consider using the function in class 3 below.) These functions
|
|
2265 signal an error of a specified type, whose data is one or more
|
|
2266 objects (usually two), a string the related Lisp object(s)
|
|
2267 specified as FROB. */
|
|
2268
|
|
2269 /* Out of REASON and FROB, return a list of elements suitable for passing
|
|
2270 to signal_error_1(). */
|
|
2271
|
|
2272 Lisp_Object
|
609
|
2273 build_error_data (const CBufbyte *reason, Lisp_Object frob)
|
563
|
2274 {
|
|
2275 if (EQ (frob, Qunbound))
|
|
2276 frob = Qnil;
|
|
2277 else if (CONSP (frob) && EQ (XCAR (frob), Qunbound))
|
|
2278 frob = XCDR (frob);
|
|
2279 else
|
|
2280 frob = list1 (frob);
|
|
2281 if (!reason)
|
|
2282 return frob;
|
|
2283 else
|
|
2284 return Fcons (build_translated_string (reason), frob);
|
|
2285 }
|
|
2286
|
|
2287 DOESNT_RETURN
|
609
|
2288 signal_error (Lisp_Object type, const CBufbyte *reason, Lisp_Object frob)
|
563
|
2289 {
|
|
2290 signal_error_1 (type, build_error_data (reason, frob));
|
|
2291 }
|
|
2292
|
|
2293 void
|
609
|
2294 maybe_signal_error (Lisp_Object type, const CBufbyte *reason,
|
563
|
2295 Lisp_Object frob, Lisp_Object class,
|
578
|
2296 Error_Behavior errb)
|
563
|
2297 {
|
|
2298 /* Optimization: */
|
|
2299 if (ERRB_EQ (errb, ERROR_ME_NOT))
|
|
2300 return;
|
|
2301 maybe_signal_error_1 (type, build_error_data (reason, frob), class, errb);
|
|
2302 }
|
|
2303
|
|
2304 Lisp_Object
|
609
|
2305 signal_continuable_error (Lisp_Object type, const CBufbyte *reason,
|
563
|
2306 Lisp_Object frob)
|
|
2307 {
|
|
2308 return Fsignal (type, build_error_data (reason, frob));
|
|
2309 }
|
|
2310
|
|
2311 Lisp_Object
|
609
|
2312 maybe_signal_continuable_error (Lisp_Object type, const CBufbyte *reason,
|
563
|
2313 Lisp_Object frob, Lisp_Object class,
|
578
|
2314 Error_Behavior errb)
|
563
|
2315 {
|
|
2316 /* Optimization: */
|
|
2317 if (ERRB_EQ (errb, ERROR_ME_NOT))
|
|
2318 return Qnil;
|
|
2319 return maybe_signal_continuable_error_1 (type,
|
|
2320 build_error_data (reason, frob),
|
|
2321 class, errb);
|
|
2322 }
|
|
2323
|
|
2324
|
|
2325 /****************** Error functions class 3 ******************/
|
|
2326
|
|
2327 /* Class 3: Signal an error with a string and two associated objects.
|
|
2328 These functions signal an error of a specified type, whose data
|
|
2329 is three objects, a string and two related Lisp objects.
|
|
2330 (The equivalent could be accomplished using the class 2 functions,
|
|
2331 but these are more convenient in this particular case.) */
|
|
2332
|
|
2333 DOESNT_RETURN
|
609
|
2334 signal_error_2 (Lisp_Object type, const CBufbyte *reason,
|
563
|
2335 Lisp_Object frob0, Lisp_Object frob1)
|
|
2336 {
|
|
2337 signal_error_1 (type, list3 (build_translated_string (reason), frob0,
|
|
2338 frob1));
|
|
2339 }
|
|
2340
|
|
2341 void
|
609
|
2342 maybe_signal_error_2 (Lisp_Object type, const CBufbyte *reason,
|
563
|
2343 Lisp_Object frob0, Lisp_Object frob1,
|
578
|
2344 Lisp_Object class, Error_Behavior errb)
|
563
|
2345 {
|
|
2346 /* Optimization: */
|
|
2347 if (ERRB_EQ (errb, ERROR_ME_NOT))
|
|
2348 return;
|
|
2349 maybe_signal_error_1 (type, list3 (build_translated_string (reason), frob0,
|
|
2350 frob1), class, errb);
|
|
2351 }
|
|
2352
|
|
2353 Lisp_Object
|
609
|
2354 signal_continuable_error_2 (Lisp_Object type, const CBufbyte *reason,
|
563
|
2355 Lisp_Object frob0, Lisp_Object frob1)
|
|
2356 {
|
|
2357 return Fsignal (type, list3 (build_translated_string (reason), frob0,
|
|
2358 frob1));
|
|
2359 }
|
|
2360
|
|
2361 Lisp_Object
|
609
|
2362 maybe_signal_continuable_error_2 (Lisp_Object type, const CBufbyte *reason,
|
563
|
2363 Lisp_Object frob0, Lisp_Object frob1,
|
578
|
2364 Lisp_Object class, Error_Behavior errb)
|
563
|
2365 {
|
|
2366 /* Optimization: */
|
|
2367 if (ERRB_EQ (errb, ERROR_ME_NOT))
|
|
2368 return Qnil;
|
|
2369 return maybe_signal_continuable_error_1
|
|
2370 (type, list3 (build_translated_string (reason), frob0, frob1),
|
|
2371 class, errb);
|
|
2372 }
|
|
2373
|
|
2374
|
|
2375 /****************** Error functions class 4 ******************/
|
|
2376
|
|
2377 /* Class 4: Printf-like functions that signal an error.
|
442
|
2378 These functions signal an error of a specified type, whose data
|
428
|
2379 is a single string, created using the arguments. */
|
|
2380
|
|
2381 DOESNT_RETURN
|
609
|
2382 signal_ferror (Lisp_Object type, const CBufbyte *fmt, ...)
|
442
|
2383 {
|
|
2384 Lisp_Object obj;
|
|
2385 va_list args;
|
|
2386
|
|
2387 va_start (args, fmt);
|
|
2388 obj = emacs_doprnt_string_va ((const Bufbyte *) GETTEXT (fmt), Qnil, -1,
|
|
2389 args);
|
|
2390 va_end (args);
|
|
2391
|
|
2392 /* Fsignal GC-protects its args */
|
563
|
2393 signal_error (type, 0, obj);
|
442
|
2394 }
|
|
2395
|
|
2396 void
|
578
|
2397 maybe_signal_ferror (Lisp_Object type, Lisp_Object class, Error_Behavior errb,
|
609
|
2398 const CBufbyte *fmt, ...)
|
442
|
2399 {
|
|
2400 Lisp_Object obj;
|
|
2401 va_list args;
|
|
2402
|
|
2403 /* Optimization: */
|
|
2404 if (ERRB_EQ (errb, ERROR_ME_NOT))
|
|
2405 return;
|
|
2406
|
|
2407 va_start (args, fmt);
|
|
2408 obj = emacs_doprnt_string_va ((const Bufbyte *) GETTEXT (fmt), Qnil, -1,
|
|
2409 args);
|
|
2410 va_end (args);
|
|
2411
|
|
2412 /* Fsignal GC-protects its args */
|
563
|
2413 maybe_signal_error (type, 0, obj, class, errb);
|
442
|
2414 }
|
|
2415
|
|
2416 Lisp_Object
|
609
|
2417 signal_continuable_ferror (Lisp_Object type, const CBufbyte *fmt, ...)
|
428
|
2418 {
|
|
2419 Lisp_Object obj;
|
|
2420 va_list args;
|
|
2421
|
|
2422 va_start (args, fmt);
|
442
|
2423 obj = emacs_doprnt_string_va ((const Bufbyte *) GETTEXT (fmt), Qnil, -1,
|
|
2424 args);
|
|
2425 va_end (args);
|
|
2426
|
|
2427 /* Fsignal GC-protects its args */
|
|
2428 return Fsignal (type, list1 (obj));
|
|
2429 }
|
|
2430
|
|
2431 Lisp_Object
|
563
|
2432 maybe_signal_continuable_ferror (Lisp_Object type, Lisp_Object class,
|
609
|
2433 Error_Behavior errb, const CBufbyte *fmt, ...)
|
442
|
2434 {
|
|
2435 Lisp_Object obj;
|
|
2436 va_list args;
|
|
2437
|
|
2438 /* Optimization: */
|
|
2439 if (ERRB_EQ (errb, ERROR_ME_NOT))
|
|
2440 return Qnil;
|
|
2441
|
|
2442 va_start (args, fmt);
|
|
2443 obj = emacs_doprnt_string_va ((const Bufbyte *) GETTEXT (fmt), Qnil, -1,
|
|
2444 args);
|
|
2445 va_end (args);
|
|
2446
|
|
2447 /* Fsignal GC-protects its args */
|
563
|
2448 return maybe_signal_continuable_error (type, 0, obj, class, errb);
|
442
|
2449 }
|
|
2450
|
|
2451
|
|
2452 /****************** Error functions class 5 ******************/
|
|
2453
|
563
|
2454 /* Class 5: Printf-like functions that signal an error.
|
442
|
2455 These functions signal an error of a specified type, whose data
|
563
|
2456 is a one or more objects, a string (created using the arguments)
|
|
2457 and additional Lisp objects specified in FROB. (The syntax of FROB
|
|
2458 is the same as for class 2.)
|
|
2459
|
|
2460 There is no need for a class 6 because you can always attach 2
|
|
2461 objects using class 5 (for FROB, specify a list with three
|
|
2462 elements, the first of which is Qunbound), and these functions are
|
|
2463 not commonly used.
|
|
2464 */
|
442
|
2465
|
|
2466 DOESNT_RETURN
|
609
|
2467 signal_ferror_with_frob (Lisp_Object type, Lisp_Object frob, const CBufbyte *fmt,
|
563
|
2468 ...)
|
442
|
2469 {
|
|
2470 Lisp_Object obj;
|
|
2471 va_list args;
|
|
2472
|
|
2473 va_start (args, fmt);
|
|
2474 obj = emacs_doprnt_string_va ((const Bufbyte *) GETTEXT (fmt), Qnil, -1,
|
|
2475 args);
|
|
2476 va_end (args);
|
|
2477
|
|
2478 /* Fsignal GC-protects its args */
|
563
|
2479 signal_error_1 (type, Fcons (obj, build_error_data (0, frob)));
|
442
|
2480 }
|
|
2481
|
|
2482 void
|
563
|
2483 maybe_signal_ferror_with_frob (Lisp_Object type, Lisp_Object frob,
|
578
|
2484 Lisp_Object class, Error_Behavior errb,
|
609
|
2485 const CBufbyte *fmt, ...)
|
442
|
2486 {
|
|
2487 Lisp_Object obj;
|
|
2488 va_list args;
|
|
2489
|
|
2490 /* Optimization: */
|
|
2491 if (ERRB_EQ (errb, ERROR_ME_NOT))
|
|
2492 return;
|
|
2493
|
|
2494 va_start (args, fmt);
|
|
2495 obj = emacs_doprnt_string_va ((const Bufbyte *) GETTEXT (fmt), Qnil, -1,
|
428
|
2496 args);
|
|
2497 va_end (args);
|
|
2498
|
|
2499 /* Fsignal GC-protects its args */
|
563
|
2500 maybe_signal_error_1 (type, Fcons (obj, build_error_data (0, frob)), class,
|
|
2501 errb);
|
428
|
2502 }
|
|
2503
|
|
2504 Lisp_Object
|
563
|
2505 signal_continuable_ferror_with_frob (Lisp_Object type, Lisp_Object frob,
|
609
|
2506 const CBufbyte *fmt, ...)
|
428
|
2507 {
|
|
2508 Lisp_Object obj;
|
|
2509 va_list args;
|
|
2510
|
|
2511 va_start (args, fmt);
|
442
|
2512 obj = emacs_doprnt_string_va ((const Bufbyte *) GETTEXT (fmt), Qnil, -1,
|
428
|
2513 args);
|
|
2514 va_end (args);
|
|
2515
|
|
2516 /* Fsignal GC-protects its args */
|
563
|
2517 return Fsignal (type, Fcons (obj, build_error_data (0, frob)));
|
428
|
2518 }
|
|
2519
|
|
2520 Lisp_Object
|
563
|
2521 maybe_signal_continuable_ferror_with_frob (Lisp_Object type, Lisp_Object frob,
|
|
2522 Lisp_Object class,
|
578
|
2523 Error_Behavior errb,
|
609
|
2524 const CBufbyte *fmt, ...)
|
428
|
2525 {
|
|
2526 Lisp_Object obj;
|
|
2527 va_list args;
|
|
2528
|
|
2529 /* Optimization: */
|
|
2530 if (ERRB_EQ (errb, ERROR_ME_NOT))
|
|
2531 return Qnil;
|
|
2532
|
|
2533 va_start (args, fmt);
|
442
|
2534 obj = emacs_doprnt_string_va ((const Bufbyte *) GETTEXT (fmt), Qnil, -1,
|
428
|
2535 args);
|
|
2536 va_end (args);
|
|
2537
|
|
2538 /* Fsignal GC-protects its args */
|
563
|
2539 return maybe_signal_continuable_error_1 (type,
|
|
2540 Fcons (obj,
|
|
2541 build_error_data (0, frob)),
|
|
2542 class, errb);
|
428
|
2543 }
|
|
2544
|
|
2545
|
|
2546 /* This is what the QUIT macro calls to signal a quit */
|
|
2547 void
|
|
2548 signal_quit (void)
|
|
2549 {
|
|
2550 /* This function can GC */
|
|
2551 if (EQ (Vquit_flag, Qcritical))
|
|
2552 debug_on_quit |= 2; /* set critical bit. */
|
|
2553 Vquit_flag = Qnil;
|
|
2554 /* note that this is continuable. */
|
|
2555 Fsignal (Qquit, Qnil);
|
|
2556 }
|
|
2557
|
|
2558
|
563
|
2559 /************************ convenience error functions ***********************/
|
|
2560
|
436
|
2561 Lisp_Object
|
428
|
2562 signal_void_function_error (Lisp_Object function)
|
|
2563 {
|
436
|
2564 return Fsignal (Qvoid_function, list1 (function));
|
428
|
2565 }
|
|
2566
|
436
|
2567 Lisp_Object
|
428
|
2568 signal_invalid_function_error (Lisp_Object function)
|
|
2569 {
|
436
|
2570 return Fsignal (Qinvalid_function, list1 (function));
|
428
|
2571 }
|
|
2572
|
436
|
2573 Lisp_Object
|
428
|
2574 signal_wrong_number_of_arguments_error (Lisp_Object function, int nargs)
|
|
2575 {
|
436
|
2576 return Fsignal (Qwrong_number_of_arguments,
|
|
2577 list2 (function, make_int (nargs)));
|
428
|
2578 }
|
|
2579
|
|
2580 /* Used in list traversal macros for efficiency. */
|
436
|
2581 DOESNT_RETURN
|
428
|
2582 signal_malformed_list_error (Lisp_Object list)
|
|
2583 {
|
563
|
2584 signal_error (Qmalformed_list, 0, list);
|
428
|
2585 }
|
|
2586
|
436
|
2587 DOESNT_RETURN
|
428
|
2588 signal_malformed_property_list_error (Lisp_Object list)
|
|
2589 {
|
563
|
2590 signal_error (Qmalformed_property_list, 0, list);
|
428
|
2591 }
|
|
2592
|
436
|
2593 DOESNT_RETURN
|
428
|
2594 signal_circular_list_error (Lisp_Object list)
|
|
2595 {
|
563
|
2596 signal_error (Qcircular_list, 0, list);
|
428
|
2597 }
|
|
2598
|
436
|
2599 DOESNT_RETURN
|
428
|
2600 signal_circular_property_list_error (Lisp_Object list)
|
|
2601 {
|
563
|
2602 signal_error (Qcircular_property_list, 0, list);
|
428
|
2603 }
|
442
|
2604
|
|
2605 DOESNT_RETURN
|
609
|
2606 syntax_error (const CBufbyte *reason, Lisp_Object frob)
|
442
|
2607 {
|
563
|
2608 signal_error (Qsyntax_error, reason, frob);
|
442
|
2609 }
|
|
2610
|
|
2611 DOESNT_RETURN
|
609
|
2612 syntax_error_2 (const CBufbyte *reason, Lisp_Object frob1, Lisp_Object frob2)
|
442
|
2613 {
|
563
|
2614 signal_error_2 (Qsyntax_error, reason, frob1, frob2);
|
|
2615 }
|
|
2616
|
|
2617 void
|
609
|
2618 maybe_syntax_error (const CBufbyte *reason, Lisp_Object frob,
|
578
|
2619 Lisp_Object class, Error_Behavior errb)
|
563
|
2620 {
|
|
2621 maybe_signal_error (Qsyntax_error, reason, frob, class, errb);
|
|
2622 }
|
|
2623
|
|
2624 DOESNT_RETURN
|
609
|
2625 sferror (const CBufbyte *reason, Lisp_Object frob)
|
563
|
2626 {
|
|
2627 signal_error (Qstructure_formation_error, reason, frob);
|
|
2628 }
|
|
2629
|
|
2630 DOESNT_RETURN
|
609
|
2631 sferror_2 (const CBufbyte *reason, Lisp_Object frob1, Lisp_Object frob2)
|
563
|
2632 {
|
|
2633 signal_error_2 (Qstructure_formation_error, reason, frob1, frob2);
|
|
2634 }
|
|
2635
|
|
2636 void
|
609
|
2637 maybe_sferror (const CBufbyte *reason, Lisp_Object frob,
|
578
|
2638 Lisp_Object class, Error_Behavior errb)
|
563
|
2639 {
|
|
2640 maybe_signal_error (Qstructure_formation_error, reason, frob, class, errb);
|
442
|
2641 }
|
|
2642
|
|
2643 DOESNT_RETURN
|
609
|
2644 invalid_argument (const CBufbyte *reason, Lisp_Object frob)
|
442
|
2645 {
|
563
|
2646 signal_error (Qinvalid_argument, reason, frob);
|
442
|
2647 }
|
|
2648
|
|
2649 DOESNT_RETURN
|
609
|
2650 invalid_argument_2 (const CBufbyte *reason, Lisp_Object frob1,
|
|
2651 Lisp_Object frob2)
|
442
|
2652 {
|
563
|
2653 signal_error_2 (Qinvalid_argument, reason, frob1, frob2);
|
|
2654 }
|
|
2655
|
|
2656 void
|
609
|
2657 maybe_invalid_argument (const CBufbyte *reason, Lisp_Object frob,
|
578
|
2658 Lisp_Object class, Error_Behavior errb)
|
563
|
2659 {
|
|
2660 maybe_signal_error (Qinvalid_argument, reason, frob, class, errb);
|
|
2661 }
|
|
2662
|
|
2663 DOESNT_RETURN
|
609
|
2664 invalid_constant (const CBufbyte *reason, Lisp_Object frob)
|
563
|
2665 {
|
|
2666 signal_error (Qinvalid_constant, reason, frob);
|
|
2667 }
|
|
2668
|
|
2669 DOESNT_RETURN
|
609
|
2670 invalid_constant_2 (const CBufbyte *reason, Lisp_Object frob1,
|
|
2671 Lisp_Object frob2)
|
563
|
2672 {
|
|
2673 signal_error_2 (Qinvalid_constant, reason, frob1, frob2);
|
|
2674 }
|
|
2675
|
|
2676 void
|
609
|
2677 maybe_invalid_constant (const CBufbyte *reason, Lisp_Object frob,
|
578
|
2678 Lisp_Object class, Error_Behavior errb)
|
563
|
2679 {
|
|
2680 maybe_signal_error (Qinvalid_constant, reason, frob, class, errb);
|
442
|
2681 }
|
|
2682
|
|
2683 DOESNT_RETURN
|
609
|
2684 invalid_operation (const CBufbyte *reason, Lisp_Object frob)
|
442
|
2685 {
|
563
|
2686 signal_error (Qinvalid_operation, reason, frob);
|
442
|
2687 }
|
|
2688
|
|
2689 DOESNT_RETURN
|
609
|
2690 invalid_operation_2 (const CBufbyte *reason, Lisp_Object frob1,
|
|
2691 Lisp_Object frob2)
|
442
|
2692 {
|
563
|
2693 signal_error_2 (Qinvalid_operation, reason, frob1, frob2);
|
|
2694 }
|
|
2695
|
|
2696 void
|
609
|
2697 maybe_invalid_operation (const CBufbyte *reason, Lisp_Object frob,
|
578
|
2698 Lisp_Object class, Error_Behavior errb)
|
563
|
2699 {
|
|
2700 maybe_signal_error (Qinvalid_operation, reason, frob, class, errb);
|
442
|
2701 }
|
|
2702
|
|
2703 DOESNT_RETURN
|
609
|
2704 invalid_change (const CBufbyte *reason, Lisp_Object frob)
|
442
|
2705 {
|
563
|
2706 signal_error (Qinvalid_change, reason, frob);
|
442
|
2707 }
|
|
2708
|
|
2709 DOESNT_RETURN
|
609
|
2710 invalid_change_2 (const CBufbyte *reason, Lisp_Object frob1, Lisp_Object frob2)
|
442
|
2711 {
|
563
|
2712 signal_error_2 (Qinvalid_change, reason, frob1, frob2);
|
|
2713 }
|
|
2714
|
|
2715 void
|
609
|
2716 maybe_invalid_change (const CBufbyte *reason, Lisp_Object frob,
|
578
|
2717 Lisp_Object class, Error_Behavior errb)
|
563
|
2718 {
|
|
2719 maybe_signal_error (Qinvalid_change, reason, frob, class, errb);
|
|
2720 }
|
|
2721
|
|
2722 DOESNT_RETURN
|
609
|
2723 invalid_state (const CBufbyte *reason, Lisp_Object frob)
|
563
|
2724 {
|
|
2725 signal_error (Qinvalid_state, reason, frob);
|
|
2726 }
|
|
2727
|
|
2728 DOESNT_RETURN
|
609
|
2729 invalid_state_2 (const CBufbyte *reason, Lisp_Object frob1, Lisp_Object frob2)
|
563
|
2730 {
|
|
2731 signal_error_2 (Qinvalid_state, reason, frob1, frob2);
|
|
2732 }
|
|
2733
|
|
2734 void
|
609
|
2735 maybe_invalid_state (const CBufbyte *reason, Lisp_Object frob,
|
578
|
2736 Lisp_Object class, Error_Behavior errb)
|
563
|
2737 {
|
|
2738 maybe_signal_error (Qinvalid_state, reason, frob, class, errb);
|
|
2739 }
|
|
2740
|
|
2741 DOESNT_RETURN
|
609
|
2742 wtaerror (const CBufbyte *reason, Lisp_Object frob)
|
563
|
2743 {
|
|
2744 signal_error (Qwrong_type_argument, reason, frob);
|
|
2745 }
|
|
2746
|
|
2747 DOESNT_RETURN
|
609
|
2748 stack_overflow (const CBufbyte *reason, Lisp_Object frob)
|
563
|
2749 {
|
|
2750 signal_error (Qstack_overflow, reason, frob);
|
|
2751 }
|
|
2752
|
|
2753 DOESNT_RETURN
|
609
|
2754 out_of_memory (const CBufbyte *reason, Lisp_Object frob)
|
563
|
2755 {
|
|
2756 signal_error (Qout_of_memory, reason, frob);
|
|
2757 }
|
|
2758
|
|
2759 DOESNT_RETURN
|
609
|
2760 printing_unreadable_object (const CBufbyte *fmt, ...)
|
563
|
2761 {
|
|
2762 Lisp_Object obj;
|
|
2763 va_list args;
|
|
2764
|
|
2765 va_start (args, fmt);
|
|
2766 obj = emacs_doprnt_string_va ((const Bufbyte *) GETTEXT (fmt), Qnil, -1,
|
|
2767 args);
|
|
2768 va_end (args);
|
|
2769
|
|
2770 /* Fsignal GC-protects its args */
|
|
2771 signal_error (Qprinting_unreadable_object, 0, obj);
|
442
|
2772 }
|
|
2773
|
428
|
2774
|
|
2775 /************************************************************************/
|
|
2776 /* User commands */
|
|
2777 /************************************************************************/
|
|
2778
|
|
2779 DEFUN ("commandp", Fcommandp, 1, 1, 0, /*
|
|
2780 Return t if FUNCTION makes provisions for interactive calling.
|
|
2781 This means it contains a description for how to read arguments to give it.
|
|
2782 The value is nil for an invalid function or a symbol with no function
|
|
2783 definition.
|
|
2784
|
|
2785 Interactively callable functions include
|
|
2786
|
|
2787 -- strings and vectors (treated as keyboard macros)
|
|
2788 -- lambda-expressions that contain a top-level call to `interactive'
|
|
2789 -- autoload definitions made by `autoload' with non-nil fourth argument
|
|
2790 (i.e. the interactive flag)
|
|
2791 -- compiled-function objects with a non-nil `compiled-function-interactive'
|
|
2792 value
|
|
2793 -- subrs (built-in functions) that are interactively callable
|
|
2794
|
|
2795 Also, a symbol satisfies `commandp' if its function definition does so.
|
|
2796 */
|
|
2797 (function))
|
|
2798 {
|
|
2799 Lisp_Object fun = indirect_function (function, 0);
|
|
2800
|
|
2801 if (COMPILED_FUNCTIONP (fun))
|
|
2802 return XCOMPILED_FUNCTION (fun)->flags.interactivep ? Qt : Qnil;
|
|
2803
|
|
2804 /* Lists may represent commands. */
|
|
2805 if (CONSP (fun))
|
|
2806 {
|
|
2807 Lisp_Object funcar = XCAR (fun);
|
|
2808 if (EQ (funcar, Qlambda))
|
|
2809 return Fassq (Qinteractive, Fcdr (Fcdr (fun)));
|
|
2810 if (EQ (funcar, Qautoload))
|
|
2811 return Fcar (Fcdr (Fcdr (Fcdr (fun))));
|
|
2812 else
|
|
2813 return Qnil;
|
|
2814 }
|
|
2815
|
|
2816 /* Emacs primitives are interactive if their DEFUN specifies an
|
|
2817 interactive spec. */
|
|
2818 if (SUBRP (fun))
|
|
2819 return XSUBR (fun)->prompt ? Qt : Qnil;
|
|
2820
|
|
2821 /* Strings and vectors are keyboard macros. */
|
|
2822 if (VECTORP (fun) || STRINGP (fun))
|
|
2823 return Qt;
|
|
2824
|
|
2825 /* Everything else (including Qunbound) is not a command. */
|
|
2826 return Qnil;
|
|
2827 }
|
|
2828
|
|
2829 DEFUN ("command-execute", Fcommand_execute, 1, 3, 0, /*
|
|
2830 Execute CMD as an editor command.
|
|
2831 CMD must be an object that satisfies the `commandp' predicate.
|
|
2832 Optional second arg RECORD-FLAG is as in `call-interactively'.
|
|
2833 The argument KEYS specifies the value to use instead of (this-command-keys)
|
|
2834 when reading the arguments.
|
|
2835 */
|
444
|
2836 (cmd, record_flag, keys))
|
428
|
2837 {
|
|
2838 /* This function can GC */
|
|
2839 Lisp_Object prefixarg;
|
|
2840 Lisp_Object final = cmd;
|
|
2841 struct backtrace backtrace;
|
|
2842 struct console *con = XCONSOLE (Vselected_console);
|
|
2843
|
|
2844 prefixarg = con->prefix_arg;
|
|
2845 con->prefix_arg = Qnil;
|
|
2846 Vcurrent_prefix_arg = prefixarg;
|
|
2847 debug_on_next_call = 0; /* #### from FSFmacs; correct? */
|
|
2848
|
|
2849 if (SYMBOLP (cmd) && !NILP (Fget (cmd, Qdisabled, Qnil)))
|
|
2850 return run_hook (Vdisabled_command_hook);
|
|
2851
|
|
2852 for (;;)
|
|
2853 {
|
|
2854 final = indirect_function (cmd, 1);
|
|
2855 if (CONSP (final) && EQ (Fcar (final), Qautoload))
|
|
2856 do_autoload (final, cmd);
|
|
2857 else
|
|
2858 break;
|
|
2859 }
|
|
2860
|
|
2861 if (CONSP (final) || SUBRP (final) || COMPILED_FUNCTIONP (final))
|
|
2862 {
|
|
2863 backtrace.function = &Qcall_interactively;
|
|
2864 backtrace.args = &cmd;
|
|
2865 backtrace.nargs = 1;
|
|
2866 backtrace.evalargs = 0;
|
|
2867 backtrace.pdlcount = specpdl_depth();
|
|
2868 backtrace.debug_on_exit = 0;
|
|
2869 PUSH_BACKTRACE (backtrace);
|
|
2870
|
444
|
2871 final = Fcall_interactively (cmd, record_flag, keys);
|
428
|
2872
|
|
2873 POP_BACKTRACE (backtrace);
|
|
2874 return final;
|
|
2875 }
|
|
2876 else if (STRINGP (final) || VECTORP (final))
|
|
2877 {
|
|
2878 return Fexecute_kbd_macro (final, prefixarg);
|
|
2879 }
|
|
2880 else
|
|
2881 {
|
|
2882 Fsignal (Qwrong_type_argument,
|
|
2883 Fcons (Qcommandp,
|
|
2884 (EQ (cmd, final)
|
|
2885 ? list1 (cmd)
|
|
2886 : list2 (cmd, final))));
|
|
2887 return Qnil;
|
|
2888 }
|
|
2889 }
|
|
2890
|
|
2891 DEFUN ("interactive-p", Finteractive_p, 0, 0, 0, /*
|
|
2892 Return t if function in which this appears was called interactively.
|
|
2893 This means that the function was called with call-interactively (which
|
|
2894 includes being called as the binding of a key)
|
|
2895 and input is currently coming from the keyboard (not in keyboard macro).
|
|
2896 */
|
|
2897 ())
|
|
2898 {
|
|
2899 REGISTER struct backtrace *btp;
|
|
2900 REGISTER Lisp_Object fun;
|
|
2901
|
|
2902 if (!INTERACTIVE)
|
|
2903 return Qnil;
|
|
2904
|
|
2905 /* Unless the object was compiled, skip the frame of interactive-p itself
|
|
2906 (if interpreted) or the frame of byte-code (if called from a compiled
|
|
2907 function). Note that *btp->function may be a symbol pointing at a
|
|
2908 compiled function. */
|
|
2909 btp = backtrace_list;
|
|
2910
|
|
2911 #if 0 /* FSFmacs */
|
|
2912
|
|
2913 /* #### FSFmacs does the following instead. I can't figure
|
|
2914 out which one is more correct. */
|
|
2915 /* If this isn't a byte-compiled function, there may be a frame at
|
|
2916 the top for Finteractive_p itself. If so, skip it. */
|
|
2917 fun = Findirect_function (*btp->function);
|
|
2918 if (SUBRP (fun) && XSUBR (fun) == &Sinteractive_p)
|
|
2919 btp = btp->next;
|
|
2920
|
|
2921 /* If we're running an Emacs 18-style byte-compiled function, there
|
|
2922 may be a frame for Fbyte_code. Now, given the strictest
|
|
2923 definition, this function isn't really being called
|
|
2924 interactively, but because that's the way Emacs 18 always builds
|
|
2925 byte-compiled functions, we'll accept it for now. */
|
|
2926 if (EQ (*btp->function, Qbyte_code))
|
|
2927 btp = btp->next;
|
|
2928
|
|
2929 /* If this isn't a byte-compiled function, then we may now be
|
|
2930 looking at several frames for special forms. Skip past them. */
|
|
2931 while (btp &&
|
|
2932 btp->nargs == UNEVALLED)
|
|
2933 btp = btp->next;
|
|
2934
|
|
2935 #else
|
|
2936
|
|
2937 if (! (COMPILED_FUNCTIONP (Findirect_function (*btp->function))))
|
|
2938 btp = btp->next;
|
|
2939 for (;
|
|
2940 btp && (btp->nargs == UNEVALLED
|
|
2941 || EQ (*btp->function, Qbyte_code));
|
|
2942 btp = btp->next)
|
|
2943 {}
|
|
2944 /* btp now points at the frame of the innermost function
|
|
2945 that DOES eval its args.
|
|
2946 If it is a built-in function (such as load or eval-region)
|
|
2947 return nil. */
|
|
2948 /* Beats me why this is necessary, but it is */
|
|
2949 if (btp && EQ (*btp->function, Qcall_interactively))
|
|
2950 return Qt;
|
|
2951
|
|
2952 #endif
|
|
2953
|
|
2954 fun = Findirect_function (*btp->function);
|
|
2955 if (SUBRP (fun))
|
|
2956 return Qnil;
|
|
2957 /* btp points to the frame of a Lisp function that called interactive-p.
|
|
2958 Return t if that function was called interactively. */
|
|
2959 if (btp && btp->next && EQ (*btp->next->function, Qcall_interactively))
|
|
2960 return Qt;
|
|
2961 return Qnil;
|
|
2962 }
|
|
2963
|
|
2964
|
|
2965 /************************************************************************/
|
|
2966 /* Autoloading */
|
|
2967 /************************************************************************/
|
|
2968
|
|
2969 DEFUN ("autoload", Fautoload, 2, 5, 0, /*
|
444
|
2970 Define FUNCTION to autoload from FILENAME.
|
|
2971 FUNCTION is a symbol; FILENAME is a file name string to pass to `load'.
|
|
2972 The remaining optional arguments provide additional info about the
|
|
2973 real definition.
|
|
2974 DOCSTRING is documentation for FUNCTION.
|
|
2975 INTERACTIVE, if non-nil, says FUNCTION can be called interactively.
|
|
2976 TYPE indicates the type of the object:
|
428
|
2977 nil or omitted says FUNCTION is a function,
|
|
2978 `keymap' says FUNCTION is really a keymap, and
|
|
2979 `macro' or t says FUNCTION is really a macro.
|
444
|
2980 If FUNCTION already has a non-void function definition that is not an
|
|
2981 autoload object, this function does nothing and returns nil.
|
428
|
2982 */
|
444
|
2983 (function, filename, docstring, interactive, type))
|
428
|
2984 {
|
|
2985 /* This function can GC */
|
|
2986 CHECK_SYMBOL (function);
|
444
|
2987 CHECK_STRING (filename);
|
428
|
2988
|
|
2989 /* If function is defined and not as an autoload, don't override */
|
|
2990 {
|
|
2991 Lisp_Object f = XSYMBOL (function)->function;
|
|
2992 if (!UNBOUNDP (f) && !(CONSP (f) && EQ (XCAR (f), Qautoload)))
|
|
2993 return Qnil;
|
|
2994 }
|
|
2995
|
|
2996 if (purify_flag)
|
|
2997 {
|
|
2998 /* Attempt to avoid consing identical (string=) pure strings. */
|
444
|
2999 filename = Fsymbol_name (Fintern (filename, Qnil));
|
428
|
3000 }
|
440
|
3001
|
444
|
3002 return Ffset (function, Fcons (Qautoload, list4 (filename,
|
428
|
3003 docstring,
|
|
3004 interactive,
|
|
3005 type)));
|
|
3006 }
|
|
3007
|
|
3008 Lisp_Object
|
|
3009 un_autoload (Lisp_Object oldqueue)
|
|
3010 {
|
|
3011 /* This function can GC */
|
|
3012 REGISTER Lisp_Object queue, first, second;
|
|
3013
|
|
3014 /* Queue to unwind is current value of Vautoload_queue.
|
|
3015 oldqueue is the shadowed value to leave in Vautoload_queue. */
|
|
3016 queue = Vautoload_queue;
|
|
3017 Vautoload_queue = oldqueue;
|
|
3018 while (CONSP (queue))
|
|
3019 {
|
|
3020 first = XCAR (queue);
|
|
3021 second = Fcdr (first);
|
|
3022 first = Fcar (first);
|
|
3023 if (NILP (second))
|
|
3024 Vfeatures = first;
|
|
3025 else
|
|
3026 Ffset (first, second);
|
|
3027 queue = Fcdr (queue);
|
|
3028 }
|
|
3029 return Qnil;
|
|
3030 }
|
|
3031
|
|
3032 void
|
|
3033 do_autoload (Lisp_Object fundef,
|
|
3034 Lisp_Object funname)
|
|
3035 {
|
|
3036 /* This function can GC */
|
|
3037 int speccount = specpdl_depth();
|
|
3038 Lisp_Object fun = funname;
|
|
3039 struct gcpro gcpro1, gcpro2;
|
|
3040
|
|
3041 CHECK_SYMBOL (funname);
|
|
3042 GCPRO2 (fun, funname);
|
|
3043
|
|
3044 /* Value saved here is to be restored into Vautoload_queue */
|
|
3045 record_unwind_protect (un_autoload, Vautoload_queue);
|
|
3046 Vautoload_queue = Qt;
|
|
3047 call4 (Qload, Fcar (Fcdr (fundef)), Qnil, noninteractive ? Qt : Qnil, Qnil);
|
|
3048
|
|
3049 {
|
|
3050 Lisp_Object queue;
|
|
3051
|
|
3052 /* Save the old autoloads, in case we ever do an unload. */
|
|
3053 for (queue = Vautoload_queue; CONSP (queue); queue = XCDR (queue))
|
|
3054 {
|
|
3055 Lisp_Object first = XCAR (queue);
|
|
3056 Lisp_Object second = Fcdr (first);
|
|
3057
|
|
3058 first = Fcar (first);
|
|
3059
|
|
3060 /* Note: This test is subtle. The cdr of an autoload-queue entry
|
|
3061 may be an atom if the autoload entry was generated by a defalias
|
|
3062 or fset. */
|
|
3063 if (CONSP (second))
|
|
3064 Fput (first, Qautoload, (XCDR (second)));
|
|
3065 }
|
|
3066 }
|
|
3067
|
|
3068 /* Once loading finishes, don't undo it. */
|
|
3069 Vautoload_queue = Qt;
|
|
3070 unbind_to (speccount, Qnil);
|
|
3071
|
|
3072 fun = indirect_function (fun, 0);
|
|
3073
|
|
3074 #if 0 /* FSFmacs */
|
|
3075 if (!NILP (Fequal (fun, fundef)))
|
|
3076 #else
|
|
3077 if (UNBOUNDP (fun)
|
|
3078 || (CONSP (fun)
|
|
3079 && EQ (XCAR (fun), Qautoload)))
|
|
3080 #endif
|
563
|
3081 invalid_state ("Autoloading failed to define function", funname);
|
428
|
3082 UNGCPRO;
|
|
3083 }
|
|
3084
|
|
3085
|
|
3086 /************************************************************************/
|
|
3087 /* eval, funcall, apply */
|
|
3088 /************************************************************************/
|
|
3089
|
|
3090 static Lisp_Object funcall_lambda (Lisp_Object fun,
|
442
|
3091 int nargs, Lisp_Object args[]);
|
428
|
3092 static int in_warnings;
|
|
3093
|
|
3094 static Lisp_Object
|
|
3095 in_warnings_restore (Lisp_Object minimus)
|
|
3096 {
|
|
3097 in_warnings = 0;
|
|
3098 return Qnil;
|
|
3099 }
|
|
3100
|
|
3101 DEFUN ("eval", Feval, 1, 1, 0, /*
|
|
3102 Evaluate FORM and return its value.
|
|
3103 */
|
|
3104 (form))
|
|
3105 {
|
|
3106 /* This function can GC */
|
|
3107 Lisp_Object fun, val, original_fun, original_args;
|
|
3108 int nargs;
|
|
3109 struct backtrace backtrace;
|
|
3110
|
|
3111 /* I think this is a pretty safe place to call Lisp code, don't you? */
|
|
3112 while (!in_warnings && !NILP (Vpending_warnings))
|
|
3113 {
|
|
3114 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4;
|
|
3115 int speccount = specpdl_depth();
|
|
3116 Lisp_Object this_warning_cons, this_warning, class, level, messij;
|
|
3117
|
|
3118 record_unwind_protect (in_warnings_restore, Qnil);
|
|
3119 in_warnings = 1;
|
|
3120 this_warning_cons = Vpending_warnings;
|
|
3121 this_warning = XCAR (this_warning_cons);
|
|
3122 /* in case an error occurs in the warn function, at least
|
|
3123 it won't happen infinitely */
|
|
3124 Vpending_warnings = XCDR (Vpending_warnings);
|
|
3125 free_cons (XCONS (this_warning_cons));
|
|
3126 class = XCAR (this_warning);
|
|
3127 level = XCAR (XCDR (this_warning));
|
|
3128 messij = XCAR (XCDR (XCDR (this_warning)));
|
|
3129 free_list (this_warning);
|
|
3130
|
|
3131 if (NILP (Vpending_warnings))
|
|
3132 Vpending_warnings_tail = Qnil; /* perhaps not strictly necessary,
|
|
3133 but safer */
|
|
3134
|
|
3135 GCPRO4 (form, class, level, messij);
|
|
3136 if (!STRINGP (messij))
|
|
3137 messij = Fprin1_to_string (messij, Qnil);
|
|
3138 call3 (Qdisplay_warning, class, messij, level);
|
|
3139 UNGCPRO;
|
|
3140 unbind_to (speccount, Qnil);
|
|
3141 }
|
|
3142
|
|
3143 if (!CONSP (form))
|
|
3144 {
|
|
3145 if (SYMBOLP (form))
|
|
3146 return Fsymbol_value (form);
|
|
3147 else
|
|
3148 return form;
|
|
3149 }
|
|
3150
|
|
3151 QUIT;
|
|
3152 if ((consing_since_gc > gc_cons_threshold) || always_gc)
|
|
3153 {
|
|
3154 struct gcpro gcpro1;
|
|
3155 GCPRO1 (form);
|
|
3156 garbage_collect_1 ();
|
|
3157 UNGCPRO;
|
|
3158 }
|
|
3159
|
|
3160 if (++lisp_eval_depth > max_lisp_eval_depth)
|
|
3161 {
|
|
3162 if (max_lisp_eval_depth < 100)
|
|
3163 max_lisp_eval_depth = 100;
|
|
3164 if (lisp_eval_depth > max_lisp_eval_depth)
|
563
|
3165 stack_overflow ("Lisp nesting exceeds `max-lisp-eval-depth'",
|
|
3166 Qunbound);
|
428
|
3167 }
|
|
3168
|
|
3169 /* We guaranteed CONSP (form) above */
|
|
3170 original_fun = XCAR (form);
|
|
3171 original_args = XCDR (form);
|
|
3172
|
|
3173 GET_EXTERNAL_LIST_LENGTH (original_args, nargs);
|
|
3174
|
|
3175 backtrace.pdlcount = specpdl_depth();
|
|
3176 backtrace.function = &original_fun; /* This also protects them from gc */
|
|
3177 backtrace.args = &original_args;
|
|
3178 backtrace.nargs = UNEVALLED;
|
|
3179 backtrace.evalargs = 1;
|
|
3180 backtrace.debug_on_exit = 0;
|
|
3181 PUSH_BACKTRACE (backtrace);
|
|
3182
|
|
3183 if (debug_on_next_call)
|
|
3184 do_debug_on_call (Qt);
|
|
3185
|
|
3186 if (profiling_active)
|
|
3187 profile_increase_call_count (original_fun);
|
|
3188
|
|
3189 /* At this point, only original_fun and original_args
|
|
3190 have values that will be used below. */
|
|
3191 retry:
|
|
3192 fun = indirect_function (original_fun, 1);
|
|
3193
|
|
3194 if (SUBRP (fun))
|
|
3195 {
|
|
3196 Lisp_Subr *subr = XSUBR (fun);
|
|
3197 int max_args = subr->max_args;
|
|
3198
|
|
3199 if (nargs < subr->min_args)
|
|
3200 goto wrong_number_of_arguments;
|
|
3201
|
|
3202 if (max_args == UNEVALLED) /* Optimize for the common case */
|
|
3203 {
|
|
3204 backtrace.evalargs = 0;
|
|
3205 val = (((Lisp_Object (*) (Lisp_Object)) subr_function (subr))
|
|
3206 (original_args));
|
|
3207 }
|
|
3208 else if (nargs <= max_args)
|
|
3209 {
|
|
3210 struct gcpro gcpro1;
|
|
3211 Lisp_Object args[SUBR_MAX_ARGS];
|
|
3212 REGISTER Lisp_Object *p = args;
|
|
3213
|
|
3214 GCPRO1 (args[0]);
|
|
3215 gcpro1.nvars = 0;
|
|
3216
|
|
3217 {
|
|
3218 LIST_LOOP_2 (arg, original_args)
|
|
3219 {
|
|
3220 *p++ = Feval (arg);
|
|
3221 gcpro1.nvars++;
|
|
3222 }
|
|
3223 }
|
|
3224
|
|
3225 /* &optional args default to nil. */
|
|
3226 while (p - args < max_args)
|
|
3227 *p++ = Qnil;
|
|
3228
|
|
3229 backtrace.args = args;
|
|
3230 backtrace.nargs = nargs;
|
|
3231
|
|
3232 FUNCALL_SUBR (val, subr, args, max_args);
|
|
3233
|
|
3234 UNGCPRO;
|
|
3235 }
|
|
3236 else if (max_args == MANY)
|
|
3237 {
|
|
3238 /* Pass a vector of evaluated arguments */
|
|
3239 struct gcpro gcpro1;
|
|
3240 Lisp_Object *args = alloca_array (Lisp_Object, nargs);
|
|
3241 REGISTER Lisp_Object *p = args;
|
|
3242
|
|
3243 GCPRO1 (args[0]);
|
|
3244 gcpro1.nvars = 0;
|
|
3245
|
|
3246 {
|
|
3247 LIST_LOOP_2 (arg, original_args)
|
|
3248 {
|
|
3249 *p++ = Feval (arg);
|
|
3250 gcpro1.nvars++;
|
|
3251 }
|
|
3252 }
|
|
3253
|
|
3254 backtrace.args = args;
|
|
3255 backtrace.nargs = nargs;
|
|
3256
|
|
3257 val = (((Lisp_Object (*) (int, Lisp_Object *)) subr_function (subr))
|
|
3258 (nargs, args));
|
|
3259
|
|
3260 UNGCPRO;
|
|
3261 }
|
|
3262 else
|
|
3263 {
|
|
3264 wrong_number_of_arguments:
|
440
|
3265 val = signal_wrong_number_of_arguments_error (original_fun, nargs);
|
428
|
3266 }
|
|
3267 }
|
|
3268 else if (COMPILED_FUNCTIONP (fun))
|
|
3269 {
|
|
3270 struct gcpro gcpro1;
|
|
3271 Lisp_Object *args = alloca_array (Lisp_Object, nargs);
|
|
3272 REGISTER Lisp_Object *p = args;
|
|
3273
|
|
3274 GCPRO1 (args[0]);
|
|
3275 gcpro1.nvars = 0;
|
|
3276
|
|
3277 {
|
|
3278 LIST_LOOP_2 (arg, original_args)
|
|
3279 {
|
|
3280 *p++ = Feval (arg);
|
|
3281 gcpro1.nvars++;
|
|
3282 }
|
|
3283 }
|
|
3284
|
|
3285 backtrace.args = args;
|
|
3286 backtrace.nargs = nargs;
|
|
3287 backtrace.evalargs = 0;
|
|
3288
|
|
3289 val = funcall_compiled_function (fun, nargs, args);
|
|
3290
|
|
3291 /* Do the debug-on-exit now, while args is still GCPROed. */
|
|
3292 if (backtrace.debug_on_exit)
|
|
3293 val = do_debug_on_exit (val);
|
|
3294 /* Don't do it again when we return to eval. */
|
|
3295 backtrace.debug_on_exit = 0;
|
|
3296
|
|
3297 UNGCPRO;
|
|
3298 }
|
|
3299 else if (CONSP (fun))
|
|
3300 {
|
|
3301 Lisp_Object funcar = XCAR (fun);
|
|
3302
|
|
3303 if (EQ (funcar, Qautoload))
|
|
3304 {
|
|
3305 do_autoload (fun, original_fun);
|
|
3306 goto retry;
|
|
3307 }
|
|
3308 else if (EQ (funcar, Qmacro))
|
|
3309 {
|
|
3310 val = Feval (apply1 (XCDR (fun), original_args));
|
|
3311 }
|
|
3312 else if (EQ (funcar, Qlambda))
|
|
3313 {
|
|
3314 struct gcpro gcpro1;
|
|
3315 Lisp_Object *args = alloca_array (Lisp_Object, nargs);
|
|
3316 REGISTER Lisp_Object *p = args;
|
|
3317
|
|
3318 GCPRO1 (args[0]);
|
|
3319 gcpro1.nvars = 0;
|
|
3320
|
|
3321 {
|
|
3322 LIST_LOOP_2 (arg, original_args)
|
|
3323 {
|
|
3324 *p++ = Feval (arg);
|
|
3325 gcpro1.nvars++;
|
|
3326 }
|
|
3327 }
|
|
3328
|
|
3329 UNGCPRO;
|
|
3330
|
|
3331 backtrace.args = args; /* this also GCPROs `args' */
|
|
3332 backtrace.nargs = nargs;
|
|
3333 backtrace.evalargs = 0;
|
|
3334
|
|
3335 val = funcall_lambda (fun, nargs, args);
|
|
3336
|
|
3337 /* Do the debug-on-exit now, while args is still GCPROed. */
|
|
3338 if (backtrace.debug_on_exit)
|
|
3339 val = do_debug_on_exit (val);
|
|
3340 /* Don't do it again when we return to eval. */
|
|
3341 backtrace.debug_on_exit = 0;
|
|
3342 }
|
|
3343 else
|
|
3344 {
|
|
3345 goto invalid_function;
|
|
3346 }
|
|
3347 }
|
|
3348 else /* ! (SUBRP (fun) || COMPILED_FUNCTIONP (fun) || CONSP (fun)) */
|
|
3349 {
|
|
3350 invalid_function:
|
436
|
3351 val = signal_invalid_function_error (fun);
|
428
|
3352 }
|
|
3353
|
|
3354 lisp_eval_depth--;
|
|
3355 if (backtrace.debug_on_exit)
|
|
3356 val = do_debug_on_exit (val);
|
|
3357 POP_BACKTRACE (backtrace);
|
|
3358 return val;
|
|
3359 }
|
|
3360
|
|
3361
|
|
3362 DEFUN ("funcall", Ffuncall, 1, MANY, 0, /*
|
|
3363 Call first argument as a function, passing the remaining arguments to it.
|
|
3364 Thus, (funcall 'cons 'x 'y) returns (x . y).
|
|
3365 */
|
|
3366 (int nargs, Lisp_Object *args))
|
|
3367 {
|
|
3368 /* This function can GC */
|
|
3369 Lisp_Object fun;
|
|
3370 Lisp_Object val;
|
|
3371 struct backtrace backtrace;
|
|
3372 int fun_nargs = nargs - 1;
|
|
3373 Lisp_Object *fun_args = args + 1;
|
|
3374
|
|
3375 QUIT;
|
|
3376 if ((consing_since_gc > gc_cons_threshold) || always_gc)
|
|
3377 /* Callers should gcpro lexpr args */
|
|
3378 garbage_collect_1 ();
|
|
3379
|
|
3380 if (++lisp_eval_depth > max_lisp_eval_depth)
|
|
3381 {
|
|
3382 if (max_lisp_eval_depth < 100)
|
|
3383 max_lisp_eval_depth = 100;
|
|
3384 if (lisp_eval_depth > max_lisp_eval_depth)
|
563
|
3385 stack_overflow ("Lisp nesting exceeds `max-lisp-eval-depth'",
|
|
3386 Qunbound);
|
428
|
3387 }
|
|
3388
|
|
3389 backtrace.pdlcount = specpdl_depth();
|
|
3390 backtrace.function = &args[0];
|
|
3391 backtrace.args = fun_args;
|
|
3392 backtrace.nargs = fun_nargs;
|
|
3393 backtrace.evalargs = 0;
|
|
3394 backtrace.debug_on_exit = 0;
|
|
3395 PUSH_BACKTRACE (backtrace);
|
|
3396
|
|
3397 if (debug_on_next_call)
|
|
3398 do_debug_on_call (Qlambda);
|
|
3399
|
|
3400 retry:
|
|
3401
|
|
3402 fun = args[0];
|
|
3403
|
|
3404 /* It might be useful to place this *after* all the checks. */
|
|
3405 if (profiling_active)
|
|
3406 profile_increase_call_count (fun);
|
|
3407
|
|
3408 /* We could call indirect_function directly, but profiling shows
|
|
3409 this is worth optimizing by partially unrolling the loop. */
|
|
3410 if (SYMBOLP (fun))
|
|
3411 {
|
|
3412 fun = XSYMBOL (fun)->function;
|
|
3413 if (SYMBOLP (fun))
|
|
3414 {
|
|
3415 fun = XSYMBOL (fun)->function;
|
|
3416 if (SYMBOLP (fun))
|
|
3417 fun = indirect_function (fun, 1);
|
|
3418 }
|
|
3419 }
|
|
3420
|
|
3421 if (SUBRP (fun))
|
|
3422 {
|
|
3423 Lisp_Subr *subr = XSUBR (fun);
|
|
3424 int max_args = subr->max_args;
|
|
3425 Lisp_Object spacious_args[SUBR_MAX_ARGS];
|
|
3426
|
|
3427 if (fun_nargs == max_args) /* Optimize for the common case */
|
|
3428 {
|
|
3429 funcall_subr:
|
|
3430 FUNCALL_SUBR (val, subr, fun_args, max_args);
|
|
3431 }
|
436
|
3432 else if (fun_nargs < subr->min_args)
|
|
3433 {
|
|
3434 goto wrong_number_of_arguments;
|
|
3435 }
|
428
|
3436 else if (fun_nargs < max_args)
|
|
3437 {
|
|
3438 Lisp_Object *p = spacious_args;
|
|
3439
|
|
3440 /* Default optionals to nil */
|
|
3441 while (fun_nargs--)
|
|
3442 *p++ = *fun_args++;
|
|
3443 while (p - spacious_args < max_args)
|
|
3444 *p++ = Qnil;
|
|
3445
|
|
3446 fun_args = spacious_args;
|
|
3447 goto funcall_subr;
|
|
3448 }
|
|
3449 else if (max_args == MANY)
|
|
3450 {
|
436
|
3451 val = SUBR_FUNCTION (subr, MANY) (fun_nargs, fun_args);
|
428
|
3452 }
|
|
3453 else if (max_args == UNEVALLED) /* Can't funcall a special form */
|
|
3454 {
|
|
3455 goto invalid_function;
|
|
3456 }
|
|
3457 else
|
|
3458 {
|
|
3459 wrong_number_of_arguments:
|
436
|
3460 val = signal_wrong_number_of_arguments_error (fun, fun_nargs);
|
428
|
3461 }
|
|
3462 }
|
|
3463 else if (COMPILED_FUNCTIONP (fun))
|
|
3464 {
|
|
3465 val = funcall_compiled_function (fun, fun_nargs, fun_args);
|
|
3466 }
|
|
3467 else if (CONSP (fun))
|
|
3468 {
|
|
3469 Lisp_Object funcar = XCAR (fun);
|
|
3470
|
|
3471 if (EQ (funcar, Qlambda))
|
|
3472 {
|
|
3473 val = funcall_lambda (fun, fun_nargs, fun_args);
|
|
3474 }
|
|
3475 else if (EQ (funcar, Qautoload))
|
|
3476 {
|
|
3477 do_autoload (fun, args[0]);
|
|
3478 goto retry;
|
|
3479 }
|
|
3480 else /* Can't funcall a macro */
|
|
3481 {
|
|
3482 goto invalid_function;
|
|
3483 }
|
|
3484 }
|
|
3485 else if (UNBOUNDP (fun))
|
|
3486 {
|
436
|
3487 val = signal_void_function_error (args[0]);
|
428
|
3488 }
|
|
3489 else
|
|
3490 {
|
|
3491 invalid_function:
|
436
|
3492 val = signal_invalid_function_error (fun);
|
428
|
3493 }
|
|
3494
|
|
3495 lisp_eval_depth--;
|
|
3496 if (backtrace.debug_on_exit)
|
|
3497 val = do_debug_on_exit (val);
|
|
3498 POP_BACKTRACE (backtrace);
|
|
3499 return val;
|
|
3500 }
|
|
3501
|
|
3502 DEFUN ("functionp", Ffunctionp, 1, 1, 0, /*
|
|
3503 Return t if OBJECT can be called as a function, else nil.
|
|
3504 A function is an object that can be applied to arguments,
|
|
3505 using for example `funcall' or `apply'.
|
|
3506 */
|
|
3507 (object))
|
|
3508 {
|
|
3509 if (SYMBOLP (object))
|
|
3510 object = indirect_function (object, 0);
|
|
3511
|
|
3512 return
|
|
3513 (SUBRP (object) ||
|
|
3514 COMPILED_FUNCTIONP (object) ||
|
|
3515 (CONSP (object) &&
|
|
3516 (EQ (XCAR (object), Qlambda) ||
|
|
3517 EQ (XCAR (object), Qautoload))))
|
|
3518 ? Qt : Qnil;
|
|
3519 }
|
|
3520
|
|
3521 static Lisp_Object
|
|
3522 function_argcount (Lisp_Object function, int function_min_args_p)
|
|
3523 {
|
|
3524 Lisp_Object orig_function = function;
|
|
3525 Lisp_Object arglist;
|
|
3526
|
|
3527 retry:
|
|
3528
|
|
3529 if (SYMBOLP (function))
|
|
3530 function = indirect_function (function, 1);
|
|
3531
|
|
3532 if (SUBRP (function))
|
|
3533 {
|
442
|
3534 /* Using return with the ?: operator tickles a DEC CC compiler bug. */
|
|
3535 if (function_min_args_p)
|
|
3536 return Fsubr_min_args (function);
|
|
3537 else
|
|
3538 return Fsubr_max_args (function);
|
428
|
3539 }
|
|
3540 else if (COMPILED_FUNCTIONP (function))
|
|
3541 {
|
|
3542 arglist = compiled_function_arglist (XCOMPILED_FUNCTION (function));
|
|
3543 }
|
|
3544 else if (CONSP (function))
|
|
3545 {
|
|
3546 Lisp_Object funcar = XCAR (function);
|
|
3547
|
|
3548 if (EQ (funcar, Qmacro))
|
|
3549 {
|
|
3550 function = XCDR (function);
|
|
3551 goto retry;
|
|
3552 }
|
|
3553 else if (EQ (funcar, Qautoload))
|
|
3554 {
|
442
|
3555 struct gcpro gcpro1;
|
|
3556
|
|
3557 GCPRO1 (function);
|
428
|
3558 do_autoload (function, orig_function);
|
442
|
3559 UNGCPRO;
|
|
3560 function = orig_function;
|
428
|
3561 goto retry;
|
|
3562 }
|
|
3563 else if (EQ (funcar, Qlambda))
|
|
3564 {
|
|
3565 arglist = Fcar (XCDR (function));
|
|
3566 }
|
|
3567 else
|
|
3568 {
|
|
3569 goto invalid_function;
|
|
3570 }
|
|
3571 }
|
|
3572 else
|
|
3573 {
|
|
3574 invalid_function:
|
442
|
3575 return signal_invalid_function_error (orig_function);
|
428
|
3576 }
|
|
3577
|
|
3578 {
|
|
3579 int argcount = 0;
|
|
3580
|
|
3581 EXTERNAL_LIST_LOOP_2 (arg, arglist)
|
|
3582 {
|
|
3583 if (EQ (arg, Qand_optional))
|
|
3584 {
|
|
3585 if (function_min_args_p)
|
|
3586 break;
|
|
3587 }
|
|
3588 else if (EQ (arg, Qand_rest))
|
|
3589 {
|
|
3590 if (function_min_args_p)
|
|
3591 break;
|
|
3592 else
|
|
3593 return Qnil;
|
|
3594 }
|
|
3595 else
|
|
3596 {
|
|
3597 argcount++;
|
|
3598 }
|
|
3599 }
|
|
3600
|
|
3601 return make_int (argcount);
|
|
3602 }
|
|
3603 }
|
|
3604
|
|
3605 DEFUN ("function-min-args", Ffunction_min_args, 1, 1, 0, /*
|
|
3606 Return the number of arguments a function may be called with.
|
|
3607 The function may be any form that can be passed to `funcall',
|
|
3608 any special form, or any macro.
|
|
3609 */
|
|
3610 (function))
|
|
3611 {
|
|
3612 return function_argcount (function, 1);
|
|
3613 }
|
|
3614
|
|
3615 DEFUN ("function-max-args", Ffunction_max_args, 1, 1, 0, /*
|
|
3616 Return the number of arguments a function may be called with.
|
|
3617 The function may be any form that can be passed to `funcall',
|
|
3618 any special form, or any macro.
|
|
3619 If the function takes an arbitrary number of arguments or is
|
|
3620 a built-in special form, nil is returned.
|
|
3621 */
|
|
3622 (function))
|
|
3623 {
|
|
3624 return function_argcount (function, 0);
|
|
3625 }
|
|
3626
|
|
3627
|
|
3628 DEFUN ("apply", Fapply, 2, MANY, 0, /*
|
|
3629 Call FUNCTION with the remaining args, using the last arg as a list of args.
|
|
3630 Thus, (apply '+ 1 2 '(3 4)) returns 10.
|
|
3631 */
|
|
3632 (int nargs, Lisp_Object *args))
|
|
3633 {
|
|
3634 /* This function can GC */
|
|
3635 Lisp_Object fun = args[0];
|
|
3636 Lisp_Object spread_arg = args [nargs - 1];
|
|
3637 int numargs;
|
|
3638 int funcall_nargs;
|
|
3639
|
|
3640 GET_EXTERNAL_LIST_LENGTH (spread_arg, numargs);
|
|
3641
|
|
3642 if (numargs == 0)
|
|
3643 /* (apply foo 0 1 '()) */
|
|
3644 return Ffuncall (nargs - 1, args);
|
|
3645 else if (numargs == 1)
|
|
3646 {
|
|
3647 /* (apply foo 0 1 '(2)) */
|
|
3648 args [nargs - 1] = XCAR (spread_arg);
|
|
3649 return Ffuncall (nargs, args);
|
|
3650 }
|
|
3651
|
|
3652 /* -1 for function, -1 for spread arg */
|
|
3653 numargs = nargs - 2 + numargs;
|
|
3654 /* +1 for function */
|
|
3655 funcall_nargs = 1 + numargs;
|
|
3656
|
|
3657 if (SYMBOLP (fun))
|
|
3658 fun = indirect_function (fun, 0);
|
|
3659
|
|
3660 if (SUBRP (fun))
|
|
3661 {
|
|
3662 Lisp_Subr *subr = XSUBR (fun);
|
|
3663 int max_args = subr->max_args;
|
|
3664
|
|
3665 if (numargs < subr->min_args
|
|
3666 || (max_args >= 0 && max_args < numargs))
|
|
3667 {
|
|
3668 /* Let funcall get the error */
|
|
3669 }
|
|
3670 else if (max_args > numargs)
|
|
3671 {
|
|
3672 /* Avoid having funcall cons up yet another new vector of arguments
|
|
3673 by explicitly supplying nil's for optional values */
|
|
3674 funcall_nargs += (max_args - numargs);
|
|
3675 }
|
|
3676 }
|
|
3677 else if (UNBOUNDP (fun))
|
|
3678 {
|
|
3679 /* Let funcall get the error */
|
|
3680 fun = args[0];
|
|
3681 }
|
|
3682
|
|
3683 {
|
|
3684 REGISTER int i;
|
|
3685 Lisp_Object *funcall_args = alloca_array (Lisp_Object, funcall_nargs);
|
|
3686 struct gcpro gcpro1;
|
|
3687
|
|
3688 GCPRO1 (*funcall_args);
|
|
3689 gcpro1.nvars = funcall_nargs;
|
|
3690
|
|
3691 /* Copy in the unspread args */
|
|
3692 memcpy (funcall_args, args, (nargs - 1) * sizeof (Lisp_Object));
|
|
3693 /* Spread the last arg we got. Its first element goes in
|
|
3694 the slot that it used to occupy, hence this value of I. */
|
|
3695 for (i = nargs - 1;
|
|
3696 !NILP (spread_arg); /* i < 1 + numargs */
|
|
3697 i++, spread_arg = XCDR (spread_arg))
|
|
3698 {
|
|
3699 funcall_args [i] = XCAR (spread_arg);
|
|
3700 }
|
|
3701 /* Supply nil for optional args (to subrs) */
|
|
3702 for (; i < funcall_nargs; i++)
|
|
3703 funcall_args[i] = Qnil;
|
|
3704
|
|
3705
|
|
3706 RETURN_UNGCPRO (Ffuncall (funcall_nargs, funcall_args));
|
|
3707 }
|
|
3708 }
|
|
3709
|
|
3710
|
|
3711 /* Apply lambda list FUN to the NARGS evaluated arguments in ARGS and
|
|
3712 return the result of evaluation. */
|
|
3713
|
|
3714 static Lisp_Object
|
|
3715 funcall_lambda (Lisp_Object fun, int nargs, Lisp_Object args[])
|
|
3716 {
|
|
3717 /* This function can GC */
|
442
|
3718 Lisp_Object arglist, body, tail;
|
428
|
3719 int speccount = specpdl_depth();
|
|
3720 REGISTER int i = 0;
|
|
3721
|
|
3722 tail = XCDR (fun);
|
|
3723
|
|
3724 if (!CONSP (tail))
|
|
3725 goto invalid_function;
|
|
3726
|
|
3727 arglist = XCAR (tail);
|
|
3728 body = XCDR (tail);
|
|
3729
|
|
3730 {
|
|
3731 int optional = 0, rest = 0;
|
|
3732
|
442
|
3733 EXTERNAL_LIST_LOOP_2 (symbol, arglist)
|
428
|
3734 {
|
|
3735 if (!SYMBOLP (symbol))
|
|
3736 goto invalid_function;
|
|
3737 if (EQ (symbol, Qand_rest))
|
|
3738 rest = 1;
|
|
3739 else if (EQ (symbol, Qand_optional))
|
|
3740 optional = 1;
|
|
3741 else if (rest)
|
|
3742 {
|
|
3743 specbind (symbol, Flist (nargs - i, &args[i]));
|
|
3744 i = nargs;
|
|
3745 }
|
|
3746 else if (i < nargs)
|
|
3747 specbind (symbol, args[i++]);
|
|
3748 else if (!optional)
|
|
3749 goto wrong_number_of_arguments;
|
|
3750 else
|
|
3751 specbind (symbol, Qnil);
|
|
3752 }
|
|
3753 }
|
|
3754
|
|
3755 if (i < nargs)
|
|
3756 goto wrong_number_of_arguments;
|
|
3757
|
|
3758 return unbind_to (speccount, Fprogn (body));
|
|
3759
|
|
3760 wrong_number_of_arguments:
|
436
|
3761 return signal_wrong_number_of_arguments_error (fun, nargs);
|
428
|
3762
|
|
3763 invalid_function:
|
436
|
3764 return signal_invalid_function_error (fun);
|
428
|
3765 }
|
|
3766
|
|
3767
|
|
3768 /************************************************************************/
|
|
3769 /* Run hook variables in various ways. */
|
|
3770 /************************************************************************/
|
|
3771
|
|
3772 DEFUN ("run-hooks", Frun_hooks, 1, MANY, 0, /*
|
|
3773 Run each hook in HOOKS. Major mode functions use this.
|
|
3774 Each argument should be a symbol, a hook variable.
|
|
3775 These symbols are processed in the order specified.
|
|
3776 If a hook symbol has a non-nil value, that value may be a function
|
|
3777 or a list of functions to be called to run the hook.
|
|
3778 If the value is a function, it is called with no arguments.
|
|
3779 If it is a list, the elements are called, in order, with no arguments.
|
|
3780
|
|
3781 To make a hook variable buffer-local, use `make-local-hook',
|
|
3782 not `make-local-variable'.
|
|
3783 */
|
|
3784 (int nargs, Lisp_Object *args))
|
|
3785 {
|
|
3786 REGISTER int i;
|
|
3787
|
|
3788 for (i = 0; i < nargs; i++)
|
|
3789 run_hook_with_args (1, args + i, RUN_HOOKS_TO_COMPLETION);
|
|
3790
|
|
3791 return Qnil;
|
|
3792 }
|
|
3793
|
|
3794 DEFUN ("run-hook-with-args", Frun_hook_with_args, 1, MANY, 0, /*
|
|
3795 Run HOOK with the specified arguments ARGS.
|
|
3796 HOOK should be a symbol, a hook variable. If HOOK has a non-nil
|
|
3797 value, that value may be a function or a list of functions to be
|
|
3798 called to run the hook. If the value is a function, it is called with
|
|
3799 the given arguments and its return value is returned. If it is a list
|
|
3800 of functions, those functions are called, in order,
|
|
3801 with the given arguments ARGS.
|
444
|
3802 It is best not to depend on the value returned by `run-hook-with-args',
|
428
|
3803 as that may change.
|
|
3804
|
|
3805 To make a hook variable buffer-local, use `make-local-hook',
|
|
3806 not `make-local-variable'.
|
|
3807 */
|
|
3808 (int nargs, Lisp_Object *args))
|
|
3809 {
|
|
3810 return run_hook_with_args (nargs, args, RUN_HOOKS_TO_COMPLETION);
|
|
3811 }
|
|
3812
|
|
3813 DEFUN ("run-hook-with-args-until-success", Frun_hook_with_args_until_success, 1, MANY, 0, /*
|
|
3814 Run HOOK with the specified arguments ARGS.
|
|
3815 HOOK should be a symbol, a hook variable. Its value should
|
|
3816 be a list of functions. We call those functions, one by one,
|
|
3817 passing arguments ARGS to each of them, until one of them
|
|
3818 returns a non-nil value. Then we return that value.
|
|
3819 If all the functions return nil, we return nil.
|
|
3820
|
|
3821 To make a hook variable buffer-local, use `make-local-hook',
|
|
3822 not `make-local-variable'.
|
|
3823 */
|
|
3824 (int nargs, Lisp_Object *args))
|
|
3825 {
|
|
3826 return run_hook_with_args (nargs, args, RUN_HOOKS_UNTIL_SUCCESS);
|
|
3827 }
|
|
3828
|
|
3829 DEFUN ("run-hook-with-args-until-failure", Frun_hook_with_args_until_failure, 1, MANY, 0, /*
|
|
3830 Run HOOK with the specified arguments ARGS.
|
|
3831 HOOK should be a symbol, a hook variable. Its value should
|
|
3832 be a list of functions. We call those functions, one by one,
|
|
3833 passing arguments ARGS to each of them, until one of them
|
|
3834 returns nil. Then we return nil.
|
|
3835 If all the functions return non-nil, we return non-nil.
|
|
3836
|
|
3837 To make a hook variable buffer-local, use `make-local-hook',
|
|
3838 not `make-local-variable'.
|
|
3839 */
|
|
3840 (int nargs, Lisp_Object *args))
|
|
3841 {
|
|
3842 return run_hook_with_args (nargs, args, RUN_HOOKS_UNTIL_FAILURE);
|
|
3843 }
|
|
3844
|
|
3845 /* ARGS[0] should be a hook symbol.
|
|
3846 Call each of the functions in the hook value, passing each of them
|
|
3847 as arguments all the rest of ARGS (all NARGS - 1 elements).
|
|
3848 COND specifies a condition to test after each call
|
|
3849 to decide whether to stop.
|
|
3850 The caller (or its caller, etc) must gcpro all of ARGS,
|
|
3851 except that it isn't necessary to gcpro ARGS[0]. */
|
|
3852
|
|
3853 Lisp_Object
|
|
3854 run_hook_with_args_in_buffer (struct buffer *buf, int nargs, Lisp_Object *args,
|
|
3855 enum run_hooks_condition cond)
|
|
3856 {
|
|
3857 Lisp_Object sym, val, ret;
|
|
3858
|
|
3859 if (!initialized || preparing_for_armageddon)
|
|
3860 /* We need to bail out of here pronto. */
|
|
3861 return Qnil;
|
|
3862
|
|
3863 /* Whenever gc_in_progress is true, preparing_for_armageddon
|
|
3864 will also be true unless something is really hosed. */
|
|
3865 assert (!gc_in_progress);
|
|
3866
|
|
3867 sym = args[0];
|
|
3868 val = symbol_value_in_buffer (sym, make_buffer (buf));
|
|
3869 ret = (cond == RUN_HOOKS_UNTIL_FAILURE ? Qt : Qnil);
|
|
3870
|
|
3871 if (UNBOUNDP (val) || NILP (val))
|
|
3872 return ret;
|
|
3873 else if (!CONSP (val) || EQ (XCAR (val), Qlambda))
|
|
3874 {
|
|
3875 args[0] = val;
|
|
3876 return Ffuncall (nargs, args);
|
|
3877 }
|
|
3878 else
|
|
3879 {
|
|
3880 struct gcpro gcpro1, gcpro2, gcpro3;
|
|
3881 Lisp_Object globals = Qnil;
|
|
3882 GCPRO3 (sym, val, globals);
|
|
3883
|
|
3884 for (;
|
|
3885 CONSP (val) && ((cond == RUN_HOOKS_TO_COMPLETION)
|
|
3886 || (cond == RUN_HOOKS_UNTIL_SUCCESS ? NILP (ret)
|
|
3887 : !NILP (ret)));
|
|
3888 val = XCDR (val))
|
|
3889 {
|
|
3890 if (EQ (XCAR (val), Qt))
|
|
3891 {
|
|
3892 /* t indicates this hook has a local binding;
|
|
3893 it means to run the global binding too. */
|
|
3894 globals = Fdefault_value (sym);
|
|
3895
|
|
3896 if ((! CONSP (globals) || EQ (XCAR (globals), Qlambda)) &&
|
|
3897 ! NILP (globals))
|
|
3898 {
|
|
3899 args[0] = globals;
|
|
3900 ret = Ffuncall (nargs, args);
|
|
3901 }
|
|
3902 else
|
|
3903 {
|
|
3904 for (;
|
|
3905 CONSP (globals) && ((cond == RUN_HOOKS_TO_COMPLETION)
|
|
3906 || (cond == RUN_HOOKS_UNTIL_SUCCESS
|
|
3907 ? NILP (ret)
|
|
3908 : !NILP (ret)));
|
|
3909 globals = XCDR (globals))
|
|
3910 {
|
|
3911 args[0] = XCAR (globals);
|
|
3912 /* In a global value, t should not occur. If it does, we
|
|
3913 must ignore it to avoid an endless loop. */
|
|
3914 if (!EQ (args[0], Qt))
|
|
3915 ret = Ffuncall (nargs, args);
|
|
3916 }
|
|
3917 }
|
|
3918 }
|
|
3919 else
|
|
3920 {
|
|
3921 args[0] = XCAR (val);
|
|
3922 ret = Ffuncall (nargs, args);
|
|
3923 }
|
|
3924 }
|
|
3925
|
|
3926 UNGCPRO;
|
|
3927 return ret;
|
|
3928 }
|
|
3929 }
|
|
3930
|
|
3931 Lisp_Object
|
|
3932 run_hook_with_args (int nargs, Lisp_Object *args,
|
|
3933 enum run_hooks_condition cond)
|
|
3934 {
|
|
3935 return run_hook_with_args_in_buffer (current_buffer, nargs, args, cond);
|
|
3936 }
|
|
3937
|
|
3938 #if 0
|
|
3939
|
|
3940 /* From FSF 19.30, not currently used */
|
|
3941
|
|
3942 /* Run a hook symbol ARGS[0], but use FUNLIST instead of the actual
|
|
3943 present value of that symbol.
|
|
3944 Call each element of FUNLIST,
|
|
3945 passing each of them the rest of ARGS.
|
|
3946 The caller (or its caller, etc) must gcpro all of ARGS,
|
|
3947 except that it isn't necessary to gcpro ARGS[0]. */
|
|
3948
|
|
3949 Lisp_Object
|
|
3950 run_hook_list_with_args (Lisp_Object funlist, int nargs, Lisp_Object *args)
|
|
3951 {
|
|
3952 Lisp_Object sym = args[0];
|
|
3953 Lisp_Object val;
|
|
3954 struct gcpro gcpro1, gcpro2;
|
|
3955
|
|
3956 GCPRO2 (sym, val);
|
|
3957
|
|
3958 for (val = funlist; CONSP (val); val = XCDR (val))
|
|
3959 {
|
|
3960 if (EQ (XCAR (val), Qt))
|
|
3961 {
|
|
3962 /* t indicates this hook has a local binding;
|
|
3963 it means to run the global binding too. */
|
|
3964 Lisp_Object globals;
|
|
3965
|
|
3966 for (globals = Fdefault_value (sym);
|
|
3967 CONSP (globals);
|
|
3968 globals = XCDR (globals))
|
|
3969 {
|
|
3970 args[0] = XCAR (globals);
|
|
3971 /* In a global value, t should not occur. If it does, we
|
|
3972 must ignore it to avoid an endless loop. */
|
|
3973 if (!EQ (args[0], Qt))
|
|
3974 Ffuncall (nargs, args);
|
|
3975 }
|
|
3976 }
|
|
3977 else
|
|
3978 {
|
|
3979 args[0] = XCAR (val);
|
|
3980 Ffuncall (nargs, args);
|
|
3981 }
|
|
3982 }
|
|
3983 UNGCPRO;
|
|
3984 return Qnil;
|
|
3985 }
|
|
3986
|
|
3987 #endif /* 0 */
|
|
3988
|
|
3989 void
|
|
3990 va_run_hook_with_args (Lisp_Object hook_var, int nargs, ...)
|
|
3991 {
|
|
3992 /* This function can GC */
|
|
3993 struct gcpro gcpro1;
|
|
3994 int i;
|
|
3995 va_list vargs;
|
|
3996 Lisp_Object *funcall_args = alloca_array (Lisp_Object, 1 + nargs);
|
|
3997
|
|
3998 va_start (vargs, nargs);
|
|
3999 funcall_args[0] = hook_var;
|
|
4000 for (i = 0; i < nargs; i++)
|
|
4001 funcall_args[i + 1] = va_arg (vargs, Lisp_Object);
|
|
4002 va_end (vargs);
|
|
4003
|
|
4004 GCPRO1 (*funcall_args);
|
|
4005 gcpro1.nvars = nargs + 1;
|
|
4006 run_hook_with_args (nargs + 1, funcall_args, RUN_HOOKS_TO_COMPLETION);
|
|
4007 UNGCPRO;
|
|
4008 }
|
|
4009
|
|
4010 void
|
|
4011 va_run_hook_with_args_in_buffer (struct buffer *buf, Lisp_Object hook_var,
|
|
4012 int nargs, ...)
|
|
4013 {
|
|
4014 /* This function can GC */
|
|
4015 struct gcpro gcpro1;
|
|
4016 int i;
|
|
4017 va_list vargs;
|
|
4018 Lisp_Object *funcall_args = alloca_array (Lisp_Object, 1 + nargs);
|
|
4019
|
|
4020 va_start (vargs, nargs);
|
|
4021 funcall_args[0] = hook_var;
|
|
4022 for (i = 0; i < nargs; i++)
|
|
4023 funcall_args[i + 1] = va_arg (vargs, Lisp_Object);
|
|
4024 va_end (vargs);
|
|
4025
|
|
4026 GCPRO1 (*funcall_args);
|
|
4027 gcpro1.nvars = nargs + 1;
|
|
4028 run_hook_with_args_in_buffer (buf, nargs + 1, funcall_args,
|
|
4029 RUN_HOOKS_TO_COMPLETION);
|
|
4030 UNGCPRO;
|
|
4031 }
|
|
4032
|
|
4033 Lisp_Object
|
|
4034 run_hook (Lisp_Object hook)
|
|
4035 {
|
|
4036 Frun_hooks (1, &hook);
|
|
4037 return Qnil;
|
|
4038 }
|
|
4039
|
|
4040
|
|
4041 /************************************************************************/
|
|
4042 /* Front-ends to eval, funcall, apply */
|
|
4043 /************************************************************************/
|
|
4044
|
|
4045 /* Apply fn to arg */
|
|
4046 Lisp_Object
|
|
4047 apply1 (Lisp_Object fn, Lisp_Object arg)
|
|
4048 {
|
|
4049 /* This function can GC */
|
|
4050 struct gcpro gcpro1;
|
|
4051 Lisp_Object args[2];
|
|
4052
|
|
4053 if (NILP (arg))
|
|
4054 return Ffuncall (1, &fn);
|
|
4055 GCPRO1 (args[0]);
|
|
4056 gcpro1.nvars = 2;
|
|
4057 args[0] = fn;
|
|
4058 args[1] = arg;
|
|
4059 RETURN_UNGCPRO (Fapply (2, args));
|
|
4060 }
|
|
4061
|
|
4062 /* Call function fn on no arguments */
|
|
4063 Lisp_Object
|
|
4064 call0 (Lisp_Object fn)
|
|
4065 {
|
|
4066 /* This function can GC */
|
|
4067 struct gcpro gcpro1;
|
|
4068
|
|
4069 GCPRO1 (fn);
|
|
4070 RETURN_UNGCPRO (Ffuncall (1, &fn));
|
|
4071 }
|
|
4072
|
|
4073 /* Call function fn with argument arg0 */
|
|
4074 Lisp_Object
|
|
4075 call1 (Lisp_Object fn,
|
|
4076 Lisp_Object arg0)
|
|
4077 {
|
|
4078 /* This function can GC */
|
|
4079 struct gcpro gcpro1;
|
|
4080 Lisp_Object args[2];
|
|
4081 args[0] = fn;
|
|
4082 args[1] = arg0;
|
|
4083 GCPRO1 (args[0]);
|
|
4084 gcpro1.nvars = 2;
|
|
4085 RETURN_UNGCPRO (Ffuncall (2, args));
|
|
4086 }
|
|
4087
|
|
4088 /* Call function fn with arguments arg0, arg1 */
|
|
4089 Lisp_Object
|
|
4090 call2 (Lisp_Object fn,
|
|
4091 Lisp_Object arg0, Lisp_Object arg1)
|
|
4092 {
|
|
4093 /* This function can GC */
|
|
4094 struct gcpro gcpro1;
|
|
4095 Lisp_Object args[3];
|
|
4096 args[0] = fn;
|
|
4097 args[1] = arg0;
|
|
4098 args[2] = arg1;
|
|
4099 GCPRO1 (args[0]);
|
|
4100 gcpro1.nvars = 3;
|
|
4101 RETURN_UNGCPRO (Ffuncall (3, args));
|
|
4102 }
|
|
4103
|
|
4104 /* Call function fn with arguments arg0, arg1, arg2 */
|
|
4105 Lisp_Object
|
|
4106 call3 (Lisp_Object fn,
|
|
4107 Lisp_Object arg0, Lisp_Object arg1, Lisp_Object arg2)
|
|
4108 {
|
|
4109 /* This function can GC */
|
|
4110 struct gcpro gcpro1;
|
|
4111 Lisp_Object args[4];
|
|
4112 args[0] = fn;
|
|
4113 args[1] = arg0;
|
|
4114 args[2] = arg1;
|
|
4115 args[3] = arg2;
|
|
4116 GCPRO1 (args[0]);
|
|
4117 gcpro1.nvars = 4;
|
|
4118 RETURN_UNGCPRO (Ffuncall (4, args));
|
|
4119 }
|
|
4120
|
|
4121 /* Call function fn with arguments arg0, arg1, arg2, arg3 */
|
|
4122 Lisp_Object
|
|
4123 call4 (Lisp_Object fn,
|
|
4124 Lisp_Object arg0, Lisp_Object arg1, Lisp_Object arg2,
|
|
4125 Lisp_Object arg3)
|
|
4126 {
|
|
4127 /* This function can GC */
|
|
4128 struct gcpro gcpro1;
|
|
4129 Lisp_Object args[5];
|
|
4130 args[0] = fn;
|
|
4131 args[1] = arg0;
|
|
4132 args[2] = arg1;
|
|
4133 args[3] = arg2;
|
|
4134 args[4] = arg3;
|
|
4135 GCPRO1 (args[0]);
|
|
4136 gcpro1.nvars = 5;
|
|
4137 RETURN_UNGCPRO (Ffuncall (5, args));
|
|
4138 }
|
|
4139
|
|
4140 /* Call function fn with arguments arg0, arg1, arg2, arg3, arg4 */
|
|
4141 Lisp_Object
|
|
4142 call5 (Lisp_Object fn,
|
|
4143 Lisp_Object arg0, Lisp_Object arg1, Lisp_Object arg2,
|
|
4144 Lisp_Object arg3, Lisp_Object arg4)
|
|
4145 {
|
|
4146 /* This function can GC */
|
|
4147 struct gcpro gcpro1;
|
|
4148 Lisp_Object args[6];
|
|
4149 args[0] = fn;
|
|
4150 args[1] = arg0;
|
|
4151 args[2] = arg1;
|
|
4152 args[3] = arg2;
|
|
4153 args[4] = arg3;
|
|
4154 args[5] = arg4;
|
|
4155 GCPRO1 (args[0]);
|
|
4156 gcpro1.nvars = 6;
|
|
4157 RETURN_UNGCPRO (Ffuncall (6, args));
|
|
4158 }
|
|
4159
|
|
4160 Lisp_Object
|
|
4161 call6 (Lisp_Object fn,
|
|
4162 Lisp_Object arg0, Lisp_Object arg1, Lisp_Object arg2,
|
|
4163 Lisp_Object arg3, Lisp_Object arg4, Lisp_Object arg5)
|
|
4164 {
|
|
4165 /* This function can GC */
|
|
4166 struct gcpro gcpro1;
|
|
4167 Lisp_Object args[7];
|
|
4168 args[0] = fn;
|
|
4169 args[1] = arg0;
|
|
4170 args[2] = arg1;
|
|
4171 args[3] = arg2;
|
|
4172 args[4] = arg3;
|
|
4173 args[5] = arg4;
|
|
4174 args[6] = arg5;
|
|
4175 GCPRO1 (args[0]);
|
|
4176 gcpro1.nvars = 7;
|
|
4177 RETURN_UNGCPRO (Ffuncall (7, args));
|
|
4178 }
|
|
4179
|
|
4180 Lisp_Object
|
|
4181 call7 (Lisp_Object fn,
|
|
4182 Lisp_Object arg0, Lisp_Object arg1, Lisp_Object arg2,
|
|
4183 Lisp_Object arg3, Lisp_Object arg4, Lisp_Object arg5,
|
|
4184 Lisp_Object arg6)
|
|
4185 {
|
|
4186 /* This function can GC */
|
|
4187 struct gcpro gcpro1;
|
|
4188 Lisp_Object args[8];
|
|
4189 args[0] = fn;
|
|
4190 args[1] = arg0;
|
|
4191 args[2] = arg1;
|
|
4192 args[3] = arg2;
|
|
4193 args[4] = arg3;
|
|
4194 args[5] = arg4;
|
|
4195 args[6] = arg5;
|
|
4196 args[7] = arg6;
|
|
4197 GCPRO1 (args[0]);
|
|
4198 gcpro1.nvars = 8;
|
|
4199 RETURN_UNGCPRO (Ffuncall (8, args));
|
|
4200 }
|
|
4201
|
|
4202 Lisp_Object
|
|
4203 call8 (Lisp_Object fn,
|
|
4204 Lisp_Object arg0, Lisp_Object arg1, Lisp_Object arg2,
|
|
4205 Lisp_Object arg3, Lisp_Object arg4, Lisp_Object arg5,
|
|
4206 Lisp_Object arg6, Lisp_Object arg7)
|
|
4207 {
|
|
4208 /* This function can GC */
|
|
4209 struct gcpro gcpro1;
|
|
4210 Lisp_Object args[9];
|
|
4211 args[0] = fn;
|
|
4212 args[1] = arg0;
|
|
4213 args[2] = arg1;
|
|
4214 args[3] = arg2;
|
|
4215 args[4] = arg3;
|
|
4216 args[5] = arg4;
|
|
4217 args[6] = arg5;
|
|
4218 args[7] = arg6;
|
|
4219 args[8] = arg7;
|
|
4220 GCPRO1 (args[0]);
|
|
4221 gcpro1.nvars = 9;
|
|
4222 RETURN_UNGCPRO (Ffuncall (9, args));
|
|
4223 }
|
|
4224
|
|
4225 Lisp_Object
|
|
4226 call0_in_buffer (struct buffer *buf, Lisp_Object fn)
|
|
4227 {
|
|
4228 if (current_buffer == buf)
|
|
4229 return call0 (fn);
|
|
4230 else
|
|
4231 {
|
|
4232 Lisp_Object val;
|
|
4233 int speccount = specpdl_depth();
|
|
4234 record_unwind_protect (Fset_buffer, Fcurrent_buffer ());
|
|
4235 set_buffer_internal (buf);
|
|
4236 val = call0 (fn);
|
|
4237 unbind_to (speccount, Qnil);
|
|
4238 return val;
|
|
4239 }
|
|
4240 }
|
|
4241
|
|
4242 Lisp_Object
|
|
4243 call1_in_buffer (struct buffer *buf, Lisp_Object fn,
|
|
4244 Lisp_Object arg0)
|
|
4245 {
|
|
4246 if (current_buffer == buf)
|
|
4247 return call1 (fn, arg0);
|
|
4248 else
|
|
4249 {
|
|
4250 Lisp_Object val;
|
|
4251 int speccount = specpdl_depth();
|
|
4252 record_unwind_protect (Fset_buffer, Fcurrent_buffer ());
|
|
4253 set_buffer_internal (buf);
|
|
4254 val = call1 (fn, arg0);
|
|
4255 unbind_to (speccount, Qnil);
|
|
4256 return val;
|
|
4257 }
|
|
4258 }
|
|
4259
|
|
4260 Lisp_Object
|
|
4261 call2_in_buffer (struct buffer *buf, Lisp_Object fn,
|
|
4262 Lisp_Object arg0, Lisp_Object arg1)
|
|
4263 {
|
|
4264 if (current_buffer == buf)
|
|
4265 return call2 (fn, arg0, arg1);
|
|
4266 else
|
|
4267 {
|
|
4268 Lisp_Object val;
|
|
4269 int speccount = specpdl_depth();
|
|
4270 record_unwind_protect (Fset_buffer, Fcurrent_buffer ());
|
|
4271 set_buffer_internal (buf);
|
|
4272 val = call2 (fn, arg0, arg1);
|
|
4273 unbind_to (speccount, Qnil);
|
|
4274 return val;
|
|
4275 }
|
|
4276 }
|
|
4277
|
|
4278 Lisp_Object
|
|
4279 call3_in_buffer (struct buffer *buf, Lisp_Object fn,
|
|
4280 Lisp_Object arg0, Lisp_Object arg1, Lisp_Object arg2)
|
|
4281 {
|
|
4282 if (current_buffer == buf)
|
|
4283 return call3 (fn, arg0, arg1, arg2);
|
|
4284 else
|
|
4285 {
|
|
4286 Lisp_Object val;
|
|
4287 int speccount = specpdl_depth();
|
|
4288 record_unwind_protect (Fset_buffer, Fcurrent_buffer ());
|
|
4289 set_buffer_internal (buf);
|
|
4290 val = call3 (fn, arg0, arg1, arg2);
|
|
4291 unbind_to (speccount, Qnil);
|
|
4292 return val;
|
|
4293 }
|
|
4294 }
|
|
4295
|
|
4296 Lisp_Object
|
|
4297 call4_in_buffer (struct buffer *buf, Lisp_Object fn,
|
|
4298 Lisp_Object arg0, Lisp_Object arg1, Lisp_Object arg2,
|
|
4299 Lisp_Object arg3)
|
|
4300 {
|
|
4301 if (current_buffer == buf)
|
|
4302 return call4 (fn, arg0, arg1, arg2, arg3);
|
|
4303 else
|
|
4304 {
|
|
4305 Lisp_Object val;
|
|
4306 int speccount = specpdl_depth();
|
|
4307 record_unwind_protect (Fset_buffer, Fcurrent_buffer ());
|
|
4308 set_buffer_internal (buf);
|
|
4309 val = call4 (fn, arg0, arg1, arg2, arg3);
|
|
4310 unbind_to (speccount, Qnil);
|
|
4311 return val;
|
|
4312 }
|
|
4313 }
|
|
4314
|
|
4315 Lisp_Object
|
|
4316 eval_in_buffer (struct buffer *buf, Lisp_Object form)
|
|
4317 {
|
|
4318 if (current_buffer == buf)
|
|
4319 return Feval (form);
|
|
4320 else
|
|
4321 {
|
|
4322 Lisp_Object val;
|
|
4323 int speccount = specpdl_depth();
|
|
4324 record_unwind_protect (Fset_buffer, Fcurrent_buffer ());
|
|
4325 set_buffer_internal (buf);
|
|
4326 val = Feval (form);
|
|
4327 unbind_to (speccount, Qnil);
|
|
4328 return val;
|
|
4329 }
|
|
4330 }
|
|
4331
|
|
4332
|
|
4333 /************************************************************************/
|
|
4334 /* Error-catching front-ends to eval, funcall, apply */
|
|
4335 /************************************************************************/
|
|
4336
|
|
4337 /* Call function fn on no arguments, with condition handler */
|
|
4338 Lisp_Object
|
|
4339 call0_with_handler (Lisp_Object handler, Lisp_Object fn)
|
|
4340 {
|
|
4341 /* This function can GC */
|
|
4342 struct gcpro gcpro1;
|
|
4343 Lisp_Object args[2];
|
|
4344 args[0] = handler;
|
|
4345 args[1] = fn;
|
|
4346 GCPRO1 (args[0]);
|
|
4347 gcpro1.nvars = 2;
|
|
4348 RETURN_UNGCPRO (Fcall_with_condition_handler (2, args));
|
|
4349 }
|
|
4350
|
|
4351 /* Call function fn with argument arg0, with condition handler */
|
|
4352 Lisp_Object
|
|
4353 call1_with_handler (Lisp_Object handler, Lisp_Object fn,
|
|
4354 Lisp_Object arg0)
|
|
4355 {
|
|
4356 /* This function can GC */
|
|
4357 struct gcpro gcpro1;
|
|
4358 Lisp_Object args[3];
|
|
4359 args[0] = handler;
|
|
4360 args[1] = fn;
|
|
4361 args[2] = arg0;
|
|
4362 GCPRO1 (args[0]);
|
|
4363 gcpro1.nvars = 3;
|
|
4364 RETURN_UNGCPRO (Fcall_with_condition_handler (3, args));
|
|
4365 }
|
|
4366
|
|
4367
|
|
4368 /* The following functions provide you with error-trapping versions
|
|
4369 of the various front-ends above. They take an additional
|
|
4370 "warning_string" argument; if non-zero, a warning with this
|
|
4371 string and the actual error that occurred will be displayed
|
|
4372 in the *Warnings* buffer if an error occurs. In all cases,
|
|
4373 QUIT is inhibited while these functions are running, and if
|
|
4374 an error occurs, Qunbound is returned instead of the normal
|
|
4375 return value.
|
|
4376 */
|
|
4377
|
|
4378 /* #### This stuff needs to catch throws as well. We need to
|
|
4379 improve internal_catch() so it can take a "catch anything"
|
|
4380 argument similar to Qt or Qerror for condition_case_1(). */
|
|
4381
|
|
4382 static Lisp_Object
|
|
4383 caught_a_squirmer (Lisp_Object errordata, Lisp_Object arg)
|
|
4384 {
|
|
4385 if (!NILP (errordata))
|
|
4386 {
|
|
4387 Lisp_Object args[2];
|
|
4388
|
|
4389 if (!NILP (arg))
|
|
4390 {
|
609
|
4391 CBufbyte *str = (CBufbyte *) get_opaque_ptr (arg);
|
428
|
4392 args[0] = build_string (str);
|
|
4393 }
|
|
4394 else
|
|
4395 args[0] = build_string ("error");
|
|
4396 /* #### This should call
|
|
4397 (with-output-to-string (display-error errordata))
|
|
4398 but that stuff is all in Lisp currently. */
|
|
4399 args[1] = errordata;
|
|
4400 warn_when_safe_lispobj
|
|
4401 (Qerror, Qwarning,
|
442
|
4402 emacs_doprnt_string_lisp ((const Bufbyte *) "%s: %s",
|
428
|
4403 Qnil, -1, 2, args));
|
|
4404 }
|
|
4405 return Qunbound;
|
|
4406 }
|
|
4407
|
|
4408 static Lisp_Object
|
|
4409 allow_quit_caught_a_squirmer (Lisp_Object errordata, Lisp_Object arg)
|
|
4410 {
|
|
4411 if (CONSP (errordata) && EQ (XCAR (errordata), Qquit))
|
|
4412 return Fsignal (Qquit, XCDR (errordata));
|
|
4413 return caught_a_squirmer (errordata, arg);
|
|
4414 }
|
|
4415
|
|
4416 static Lisp_Object
|
|
4417 safe_run_hook_caught_a_squirmer (Lisp_Object errordata, Lisp_Object arg)
|
|
4418 {
|
|
4419 Lisp_Object hook = Fcar (arg);
|
|
4420 arg = Fcdr (arg);
|
|
4421 /* Clear out the hook. */
|
|
4422 Fset (hook, Qnil);
|
|
4423 return caught_a_squirmer (errordata, arg);
|
|
4424 }
|
|
4425
|
|
4426 static Lisp_Object
|
|
4427 allow_quit_safe_run_hook_caught_a_squirmer (Lisp_Object errordata,
|
|
4428 Lisp_Object arg)
|
|
4429 {
|
|
4430 Lisp_Object hook = Fcar (arg);
|
|
4431 arg = Fcdr (arg);
|
|
4432 if (!CONSP (errordata) || !EQ (XCAR (errordata), Qquit))
|
|
4433 /* Clear out the hook. */
|
|
4434 Fset (hook, Qnil);
|
|
4435 return allow_quit_caught_a_squirmer (errordata, arg);
|
|
4436 }
|
|
4437
|
|
4438 static Lisp_Object
|
|
4439 catch_them_squirmers_eval_in_buffer (Lisp_Object cons)
|
|
4440 {
|
|
4441 return eval_in_buffer (XBUFFER (XCAR (cons)), XCDR (cons));
|
|
4442 }
|
|
4443
|
|
4444 Lisp_Object
|
609
|
4445 eval_in_buffer_trapping_errors (const CBufbyte *warning_string,
|
428
|
4446 struct buffer *buf, Lisp_Object form)
|
|
4447 {
|
|
4448 int speccount = specpdl_depth();
|
|
4449 Lisp_Object tem;
|
|
4450 Lisp_Object buffer;
|
|
4451 Lisp_Object cons;
|
|
4452 Lisp_Object opaque;
|
|
4453 struct gcpro gcpro1, gcpro2;
|
|
4454
|
|
4455 XSETBUFFER (buffer, buf);
|
|
4456
|
|
4457 specbind (Qinhibit_quit, Qt);
|
|
4458 /* gc_currently_forbidden = 1; Currently no reason to do this; */
|
|
4459
|
|
4460 cons = noseeum_cons (buffer, form);
|
|
4461 opaque = (warning_string ? make_opaque_ptr ((void *)warning_string) : Qnil);
|
|
4462 GCPRO2 (cons, opaque);
|
|
4463 /* Qerror not Qt, so you can get a backtrace */
|
|
4464 tem = condition_case_1 (Qerror,
|
|
4465 catch_them_squirmers_eval_in_buffer, cons,
|
|
4466 caught_a_squirmer, opaque);
|
|
4467 free_cons (XCONS (cons));
|
|
4468 if (OPAQUE_PTRP (opaque))
|
|
4469 free_opaque_ptr (opaque);
|
|
4470 UNGCPRO;
|
|
4471
|
|
4472 /* gc_currently_forbidden = 0; */
|
|
4473 return unbind_to (speccount, tem);
|
|
4474 }
|
|
4475
|
|
4476 static Lisp_Object
|
|
4477 catch_them_squirmers_run_hook (Lisp_Object hook_symbol)
|
|
4478 {
|
|
4479 /* This function can GC */
|
|
4480 run_hook (hook_symbol);
|
|
4481 return Qnil;
|
|
4482 }
|
|
4483
|
|
4484 Lisp_Object
|
609
|
4485 run_hook_trapping_errors (const CBufbyte *warning_string,
|
|
4486 Lisp_Object hook_symbol)
|
428
|
4487 {
|
|
4488 int speccount;
|
|
4489 Lisp_Object tem;
|
|
4490 Lisp_Object opaque;
|
|
4491 struct gcpro gcpro1;
|
|
4492
|
|
4493 if (!initialized || preparing_for_armageddon)
|
|
4494 return Qnil;
|
|
4495 tem = find_symbol_value (hook_symbol);
|
|
4496 if (NILP (tem) || UNBOUNDP (tem))
|
|
4497 return Qnil;
|
|
4498
|
|
4499 speccount = specpdl_depth();
|
|
4500 specbind (Qinhibit_quit, Qt);
|
|
4501
|
|
4502 opaque = (warning_string ? make_opaque_ptr ((void *)warning_string) : Qnil);
|
|
4503 GCPRO1 (opaque);
|
|
4504 /* Qerror not Qt, so you can get a backtrace */
|
|
4505 tem = condition_case_1 (Qerror,
|
|
4506 catch_them_squirmers_run_hook, hook_symbol,
|
|
4507 caught_a_squirmer, opaque);
|
|
4508 if (OPAQUE_PTRP (opaque))
|
|
4509 free_opaque_ptr (opaque);
|
|
4510 UNGCPRO;
|
|
4511
|
|
4512 return unbind_to (speccount, tem);
|
|
4513 }
|
|
4514
|
|
4515 /* Same as run_hook_trapping_errors() but also set the hook to nil
|
|
4516 if an error occurs. */
|
|
4517
|
|
4518 Lisp_Object
|
609
|
4519 safe_run_hook_trapping_errors (const CBufbyte *warning_string,
|
428
|
4520 Lisp_Object hook_symbol,
|
|
4521 int allow_quit)
|
|
4522 {
|
|
4523 int speccount = specpdl_depth();
|
|
4524 Lisp_Object tem;
|
|
4525 Lisp_Object cons = Qnil;
|
|
4526 struct gcpro gcpro1;
|
|
4527
|
|
4528 if (!initialized || preparing_for_armageddon)
|
|
4529 return Qnil;
|
|
4530 tem = find_symbol_value (hook_symbol);
|
|
4531 if (NILP (tem) || UNBOUNDP (tem))
|
|
4532 return Qnil;
|
|
4533
|
|
4534 if (!allow_quit)
|
|
4535 specbind (Qinhibit_quit, Qt);
|
|
4536
|
|
4537 cons = noseeum_cons (hook_symbol,
|
|
4538 warning_string ? make_opaque_ptr ((void *)warning_string)
|
|
4539 : Qnil);
|
|
4540 GCPRO1 (cons);
|
|
4541 /* Qerror not Qt, so you can get a backtrace */
|
|
4542 tem = condition_case_1 (Qerror,
|
|
4543 catch_them_squirmers_run_hook,
|
|
4544 hook_symbol,
|
|
4545 allow_quit ?
|
|
4546 allow_quit_safe_run_hook_caught_a_squirmer :
|
|
4547 safe_run_hook_caught_a_squirmer,
|
|
4548 cons);
|
|
4549 if (OPAQUE_PTRP (XCDR (cons)))
|
|
4550 free_opaque_ptr (XCDR (cons));
|
|
4551 free_cons (XCONS (cons));
|
|
4552 UNGCPRO;
|
|
4553
|
|
4554 return unbind_to (speccount, tem);
|
|
4555 }
|
|
4556
|
|
4557 static Lisp_Object
|
|
4558 catch_them_squirmers_call0 (Lisp_Object function)
|
|
4559 {
|
|
4560 /* This function can GC */
|
|
4561 return call0 (function);
|
|
4562 }
|
|
4563
|
|
4564 Lisp_Object
|
609
|
4565 call0_trapping_errors (const CBufbyte *warning_string, Lisp_Object function)
|
428
|
4566 {
|
|
4567 int speccount;
|
|
4568 Lisp_Object tem;
|
|
4569 Lisp_Object opaque = Qnil;
|
|
4570 struct gcpro gcpro1, gcpro2;
|
|
4571
|
|
4572 if (SYMBOLP (function))
|
|
4573 {
|
|
4574 tem = XSYMBOL (function)->function;
|
|
4575 if (NILP (tem) || UNBOUNDP (tem))
|
|
4576 return Qnil;
|
|
4577 }
|
|
4578
|
|
4579 GCPRO2 (opaque, function);
|
|
4580 speccount = specpdl_depth();
|
|
4581 specbind (Qinhibit_quit, Qt);
|
|
4582 /* gc_currently_forbidden = 1; Currently no reason to do this; */
|
|
4583
|
|
4584 opaque = (warning_string ? make_opaque_ptr ((void *)warning_string) : Qnil);
|
|
4585 /* Qerror not Qt, so you can get a backtrace */
|
|
4586 tem = condition_case_1 (Qerror,
|
|
4587 catch_them_squirmers_call0, function,
|
|
4588 caught_a_squirmer, opaque);
|
|
4589 if (OPAQUE_PTRP (opaque))
|
|
4590 free_opaque_ptr (opaque);
|
|
4591 UNGCPRO;
|
|
4592
|
|
4593 /* gc_currently_forbidden = 0; */
|
|
4594 return unbind_to (speccount, tem);
|
|
4595 }
|
|
4596
|
|
4597 static Lisp_Object
|
|
4598 catch_them_squirmers_call1 (Lisp_Object cons)
|
|
4599 {
|
|
4600 /* This function can GC */
|
|
4601 return call1 (XCAR (cons), XCDR (cons));
|
|
4602 }
|
|
4603
|
|
4604 static Lisp_Object
|
|
4605 catch_them_squirmers_call2 (Lisp_Object cons)
|
|
4606 {
|
|
4607 /* This function can GC */
|
|
4608 return call2 (XCAR (cons), XCAR (XCDR (cons)), XCAR (XCDR (XCDR (cons))));
|
|
4609 }
|
|
4610
|
|
4611 Lisp_Object
|
609
|
4612 call1_trapping_errors (const CBufbyte *warning_string, Lisp_Object function,
|
428
|
4613 Lisp_Object object)
|
|
4614 {
|
|
4615 int speccount = specpdl_depth();
|
|
4616 Lisp_Object tem;
|
|
4617 Lisp_Object cons = Qnil;
|
|
4618 Lisp_Object opaque = Qnil;
|
|
4619 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4;
|
|
4620
|
|
4621 if (SYMBOLP (function))
|
|
4622 {
|
|
4623 tem = XSYMBOL (function)->function;
|
|
4624 if (NILP (tem) || UNBOUNDP (tem))
|
|
4625 return Qnil;
|
|
4626 }
|
|
4627
|
|
4628 GCPRO4 (cons, opaque, function, object);
|
|
4629
|
|
4630 specbind (Qinhibit_quit, Qt);
|
|
4631 /* gc_currently_forbidden = 1; Currently no reason to do this; */
|
|
4632
|
|
4633 cons = noseeum_cons (function, object);
|
|
4634 opaque = (warning_string ? make_opaque_ptr ((void *)warning_string) : Qnil);
|
|
4635 /* Qerror not Qt, so you can get a backtrace */
|
|
4636 tem = condition_case_1 (Qerror,
|
|
4637 catch_them_squirmers_call1, cons,
|
|
4638 caught_a_squirmer, opaque);
|
|
4639 if (OPAQUE_PTRP (opaque))
|
|
4640 free_opaque_ptr (opaque);
|
|
4641 free_cons (XCONS (cons));
|
|
4642 UNGCPRO;
|
|
4643
|
|
4644 /* gc_currently_forbidden = 0; */
|
|
4645 return unbind_to (speccount, tem);
|
|
4646 }
|
|
4647
|
|
4648 Lisp_Object
|
609
|
4649 call2_trapping_errors (const CBufbyte *warning_string, Lisp_Object function,
|
428
|
4650 Lisp_Object object1, Lisp_Object object2)
|
|
4651 {
|
|
4652 int speccount = specpdl_depth();
|
|
4653 Lisp_Object tem;
|
|
4654 Lisp_Object cons = Qnil;
|
|
4655 Lisp_Object opaque = Qnil;
|
|
4656 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4, gcpro5;
|
|
4657
|
|
4658 if (SYMBOLP (function))
|
|
4659 {
|
|
4660 tem = XSYMBOL (function)->function;
|
|
4661 if (NILP (tem) || UNBOUNDP (tem))
|
|
4662 return Qnil;
|
|
4663 }
|
|
4664
|
|
4665 GCPRO5 (cons, opaque, function, object1, object2);
|
|
4666 specbind (Qinhibit_quit, Qt);
|
|
4667 /* gc_currently_forbidden = 1; Currently no reason to do this; */
|
|
4668
|
|
4669 cons = list3 (function, object1, object2);
|
|
4670 opaque = (warning_string ? make_opaque_ptr ((void *)warning_string) : Qnil);
|
|
4671 /* Qerror not Qt, so you can get a backtrace */
|
|
4672 tem = condition_case_1 (Qerror,
|
|
4673 catch_them_squirmers_call2, cons,
|
|
4674 caught_a_squirmer, opaque);
|
|
4675 if (OPAQUE_PTRP (opaque))
|
|
4676 free_opaque_ptr (opaque);
|
|
4677 free_list (cons);
|
|
4678 UNGCPRO;
|
|
4679
|
|
4680 /* gc_currently_forbidden = 0; */
|
|
4681 return unbind_to (speccount, tem);
|
|
4682 }
|
|
4683
|
|
4684
|
|
4685 /************************************************************************/
|
|
4686 /* The special binding stack */
|
|
4687 /* Most C code should simply use specbind() and unbind_to(). */
|
|
4688 /* When performance is critical, use the macros in backtrace.h. */
|
|
4689 /************************************************************************/
|
|
4690
|
|
4691 #define min_max_specpdl_size 400
|
|
4692
|
|
4693 void
|
|
4694 grow_specpdl (size_t reserved)
|
|
4695 {
|
|
4696 size_t size_needed = specpdl_depth() + reserved;
|
|
4697 if (size_needed >= max_specpdl_size)
|
|
4698 {
|
|
4699 if (max_specpdl_size < min_max_specpdl_size)
|
|
4700 max_specpdl_size = min_max_specpdl_size;
|
|
4701 if (size_needed >= max_specpdl_size)
|
|
4702 {
|
|
4703 if (!NILP (Vdebug_on_error) ||
|
|
4704 !NILP (Vdebug_on_signal))
|
|
4705 /* Leave room for some specpdl in the debugger. */
|
|
4706 max_specpdl_size = size_needed + 100;
|
563
|
4707 signal_continuable_error
|
|
4708 (Qstack_overflow,
|
|
4709 "Variable binding depth exceeds max-specpdl-size", Qunbound);
|
428
|
4710 }
|
|
4711 }
|
|
4712 while (specpdl_size < size_needed)
|
|
4713 {
|
|
4714 specpdl_size *= 2;
|
|
4715 if (specpdl_size > max_specpdl_size)
|
|
4716 specpdl_size = max_specpdl_size;
|
|
4717 }
|
|
4718 XREALLOC_ARRAY (specpdl, struct specbinding, specpdl_size);
|
|
4719 specpdl_ptr = specpdl + specpdl_depth();
|
|
4720 }
|
|
4721
|
|
4722
|
|
4723 /* Handle unbinding buffer-local variables */
|
|
4724 static Lisp_Object
|
|
4725 specbind_unwind_local (Lisp_Object ovalue)
|
|
4726 {
|
|
4727 Lisp_Object current = Fcurrent_buffer ();
|
|
4728 Lisp_Object symbol = specpdl_ptr->symbol;
|
440
|
4729 Lisp_Cons *victim = XCONS (ovalue);
|
428
|
4730 Lisp_Object buf = get_buffer (victim->car, 0);
|
|
4731 ovalue = victim->cdr;
|
|
4732
|
|
4733 free_cons (victim);
|
|
4734
|
|
4735 if (NILP (buf))
|
|
4736 {
|
|
4737 /* Deleted buffer -- do nothing */
|
|
4738 }
|
|
4739 else if (symbol_value_buffer_local_info (symbol, XBUFFER (buf)) == 0)
|
|
4740 {
|
|
4741 /* Was buffer-local when binding was made, now no longer is.
|
|
4742 * (kill-local-variable can do this.)
|
|
4743 * Do nothing in this case.
|
|
4744 */
|
|
4745 }
|
|
4746 else if (EQ (buf, current))
|
|
4747 Fset (symbol, ovalue);
|
|
4748 else
|
|
4749 {
|
|
4750 /* Urk! Somebody switched buffers */
|
|
4751 struct gcpro gcpro1;
|
|
4752 GCPRO1 (current);
|
|
4753 Fset_buffer (buf);
|
|
4754 Fset (symbol, ovalue);
|
|
4755 Fset_buffer (current);
|
|
4756 UNGCPRO;
|
|
4757 }
|
|
4758 return symbol;
|
|
4759 }
|
|
4760
|
|
4761 static Lisp_Object
|
|
4762 specbind_unwind_wasnt_local (Lisp_Object buffer)
|
|
4763 {
|
|
4764 Lisp_Object current = Fcurrent_buffer ();
|
|
4765 Lisp_Object symbol = specpdl_ptr->symbol;
|
|
4766
|
|
4767 buffer = get_buffer (buffer, 0);
|
|
4768 if (NILP (buffer))
|
|
4769 {
|
|
4770 /* Deleted buffer -- do nothing */
|
|
4771 }
|
|
4772 else if (symbol_value_buffer_local_info (symbol, XBUFFER (buffer)) == 0)
|
|
4773 {
|
|
4774 /* Was buffer-local when binding was made, now no longer is.
|
|
4775 * (kill-local-variable can do this.)
|
|
4776 * Do nothing in this case.
|
|
4777 */
|
|
4778 }
|
|
4779 else if (EQ (buffer, current))
|
|
4780 Fkill_local_variable (symbol);
|
|
4781 else
|
|
4782 {
|
|
4783 /* Urk! Somebody switched buffers */
|
|
4784 struct gcpro gcpro1;
|
|
4785 GCPRO1 (current);
|
|
4786 Fset_buffer (buffer);
|
|
4787 Fkill_local_variable (symbol);
|
|
4788 Fset_buffer (current);
|
|
4789 UNGCPRO;
|
|
4790 }
|
|
4791 return symbol;
|
|
4792 }
|
|
4793
|
|
4794
|
|
4795 void
|
|
4796 specbind (Lisp_Object symbol, Lisp_Object value)
|
|
4797 {
|
|
4798 SPECBIND (symbol, value);
|
|
4799 }
|
|
4800
|
|
4801 void
|
|
4802 specbind_magic (Lisp_Object symbol, Lisp_Object value)
|
|
4803 {
|
|
4804 int buffer_local =
|
|
4805 symbol_value_buffer_local_info (symbol, current_buffer);
|
|
4806
|
|
4807 if (buffer_local == 0)
|
|
4808 {
|
|
4809 specpdl_ptr->old_value = find_symbol_value (symbol);
|
|
4810 specpdl_ptr->func = 0; /* Handled specially by unbind_to */
|
|
4811 }
|
|
4812 else if (buffer_local > 0)
|
|
4813 {
|
|
4814 /* Already buffer-local */
|
|
4815 specpdl_ptr->old_value = noseeum_cons (Fcurrent_buffer (),
|
|
4816 find_symbol_value (symbol));
|
|
4817 specpdl_ptr->func = specbind_unwind_local;
|
|
4818 }
|
|
4819 else
|
|
4820 {
|
|
4821 /* About to become buffer-local */
|
|
4822 specpdl_ptr->old_value = Fcurrent_buffer ();
|
|
4823 specpdl_ptr->func = specbind_unwind_wasnt_local;
|
|
4824 }
|
|
4825
|
|
4826 specpdl_ptr->symbol = symbol;
|
|
4827 specpdl_ptr++;
|
|
4828 specpdl_depth_counter++;
|
|
4829
|
|
4830 Fset (symbol, value);
|
|
4831 }
|
|
4832
|
546
|
4833 /* Note: As long as the unwind-protect exists, its arg is automatically
|
|
4834 GCPRO'd. */
|
|
4835
|
428
|
4836 void
|
|
4837 record_unwind_protect (Lisp_Object (*function) (Lisp_Object arg),
|
|
4838 Lisp_Object arg)
|
|
4839 {
|
|
4840 SPECPDL_RESERVE (1);
|
|
4841 specpdl_ptr->func = function;
|
|
4842 specpdl_ptr->symbol = Qnil;
|
|
4843 specpdl_ptr->old_value = arg;
|
|
4844 specpdl_ptr++;
|
|
4845 specpdl_depth_counter++;
|
|
4846 }
|
|
4847
|
|
4848 extern int check_sigio (void);
|
|
4849
|
|
4850 /* Unwind the stack till specpdl_depth() == COUNT.
|
|
4851 VALUE is not used, except that, purely as a convenience to the
|
|
4852 caller, it is protected from garbage-protection. */
|
|
4853 Lisp_Object
|
|
4854 unbind_to (int count, Lisp_Object value)
|
|
4855 {
|
|
4856 UNBIND_TO_GCPRO (count, value);
|
|
4857 return value;
|
|
4858 }
|
|
4859
|
|
4860 /* Don't call this directly.
|
|
4861 Only for use by UNBIND_TO* macros in backtrace.h */
|
|
4862 void
|
|
4863 unbind_to_hairy (int count)
|
|
4864 {
|
|
4865 int quitf;
|
|
4866
|
442
|
4867 ++specpdl_ptr;
|
|
4868 ++specpdl_depth_counter;
|
|
4869
|
428
|
4870 check_quit (); /* make Vquit_flag accurate */
|
|
4871 quitf = !NILP (Vquit_flag);
|
|
4872 Vquit_flag = Qnil;
|
|
4873
|
|
4874 while (specpdl_depth_counter != count)
|
|
4875 {
|
|
4876 --specpdl_ptr;
|
|
4877 --specpdl_depth_counter;
|
|
4878
|
|
4879 if (specpdl_ptr->func != 0)
|
|
4880 /* An unwind-protect */
|
|
4881 (*specpdl_ptr->func) (specpdl_ptr->old_value);
|
|
4882 else
|
|
4883 {
|
|
4884 /* We checked symbol for validity when we specbound it,
|
|
4885 so only need to call Fset if symbol has magic value. */
|
440
|
4886 Lisp_Symbol *sym = XSYMBOL (specpdl_ptr->symbol);
|
428
|
4887 if (!SYMBOL_VALUE_MAGIC_P (sym->value))
|
|
4888 sym->value = specpdl_ptr->old_value;
|
|
4889 else
|
|
4890 Fset (specpdl_ptr->symbol, specpdl_ptr->old_value);
|
|
4891 }
|
|
4892
|
|
4893 #if 0 /* martin */
|
|
4894 #ifndef EXCEEDINGLY_QUESTIONABLE_CODE
|
|
4895 /* There should never be anything here for us to remove.
|
|
4896 If so, it indicates a logic error in Emacs. Catches
|
|
4897 should get removed when a throw or signal occurs, or
|
|
4898 when a catch or condition-case exits normally. But
|
|
4899 it's too dangerous to just remove this code. --ben */
|
|
4900
|
|
4901 /* Furthermore, this code is not in FSFmacs!!!
|
|
4902 Braino on mly's part? */
|
|
4903 /* If we're unwound past the pdlcount of a catch frame,
|
|
4904 that catch can't possibly still be valid. */
|
|
4905 while (catchlist && catchlist->pdlcount > specpdl_depth_counter)
|
|
4906 {
|
|
4907 catchlist = catchlist->next;
|
|
4908 /* Don't mess with gcprolist, backtrace_list here */
|
|
4909 }
|
|
4910 #endif
|
|
4911 #endif
|
|
4912 }
|
|
4913 if (quitf)
|
|
4914 Vquit_flag = Qt;
|
|
4915 }
|
|
4916
|
|
4917
|
|
4918
|
|
4919 /* Get the value of symbol's global binding, even if that binding is
|
|
4920 not now dynamically visible. May return Qunbound or magic values. */
|
|
4921
|
|
4922 Lisp_Object
|
|
4923 top_level_value (Lisp_Object symbol)
|
|
4924 {
|
|
4925 REGISTER struct specbinding *ptr = specpdl;
|
|
4926
|
|
4927 CHECK_SYMBOL (symbol);
|
|
4928 for (; ptr != specpdl_ptr; ptr++)
|
|
4929 {
|
|
4930 if (EQ (ptr->symbol, symbol))
|
|
4931 return ptr->old_value;
|
|
4932 }
|
|
4933 return XSYMBOL (symbol)->value;
|
|
4934 }
|
|
4935
|
|
4936 #if 0
|
|
4937
|
|
4938 Lisp_Object
|
|
4939 top_level_set (Lisp_Object symbol, Lisp_Object newval)
|
|
4940 {
|
|
4941 REGISTER struct specbinding *ptr = specpdl;
|
|
4942
|
|
4943 CHECK_SYMBOL (symbol);
|
|
4944 for (; ptr != specpdl_ptr; ptr++)
|
|
4945 {
|
|
4946 if (EQ (ptr->symbol, symbol))
|
|
4947 {
|
|
4948 ptr->old_value = newval;
|
|
4949 return newval;
|
|
4950 }
|
|
4951 }
|
|
4952 return Fset (symbol, newval);
|
|
4953 }
|
|
4954
|
|
4955 #endif /* 0 */
|
|
4956
|
|
4957
|
|
4958 /************************************************************************/
|
|
4959 /* Backtraces */
|
|
4960 /************************************************************************/
|
|
4961
|
|
4962 DEFUN ("backtrace-debug", Fbacktrace_debug, 2, 2, 0, /*
|
|
4963 Set the debug-on-exit flag of eval frame LEVEL levels down to FLAG.
|
|
4964 The debugger is entered when that frame exits, if the flag is non-nil.
|
|
4965 */
|
|
4966 (level, flag))
|
|
4967 {
|
|
4968 REGISTER struct backtrace *backlist = backtrace_list;
|
|
4969 REGISTER int i;
|
|
4970
|
|
4971 CHECK_INT (level);
|
|
4972
|
|
4973 for (i = 0; backlist && i < XINT (level); i++)
|
|
4974 {
|
|
4975 backlist = backlist->next;
|
|
4976 }
|
|
4977
|
|
4978 if (backlist)
|
|
4979 backlist->debug_on_exit = !NILP (flag);
|
|
4980
|
|
4981 return flag;
|
|
4982 }
|
|
4983
|
|
4984 static void
|
|
4985 backtrace_specials (int speccount, int speclimit, Lisp_Object stream)
|
|
4986 {
|
|
4987 int printing_bindings = 0;
|
|
4988
|
|
4989 for (; speccount > speclimit; speccount--)
|
|
4990 {
|
|
4991 if (specpdl[speccount - 1].func == 0
|
|
4992 || specpdl[speccount - 1].func == specbind_unwind_local
|
|
4993 || specpdl[speccount - 1].func == specbind_unwind_wasnt_local)
|
|
4994 {
|
|
4995 write_c_string (((!printing_bindings) ? " # bind (" : " "),
|
|
4996 stream);
|
|
4997 Fprin1 (specpdl[speccount - 1].symbol, stream);
|
|
4998 printing_bindings = 1;
|
|
4999 }
|
|
5000 else
|
|
5001 {
|
|
5002 if (printing_bindings) write_c_string (")\n", stream);
|
|
5003 write_c_string (" # (unwind-protect ...)\n", stream);
|
|
5004 printing_bindings = 0;
|
|
5005 }
|
|
5006 }
|
|
5007 if (printing_bindings) write_c_string (")\n", stream);
|
|
5008 }
|
|
5009
|
|
5010 DEFUN ("backtrace", Fbacktrace, 0, 2, "", /*
|
|
5011 Print a trace of Lisp function calls currently active.
|
438
|
5012 Optional arg STREAM specifies the output stream to send the backtrace to,
|
444
|
5013 and defaults to the value of `standard-output'.
|
|
5014 Optional second arg DETAILED non-nil means show places where currently
|
|
5015 active variable bindings, catches, condition-cases, and
|
|
5016 unwind-protects, as well as function calls, were made.
|
428
|
5017 */
|
|
5018 (stream, detailed))
|
|
5019 {
|
|
5020 /* This function can GC */
|
|
5021 struct backtrace *backlist = backtrace_list;
|
|
5022 struct catchtag *catches = catchlist;
|
|
5023 int speccount = specpdl_depth();
|
|
5024
|
|
5025 int old_nl = print_escape_newlines;
|
|
5026 int old_pr = print_readably;
|
|
5027 Lisp_Object old_level = Vprint_level;
|
|
5028 Lisp_Object oiq = Vinhibit_quit;
|
|
5029 struct gcpro gcpro1, gcpro2;
|
|
5030
|
|
5031 /* We can't allow quits in here because that could cause the values
|
|
5032 of print_readably and print_escape_newlines to get screwed up.
|
|
5033 Normally we would use a record_unwind_protect but that would
|
|
5034 screw up the functioning of this function. */
|
|
5035 Vinhibit_quit = Qt;
|
|
5036
|
|
5037 entering_debugger = 0;
|
|
5038
|
|
5039 Vprint_level = make_int (3);
|
|
5040 print_readably = 0;
|
|
5041 print_escape_newlines = 1;
|
|
5042
|
|
5043 GCPRO2 (stream, old_level);
|
|
5044
|
|
5045 if (NILP (stream))
|
|
5046 stream = Vstandard_output;
|
|
5047 if (!noninteractive && (NILP (stream) || EQ (stream, Qt)))
|
|
5048 stream = Fselected_frame (Qnil);
|
|
5049
|
|
5050 for (;;)
|
|
5051 {
|
|
5052 if (!NILP (detailed) && catches && catches->backlist == backlist)
|
|
5053 {
|
|
5054 int catchpdl = catches->pdlcount;
|
438
|
5055 if (speccount > catchpdl
|
|
5056 && specpdl[catchpdl].func == condition_case_unwind)
|
428
|
5057 /* This is a condition-case catchpoint */
|
|
5058 catchpdl = catchpdl + 1;
|
|
5059
|
|
5060 backtrace_specials (speccount, catchpdl, stream);
|
|
5061
|
|
5062 speccount = catches->pdlcount;
|
|
5063 if (catchpdl == speccount)
|
|
5064 {
|
|
5065 write_c_string (" # (catch ", stream);
|
|
5066 Fprin1 (catches->tag, stream);
|
|
5067 write_c_string (" ...)\n", stream);
|
|
5068 }
|
|
5069 else
|
|
5070 {
|
|
5071 write_c_string (" # (condition-case ... . ", stream);
|
|
5072 Fprin1 (Fcdr (Fcar (catches->tag)), stream);
|
|
5073 write_c_string (")\n", stream);
|
|
5074 }
|
|
5075 catches = catches->next;
|
|
5076 }
|
|
5077 else if (!backlist)
|
|
5078 break;
|
|
5079 else
|
|
5080 {
|
|
5081 if (!NILP (detailed) && backlist->pdlcount < speccount)
|
|
5082 {
|
|
5083 backtrace_specials (speccount, backlist->pdlcount, stream);
|
|
5084 speccount = backlist->pdlcount;
|
|
5085 }
|
|
5086 write_c_string (((backlist->debug_on_exit) ? "* " : " "),
|
|
5087 stream);
|
|
5088 if (backlist->nargs == UNEVALLED)
|
|
5089 {
|
|
5090 Fprin1 (Fcons (*backlist->function, *backlist->args), stream);
|
|
5091 write_c_string ("\n", stream); /* from FSFmacs 19.30 */
|
|
5092 }
|
|
5093 else
|
|
5094 {
|
|
5095 Lisp_Object tem = *backlist->function;
|
|
5096 Fprin1 (tem, stream); /* This can QUIT */
|
|
5097 write_c_string ("(", stream);
|
|
5098 if (backlist->nargs == MANY)
|
|
5099 {
|
|
5100 int i;
|
|
5101 Lisp_Object tail = Qnil;
|
|
5102 struct gcpro ngcpro1;
|
|
5103
|
|
5104 NGCPRO1 (tail);
|
|
5105 for (tail = *backlist->args, i = 0;
|
|
5106 !NILP (tail);
|
|
5107 tail = Fcdr (tail), i++)
|
|
5108 {
|
|
5109 if (i != 0) write_c_string (" ", stream);
|
|
5110 Fprin1 (Fcar (tail), stream);
|
|
5111 }
|
|
5112 NUNGCPRO;
|
|
5113 }
|
|
5114 else
|
|
5115 {
|
|
5116 int i;
|
|
5117 for (i = 0; i < backlist->nargs; i++)
|
|
5118 {
|
|
5119 if (!i && EQ(tem, Qbyte_code)) {
|
|
5120 write_c_string("\"...\"", stream);
|
|
5121 continue;
|
|
5122 }
|
|
5123 if (i != 0) write_c_string (" ", stream);
|
|
5124 Fprin1 (backlist->args[i], stream);
|
|
5125 }
|
|
5126 }
|
442
|
5127 write_c_string (")\n", stream);
|
428
|
5128 }
|
|
5129 backlist = backlist->next;
|
|
5130 }
|
|
5131 }
|
|
5132 Vprint_level = old_level;
|
|
5133 print_readably = old_pr;
|
|
5134 print_escape_newlines = old_nl;
|
|
5135 UNGCPRO;
|
|
5136 Vinhibit_quit = oiq;
|
|
5137 return Qnil;
|
|
5138 }
|
|
5139
|
|
5140
|
444
|
5141 DEFUN ("backtrace-frame", Fbacktrace_frame, 1, 1, 0, /*
|
|
5142 Return the function and arguments NFRAMES up from current execution point.
|
428
|
5143 If that frame has not evaluated the arguments yet (or is a special form),
|
|
5144 the value is (nil FUNCTION ARG-FORMS...).
|
|
5145 If that frame has evaluated its arguments and called its function already,
|
|
5146 the value is (t FUNCTION ARG-VALUES...).
|
|
5147 A &rest arg is represented as the tail of the list ARG-VALUES.
|
|
5148 FUNCTION is whatever was supplied as car of evaluated list,
|
|
5149 or a lambda expression for macro calls.
|
444
|
5150 If NFRAMES is more than the number of frames, the value is nil.
|
428
|
5151 */
|
|
5152 (nframes))
|
|
5153 {
|
|
5154 REGISTER struct backtrace *backlist = backtrace_list;
|
|
5155 REGISTER int i;
|
|
5156 Lisp_Object tem;
|
|
5157
|
|
5158 CHECK_NATNUM (nframes);
|
|
5159
|
|
5160 /* Find the frame requested. */
|
|
5161 for (i = XINT (nframes); backlist && (i-- > 0);)
|
|
5162 backlist = backlist->next;
|
|
5163
|
|
5164 if (!backlist)
|
|
5165 return Qnil;
|
|
5166 if (backlist->nargs == UNEVALLED)
|
|
5167 return Fcons (Qnil, Fcons (*backlist->function, *backlist->args));
|
|
5168 else
|
|
5169 {
|
|
5170 if (backlist->nargs == MANY)
|
|
5171 tem = *backlist->args;
|
|
5172 else
|
|
5173 tem = Flist (backlist->nargs, backlist->args);
|
|
5174
|
|
5175 return Fcons (Qt, Fcons (*backlist->function, tem));
|
|
5176 }
|
|
5177 }
|
|
5178
|
|
5179
|
|
5180 /************************************************************************/
|
|
5181 /* Warnings */
|
|
5182 /************************************************************************/
|
|
5183
|
|
5184 void
|
|
5185 warn_when_safe_lispobj (Lisp_Object class, Lisp_Object level,
|
|
5186 Lisp_Object obj)
|
|
5187 {
|
|
5188 obj = list1 (list3 (class, level, obj));
|
|
5189 if (NILP (Vpending_warnings))
|
|
5190 Vpending_warnings = Vpending_warnings_tail = obj;
|
|
5191 else
|
|
5192 {
|
|
5193 Fsetcdr (Vpending_warnings_tail, obj);
|
|
5194 Vpending_warnings_tail = obj;
|
|
5195 }
|
|
5196 }
|
|
5197
|
|
5198 /* #### This should probably accept Lisp objects; but then we have
|
|
5199 to make sure that Feval() isn't called, since it might not be safe.
|
|
5200
|
|
5201 An alternative approach is to just pass some non-string type of
|
|
5202 Lisp_Object to warn_when_safe_lispobj(); `prin1-to-string' will
|
|
5203 automatically be called when it is safe to do so. */
|
|
5204
|
|
5205 void
|
609
|
5206 warn_when_safe (Lisp_Object class, Lisp_Object level, const CBufbyte *fmt, ...)
|
428
|
5207 {
|
|
5208 Lisp_Object obj;
|
|
5209 va_list args;
|
|
5210
|
|
5211 va_start (args, fmt);
|
442
|
5212 obj = emacs_doprnt_string_va ((const Bufbyte *) GETTEXT (fmt),
|
428
|
5213 Qnil, -1, args);
|
|
5214 va_end (args);
|
|
5215
|
|
5216 warn_when_safe_lispobj (class, level, obj);
|
|
5217 }
|
|
5218
|
|
5219
|
|
5220
|
|
5221
|
|
5222 /************************************************************************/
|
|
5223 /* Initialization */
|
|
5224 /************************************************************************/
|
|
5225
|
|
5226 void
|
|
5227 syms_of_eval (void)
|
|
5228 {
|
442
|
5229 INIT_LRECORD_IMPLEMENTATION (subr);
|
|
5230
|
563
|
5231 DEFSYMBOL (Qinhibit_quit);
|
|
5232 DEFSYMBOL (Qautoload);
|
|
5233 DEFSYMBOL (Qdebug_on_error);
|
|
5234 DEFSYMBOL (Qstack_trace_on_error);
|
|
5235 DEFSYMBOL (Qdebug_on_signal);
|
|
5236 DEFSYMBOL (Qstack_trace_on_signal);
|
|
5237 DEFSYMBOL (Qdebugger);
|
|
5238 DEFSYMBOL (Qmacro);
|
428
|
5239 defsymbol (&Qand_rest, "&rest");
|
|
5240 defsymbol (&Qand_optional, "&optional");
|
|
5241 /* Note that the process code also uses Qexit */
|
563
|
5242 DEFSYMBOL (Qexit);
|
|
5243 DEFSYMBOL (Qsetq);
|
|
5244 DEFSYMBOL (Qinteractive);
|
|
5245 DEFSYMBOL (Qcommandp);
|
|
5246 DEFSYMBOL (Qdefun);
|
|
5247 DEFSYMBOL (Qprogn);
|
|
5248 DEFSYMBOL (Qvalues);
|
|
5249 DEFSYMBOL (Qdisplay_warning);
|
|
5250 DEFSYMBOL (Qrun_hooks);
|
|
5251 DEFSYMBOL (Qif);
|
428
|
5252
|
|
5253 DEFSUBR (For);
|
|
5254 DEFSUBR (Fand);
|
|
5255 DEFSUBR (Fif);
|
|
5256 DEFSUBR_MACRO (Fwhen);
|
|
5257 DEFSUBR_MACRO (Funless);
|
|
5258 DEFSUBR (Fcond);
|
|
5259 DEFSUBR (Fprogn);
|
|
5260 DEFSUBR (Fprog1);
|
|
5261 DEFSUBR (Fprog2);
|
|
5262 DEFSUBR (Fsetq);
|
|
5263 DEFSUBR (Fquote);
|
|
5264 DEFSUBR (Ffunction);
|
|
5265 DEFSUBR (Fdefun);
|
|
5266 DEFSUBR (Fdefmacro);
|
|
5267 DEFSUBR (Fdefvar);
|
|
5268 DEFSUBR (Fdefconst);
|
|
5269 DEFSUBR (Fuser_variable_p);
|
|
5270 DEFSUBR (Flet);
|
|
5271 DEFSUBR (FletX);
|
|
5272 DEFSUBR (Fwhile);
|
|
5273 DEFSUBR (Fmacroexpand_internal);
|
|
5274 DEFSUBR (Fcatch);
|
|
5275 DEFSUBR (Fthrow);
|
|
5276 DEFSUBR (Funwind_protect);
|
|
5277 DEFSUBR (Fcondition_case);
|
|
5278 DEFSUBR (Fcall_with_condition_handler);
|
|
5279 DEFSUBR (Fsignal);
|
|
5280 DEFSUBR (Finteractive_p);
|
|
5281 DEFSUBR (Fcommandp);
|
|
5282 DEFSUBR (Fcommand_execute);
|
|
5283 DEFSUBR (Fautoload);
|
|
5284 DEFSUBR (Feval);
|
|
5285 DEFSUBR (Fapply);
|
|
5286 DEFSUBR (Ffuncall);
|
|
5287 DEFSUBR (Ffunctionp);
|
|
5288 DEFSUBR (Ffunction_min_args);
|
|
5289 DEFSUBR (Ffunction_max_args);
|
|
5290 DEFSUBR (Frun_hooks);
|
|
5291 DEFSUBR (Frun_hook_with_args);
|
|
5292 DEFSUBR (Frun_hook_with_args_until_success);
|
|
5293 DEFSUBR (Frun_hook_with_args_until_failure);
|
|
5294 DEFSUBR (Fbacktrace_debug);
|
|
5295 DEFSUBR (Fbacktrace);
|
|
5296 DEFSUBR (Fbacktrace_frame);
|
|
5297 }
|
|
5298
|
|
5299 void
|
|
5300 reinit_eval (void)
|
|
5301 {
|
|
5302 specpdl_ptr = specpdl;
|
|
5303 specpdl_depth_counter = 0;
|
|
5304 catchlist = 0;
|
|
5305 Vcondition_handlers = Qnil;
|
|
5306 backtrace_list = 0;
|
|
5307 Vquit_flag = Qnil;
|
|
5308 debug_on_next_call = 0;
|
|
5309 lisp_eval_depth = 0;
|
|
5310 entering_debugger = 0;
|
|
5311 }
|
|
5312
|
|
5313 void
|
|
5314 reinit_vars_of_eval (void)
|
|
5315 {
|
|
5316 preparing_for_armageddon = 0;
|
|
5317 in_warnings = 0;
|
|
5318 Qunbound_suspended_errors_tag = make_opaque_ptr (&Qunbound_suspended_errors_tag);
|
|
5319 staticpro_nodump (&Qunbound_suspended_errors_tag);
|
|
5320
|
|
5321 specpdl_size = 50;
|
|
5322 specpdl = xnew_array (struct specbinding, specpdl_size);
|
|
5323 /* XEmacs change: increase these values. */
|
|
5324 max_specpdl_size = 3000;
|
442
|
5325 max_lisp_eval_depth = 1000;
|
|
5326 #ifdef DEFEND_AGAINST_THROW_RECURSION
|
428
|
5327 throw_level = 0;
|
|
5328 #endif
|
|
5329 }
|
|
5330
|
|
5331 void
|
|
5332 vars_of_eval (void)
|
|
5333 {
|
|
5334 reinit_vars_of_eval ();
|
|
5335
|
|
5336 DEFVAR_INT ("max-specpdl-size", &max_specpdl_size /*
|
|
5337 Limit on number of Lisp variable bindings & unwind-protects before error.
|
|
5338 */ );
|
|
5339
|
|
5340 DEFVAR_INT ("max-lisp-eval-depth", &max_lisp_eval_depth /*
|
|
5341 Limit on depth in `eval', `apply' and `funcall' before error.
|
|
5342 This limit is to catch infinite recursions for you before they cause
|
|
5343 actual stack overflow in C, which would be fatal for Emacs.
|
|
5344 You can safely make it considerably larger than its default value,
|
|
5345 if that proves inconveniently small.
|
|
5346 */ );
|
|
5347
|
|
5348 DEFVAR_LISP ("quit-flag", &Vquit_flag /*
|
|
5349 Non-nil causes `eval' to abort, unless `inhibit-quit' is non-nil.
|
|
5350 Typing C-G sets `quit-flag' non-nil, regardless of `inhibit-quit'.
|
|
5351 */ );
|
|
5352 Vquit_flag = Qnil;
|
|
5353
|
|
5354 DEFVAR_LISP ("inhibit-quit", &Vinhibit_quit /*
|
|
5355 Non-nil inhibits C-g quitting from happening immediately.
|
|
5356 Note that `quit-flag' will still be set by typing C-g,
|
|
5357 so a quit will be signalled as soon as `inhibit-quit' is nil.
|
|
5358 To prevent this happening, set `quit-flag' to nil
|
|
5359 before making `inhibit-quit' nil. The value of `inhibit-quit' is
|
|
5360 ignored if a critical quit is requested by typing control-shift-G in
|
|
5361 an X frame.
|
|
5362 */ );
|
|
5363 Vinhibit_quit = Qnil;
|
|
5364
|
|
5365 DEFVAR_LISP ("stack-trace-on-error", &Vstack_trace_on_error /*
|
|
5366 *Non-nil means automatically display a backtrace buffer
|
|
5367 after any error that is not handled by a `condition-case'.
|
|
5368 If the value is a list, an error only means to display a backtrace
|
|
5369 if one of its condition symbols appears in the list.
|
|
5370 See also variable `stack-trace-on-signal'.
|
|
5371 */ );
|
|
5372 Vstack_trace_on_error = Qnil;
|
|
5373
|
|
5374 DEFVAR_LISP ("stack-trace-on-signal", &Vstack_trace_on_signal /*
|
|
5375 *Non-nil means automatically display a backtrace buffer
|
|
5376 after any error that is signalled, whether or not it is handled by
|
|
5377 a `condition-case'.
|
|
5378 If the value is a list, an error only means to display a backtrace
|
|
5379 if one of its condition symbols appears in the list.
|
|
5380 See also variable `stack-trace-on-error'.
|
|
5381 */ );
|
|
5382 Vstack_trace_on_signal = Qnil;
|
|
5383
|
|
5384 DEFVAR_LISP ("debug-ignored-errors", &Vdebug_ignored_errors /*
|
|
5385 *List of errors for which the debugger should not be called.
|
|
5386 Each element may be a condition-name or a regexp that matches error messages.
|
|
5387 If any element applies to a given error, that error skips the debugger
|
|
5388 and just returns to top level.
|
|
5389 This overrides the variable `debug-on-error'.
|
|
5390 It does not apply to errors handled by `condition-case'.
|
|
5391 */ );
|
|
5392 Vdebug_ignored_errors = Qnil;
|
|
5393
|
|
5394 DEFVAR_LISP ("debug-on-error", &Vdebug_on_error /*
|
|
5395 *Non-nil means enter debugger if an unhandled error is signalled.
|
|
5396 The debugger will not be entered if the error is handled by
|
|
5397 a `condition-case'.
|
|
5398 If the value is a list, an error only means to enter the debugger
|
|
5399 if one of its condition symbols appears in the list.
|
|
5400 This variable is overridden by `debug-ignored-errors'.
|
|
5401 See also variables `debug-on-quit' and `debug-on-signal'.
|
|
5402 */ );
|
|
5403 Vdebug_on_error = Qnil;
|
|
5404
|
|
5405 DEFVAR_LISP ("debug-on-signal", &Vdebug_on_signal /*
|
|
5406 *Non-nil means enter debugger if an error is signalled.
|
|
5407 The debugger will be entered whether or not the error is handled by
|
|
5408 a `condition-case'.
|
|
5409 If the value is a list, an error only means to enter the debugger
|
|
5410 if one of its condition symbols appears in the list.
|
|
5411 See also variable `debug-on-quit'.
|
|
5412 */ );
|
|
5413 Vdebug_on_signal = Qnil;
|
|
5414
|
|
5415 DEFVAR_BOOL ("debug-on-quit", &debug_on_quit /*
|
|
5416 *Non-nil means enter debugger if quit is signalled (C-G, for example).
|
|
5417 Does not apply if quit is handled by a `condition-case'. Entering the
|
|
5418 debugger can also be achieved at any time (for X11 console) by typing
|
|
5419 control-shift-G to signal a critical quit.
|
|
5420 */ );
|
|
5421 debug_on_quit = 0;
|
|
5422
|
|
5423 DEFVAR_BOOL ("debug-on-next-call", &debug_on_next_call /*
|
|
5424 Non-nil means enter debugger before next `eval', `apply' or `funcall'.
|
|
5425 */ );
|
|
5426
|
|
5427 DEFVAR_LISP ("debugger", &Vdebugger /*
|
|
5428 Function to call to invoke debugger.
|
|
5429 If due to frame exit, args are `exit' and the value being returned;
|
|
5430 this function's value will be returned instead of that.
|
|
5431 If due to error, args are `error' and a list of the args to `signal'.
|
|
5432 If due to `apply' or `funcall' entry, one arg, `lambda'.
|
|
5433 If due to `eval' entry, one arg, t.
|
|
5434 */ );
|
|
5435 Vdebugger = Qnil;
|
|
5436
|
|
5437 staticpro (&Vpending_warnings);
|
|
5438 Vpending_warnings = Qnil;
|
452
|
5439 dump_add_root_object (&Vpending_warnings_tail);
|
428
|
5440 Vpending_warnings_tail = Qnil;
|
|
5441
|
|
5442 staticpro (&Vautoload_queue);
|
|
5443 Vautoload_queue = Qnil;
|
|
5444
|
|
5445 staticpro (&Vcondition_handlers);
|
|
5446
|
|
5447 staticpro (&Vcurrent_warning_class);
|
|
5448 Vcurrent_warning_class = Qnil;
|
|
5449
|
|
5450 staticpro (&Vcurrent_error_state);
|
|
5451 Vcurrent_error_state = Qnil; /* errors as normal */
|
|
5452
|
|
5453 reinit_eval ();
|
|
5454 }
|