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);
|
665
|
287 const CIntbyte *header =
|
428
|
288 (subr->max_args == UNEVALLED) ? "#<special-form " : "#<subr ";
|
665
|
289 const CIntbyte *name = subr_name (subr);
|
|
290 const CIntbyte *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 REGISTER int last_time;
|
|
1347
|
|
1348 /* Unwind the specbind, catch, and handler stacks back to CATCH
|
|
1349 Before each catch is discarded, unbind all special bindings
|
|
1350 and execute all unwind-protect clauses made above that catch.
|
|
1351 At the end, restore some static info saved in CATCH,
|
|
1352 and longjmp to the location specified.
|
|
1353 */
|
|
1354
|
|
1355 /* Save the value somewhere it will be GC'ed.
|
|
1356 (Can't overwrite tag slot because an unwind-protect may
|
|
1357 want to throw to this same tag, which isn't yet invalid.) */
|
|
1358 c->val = val;
|
|
1359
|
|
1360 #if 0 /* FSFmacs */
|
|
1361 /* Restore the polling-suppression count. */
|
|
1362 set_poll_suppress_count (catch->poll_suppress_count);
|
|
1363 #endif
|
|
1364
|
617
|
1365 #if 1
|
428
|
1366 do
|
|
1367 {
|
|
1368 last_time = catchlist == c;
|
|
1369
|
|
1370 /* Unwind the specpdl stack, and then restore the proper set of
|
|
1371 handlers. */
|
|
1372 unbind_to (catchlist->pdlcount, Qnil);
|
|
1373 catchlist = catchlist->next;
|
442
|
1374 #ifdef ERROR_CHECK_TYPECHECK
|
|
1375 check_error_state_sanity ();
|
|
1376 #endif
|
428
|
1377 }
|
|
1378 while (! last_time);
|
617
|
1379 #else
|
|
1380 /* Former XEmacs code. This is definitely not as correct because
|
|
1381 there may be a number of catches we're unwinding, and a number
|
|
1382 of unwind-protects in the process. By not undoing the catches till
|
|
1383 the end, there may be invalid catches still current. (This would
|
|
1384 be a particular problem with code like this:
|
|
1385
|
|
1386 (catch 'foo
|
|
1387 (call-some-code-which-does...
|
|
1388 (catch 'bar
|
|
1389 (unwind-protect
|
|
1390 (call-some-code-which-does...
|
|
1391 (catch 'bar
|
|
1392 (call-some-code-which-does...
|
|
1393 (throw 'foo nil))))
|
|
1394 (throw 'bar nil)))))
|
|
1395
|
|
1396 This would try to throw to the inner (catch 'bar)!
|
|
1397
|
|
1398 --ben
|
|
1399 */
|
428
|
1400 /* Unwind the specpdl stack */
|
|
1401 unbind_to (c->pdlcount, Qnil);
|
|
1402 catchlist = c->next;
|
442
|
1403 #ifdef ERROR_CHECK_TYPECHECK
|
|
1404 check_error_state_sanity ();
|
|
1405 #endif
|
617
|
1406 #endif /* Former code */
|
428
|
1407
|
|
1408 gcprolist = c->gcpro;
|
|
1409 backtrace_list = c->backlist;
|
|
1410 lisp_eval_depth = c->lisp_eval_depth;
|
|
1411
|
442
|
1412 #ifdef DEFEND_AGAINST_THROW_RECURSION
|
428
|
1413 throw_level = 0;
|
|
1414 #endif
|
|
1415 LONGJMP (c->jmp, 1);
|
|
1416 }
|
|
1417
|
|
1418 static DOESNT_RETURN
|
|
1419 throw_or_bomb_out (Lisp_Object tag, Lisp_Object val, int bomb_out_p,
|
|
1420 Lisp_Object sig, Lisp_Object data)
|
|
1421 {
|
442
|
1422 #ifdef DEFEND_AGAINST_THROW_RECURSION
|
428
|
1423 /* die if we recurse more than is reasonable */
|
|
1424 if (++throw_level > 20)
|
|
1425 abort();
|
|
1426 #endif
|
|
1427
|
|
1428 /* If bomb_out_p is t, this is being called from Fsignal as a
|
|
1429 "last resort" when there is no handler for this error and
|
|
1430 the debugger couldn't be invoked, so we are throwing to
|
|
1431 'top-level. If this tag doesn't exist (happens during the
|
|
1432 initialization stages) we would get in an infinite recursive
|
|
1433 Fsignal/Fthrow loop, so instead we bomb out to the
|
|
1434 really-early-error-handler.
|
|
1435
|
|
1436 Note that in fact the only time that the "last resort"
|
|
1437 occurs is when there's no catch for 'top-level -- the
|
|
1438 'top-level catch and the catch-all error handler are
|
|
1439 established at the same time, in initial_command_loop/
|
|
1440 top_level_1.
|
|
1441
|
|
1442 #### Fix this horrifitude!
|
|
1443 */
|
|
1444
|
|
1445 while (1)
|
|
1446 {
|
|
1447 REGISTER struct catchtag *c;
|
|
1448
|
|
1449 #if 0 /* FSFmacs */
|
|
1450 if (!NILP (tag)) /* #### */
|
|
1451 #endif
|
|
1452 for (c = catchlist; c; c = c->next)
|
|
1453 {
|
|
1454 if (EQ (c->tag, tag))
|
|
1455 unwind_to_catch (c, val);
|
|
1456 }
|
|
1457 if (!bomb_out_p)
|
|
1458 tag = Fsignal (Qno_catch, list2 (tag, val));
|
|
1459 else
|
|
1460 call1 (Qreally_early_error_handler, Fcons (sig, data));
|
|
1461 }
|
|
1462
|
|
1463 /* can't happen. who cares? - (Sun's compiler does) */
|
|
1464 /* throw_level--; */
|
|
1465 /* getting tired of compilation warnings */
|
|
1466 /* return Qnil; */
|
|
1467 }
|
|
1468
|
|
1469 /* See above, where CATCHLIST is defined, for a description of how
|
|
1470 Fthrow() works.
|
|
1471
|
|
1472 Fthrow() is also called by Fsignal(), to do a non-local jump
|
|
1473 back to the appropriate condition-case handler after (maybe)
|
|
1474 the debugger is entered. In that case, TAG is the value
|
|
1475 of Vcondition_handlers that was in place just after the
|
|
1476 condition-case handler was set up. The car of this will be
|
|
1477 some data referring to the handler: Its car will be Qunbound
|
|
1478 (thus, this tag can never be generated by Lisp code), and
|
|
1479 its CDR will be the HANDLERS argument to condition_case_1()
|
|
1480 (either Qerror, Qt, or a list of handlers as in `condition-case').
|
|
1481 This works fine because Fthrow() does not care what TAG was
|
|
1482 passed to it: it just looks up the catch list for something
|
|
1483 that is EQ() to TAG. When it finds it, it will longjmp()
|
|
1484 back to the place that established the catch (in this case,
|
|
1485 condition_case_1). See below for more info.
|
|
1486 */
|
|
1487
|
|
1488 DEFUN ("throw", Fthrow, 2, 2, 0, /*
|
444
|
1489 Throw to the catch for TAG and return VALUE from it.
|
428
|
1490 Both TAG and VALUE are evalled.
|
|
1491 */
|
444
|
1492 (tag, value))
|
|
1493 {
|
|
1494 throw_or_bomb_out (tag, value, 0, Qnil, Qnil); /* Doesn't return */
|
428
|
1495 return Qnil;
|
|
1496 }
|
|
1497
|
|
1498 DEFUN ("unwind-protect", Funwind_protect, 1, UNEVALLED, 0, /*
|
|
1499 Do BODYFORM, protecting with UNWINDFORMS.
|
|
1500 Usage looks like (unwind-protect BODYFORM UNWINDFORMS...).
|
|
1501 If BODYFORM completes normally, its value is returned
|
|
1502 after executing the UNWINDFORMS.
|
|
1503 If BODYFORM exits nonlocally, the UNWINDFORMS are executed anyway.
|
|
1504 */
|
|
1505 (args))
|
|
1506 {
|
|
1507 /* This function can GC */
|
|
1508 int speccount = specpdl_depth();
|
|
1509
|
|
1510 record_unwind_protect (Fprogn, XCDR (args));
|
|
1511 return unbind_to (speccount, Feval (XCAR (args)));
|
|
1512 }
|
|
1513
|
|
1514
|
|
1515 /************************************************************************/
|
|
1516 /* Signalling and trapping errors */
|
|
1517 /************************************************************************/
|
|
1518
|
|
1519 static Lisp_Object
|
|
1520 condition_bind_unwind (Lisp_Object loser)
|
|
1521 {
|
617
|
1522 /* There is no problem freeing stuff here like there is in
|
|
1523 condition_case_unwind(), because there are no outside pointers
|
|
1524 (like the tag below in the catchlist) pointing to the objects. */
|
440
|
1525 Lisp_Cons *victim;
|
428
|
1526 /* ((handler-fun . handler-args) ... other handlers) */
|
|
1527 Lisp_Object tem = XCAR (loser);
|
|
1528
|
|
1529 while (CONSP (tem))
|
|
1530 {
|
|
1531 victim = XCONS (tem);
|
|
1532 tem = victim->cdr;
|
|
1533 free_cons (victim);
|
|
1534 }
|
|
1535 victim = XCONS (loser);
|
|
1536
|
|
1537 if (EQ (loser, Vcondition_handlers)) /* may have been rebound to some tail */
|
|
1538 Vcondition_handlers = victim->cdr;
|
|
1539
|
|
1540 free_cons (victim);
|
|
1541 return Qnil;
|
|
1542 }
|
|
1543
|
|
1544 static Lisp_Object
|
|
1545 condition_case_unwind (Lisp_Object loser)
|
|
1546 {
|
|
1547 /* ((<unbound> . clauses) ... other handlers */
|
617
|
1548 /* NO! Doing this now leaves the tag deleted in a still-active
|
|
1549 catch. With the recent changes to unwind_to_catch(), the
|
|
1550 evil situation might not happen any more; it certainly could
|
|
1551 happen before because it did. But it's very precarious to rely
|
|
1552 on something like this. #### Instead we should rewrite, adopting
|
|
1553 the FSF's mechanism with a struct handler instead of
|
|
1554 Vcondition_handlers; then we have NO Lisp-object structures used
|
|
1555 to hold all of the values, and there's no possibility either of
|
|
1556 crashes from freeing objects too quickly, or objects not getting
|
|
1557 freed and hanging around till the next GC.
|
|
1558
|
|
1559 In practice, the extra consing here should not matter because
|
|
1560 it only happens when we throw past the condition-case, which almost
|
|
1561 always is the result of an error. Most of the time, there will be
|
|
1562 no error, and we will free the objects below in the main function.
|
|
1563
|
|
1564 --ben
|
|
1565
|
|
1566 DO NOT DO: free_cons (XCAR (loser));
|
|
1567 */
|
|
1568
|
428
|
1569 if (EQ (loser, Vcondition_handlers)) /* may have been rebound to some tail */
|
617
|
1570 Vcondition_handlers = XCDR (loser);
|
|
1571
|
|
1572 /* DO NOT DO: free_cons (loser); */
|
428
|
1573 return Qnil;
|
|
1574 }
|
|
1575
|
|
1576 /* Split out from condition_case_3 so that primitive C callers
|
|
1577 don't have to cons up a lisp handler form to be evaluated. */
|
|
1578
|
|
1579 /* Call a function BFUN of one argument BARG, trapping errors as
|
|
1580 specified by HANDLERS. If no error occurs that is indicated by
|
|
1581 HANDLERS as something to be caught, the return value of this
|
|
1582 function is the return value from BFUN. If such an error does
|
|
1583 occur, HFUN is called, and its return value becomes the
|
|
1584 return value of condition_case_1(). The second argument passed
|
|
1585 to HFUN will always be HARG. The first argument depends on
|
|
1586 HANDLERS:
|
|
1587
|
|
1588 If HANDLERS is Qt, all errors (this includes QUIT, but not
|
|
1589 non-local exits with `throw') cause HFUN to be invoked, and VAL
|
|
1590 (the first argument to HFUN) is a cons (SIG . DATA) of the
|
|
1591 arguments passed to `signal'. The debugger is not invoked even if
|
|
1592 `debug-on-error' was set.
|
|
1593
|
|
1594 A HANDLERS value of Qerror is the same as Qt except that the
|
|
1595 debugger is invoked if `debug-on-error' was set.
|
|
1596
|
|
1597 Otherwise, HANDLERS should be a list of lists (CONDITION-NAME BODY ...)
|
|
1598 exactly as in `condition-case', and errors will be trapped
|
|
1599 as indicated in HANDLERS. VAL (the first argument to HFUN) will
|
|
1600 be a cons whose car is the cons (SIG . DATA) and whose CDR is the
|
|
1601 list (BODY ...) from the appropriate slot in HANDLERS.
|
|
1602
|
|
1603 This function pushes HANDLERS onto the front of Vcondition_handlers
|
|
1604 (actually with a Qunbound marker as well -- see Fthrow() above
|
|
1605 for why), establishes a catch whose tag is this new value of
|
|
1606 Vcondition_handlers, and calls BFUN. When Fsignal() is called,
|
|
1607 it calls Fthrow(), setting TAG to this same new value of
|
|
1608 Vcondition_handlers and setting VAL to the same thing that will
|
|
1609 be passed to HFUN, as above. Fthrow() longjmp()s back to the
|
|
1610 jump point we just established, and we in turn just call the
|
|
1611 HFUN and return its value.
|
|
1612
|
|
1613 For a real condition-case, HFUN will always be
|
|
1614 run_condition_case_handlers() and HARG is the argument VAR
|
|
1615 to condition-case. That function just binds VAR to the cons
|
|
1616 (SIG . DATA) that is the CAR of VAL, and calls the handler
|
|
1617 (BODY ...) that is the CDR of VAL. Note that before calling
|
|
1618 Fthrow(), Fsignal() restored Vcondition_handlers to the value
|
|
1619 it had *before* condition_case_1() was called. This maintains
|
|
1620 consistency (so that the state of things at exit of
|
|
1621 condition_case_1() is the same as at entry), and implies
|
|
1622 that the handler can signal the same error again (possibly
|
|
1623 after processing of its own), without getting in an infinite
|
|
1624 loop. */
|
|
1625
|
|
1626 Lisp_Object
|
|
1627 condition_case_1 (Lisp_Object handlers,
|
|
1628 Lisp_Object (*bfun) (Lisp_Object barg),
|
|
1629 Lisp_Object barg,
|
|
1630 Lisp_Object (*hfun) (Lisp_Object val, Lisp_Object harg),
|
|
1631 Lisp_Object harg)
|
|
1632 {
|
|
1633 int speccount = specpdl_depth();
|
|
1634 struct catchtag c;
|
617
|
1635 struct gcpro gcpro1, gcpro2, gcpro3;
|
428
|
1636
|
|
1637 #if 0 /* FSFmacs */
|
|
1638 c.tag = Qnil;
|
|
1639 #else
|
|
1640 /* Do consing now so out-of-memory error happens up front */
|
|
1641 /* (unbound . stuff) is a special condition-case kludge marker
|
|
1642 which is known specially by Fsignal.
|
617
|
1643 [[ This is an abomination, but to fix it would require either
|
428
|
1644 making condition_case cons (a union of the conditions of the clauses)
|
617
|
1645 or changing the byte-compiler output (no thanks).]]
|
|
1646
|
|
1647 The above comment is clearly wrong. FSF does not do it this way
|
|
1648 and did not change the byte-compiler output. Instead they use a
|
|
1649 `struct handler' to hold the various values (in place of our
|
|
1650 Vcondition_handlers) and chain them together, with pointers from
|
|
1651 the `struct catchtag' to the `struct handler'. We should perhaps
|
|
1652 consider moving to something similar, but not before I merge my
|
|
1653 stderr-proc workspace, which contains changes to these
|
|
1654 functions. --ben */
|
428
|
1655 c.tag = noseeum_cons (noseeum_cons (Qunbound, handlers),
|
|
1656 Vcondition_handlers);
|
|
1657 #endif
|
|
1658 c.val = Qnil;
|
|
1659 c.backlist = backtrace_list;
|
|
1660 #if 0 /* FSFmacs */
|
|
1661 /* #### */
|
|
1662 c.handlerlist = handlerlist;
|
|
1663 #endif
|
|
1664 c.lisp_eval_depth = lisp_eval_depth;
|
|
1665 c.pdlcount = specpdl_depth();
|
|
1666 #if 0 /* FSFmacs */
|
|
1667 c.poll_suppress_count = async_timer_suppress_count;
|
|
1668 #endif
|
|
1669 c.gcpro = gcprolist;
|
|
1670 /* #### FSFmacs does the following statement *after* the setjmp(). */
|
|
1671 c.next = catchlist;
|
|
1672
|
|
1673 if (SETJMP (c.jmp))
|
|
1674 {
|
|
1675 /* throw does ungcpro, etc */
|
|
1676 return (*hfun) (c.val, harg);
|
|
1677 }
|
|
1678
|
|
1679 record_unwind_protect (condition_case_unwind, c.tag);
|
|
1680
|
|
1681 catchlist = &c;
|
|
1682 #if 0 /* FSFmacs */
|
|
1683 h.handler = handlers;
|
|
1684 h.var = Qnil;
|
|
1685 h.next = handlerlist;
|
|
1686 h.tag = &c;
|
|
1687 handlerlist = &h;
|
|
1688 #else
|
|
1689 Vcondition_handlers = c.tag;
|
|
1690 #endif
|
|
1691 GCPRO1 (harg); /* Somebody has to gc-protect */
|
|
1692 c.val = ((*bfun) (barg));
|
|
1693 UNGCPRO;
|
617
|
1694
|
|
1695 /* Once we change `catchlist' below, the stuff in c will not be GCPRO'd. */
|
|
1696 GCPRO3 (harg, c.val, c.tag);
|
|
1697
|
428
|
1698 catchlist = c.next;
|
442
|
1699 #ifdef ERROR_CHECK_TYPECHECK
|
|
1700 check_error_state_sanity ();
|
|
1701 #endif
|
617
|
1702 /* Note: The unbind also resets Vcondition_handlers. Maybe we should
|
|
1703 delete this here. */
|
428
|
1704 Vcondition_handlers = XCDR (c.tag);
|
617
|
1705 unbind_to (speccount, Qnil);
|
|
1706
|
|
1707 UNGCPRO;
|
|
1708 /* free the conses *after* the unbind, because the unbind will run
|
|
1709 condition_case_unwind above. */
|
|
1710 free_cons (XCONS (XCAR (c.tag)));
|
|
1711 free_cons (XCONS (c.tag));
|
|
1712 return c.val;
|
428
|
1713 }
|
|
1714
|
|
1715 static Lisp_Object
|
|
1716 run_condition_case_handlers (Lisp_Object val, Lisp_Object var)
|
|
1717 {
|
|
1718 /* This function can GC */
|
|
1719 #if 0 /* FSFmacs */
|
|
1720 if (!NILP (h.var))
|
|
1721 specbind (h.var, c.val);
|
|
1722 val = Fprogn (Fcdr (h.chosen_clause));
|
|
1723
|
|
1724 /* Note that this just undoes the binding of h.var; whoever
|
|
1725 longjmp()ed to us unwound the stack to c.pdlcount before
|
|
1726 throwing. */
|
|
1727 unbind_to (c.pdlcount, Qnil);
|
|
1728 return val;
|
|
1729 #else
|
|
1730 int speccount;
|
|
1731
|
|
1732 CHECK_TRUE_LIST (val);
|
|
1733 if (NILP (var))
|
|
1734 return Fprogn (Fcdr (val)); /* tail call */
|
|
1735
|
|
1736 speccount = specpdl_depth();
|
|
1737 specbind (var, Fcar (val));
|
|
1738 val = Fprogn (Fcdr (val));
|
|
1739 return unbind_to (speccount, val);
|
|
1740 #endif
|
|
1741 }
|
|
1742
|
|
1743 /* Here for bytecode to call non-consfully. This is exactly like
|
|
1744 condition-case except that it takes three arguments rather
|
|
1745 than a single list of arguments. */
|
|
1746 Lisp_Object
|
|
1747 condition_case_3 (Lisp_Object bodyform, Lisp_Object var, Lisp_Object handlers)
|
|
1748 {
|
|
1749 /* This function can GC */
|
|
1750 EXTERNAL_LIST_LOOP_2 (handler, handlers)
|
|
1751 {
|
|
1752 if (NILP (handler))
|
|
1753 ;
|
|
1754 else if (CONSP (handler))
|
|
1755 {
|
|
1756 Lisp_Object conditions = XCAR (handler);
|
|
1757 /* CONDITIONS must a condition name or a list of condition names */
|
|
1758 if (SYMBOLP (conditions))
|
|
1759 ;
|
|
1760 else
|
|
1761 {
|
|
1762 EXTERNAL_LIST_LOOP_2 (condition, conditions)
|
|
1763 if (!SYMBOLP (condition))
|
|
1764 goto invalid_condition_handler;
|
|
1765 }
|
|
1766 }
|
|
1767 else
|
|
1768 {
|
|
1769 invalid_condition_handler:
|
563
|
1770 sferror ("Invalid condition handler", handler);
|
428
|
1771 }
|
|
1772 }
|
|
1773
|
|
1774 CHECK_SYMBOL (var);
|
|
1775
|
|
1776 return condition_case_1 (handlers,
|
|
1777 Feval, bodyform,
|
|
1778 run_condition_case_handlers,
|
|
1779 var);
|
|
1780 }
|
|
1781
|
|
1782 DEFUN ("condition-case", Fcondition_case, 2, UNEVALLED, 0, /*
|
|
1783 Regain control when an error is signalled.
|
|
1784 Usage looks like (condition-case VAR BODYFORM HANDLERS...).
|
|
1785 Executes BODYFORM and returns its value if no error happens.
|
|
1786 Each element of HANDLERS looks like (CONDITION-NAME BODY...)
|
|
1787 where the BODY is made of Lisp expressions.
|
|
1788
|
|
1789 A handler is applicable to an error if CONDITION-NAME is one of the
|
|
1790 error's condition names. If an error happens, the first applicable
|
|
1791 handler is run. As a special case, a CONDITION-NAME of t matches
|
|
1792 all errors, even those without the `error' condition name on them
|
|
1793 \(e.g. `quit').
|
|
1794
|
|
1795 The car of a handler may be a list of condition names
|
|
1796 instead of a single condition name.
|
|
1797
|
|
1798 When a handler handles an error,
|
|
1799 control returns to the condition-case and the handler BODY... is executed
|
|
1800 with VAR bound to (SIGNALED-CONDITIONS . SIGNAL-DATA).
|
|
1801 VAR may be nil; then you do not get access to the signal information.
|
|
1802
|
|
1803 The value of the last BODY form is returned from the condition-case.
|
|
1804 See also the function `signal' for more info.
|
|
1805
|
|
1806 Note that at the time the condition handler is invoked, the Lisp stack
|
|
1807 and the current catches, condition-cases, and bindings have all been
|
|
1808 popped back to the state they were in just before the call to
|
|
1809 `condition-case'. This means that resignalling the error from
|
|
1810 within the handler will not result in an infinite loop.
|
|
1811
|
|
1812 If you want to establish an error handler that is called with the
|
|
1813 Lisp stack, bindings, etc. as they were when `signal' was called,
|
|
1814 rather than when the handler was set, use `call-with-condition-handler'.
|
|
1815 */
|
|
1816 (args))
|
|
1817 {
|
|
1818 /* This function can GC */
|
|
1819 Lisp_Object var = XCAR (args);
|
|
1820 Lisp_Object bodyform = XCAR (XCDR (args));
|
|
1821 Lisp_Object handlers = XCDR (XCDR (args));
|
|
1822 return condition_case_3 (bodyform, var, handlers);
|
|
1823 }
|
|
1824
|
|
1825 DEFUN ("call-with-condition-handler", Fcall_with_condition_handler, 2, MANY, 0, /*
|
|
1826 Regain control when an error is signalled, without popping the stack.
|
|
1827 Usage looks like (call-with-condition-handler HANDLER FUNCTION &rest ARGS).
|
|
1828 This function is similar to `condition-case', but the handler is invoked
|
|
1829 with the same environment (Lisp stack, bindings, catches, condition-cases)
|
|
1830 that was current when `signal' was called, rather than when the handler
|
|
1831 was established.
|
|
1832
|
|
1833 HANDLER should be a function of one argument, which is a cons of the args
|
|
1834 \(SIG . DATA) that were passed to `signal'. It is invoked whenever
|
|
1835 `signal' is called (this differs from `condition-case', which allows
|
|
1836 you to specify which errors are trapped). If the handler function
|
|
1837 returns, `signal' continues as if the handler were never invoked.
|
|
1838 \(It continues to look for handlers established earlier than this one,
|
|
1839 and invokes the standard error-handler if none is found.)
|
|
1840 */
|
|
1841 (int nargs, Lisp_Object *args)) /* Note! Args side-effected! */
|
|
1842 {
|
|
1843 /* This function can GC */
|
|
1844 int speccount = specpdl_depth();
|
|
1845 Lisp_Object tem;
|
|
1846
|
|
1847 /* #### If there were a way to check that args[0] were a function
|
|
1848 which accepted one arg, that should be done here ... */
|
|
1849
|
|
1850 /* (handler-fun . handler-args) */
|
|
1851 tem = noseeum_cons (list1 (args[0]), Vcondition_handlers);
|
|
1852 record_unwind_protect (condition_bind_unwind, tem);
|
|
1853 Vcondition_handlers = tem;
|
|
1854
|
|
1855 /* Caller should have GC-protected args */
|
|
1856 return unbind_to (speccount, Ffuncall (nargs - 1, args + 1));
|
|
1857 }
|
|
1858
|
|
1859 static int
|
|
1860 condition_type_p (Lisp_Object type, Lisp_Object conditions)
|
|
1861 {
|
|
1862 if (EQ (type, Qt))
|
|
1863 /* (condition-case c # (t c)) catches -all- signals
|
|
1864 * Use with caution! */
|
|
1865 return 1;
|
|
1866
|
|
1867 if (SYMBOLP (type))
|
|
1868 return !NILP (Fmemq (type, conditions));
|
|
1869
|
|
1870 for (; CONSP (type); type = XCDR (type))
|
|
1871 if (!NILP (Fmemq (XCAR (type), conditions)))
|
|
1872 return 1;
|
|
1873
|
|
1874 return 0;
|
|
1875 }
|
|
1876
|
|
1877 static Lisp_Object
|
|
1878 return_from_signal (Lisp_Object value)
|
|
1879 {
|
|
1880 #if 1
|
|
1881 /* Most callers are not prepared to handle gc if this
|
|
1882 returns. So, since this feature is not very useful,
|
|
1883 take it out. */
|
|
1884 /* Have called debugger; return value to signaller */
|
|
1885 return value;
|
|
1886 #else /* But the reality is that that stinks, because: */
|
|
1887 /* GACK!!! Really want some way for debug-on-quit errors
|
|
1888 to be continuable!! */
|
563
|
1889 signal_error (Qunimplemented,
|
|
1890 "Returning a value from an error is no longer supported",
|
|
1891 Qunbound);
|
428
|
1892 #endif
|
|
1893 }
|
|
1894
|
|
1895 extern int in_display;
|
|
1896
|
|
1897
|
|
1898 /************************************************************************/
|
|
1899 /* the workhorse error-signaling function */
|
|
1900 /************************************************************************/
|
|
1901
|
|
1902 /* #### This function has not been synched with FSF. It diverges
|
|
1903 significantly. */
|
|
1904
|
|
1905 static Lisp_Object
|
|
1906 signal_1 (Lisp_Object sig, Lisp_Object data)
|
|
1907 {
|
|
1908 /* This function can GC */
|
|
1909 struct gcpro gcpro1, gcpro2;
|
|
1910 Lisp_Object conditions;
|
|
1911 Lisp_Object handlers;
|
|
1912 /* signal_call_debugger() could get called more than once
|
|
1913 (once when a call-with-condition-handler is about to
|
|
1914 be dealt with, and another when a condition-case handler
|
|
1915 is about to be invoked). So make sure the debugger and/or
|
|
1916 stack trace aren't done more than once. */
|
|
1917 int stack_trace_displayed = 0;
|
|
1918 int debugger_entered = 0;
|
|
1919 GCPRO2 (conditions, handlers);
|
|
1920
|
|
1921 if (!initialized)
|
|
1922 {
|
|
1923 /* who knows how much has been initialized? Safest bet is
|
|
1924 just to bomb out immediately. */
|
442
|
1925 /* let's not use stderr_out() here, because that does a bunch of
|
|
1926 things that might not be safe yet. */
|
428
|
1927 fprintf (stderr, "Error before initialization is complete!\n");
|
|
1928 abort ();
|
|
1929 }
|
|
1930
|
|
1931 if (gc_in_progress || in_display)
|
|
1932 /* This is one of many reasons why you can't run lisp code from redisplay.
|
|
1933 There is no sensible way to handle errors there. */
|
|
1934 abort ();
|
|
1935
|
|
1936 conditions = Fget (sig, Qerror_conditions, Qnil);
|
|
1937
|
|
1938 for (handlers = Vcondition_handlers;
|
|
1939 CONSP (handlers);
|
|
1940 handlers = XCDR (handlers))
|
|
1941 {
|
|
1942 Lisp_Object handler_fun = XCAR (XCAR (handlers));
|
|
1943 Lisp_Object handler_data = XCDR (XCAR (handlers));
|
|
1944 Lisp_Object outer_handlers = XCDR (handlers);
|
|
1945
|
|
1946 if (!UNBOUNDP (handler_fun))
|
|
1947 {
|
|
1948 /* call-with-condition-handler */
|
|
1949 Lisp_Object tem;
|
|
1950 Lisp_Object all_handlers = Vcondition_handlers;
|
|
1951 struct gcpro ngcpro1;
|
|
1952 NGCPRO1 (all_handlers);
|
|
1953 Vcondition_handlers = outer_handlers;
|
|
1954
|
|
1955 tem = signal_call_debugger (conditions, sig, data,
|
|
1956 outer_handlers, 1,
|
|
1957 &stack_trace_displayed,
|
|
1958 &debugger_entered);
|
|
1959 if (!UNBOUNDP (tem))
|
|
1960 RETURN_NUNGCPRO (return_from_signal (tem));
|
|
1961
|
|
1962 tem = Fcons (sig, data);
|
|
1963 if (NILP (handler_data))
|
|
1964 tem = call1 (handler_fun, tem);
|
|
1965 else
|
|
1966 {
|
|
1967 /* (This code won't be used (for now?).) */
|
|
1968 struct gcpro nngcpro1;
|
|
1969 Lisp_Object args[3];
|
|
1970 NNGCPRO1 (args[0]);
|
|
1971 nngcpro1.nvars = 3;
|
|
1972 args[0] = handler_fun;
|
|
1973 args[1] = tem;
|
|
1974 args[2] = handler_data;
|
|
1975 nngcpro1.var = args;
|
|
1976 tem = Fapply (3, args);
|
|
1977 NNUNGCPRO;
|
|
1978 }
|
|
1979 NUNGCPRO;
|
|
1980 #if 0
|
|
1981 if (!EQ (tem, Qsignal))
|
|
1982 return return_from_signal (tem);
|
|
1983 #endif
|
|
1984 /* If handler didn't throw, try another handler */
|
|
1985 Vcondition_handlers = all_handlers;
|
|
1986 }
|
|
1987
|
|
1988 /* It's a condition-case handler */
|
|
1989
|
|
1990 /* t is used by handlers for all conditions, set up by C code.
|
|
1991 * debugger is not called even if debug_on_error */
|
|
1992 else if (EQ (handler_data, Qt))
|
|
1993 {
|
|
1994 UNGCPRO;
|
|
1995 return Fthrow (handlers, Fcons (sig, data));
|
|
1996 }
|
|
1997 /* `error' is used similarly to the way `t' is used, but in
|
|
1998 addition it invokes the debugger if debug_on_error.
|
|
1999 This is normally used for the outer command-loop error
|
|
2000 handler. */
|
|
2001 else if (EQ (handler_data, Qerror))
|
|
2002 {
|
|
2003 Lisp_Object tem = signal_call_debugger (conditions, sig, data,
|
|
2004 outer_handlers, 0,
|
|
2005 &stack_trace_displayed,
|
|
2006 &debugger_entered);
|
|
2007
|
|
2008 UNGCPRO;
|
|
2009 if (!UNBOUNDP (tem))
|
|
2010 return return_from_signal (tem);
|
|
2011
|
|
2012 tem = Fcons (sig, data);
|
|
2013 return Fthrow (handlers, tem);
|
|
2014 }
|
|
2015 else
|
|
2016 {
|
|
2017 /* handler established by real (Lisp) condition-case */
|
|
2018 Lisp_Object h;
|
|
2019
|
|
2020 for (h = handler_data; CONSP (h); h = Fcdr (h))
|
|
2021 {
|
|
2022 Lisp_Object clause = Fcar (h);
|
|
2023 Lisp_Object tem = Fcar (clause);
|
|
2024
|
|
2025 if (condition_type_p (tem, conditions))
|
|
2026 {
|
|
2027 tem = signal_call_debugger (conditions, sig, data,
|
|
2028 outer_handlers, 1,
|
|
2029 &stack_trace_displayed,
|
|
2030 &debugger_entered);
|
|
2031 UNGCPRO;
|
|
2032 if (!UNBOUNDP (tem))
|
|
2033 return return_from_signal (tem);
|
|
2034
|
|
2035 /* Doesn't return */
|
|
2036 tem = Fcons (Fcons (sig, data), Fcdr (clause));
|
|
2037 return Fthrow (handlers, tem);
|
|
2038 }
|
|
2039 }
|
|
2040 }
|
|
2041 }
|
|
2042
|
|
2043 /* If no handler is present now, try to run the debugger,
|
|
2044 and if that fails, throw to top level.
|
|
2045
|
|
2046 #### The only time that no handler is present is during
|
|
2047 temacs or perhaps very early in XEmacs. In both cases,
|
|
2048 there is no 'top-level catch. (That's why the
|
|
2049 "bomb-out" hack was added.)
|
|
2050
|
|
2051 #### Fix this horrifitude!
|
|
2052 */
|
|
2053 signal_call_debugger (conditions, sig, data, Qnil, 0,
|
|
2054 &stack_trace_displayed,
|
|
2055 &debugger_entered);
|
|
2056 UNGCPRO;
|
|
2057 throw_or_bomb_out (Qtop_level, Qt, 1, sig, data); /* Doesn't return */
|
|
2058 return Qnil;
|
|
2059 }
|
|
2060
|
|
2061
|
|
2062 /****************** Error functions class 1 ******************/
|
|
2063
|
|
2064 /* Class 1: General functions that signal an error.
|
|
2065 These functions take an error type and a list of associated error
|
|
2066 data. */
|
|
2067
|
|
2068 /* The simplest external error function: it would be called
|
563
|
2069 signal_continuable_error_1() in the terminology below, but it's
|
428
|
2070 Lisp-callable. */
|
|
2071
|
|
2072 DEFUN ("signal", Fsignal, 2, 2, 0, /*
|
|
2073 Signal a continuable error. Args are ERROR-SYMBOL, and associated DATA.
|
|
2074 An error symbol is a symbol defined using `define-error'.
|
|
2075 DATA should be a list. Its elements are printed as part of the error message.
|
|
2076 If the signal is handled, DATA is made available to the handler.
|
|
2077 See also the function `signal-error', and the functions to handle errors:
|
|
2078 `condition-case' and `call-with-condition-handler'.
|
|
2079
|
|
2080 Note that this function can return, if the debugger is invoked and the
|
|
2081 user invokes the "return from signal" option.
|
|
2082 */
|
|
2083 (error_symbol, data))
|
|
2084 {
|
|
2085 /* Fsignal() is one of these functions that's called all the time
|
|
2086 with newly-created Lisp objects. We allow this; but we must GC-
|
|
2087 protect the objects because all sorts of weird stuff could
|
|
2088 happen. */
|
|
2089
|
|
2090 struct gcpro gcpro1;
|
|
2091
|
|
2092 GCPRO1 (data);
|
|
2093 if (!NILP (Vcurrent_error_state))
|
|
2094 {
|
|
2095 if (!NILP (Vcurrent_warning_class))
|
|
2096 warn_when_safe_lispobj (Vcurrent_warning_class, Qwarning,
|
|
2097 Fcons (error_symbol, data));
|
|
2098 Fthrow (Qunbound_suspended_errors_tag, Qnil);
|
|
2099 abort (); /* Better not get here! */
|
|
2100 }
|
|
2101 RETURN_UNGCPRO (signal_1 (error_symbol, data));
|
|
2102 }
|
|
2103
|
|
2104 /* Signal a non-continuable error. */
|
|
2105
|
|
2106 DOESNT_RETURN
|
563
|
2107 signal_error_1 (Lisp_Object sig, Lisp_Object data)
|
428
|
2108 {
|
|
2109 for (;;)
|
|
2110 Fsignal (sig, data);
|
|
2111 }
|
442
|
2112 #ifdef ERROR_CHECK_TYPECHECK
|
|
2113 void
|
|
2114 check_error_state_sanity (void)
|
|
2115 {
|
|
2116 struct catchtag *c;
|
|
2117 int found_error_tag = 0;
|
|
2118
|
|
2119 for (c = catchlist; c; c = c->next)
|
|
2120 {
|
|
2121 if (EQ (c->tag, Qunbound_suspended_errors_tag))
|
|
2122 {
|
|
2123 found_error_tag = 1;
|
|
2124 break;
|
|
2125 }
|
|
2126 }
|
|
2127
|
|
2128 assert (found_error_tag || NILP (Vcurrent_error_state));
|
|
2129 }
|
|
2130 #endif
|
428
|
2131
|
|
2132 static Lisp_Object
|
|
2133 restore_current_warning_class (Lisp_Object warning_class)
|
|
2134 {
|
|
2135 Vcurrent_warning_class = warning_class;
|
|
2136 return Qnil;
|
|
2137 }
|
|
2138
|
|
2139 static Lisp_Object
|
|
2140 restore_current_error_state (Lisp_Object error_state)
|
|
2141 {
|
|
2142 Vcurrent_error_state = error_state;
|
|
2143 return Qnil;
|
|
2144 }
|
|
2145
|
442
|
2146 static Lisp_Object
|
|
2147 call_with_suspended_errors_1 (Lisp_Object opaque_arg)
|
|
2148 {
|
|
2149 Lisp_Object val;
|
|
2150 Lisp_Object *kludgy_args = (Lisp_Object *) get_opaque_ptr (opaque_arg);
|
|
2151 Lisp_Object no_error = kludgy_args[2];
|
|
2152 int speccount = specpdl_depth ();
|
|
2153
|
|
2154 if (!EQ (Vcurrent_error_state, no_error))
|
|
2155 {
|
|
2156 record_unwind_protect (restore_current_error_state,
|
|
2157 Vcurrent_error_state);
|
|
2158 Vcurrent_error_state = no_error;
|
|
2159 }
|
|
2160 PRIMITIVE_FUNCALL (val, get_opaque_ptr (kludgy_args[0]),
|
|
2161 kludgy_args + 3, XINT (kludgy_args[1]));
|
|
2162 return unbind_to (speccount, val);
|
|
2163 }
|
|
2164
|
428
|
2165 /* Many functions would like to do one of three things if an error
|
|
2166 occurs:
|
|
2167
|
|
2168 (1) signal the error, as usual.
|
|
2169 (2) silently fail and return some error value.
|
|
2170 (3) do as (2) but issue a warning in the process.
|
|
2171
|
578
|
2172 Currently there's lots of stuff that passes an Error_Behavior
|
428
|
2173 value and calls maybe_signal_error() and other such functions.
|
|
2174 This approach is inherently error-prone and broken. A much
|
|
2175 more robust and easier approach is to use call_with_suspended_errors().
|
|
2176 Wrap this around any function in which you might want errors
|
|
2177 to not be errors.
|
|
2178 */
|
|
2179
|
|
2180 Lisp_Object
|
|
2181 call_with_suspended_errors (lisp_fn_t fun, volatile Lisp_Object retval,
|
578
|
2182 Lisp_Object class, Error_Behavior errb,
|
428
|
2183 int nargs, ...)
|
|
2184 {
|
|
2185 va_list vargs;
|
|
2186 int speccount;
|
442
|
2187 Lisp_Object kludgy_args[23];
|
|
2188 Lisp_Object *args = kludgy_args + 3;
|
428
|
2189 int i;
|
|
2190 Lisp_Object no_error;
|
|
2191
|
|
2192 assert (SYMBOLP (class)); /* sanity-check */
|
|
2193 assert (!NILP (class));
|
|
2194 assert (nargs >= 0 && nargs < 20);
|
|
2195
|
|
2196 /* ERROR_ME means don't trap errors. (However, if errors are
|
|
2197 already trapped, we leave them trapped.)
|
|
2198
|
|
2199 Otherwise, we trap errors, and trap warnings if ERROR_ME_WARN.
|
|
2200
|
|
2201 If ERROR_ME_NOT, it causes no warnings even if warnings
|
|
2202 were previously enabled. However, we never change the
|
|
2203 warning class from one to another. */
|
|
2204 if (!ERRB_EQ (errb, ERROR_ME))
|
|
2205 {
|
|
2206 if (ERRB_EQ (errb, ERROR_ME_NOT)) /* person wants no warnings */
|
|
2207 class = Qnil;
|
|
2208 errb = ERROR_ME_NOT;
|
|
2209 no_error = Qt;
|
|
2210 }
|
|
2211 else
|
|
2212 no_error = Qnil;
|
|
2213
|
|
2214 va_start (vargs, nargs);
|
|
2215 for (i = 0; i < nargs; i++)
|
|
2216 args[i] = va_arg (vargs, Lisp_Object);
|
|
2217 va_end (vargs);
|
|
2218
|
|
2219 /* If error-checking is not disabled, just call the function.
|
|
2220 It's important not to override disabled error-checking with
|
|
2221 enabled error-checking. */
|
|
2222
|
|
2223 if (ERRB_EQ (errb, ERROR_ME))
|
|
2224 {
|
|
2225 Lisp_Object val;
|
|
2226 PRIMITIVE_FUNCALL (val, fun, args, nargs);
|
|
2227 return val;
|
|
2228 }
|
|
2229
|
442
|
2230 speccount = specpdl_depth ();
|
428
|
2231 if (NILP (class) || NILP (Vcurrent_warning_class))
|
|
2232 {
|
|
2233 /* If we're currently calling for no warnings, then make it so.
|
|
2234 If we're currently calling for warnings and we weren't
|
|
2235 previously, then set our warning class; otherwise, leave
|
|
2236 the existing one alone. */
|
|
2237 record_unwind_protect (restore_current_warning_class,
|
|
2238 Vcurrent_warning_class);
|
|
2239 Vcurrent_warning_class = class;
|
|
2240 }
|
|
2241
|
|
2242 {
|
|
2243 int threw;
|
|
2244 Lisp_Object the_retval;
|
|
2245 Lisp_Object opaque1 = make_opaque_ptr (kludgy_args);
|
|
2246 Lisp_Object opaque2 = make_opaque_ptr ((void *) fun);
|
|
2247 struct gcpro gcpro1, gcpro2;
|
|
2248
|
|
2249 GCPRO2 (opaque1, opaque2);
|
|
2250 kludgy_args[0] = opaque2;
|
|
2251 kludgy_args[1] = make_int (nargs);
|
442
|
2252 kludgy_args[2] = no_error;
|
428
|
2253 the_retval = internal_catch (Qunbound_suspended_errors_tag,
|
|
2254 call_with_suspended_errors_1,
|
|
2255 opaque1, &threw);
|
|
2256 free_opaque_ptr (opaque1);
|
|
2257 free_opaque_ptr (opaque2);
|
|
2258 UNGCPRO;
|
|
2259 /* Use the returned value except in non-local exit, when
|
|
2260 RETVAL applies. */
|
|
2261 /* Some perverse compilers require the perverse cast below. */
|
|
2262 return unbind_to (speccount,
|
|
2263 threw ? *((Lisp_Object*) &(retval)) : the_retval);
|
|
2264 }
|
|
2265 }
|
|
2266
|
|
2267 /* Signal a non-continuable error or display a warning or do nothing,
|
|
2268 according to ERRB. CLASS is the class of warning and should
|
|
2269 refer to what sort of operation is being done (e.g. Qtoolbar,
|
|
2270 Qresource, etc.). */
|
|
2271
|
|
2272 void
|
563
|
2273 maybe_signal_error_1 (Lisp_Object sig, Lisp_Object data, Lisp_Object class,
|
578
|
2274 Error_Behavior errb)
|
428
|
2275 {
|
|
2276 if (ERRB_EQ (errb, ERROR_ME_NOT))
|
|
2277 return;
|
|
2278 else if (ERRB_EQ (errb, ERROR_ME_WARN))
|
|
2279 warn_when_safe_lispobj (class, Qwarning, Fcons (sig, data));
|
|
2280 else
|
|
2281 for (;;)
|
|
2282 Fsignal (sig, data);
|
|
2283 }
|
|
2284
|
|
2285 /* Signal a continuable error or display a warning or do nothing,
|
|
2286 according to ERRB. */
|
|
2287
|
|
2288 Lisp_Object
|
563
|
2289 maybe_signal_continuable_error_1 (Lisp_Object sig, Lisp_Object data,
|
578
|
2290 Lisp_Object class, Error_Behavior errb)
|
428
|
2291 {
|
|
2292 if (ERRB_EQ (errb, ERROR_ME_NOT))
|
|
2293 return Qnil;
|
|
2294 else if (ERRB_EQ (errb, ERROR_ME_WARN))
|
|
2295 {
|
|
2296 warn_when_safe_lispobj (class, Qwarning, Fcons (sig, data));
|
|
2297 return Qnil;
|
|
2298 }
|
|
2299 else
|
|
2300 return Fsignal (sig, data);
|
|
2301 }
|
|
2302
|
|
2303
|
|
2304 /****************** Error functions class 2 ******************/
|
|
2305
|
563
|
2306 /* Class 2: Signal an error with a string and an associated object.
|
|
2307 Normally these functions are used to attach one associated object,
|
|
2308 but to attach no objects, specify Qunbound for FROB, and for more
|
|
2309 than one object, make a list of the objects with Qunbound as the
|
|
2310 first element. (If you have specifically two objects to attach,
|
|
2311 consider using the function in class 3 below.) These functions
|
|
2312 signal an error of a specified type, whose data is one or more
|
|
2313 objects (usually two), a string the related Lisp object(s)
|
|
2314 specified as FROB. */
|
|
2315
|
|
2316 /* Out of REASON and FROB, return a list of elements suitable for passing
|
|
2317 to signal_error_1(). */
|
|
2318
|
|
2319 Lisp_Object
|
665
|
2320 build_error_data (const CIntbyte *reason, Lisp_Object frob)
|
563
|
2321 {
|
|
2322 if (EQ (frob, Qunbound))
|
|
2323 frob = Qnil;
|
|
2324 else if (CONSP (frob) && EQ (XCAR (frob), Qunbound))
|
|
2325 frob = XCDR (frob);
|
|
2326 else
|
|
2327 frob = list1 (frob);
|
|
2328 if (!reason)
|
|
2329 return frob;
|
|
2330 else
|
|
2331 return Fcons (build_translated_string (reason), frob);
|
|
2332 }
|
|
2333
|
|
2334 DOESNT_RETURN
|
665
|
2335 signal_error (Lisp_Object type, const CIntbyte *reason, Lisp_Object frob)
|
563
|
2336 {
|
|
2337 signal_error_1 (type, build_error_data (reason, frob));
|
|
2338 }
|
|
2339
|
|
2340 void
|
665
|
2341 maybe_signal_error (Lisp_Object type, const CIntbyte *reason,
|
563
|
2342 Lisp_Object frob, Lisp_Object class,
|
578
|
2343 Error_Behavior errb)
|
563
|
2344 {
|
|
2345 /* Optimization: */
|
|
2346 if (ERRB_EQ (errb, ERROR_ME_NOT))
|
|
2347 return;
|
|
2348 maybe_signal_error_1 (type, build_error_data (reason, frob), class, errb);
|
|
2349 }
|
|
2350
|
|
2351 Lisp_Object
|
665
|
2352 signal_continuable_error (Lisp_Object type, const CIntbyte *reason,
|
563
|
2353 Lisp_Object frob)
|
|
2354 {
|
|
2355 return Fsignal (type, build_error_data (reason, frob));
|
|
2356 }
|
|
2357
|
|
2358 Lisp_Object
|
665
|
2359 maybe_signal_continuable_error (Lisp_Object type, const CIntbyte *reason,
|
563
|
2360 Lisp_Object frob, Lisp_Object class,
|
578
|
2361 Error_Behavior errb)
|
563
|
2362 {
|
|
2363 /* Optimization: */
|
|
2364 if (ERRB_EQ (errb, ERROR_ME_NOT))
|
|
2365 return Qnil;
|
|
2366 return maybe_signal_continuable_error_1 (type,
|
|
2367 build_error_data (reason, frob),
|
|
2368 class, errb);
|
|
2369 }
|
|
2370
|
|
2371
|
|
2372 /****************** Error functions class 3 ******************/
|
|
2373
|
|
2374 /* Class 3: Signal an error with a string and two associated objects.
|
|
2375 These functions signal an error of a specified type, whose data
|
|
2376 is three objects, a string and two related Lisp objects.
|
|
2377 (The equivalent could be accomplished using the class 2 functions,
|
|
2378 but these are more convenient in this particular case.) */
|
|
2379
|
|
2380 DOESNT_RETURN
|
665
|
2381 signal_error_2 (Lisp_Object type, const CIntbyte *reason,
|
563
|
2382 Lisp_Object frob0, Lisp_Object frob1)
|
|
2383 {
|
|
2384 signal_error_1 (type, list3 (build_translated_string (reason), frob0,
|
|
2385 frob1));
|
|
2386 }
|
|
2387
|
|
2388 void
|
665
|
2389 maybe_signal_error_2 (Lisp_Object type, const CIntbyte *reason,
|
563
|
2390 Lisp_Object frob0, Lisp_Object frob1,
|
578
|
2391 Lisp_Object class, Error_Behavior errb)
|
563
|
2392 {
|
|
2393 /* Optimization: */
|
|
2394 if (ERRB_EQ (errb, ERROR_ME_NOT))
|
|
2395 return;
|
|
2396 maybe_signal_error_1 (type, list3 (build_translated_string (reason), frob0,
|
|
2397 frob1), class, errb);
|
|
2398 }
|
|
2399
|
|
2400 Lisp_Object
|
665
|
2401 signal_continuable_error_2 (Lisp_Object type, const CIntbyte *reason,
|
563
|
2402 Lisp_Object frob0, Lisp_Object frob1)
|
|
2403 {
|
|
2404 return Fsignal (type, list3 (build_translated_string (reason), frob0,
|
|
2405 frob1));
|
|
2406 }
|
|
2407
|
|
2408 Lisp_Object
|
665
|
2409 maybe_signal_continuable_error_2 (Lisp_Object type, const CIntbyte *reason,
|
563
|
2410 Lisp_Object frob0, Lisp_Object frob1,
|
578
|
2411 Lisp_Object class, Error_Behavior errb)
|
563
|
2412 {
|
|
2413 /* Optimization: */
|
|
2414 if (ERRB_EQ (errb, ERROR_ME_NOT))
|
|
2415 return Qnil;
|
|
2416 return maybe_signal_continuable_error_1
|
|
2417 (type, list3 (build_translated_string (reason), frob0, frob1),
|
|
2418 class, errb);
|
|
2419 }
|
|
2420
|
|
2421
|
|
2422 /****************** Error functions class 4 ******************/
|
|
2423
|
|
2424 /* Class 4: Printf-like functions that signal an error.
|
442
|
2425 These functions signal an error of a specified type, whose data
|
428
|
2426 is a single string, created using the arguments. */
|
|
2427
|
|
2428 DOESNT_RETURN
|
665
|
2429 signal_ferror (Lisp_Object type, const CIntbyte *fmt, ...)
|
442
|
2430 {
|
|
2431 Lisp_Object obj;
|
|
2432 va_list args;
|
|
2433
|
|
2434 va_start (args, fmt);
|
665
|
2435 obj = emacs_doprnt_string_va ((const Intbyte *) GETTEXT (fmt), Qnil, -1,
|
442
|
2436 args);
|
|
2437 va_end (args);
|
|
2438
|
|
2439 /* Fsignal GC-protects its args */
|
563
|
2440 signal_error (type, 0, obj);
|
442
|
2441 }
|
|
2442
|
|
2443 void
|
578
|
2444 maybe_signal_ferror (Lisp_Object type, Lisp_Object class, Error_Behavior errb,
|
665
|
2445 const CIntbyte *fmt, ...)
|
442
|
2446 {
|
|
2447 Lisp_Object obj;
|
|
2448 va_list args;
|
|
2449
|
|
2450 /* Optimization: */
|
|
2451 if (ERRB_EQ (errb, ERROR_ME_NOT))
|
|
2452 return;
|
|
2453
|
|
2454 va_start (args, fmt);
|
665
|
2455 obj = emacs_doprnt_string_va ((const Intbyte *) GETTEXT (fmt), Qnil, -1,
|
442
|
2456 args);
|
|
2457 va_end (args);
|
|
2458
|
|
2459 /* Fsignal GC-protects its args */
|
563
|
2460 maybe_signal_error (type, 0, obj, class, errb);
|
442
|
2461 }
|
|
2462
|
|
2463 Lisp_Object
|
665
|
2464 signal_continuable_ferror (Lisp_Object type, const CIntbyte *fmt, ...)
|
428
|
2465 {
|
|
2466 Lisp_Object obj;
|
|
2467 va_list args;
|
|
2468
|
|
2469 va_start (args, fmt);
|
665
|
2470 obj = emacs_doprnt_string_va ((const Intbyte *) GETTEXT (fmt), Qnil, -1,
|
442
|
2471 args);
|
|
2472 va_end (args);
|
|
2473
|
|
2474 /* Fsignal GC-protects its args */
|
|
2475 return Fsignal (type, list1 (obj));
|
|
2476 }
|
|
2477
|
|
2478 Lisp_Object
|
563
|
2479 maybe_signal_continuable_ferror (Lisp_Object type, Lisp_Object class,
|
665
|
2480 Error_Behavior errb, const CIntbyte *fmt, ...)
|
442
|
2481 {
|
|
2482 Lisp_Object obj;
|
|
2483 va_list args;
|
|
2484
|
|
2485 /* Optimization: */
|
|
2486 if (ERRB_EQ (errb, ERROR_ME_NOT))
|
|
2487 return Qnil;
|
|
2488
|
|
2489 va_start (args, fmt);
|
665
|
2490 obj = emacs_doprnt_string_va ((const Intbyte *) GETTEXT (fmt), Qnil, -1,
|
442
|
2491 args);
|
|
2492 va_end (args);
|
|
2493
|
|
2494 /* Fsignal GC-protects its args */
|
563
|
2495 return maybe_signal_continuable_error (type, 0, obj, class, errb);
|
442
|
2496 }
|
|
2497
|
|
2498
|
|
2499 /****************** Error functions class 5 ******************/
|
|
2500
|
563
|
2501 /* Class 5: Printf-like functions that signal an error.
|
442
|
2502 These functions signal an error of a specified type, whose data
|
563
|
2503 is a one or more objects, a string (created using the arguments)
|
|
2504 and additional Lisp objects specified in FROB. (The syntax of FROB
|
|
2505 is the same as for class 2.)
|
|
2506
|
|
2507 There is no need for a class 6 because you can always attach 2
|
|
2508 objects using class 5 (for FROB, specify a list with three
|
|
2509 elements, the first of which is Qunbound), and these functions are
|
|
2510 not commonly used.
|
|
2511 */
|
442
|
2512
|
|
2513 DOESNT_RETURN
|
665
|
2514 signal_ferror_with_frob (Lisp_Object type, Lisp_Object frob, const CIntbyte *fmt,
|
563
|
2515 ...)
|
442
|
2516 {
|
|
2517 Lisp_Object obj;
|
|
2518 va_list args;
|
|
2519
|
|
2520 va_start (args, fmt);
|
665
|
2521 obj = emacs_doprnt_string_va ((const Intbyte *) GETTEXT (fmt), Qnil, -1,
|
442
|
2522 args);
|
|
2523 va_end (args);
|
|
2524
|
|
2525 /* Fsignal GC-protects its args */
|
563
|
2526 signal_error_1 (type, Fcons (obj, build_error_data (0, frob)));
|
442
|
2527 }
|
|
2528
|
|
2529 void
|
563
|
2530 maybe_signal_ferror_with_frob (Lisp_Object type, Lisp_Object frob,
|
578
|
2531 Lisp_Object class, Error_Behavior errb,
|
665
|
2532 const CIntbyte *fmt, ...)
|
442
|
2533 {
|
|
2534 Lisp_Object obj;
|
|
2535 va_list args;
|
|
2536
|
|
2537 /* Optimization: */
|
|
2538 if (ERRB_EQ (errb, ERROR_ME_NOT))
|
|
2539 return;
|
|
2540
|
|
2541 va_start (args, fmt);
|
665
|
2542 obj = emacs_doprnt_string_va ((const Intbyte *) GETTEXT (fmt), Qnil, -1,
|
428
|
2543 args);
|
|
2544 va_end (args);
|
|
2545
|
|
2546 /* Fsignal GC-protects its args */
|
563
|
2547 maybe_signal_error_1 (type, Fcons (obj, build_error_data (0, frob)), class,
|
|
2548 errb);
|
428
|
2549 }
|
|
2550
|
|
2551 Lisp_Object
|
563
|
2552 signal_continuable_ferror_with_frob (Lisp_Object type, Lisp_Object frob,
|
665
|
2553 const CIntbyte *fmt, ...)
|
428
|
2554 {
|
|
2555 Lisp_Object obj;
|
|
2556 va_list args;
|
|
2557
|
|
2558 va_start (args, fmt);
|
665
|
2559 obj = emacs_doprnt_string_va ((const Intbyte *) GETTEXT (fmt), Qnil, -1,
|
428
|
2560 args);
|
|
2561 va_end (args);
|
|
2562
|
|
2563 /* Fsignal GC-protects its args */
|
563
|
2564 return Fsignal (type, Fcons (obj, build_error_data (0, frob)));
|
428
|
2565 }
|
|
2566
|
|
2567 Lisp_Object
|
563
|
2568 maybe_signal_continuable_ferror_with_frob (Lisp_Object type, Lisp_Object frob,
|
|
2569 Lisp_Object class,
|
578
|
2570 Error_Behavior errb,
|
665
|
2571 const CIntbyte *fmt, ...)
|
428
|
2572 {
|
|
2573 Lisp_Object obj;
|
|
2574 va_list args;
|
|
2575
|
|
2576 /* Optimization: */
|
|
2577 if (ERRB_EQ (errb, ERROR_ME_NOT))
|
|
2578 return Qnil;
|
|
2579
|
|
2580 va_start (args, fmt);
|
665
|
2581 obj = emacs_doprnt_string_va ((const Intbyte *) GETTEXT (fmt), Qnil, -1,
|
428
|
2582 args);
|
|
2583 va_end (args);
|
|
2584
|
|
2585 /* Fsignal GC-protects its args */
|
563
|
2586 return maybe_signal_continuable_error_1 (type,
|
|
2587 Fcons (obj,
|
|
2588 build_error_data (0, frob)),
|
|
2589 class, errb);
|
428
|
2590 }
|
|
2591
|
|
2592
|
|
2593 /* This is what the QUIT macro calls to signal a quit */
|
|
2594 void
|
|
2595 signal_quit (void)
|
|
2596 {
|
|
2597 /* This function can GC */
|
|
2598 if (EQ (Vquit_flag, Qcritical))
|
|
2599 debug_on_quit |= 2; /* set critical bit. */
|
|
2600 Vquit_flag = Qnil;
|
|
2601 /* note that this is continuable. */
|
|
2602 Fsignal (Qquit, Qnil);
|
|
2603 }
|
|
2604
|
|
2605
|
563
|
2606 /************************ convenience error functions ***********************/
|
|
2607
|
436
|
2608 Lisp_Object
|
428
|
2609 signal_void_function_error (Lisp_Object function)
|
|
2610 {
|
436
|
2611 return Fsignal (Qvoid_function, list1 (function));
|
428
|
2612 }
|
|
2613
|
436
|
2614 Lisp_Object
|
428
|
2615 signal_invalid_function_error (Lisp_Object function)
|
|
2616 {
|
436
|
2617 return Fsignal (Qinvalid_function, list1 (function));
|
428
|
2618 }
|
|
2619
|
436
|
2620 Lisp_Object
|
428
|
2621 signal_wrong_number_of_arguments_error (Lisp_Object function, int nargs)
|
|
2622 {
|
436
|
2623 return Fsignal (Qwrong_number_of_arguments,
|
|
2624 list2 (function, make_int (nargs)));
|
428
|
2625 }
|
|
2626
|
|
2627 /* Used in list traversal macros for efficiency. */
|
436
|
2628 DOESNT_RETURN
|
428
|
2629 signal_malformed_list_error (Lisp_Object list)
|
|
2630 {
|
563
|
2631 signal_error (Qmalformed_list, 0, list);
|
428
|
2632 }
|
|
2633
|
436
|
2634 DOESNT_RETURN
|
428
|
2635 signal_malformed_property_list_error (Lisp_Object list)
|
|
2636 {
|
563
|
2637 signal_error (Qmalformed_property_list, 0, list);
|
428
|
2638 }
|
|
2639
|
436
|
2640 DOESNT_RETURN
|
428
|
2641 signal_circular_list_error (Lisp_Object list)
|
|
2642 {
|
563
|
2643 signal_error (Qcircular_list, 0, list);
|
428
|
2644 }
|
|
2645
|
436
|
2646 DOESNT_RETURN
|
428
|
2647 signal_circular_property_list_error (Lisp_Object list)
|
|
2648 {
|
563
|
2649 signal_error (Qcircular_property_list, 0, list);
|
428
|
2650 }
|
442
|
2651
|
|
2652 DOESNT_RETURN
|
665
|
2653 syntax_error (const CIntbyte *reason, Lisp_Object frob)
|
442
|
2654 {
|
563
|
2655 signal_error (Qsyntax_error, reason, frob);
|
442
|
2656 }
|
|
2657
|
|
2658 DOESNT_RETURN
|
665
|
2659 syntax_error_2 (const CIntbyte *reason, Lisp_Object frob1, Lisp_Object frob2)
|
442
|
2660 {
|
563
|
2661 signal_error_2 (Qsyntax_error, reason, frob1, frob2);
|
|
2662 }
|
|
2663
|
|
2664 void
|
665
|
2665 maybe_syntax_error (const CIntbyte *reason, Lisp_Object frob,
|
578
|
2666 Lisp_Object class, Error_Behavior errb)
|
563
|
2667 {
|
|
2668 maybe_signal_error (Qsyntax_error, reason, frob, class, errb);
|
|
2669 }
|
|
2670
|
|
2671 DOESNT_RETURN
|
665
|
2672 sferror (const CIntbyte *reason, Lisp_Object frob)
|
563
|
2673 {
|
|
2674 signal_error (Qstructure_formation_error, reason, frob);
|
|
2675 }
|
|
2676
|
|
2677 DOESNT_RETURN
|
665
|
2678 sferror_2 (const CIntbyte *reason, Lisp_Object frob1, Lisp_Object frob2)
|
563
|
2679 {
|
|
2680 signal_error_2 (Qstructure_formation_error, reason, frob1, frob2);
|
|
2681 }
|
|
2682
|
|
2683 void
|
665
|
2684 maybe_sferror (const CIntbyte *reason, Lisp_Object frob,
|
578
|
2685 Lisp_Object class, Error_Behavior errb)
|
563
|
2686 {
|
|
2687 maybe_signal_error (Qstructure_formation_error, reason, frob, class, errb);
|
442
|
2688 }
|
|
2689
|
|
2690 DOESNT_RETURN
|
665
|
2691 invalid_argument (const CIntbyte *reason, Lisp_Object frob)
|
442
|
2692 {
|
563
|
2693 signal_error (Qinvalid_argument, reason, frob);
|
442
|
2694 }
|
|
2695
|
|
2696 DOESNT_RETURN
|
665
|
2697 invalid_argument_2 (const CIntbyte *reason, Lisp_Object frob1,
|
609
|
2698 Lisp_Object frob2)
|
442
|
2699 {
|
563
|
2700 signal_error_2 (Qinvalid_argument, reason, frob1, frob2);
|
|
2701 }
|
|
2702
|
|
2703 void
|
665
|
2704 maybe_invalid_argument (const CIntbyte *reason, Lisp_Object frob,
|
578
|
2705 Lisp_Object class, Error_Behavior errb)
|
563
|
2706 {
|
|
2707 maybe_signal_error (Qinvalid_argument, reason, frob, class, errb);
|
|
2708 }
|
|
2709
|
|
2710 DOESNT_RETURN
|
665
|
2711 invalid_constant (const CIntbyte *reason, Lisp_Object frob)
|
563
|
2712 {
|
|
2713 signal_error (Qinvalid_constant, reason, frob);
|
|
2714 }
|
|
2715
|
|
2716 DOESNT_RETURN
|
665
|
2717 invalid_constant_2 (const CIntbyte *reason, Lisp_Object frob1,
|
609
|
2718 Lisp_Object frob2)
|
563
|
2719 {
|
|
2720 signal_error_2 (Qinvalid_constant, reason, frob1, frob2);
|
|
2721 }
|
|
2722
|
|
2723 void
|
665
|
2724 maybe_invalid_constant (const CIntbyte *reason, Lisp_Object frob,
|
578
|
2725 Lisp_Object class, Error_Behavior errb)
|
563
|
2726 {
|
|
2727 maybe_signal_error (Qinvalid_constant, reason, frob, class, errb);
|
442
|
2728 }
|
|
2729
|
|
2730 DOESNT_RETURN
|
665
|
2731 invalid_operation (const CIntbyte *reason, Lisp_Object frob)
|
442
|
2732 {
|
563
|
2733 signal_error (Qinvalid_operation, reason, frob);
|
442
|
2734 }
|
|
2735
|
|
2736 DOESNT_RETURN
|
665
|
2737 invalid_operation_2 (const CIntbyte *reason, Lisp_Object frob1,
|
609
|
2738 Lisp_Object frob2)
|
442
|
2739 {
|
563
|
2740 signal_error_2 (Qinvalid_operation, reason, frob1, frob2);
|
|
2741 }
|
|
2742
|
|
2743 void
|
665
|
2744 maybe_invalid_operation (const CIntbyte *reason, Lisp_Object frob,
|
578
|
2745 Lisp_Object class, Error_Behavior errb)
|
563
|
2746 {
|
|
2747 maybe_signal_error (Qinvalid_operation, reason, frob, class, errb);
|
442
|
2748 }
|
|
2749
|
|
2750 DOESNT_RETURN
|
665
|
2751 invalid_change (const CIntbyte *reason, Lisp_Object frob)
|
442
|
2752 {
|
563
|
2753 signal_error (Qinvalid_change, reason, frob);
|
442
|
2754 }
|
|
2755
|
|
2756 DOESNT_RETURN
|
665
|
2757 invalid_change_2 (const CIntbyte *reason, Lisp_Object frob1, Lisp_Object frob2)
|
442
|
2758 {
|
563
|
2759 signal_error_2 (Qinvalid_change, reason, frob1, frob2);
|
|
2760 }
|
|
2761
|
|
2762 void
|
665
|
2763 maybe_invalid_change (const CIntbyte *reason, Lisp_Object frob,
|
578
|
2764 Lisp_Object class, Error_Behavior errb)
|
563
|
2765 {
|
|
2766 maybe_signal_error (Qinvalid_change, reason, frob, class, errb);
|
|
2767 }
|
|
2768
|
|
2769 DOESNT_RETURN
|
665
|
2770 invalid_state (const CIntbyte *reason, Lisp_Object frob)
|
563
|
2771 {
|
|
2772 signal_error (Qinvalid_state, reason, frob);
|
|
2773 }
|
|
2774
|
|
2775 DOESNT_RETURN
|
665
|
2776 invalid_state_2 (const CIntbyte *reason, Lisp_Object frob1, Lisp_Object frob2)
|
563
|
2777 {
|
|
2778 signal_error_2 (Qinvalid_state, reason, frob1, frob2);
|
|
2779 }
|
|
2780
|
|
2781 void
|
665
|
2782 maybe_invalid_state (const CIntbyte *reason, Lisp_Object frob,
|
578
|
2783 Lisp_Object class, Error_Behavior errb)
|
563
|
2784 {
|
|
2785 maybe_signal_error (Qinvalid_state, reason, frob, class, errb);
|
|
2786 }
|
|
2787
|
|
2788 DOESNT_RETURN
|
665
|
2789 wtaerror (const CIntbyte *reason, Lisp_Object frob)
|
563
|
2790 {
|
|
2791 signal_error (Qwrong_type_argument, reason, frob);
|
|
2792 }
|
|
2793
|
|
2794 DOESNT_RETURN
|
665
|
2795 stack_overflow (const CIntbyte *reason, Lisp_Object frob)
|
563
|
2796 {
|
|
2797 signal_error (Qstack_overflow, reason, frob);
|
|
2798 }
|
|
2799
|
|
2800 DOESNT_RETURN
|
665
|
2801 out_of_memory (const CIntbyte *reason, Lisp_Object frob)
|
563
|
2802 {
|
|
2803 signal_error (Qout_of_memory, reason, frob);
|
|
2804 }
|
|
2805
|
|
2806 DOESNT_RETURN
|
665
|
2807 printing_unreadable_object (const CIntbyte *fmt, ...)
|
563
|
2808 {
|
|
2809 Lisp_Object obj;
|
|
2810 va_list args;
|
|
2811
|
|
2812 va_start (args, fmt);
|
665
|
2813 obj = emacs_doprnt_string_va ((const Intbyte *) GETTEXT (fmt), Qnil, -1,
|
563
|
2814 args);
|
|
2815 va_end (args);
|
|
2816
|
|
2817 /* Fsignal GC-protects its args */
|
|
2818 signal_error (Qprinting_unreadable_object, 0, obj);
|
442
|
2819 }
|
|
2820
|
428
|
2821
|
|
2822 /************************************************************************/
|
|
2823 /* User commands */
|
|
2824 /************************************************************************/
|
|
2825
|
|
2826 DEFUN ("commandp", Fcommandp, 1, 1, 0, /*
|
|
2827 Return t if FUNCTION makes provisions for interactive calling.
|
|
2828 This means it contains a description for how to read arguments to give it.
|
|
2829 The value is nil for an invalid function or a symbol with no function
|
|
2830 definition.
|
|
2831
|
|
2832 Interactively callable functions include
|
|
2833
|
|
2834 -- strings and vectors (treated as keyboard macros)
|
|
2835 -- lambda-expressions that contain a top-level call to `interactive'
|
|
2836 -- autoload definitions made by `autoload' with non-nil fourth argument
|
|
2837 (i.e. the interactive flag)
|
|
2838 -- compiled-function objects with a non-nil `compiled-function-interactive'
|
|
2839 value
|
|
2840 -- subrs (built-in functions) that are interactively callable
|
|
2841
|
|
2842 Also, a symbol satisfies `commandp' if its function definition does so.
|
|
2843 */
|
|
2844 (function))
|
|
2845 {
|
|
2846 Lisp_Object fun = indirect_function (function, 0);
|
|
2847
|
|
2848 if (COMPILED_FUNCTIONP (fun))
|
|
2849 return XCOMPILED_FUNCTION (fun)->flags.interactivep ? Qt : Qnil;
|
|
2850
|
|
2851 /* Lists may represent commands. */
|
|
2852 if (CONSP (fun))
|
|
2853 {
|
|
2854 Lisp_Object funcar = XCAR (fun);
|
|
2855 if (EQ (funcar, Qlambda))
|
|
2856 return Fassq (Qinteractive, Fcdr (Fcdr (fun)));
|
|
2857 if (EQ (funcar, Qautoload))
|
|
2858 return Fcar (Fcdr (Fcdr (Fcdr (fun))));
|
|
2859 else
|
|
2860 return Qnil;
|
|
2861 }
|
|
2862
|
|
2863 /* Emacs primitives are interactive if their DEFUN specifies an
|
|
2864 interactive spec. */
|
|
2865 if (SUBRP (fun))
|
|
2866 return XSUBR (fun)->prompt ? Qt : Qnil;
|
|
2867
|
|
2868 /* Strings and vectors are keyboard macros. */
|
|
2869 if (VECTORP (fun) || STRINGP (fun))
|
|
2870 return Qt;
|
|
2871
|
|
2872 /* Everything else (including Qunbound) is not a command. */
|
|
2873 return Qnil;
|
|
2874 }
|
|
2875
|
|
2876 DEFUN ("command-execute", Fcommand_execute, 1, 3, 0, /*
|
|
2877 Execute CMD as an editor command.
|
|
2878 CMD must be an object that satisfies the `commandp' predicate.
|
|
2879 Optional second arg RECORD-FLAG is as in `call-interactively'.
|
|
2880 The argument KEYS specifies the value to use instead of (this-command-keys)
|
|
2881 when reading the arguments.
|
|
2882 */
|
444
|
2883 (cmd, record_flag, keys))
|
428
|
2884 {
|
|
2885 /* This function can GC */
|
|
2886 Lisp_Object prefixarg;
|
|
2887 Lisp_Object final = cmd;
|
|
2888 struct backtrace backtrace;
|
|
2889 struct console *con = XCONSOLE (Vselected_console);
|
|
2890
|
|
2891 prefixarg = con->prefix_arg;
|
|
2892 con->prefix_arg = Qnil;
|
|
2893 Vcurrent_prefix_arg = prefixarg;
|
|
2894 debug_on_next_call = 0; /* #### from FSFmacs; correct? */
|
|
2895
|
|
2896 if (SYMBOLP (cmd) && !NILP (Fget (cmd, Qdisabled, Qnil)))
|
|
2897 return run_hook (Vdisabled_command_hook);
|
|
2898
|
|
2899 for (;;)
|
|
2900 {
|
|
2901 final = indirect_function (cmd, 1);
|
|
2902 if (CONSP (final) && EQ (Fcar (final), Qautoload))
|
|
2903 do_autoload (final, cmd);
|
|
2904 else
|
|
2905 break;
|
|
2906 }
|
|
2907
|
|
2908 if (CONSP (final) || SUBRP (final) || COMPILED_FUNCTIONP (final))
|
|
2909 {
|
|
2910 backtrace.function = &Qcall_interactively;
|
|
2911 backtrace.args = &cmd;
|
|
2912 backtrace.nargs = 1;
|
|
2913 backtrace.evalargs = 0;
|
|
2914 backtrace.pdlcount = specpdl_depth();
|
|
2915 backtrace.debug_on_exit = 0;
|
|
2916 PUSH_BACKTRACE (backtrace);
|
|
2917
|
444
|
2918 final = Fcall_interactively (cmd, record_flag, keys);
|
428
|
2919
|
|
2920 POP_BACKTRACE (backtrace);
|
|
2921 return final;
|
|
2922 }
|
|
2923 else if (STRINGP (final) || VECTORP (final))
|
|
2924 {
|
|
2925 return Fexecute_kbd_macro (final, prefixarg);
|
|
2926 }
|
|
2927 else
|
|
2928 {
|
|
2929 Fsignal (Qwrong_type_argument,
|
|
2930 Fcons (Qcommandp,
|
|
2931 (EQ (cmd, final)
|
|
2932 ? list1 (cmd)
|
|
2933 : list2 (cmd, final))));
|
|
2934 return Qnil;
|
|
2935 }
|
|
2936 }
|
|
2937
|
|
2938 DEFUN ("interactive-p", Finteractive_p, 0, 0, 0, /*
|
|
2939 Return t if function in which this appears was called interactively.
|
|
2940 This means that the function was called with call-interactively (which
|
|
2941 includes being called as the binding of a key)
|
|
2942 and input is currently coming from the keyboard (not in keyboard macro).
|
|
2943 */
|
|
2944 ())
|
|
2945 {
|
|
2946 REGISTER struct backtrace *btp;
|
|
2947 REGISTER Lisp_Object fun;
|
|
2948
|
|
2949 if (!INTERACTIVE)
|
|
2950 return Qnil;
|
|
2951
|
|
2952 /* Unless the object was compiled, skip the frame of interactive-p itself
|
|
2953 (if interpreted) or the frame of byte-code (if called from a compiled
|
|
2954 function). Note that *btp->function may be a symbol pointing at a
|
|
2955 compiled function. */
|
|
2956 btp = backtrace_list;
|
|
2957
|
|
2958 #if 0 /* FSFmacs */
|
|
2959
|
|
2960 /* #### FSFmacs does the following instead. I can't figure
|
|
2961 out which one is more correct. */
|
|
2962 /* If this isn't a byte-compiled function, there may be a frame at
|
|
2963 the top for Finteractive_p itself. If so, skip it. */
|
|
2964 fun = Findirect_function (*btp->function);
|
|
2965 if (SUBRP (fun) && XSUBR (fun) == &Sinteractive_p)
|
|
2966 btp = btp->next;
|
|
2967
|
|
2968 /* If we're running an Emacs 18-style byte-compiled function, there
|
|
2969 may be a frame for Fbyte_code. Now, given the strictest
|
|
2970 definition, this function isn't really being called
|
|
2971 interactively, but because that's the way Emacs 18 always builds
|
|
2972 byte-compiled functions, we'll accept it for now. */
|
|
2973 if (EQ (*btp->function, Qbyte_code))
|
|
2974 btp = btp->next;
|
|
2975
|
|
2976 /* If this isn't a byte-compiled function, then we may now be
|
|
2977 looking at several frames for special forms. Skip past them. */
|
|
2978 while (btp &&
|
|
2979 btp->nargs == UNEVALLED)
|
|
2980 btp = btp->next;
|
|
2981
|
|
2982 #else
|
|
2983
|
|
2984 if (! (COMPILED_FUNCTIONP (Findirect_function (*btp->function))))
|
|
2985 btp = btp->next;
|
|
2986 for (;
|
|
2987 btp && (btp->nargs == UNEVALLED
|
|
2988 || EQ (*btp->function, Qbyte_code));
|
|
2989 btp = btp->next)
|
|
2990 {}
|
|
2991 /* btp now points at the frame of the innermost function
|
|
2992 that DOES eval its args.
|
|
2993 If it is a built-in function (such as load or eval-region)
|
|
2994 return nil. */
|
|
2995 /* Beats me why this is necessary, but it is */
|
|
2996 if (btp && EQ (*btp->function, Qcall_interactively))
|
|
2997 return Qt;
|
|
2998
|
|
2999 #endif
|
|
3000
|
|
3001 fun = Findirect_function (*btp->function);
|
|
3002 if (SUBRP (fun))
|
|
3003 return Qnil;
|
|
3004 /* btp points to the frame of a Lisp function that called interactive-p.
|
|
3005 Return t if that function was called interactively. */
|
|
3006 if (btp && btp->next && EQ (*btp->next->function, Qcall_interactively))
|
|
3007 return Qt;
|
|
3008 return Qnil;
|
|
3009 }
|
|
3010
|
|
3011
|
|
3012 /************************************************************************/
|
|
3013 /* Autoloading */
|
|
3014 /************************************************************************/
|
|
3015
|
|
3016 DEFUN ("autoload", Fautoload, 2, 5, 0, /*
|
444
|
3017 Define FUNCTION to autoload from FILENAME.
|
|
3018 FUNCTION is a symbol; FILENAME is a file name string to pass to `load'.
|
|
3019 The remaining optional arguments provide additional info about the
|
|
3020 real definition.
|
|
3021 DOCSTRING is documentation for FUNCTION.
|
|
3022 INTERACTIVE, if non-nil, says FUNCTION can be called interactively.
|
|
3023 TYPE indicates the type of the object:
|
428
|
3024 nil or omitted says FUNCTION is a function,
|
|
3025 `keymap' says FUNCTION is really a keymap, and
|
|
3026 `macro' or t says FUNCTION is really a macro.
|
444
|
3027 If FUNCTION already has a non-void function definition that is not an
|
|
3028 autoload object, this function does nothing and returns nil.
|
428
|
3029 */
|
444
|
3030 (function, filename, docstring, interactive, type))
|
428
|
3031 {
|
|
3032 /* This function can GC */
|
|
3033 CHECK_SYMBOL (function);
|
444
|
3034 CHECK_STRING (filename);
|
428
|
3035
|
|
3036 /* If function is defined and not as an autoload, don't override */
|
|
3037 {
|
|
3038 Lisp_Object f = XSYMBOL (function)->function;
|
|
3039 if (!UNBOUNDP (f) && !(CONSP (f) && EQ (XCAR (f), Qautoload)))
|
|
3040 return Qnil;
|
|
3041 }
|
|
3042
|
|
3043 if (purify_flag)
|
|
3044 {
|
|
3045 /* Attempt to avoid consing identical (string=) pure strings. */
|
444
|
3046 filename = Fsymbol_name (Fintern (filename, Qnil));
|
428
|
3047 }
|
440
|
3048
|
444
|
3049 return Ffset (function, Fcons (Qautoload, list4 (filename,
|
428
|
3050 docstring,
|
|
3051 interactive,
|
|
3052 type)));
|
|
3053 }
|
|
3054
|
|
3055 Lisp_Object
|
|
3056 un_autoload (Lisp_Object oldqueue)
|
|
3057 {
|
|
3058 /* This function can GC */
|
|
3059 REGISTER Lisp_Object queue, first, second;
|
|
3060
|
|
3061 /* Queue to unwind is current value of Vautoload_queue.
|
|
3062 oldqueue is the shadowed value to leave in Vautoload_queue. */
|
|
3063 queue = Vautoload_queue;
|
|
3064 Vautoload_queue = oldqueue;
|
|
3065 while (CONSP (queue))
|
|
3066 {
|
|
3067 first = XCAR (queue);
|
|
3068 second = Fcdr (first);
|
|
3069 first = Fcar (first);
|
|
3070 if (NILP (second))
|
|
3071 Vfeatures = first;
|
|
3072 else
|
|
3073 Ffset (first, second);
|
|
3074 queue = Fcdr (queue);
|
|
3075 }
|
|
3076 return Qnil;
|
|
3077 }
|
|
3078
|
|
3079 void
|
|
3080 do_autoload (Lisp_Object fundef,
|
|
3081 Lisp_Object funname)
|
|
3082 {
|
|
3083 /* This function can GC */
|
|
3084 int speccount = specpdl_depth();
|
|
3085 Lisp_Object fun = funname;
|
|
3086 struct gcpro gcpro1, gcpro2;
|
|
3087
|
|
3088 CHECK_SYMBOL (funname);
|
|
3089 GCPRO2 (fun, funname);
|
|
3090
|
|
3091 /* Value saved here is to be restored into Vautoload_queue */
|
|
3092 record_unwind_protect (un_autoload, Vautoload_queue);
|
|
3093 Vautoload_queue = Qt;
|
|
3094 call4 (Qload, Fcar (Fcdr (fundef)), Qnil, noninteractive ? Qt : Qnil, Qnil);
|
|
3095
|
|
3096 {
|
|
3097 Lisp_Object queue;
|
|
3098
|
|
3099 /* Save the old autoloads, in case we ever do an unload. */
|
|
3100 for (queue = Vautoload_queue; CONSP (queue); queue = XCDR (queue))
|
|
3101 {
|
|
3102 Lisp_Object first = XCAR (queue);
|
|
3103 Lisp_Object second = Fcdr (first);
|
|
3104
|
|
3105 first = Fcar (first);
|
|
3106
|
|
3107 /* Note: This test is subtle. The cdr of an autoload-queue entry
|
|
3108 may be an atom if the autoload entry was generated by a defalias
|
|
3109 or fset. */
|
|
3110 if (CONSP (second))
|
|
3111 Fput (first, Qautoload, (XCDR (second)));
|
|
3112 }
|
|
3113 }
|
|
3114
|
|
3115 /* Once loading finishes, don't undo it. */
|
|
3116 Vautoload_queue = Qt;
|
|
3117 unbind_to (speccount, Qnil);
|
|
3118
|
|
3119 fun = indirect_function (fun, 0);
|
|
3120
|
|
3121 #if 0 /* FSFmacs */
|
|
3122 if (!NILP (Fequal (fun, fundef)))
|
|
3123 #else
|
|
3124 if (UNBOUNDP (fun)
|
|
3125 || (CONSP (fun)
|
|
3126 && EQ (XCAR (fun), Qautoload)))
|
|
3127 #endif
|
563
|
3128 invalid_state ("Autoloading failed to define function", funname);
|
428
|
3129 UNGCPRO;
|
|
3130 }
|
|
3131
|
|
3132
|
|
3133 /************************************************************************/
|
|
3134 /* eval, funcall, apply */
|
|
3135 /************************************************************************/
|
|
3136
|
|
3137 static Lisp_Object funcall_lambda (Lisp_Object fun,
|
442
|
3138 int nargs, Lisp_Object args[]);
|
428
|
3139 static int in_warnings;
|
|
3140
|
|
3141 static Lisp_Object
|
|
3142 in_warnings_restore (Lisp_Object minimus)
|
|
3143 {
|
|
3144 in_warnings = 0;
|
|
3145 return Qnil;
|
|
3146 }
|
|
3147
|
|
3148 DEFUN ("eval", Feval, 1, 1, 0, /*
|
|
3149 Evaluate FORM and return its value.
|
|
3150 */
|
|
3151 (form))
|
|
3152 {
|
|
3153 /* This function can GC */
|
|
3154 Lisp_Object fun, val, original_fun, original_args;
|
|
3155 int nargs;
|
|
3156 struct backtrace backtrace;
|
|
3157
|
|
3158 /* I think this is a pretty safe place to call Lisp code, don't you? */
|
|
3159 while (!in_warnings && !NILP (Vpending_warnings))
|
|
3160 {
|
|
3161 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4;
|
|
3162 int speccount = specpdl_depth();
|
|
3163 Lisp_Object this_warning_cons, this_warning, class, level, messij;
|
|
3164
|
|
3165 record_unwind_protect (in_warnings_restore, Qnil);
|
|
3166 in_warnings = 1;
|
|
3167 this_warning_cons = Vpending_warnings;
|
|
3168 this_warning = XCAR (this_warning_cons);
|
|
3169 /* in case an error occurs in the warn function, at least
|
|
3170 it won't happen infinitely */
|
|
3171 Vpending_warnings = XCDR (Vpending_warnings);
|
|
3172 free_cons (XCONS (this_warning_cons));
|
|
3173 class = XCAR (this_warning);
|
|
3174 level = XCAR (XCDR (this_warning));
|
|
3175 messij = XCAR (XCDR (XCDR (this_warning)));
|
|
3176 free_list (this_warning);
|
|
3177
|
|
3178 if (NILP (Vpending_warnings))
|
|
3179 Vpending_warnings_tail = Qnil; /* perhaps not strictly necessary,
|
|
3180 but safer */
|
|
3181
|
|
3182 GCPRO4 (form, class, level, messij);
|
|
3183 if (!STRINGP (messij))
|
|
3184 messij = Fprin1_to_string (messij, Qnil);
|
|
3185 call3 (Qdisplay_warning, class, messij, level);
|
|
3186 UNGCPRO;
|
|
3187 unbind_to (speccount, Qnil);
|
|
3188 }
|
|
3189
|
|
3190 if (!CONSP (form))
|
|
3191 {
|
|
3192 if (SYMBOLP (form))
|
|
3193 return Fsymbol_value (form);
|
|
3194 else
|
|
3195 return form;
|
|
3196 }
|
|
3197
|
|
3198 QUIT;
|
|
3199 if ((consing_since_gc > gc_cons_threshold) || always_gc)
|
|
3200 {
|
|
3201 struct gcpro gcpro1;
|
|
3202 GCPRO1 (form);
|
|
3203 garbage_collect_1 ();
|
|
3204 UNGCPRO;
|
|
3205 }
|
|
3206
|
|
3207 if (++lisp_eval_depth > max_lisp_eval_depth)
|
|
3208 {
|
|
3209 if (max_lisp_eval_depth < 100)
|
|
3210 max_lisp_eval_depth = 100;
|
|
3211 if (lisp_eval_depth > max_lisp_eval_depth)
|
563
|
3212 stack_overflow ("Lisp nesting exceeds `max-lisp-eval-depth'",
|
|
3213 Qunbound);
|
428
|
3214 }
|
|
3215
|
|
3216 /* We guaranteed CONSP (form) above */
|
|
3217 original_fun = XCAR (form);
|
|
3218 original_args = XCDR (form);
|
|
3219
|
|
3220 GET_EXTERNAL_LIST_LENGTH (original_args, nargs);
|
|
3221
|
|
3222 backtrace.pdlcount = specpdl_depth();
|
|
3223 backtrace.function = &original_fun; /* This also protects them from gc */
|
|
3224 backtrace.args = &original_args;
|
|
3225 backtrace.nargs = UNEVALLED;
|
|
3226 backtrace.evalargs = 1;
|
|
3227 backtrace.debug_on_exit = 0;
|
|
3228 PUSH_BACKTRACE (backtrace);
|
|
3229
|
|
3230 if (debug_on_next_call)
|
|
3231 do_debug_on_call (Qt);
|
|
3232
|
|
3233 if (profiling_active)
|
|
3234 profile_increase_call_count (original_fun);
|
|
3235
|
|
3236 /* At this point, only original_fun and original_args
|
|
3237 have values that will be used below. */
|
|
3238 retry:
|
|
3239 fun = indirect_function (original_fun, 1);
|
|
3240
|
|
3241 if (SUBRP (fun))
|
|
3242 {
|
|
3243 Lisp_Subr *subr = XSUBR (fun);
|
|
3244 int max_args = subr->max_args;
|
|
3245
|
|
3246 if (nargs < subr->min_args)
|
|
3247 goto wrong_number_of_arguments;
|
|
3248
|
|
3249 if (max_args == UNEVALLED) /* Optimize for the common case */
|
|
3250 {
|
|
3251 backtrace.evalargs = 0;
|
|
3252 val = (((Lisp_Object (*) (Lisp_Object)) subr_function (subr))
|
|
3253 (original_args));
|
|
3254 }
|
|
3255 else if (nargs <= max_args)
|
|
3256 {
|
|
3257 struct gcpro gcpro1;
|
|
3258 Lisp_Object args[SUBR_MAX_ARGS];
|
|
3259 REGISTER Lisp_Object *p = args;
|
|
3260
|
|
3261 GCPRO1 (args[0]);
|
|
3262 gcpro1.nvars = 0;
|
|
3263
|
|
3264 {
|
|
3265 LIST_LOOP_2 (arg, original_args)
|
|
3266 {
|
|
3267 *p++ = Feval (arg);
|
|
3268 gcpro1.nvars++;
|
|
3269 }
|
|
3270 }
|
|
3271
|
|
3272 /* &optional args default to nil. */
|
|
3273 while (p - args < max_args)
|
|
3274 *p++ = Qnil;
|
|
3275
|
|
3276 backtrace.args = args;
|
|
3277 backtrace.nargs = nargs;
|
|
3278
|
|
3279 FUNCALL_SUBR (val, subr, args, max_args);
|
|
3280
|
|
3281 UNGCPRO;
|
|
3282 }
|
|
3283 else if (max_args == MANY)
|
|
3284 {
|
|
3285 /* Pass a vector of evaluated arguments */
|
|
3286 struct gcpro gcpro1;
|
|
3287 Lisp_Object *args = alloca_array (Lisp_Object, nargs);
|
|
3288 REGISTER Lisp_Object *p = args;
|
|
3289
|
|
3290 GCPRO1 (args[0]);
|
|
3291 gcpro1.nvars = 0;
|
|
3292
|
|
3293 {
|
|
3294 LIST_LOOP_2 (arg, original_args)
|
|
3295 {
|
|
3296 *p++ = Feval (arg);
|
|
3297 gcpro1.nvars++;
|
|
3298 }
|
|
3299 }
|
|
3300
|
|
3301 backtrace.args = args;
|
|
3302 backtrace.nargs = nargs;
|
|
3303
|
|
3304 val = (((Lisp_Object (*) (int, Lisp_Object *)) subr_function (subr))
|
|
3305 (nargs, args));
|
|
3306
|
|
3307 UNGCPRO;
|
|
3308 }
|
|
3309 else
|
|
3310 {
|
|
3311 wrong_number_of_arguments:
|
440
|
3312 val = signal_wrong_number_of_arguments_error (original_fun, nargs);
|
428
|
3313 }
|
|
3314 }
|
|
3315 else if (COMPILED_FUNCTIONP (fun))
|
|
3316 {
|
|
3317 struct gcpro gcpro1;
|
|
3318 Lisp_Object *args = alloca_array (Lisp_Object, nargs);
|
|
3319 REGISTER Lisp_Object *p = args;
|
|
3320
|
|
3321 GCPRO1 (args[0]);
|
|
3322 gcpro1.nvars = 0;
|
|
3323
|
|
3324 {
|
|
3325 LIST_LOOP_2 (arg, original_args)
|
|
3326 {
|
|
3327 *p++ = Feval (arg);
|
|
3328 gcpro1.nvars++;
|
|
3329 }
|
|
3330 }
|
|
3331
|
|
3332 backtrace.args = args;
|
|
3333 backtrace.nargs = nargs;
|
|
3334 backtrace.evalargs = 0;
|
|
3335
|
|
3336 val = funcall_compiled_function (fun, nargs, args);
|
|
3337
|
|
3338 /* Do the debug-on-exit now, while args is still GCPROed. */
|
|
3339 if (backtrace.debug_on_exit)
|
|
3340 val = do_debug_on_exit (val);
|
|
3341 /* Don't do it again when we return to eval. */
|
|
3342 backtrace.debug_on_exit = 0;
|
|
3343
|
|
3344 UNGCPRO;
|
|
3345 }
|
|
3346 else if (CONSP (fun))
|
|
3347 {
|
|
3348 Lisp_Object funcar = XCAR (fun);
|
|
3349
|
|
3350 if (EQ (funcar, Qautoload))
|
|
3351 {
|
|
3352 do_autoload (fun, original_fun);
|
|
3353 goto retry;
|
|
3354 }
|
|
3355 else if (EQ (funcar, Qmacro))
|
|
3356 {
|
|
3357 val = Feval (apply1 (XCDR (fun), original_args));
|
|
3358 }
|
|
3359 else if (EQ (funcar, Qlambda))
|
|
3360 {
|
|
3361 struct gcpro gcpro1;
|
|
3362 Lisp_Object *args = alloca_array (Lisp_Object, nargs);
|
|
3363 REGISTER Lisp_Object *p = args;
|
|
3364
|
|
3365 GCPRO1 (args[0]);
|
|
3366 gcpro1.nvars = 0;
|
|
3367
|
|
3368 {
|
|
3369 LIST_LOOP_2 (arg, original_args)
|
|
3370 {
|
|
3371 *p++ = Feval (arg);
|
|
3372 gcpro1.nvars++;
|
|
3373 }
|
|
3374 }
|
|
3375
|
|
3376 UNGCPRO;
|
|
3377
|
|
3378 backtrace.args = args; /* this also GCPROs `args' */
|
|
3379 backtrace.nargs = nargs;
|
|
3380 backtrace.evalargs = 0;
|
|
3381
|
|
3382 val = funcall_lambda (fun, nargs, args);
|
|
3383
|
|
3384 /* Do the debug-on-exit now, while args is still GCPROed. */
|
|
3385 if (backtrace.debug_on_exit)
|
|
3386 val = do_debug_on_exit (val);
|
|
3387 /* Don't do it again when we return to eval. */
|
|
3388 backtrace.debug_on_exit = 0;
|
|
3389 }
|
|
3390 else
|
|
3391 {
|
|
3392 goto invalid_function;
|
|
3393 }
|
|
3394 }
|
|
3395 else /* ! (SUBRP (fun) || COMPILED_FUNCTIONP (fun) || CONSP (fun)) */
|
|
3396 {
|
|
3397 invalid_function:
|
436
|
3398 val = signal_invalid_function_error (fun);
|
428
|
3399 }
|
|
3400
|
|
3401 lisp_eval_depth--;
|
|
3402 if (backtrace.debug_on_exit)
|
|
3403 val = do_debug_on_exit (val);
|
|
3404 POP_BACKTRACE (backtrace);
|
|
3405 return val;
|
|
3406 }
|
|
3407
|
|
3408
|
|
3409 DEFUN ("funcall", Ffuncall, 1, MANY, 0, /*
|
|
3410 Call first argument as a function, passing the remaining arguments to it.
|
|
3411 Thus, (funcall 'cons 'x 'y) returns (x . y).
|
|
3412 */
|
|
3413 (int nargs, Lisp_Object *args))
|
|
3414 {
|
|
3415 /* This function can GC */
|
|
3416 Lisp_Object fun;
|
|
3417 Lisp_Object val;
|
|
3418 struct backtrace backtrace;
|
|
3419 int fun_nargs = nargs - 1;
|
|
3420 Lisp_Object *fun_args = args + 1;
|
|
3421
|
|
3422 QUIT;
|
|
3423 if ((consing_since_gc > gc_cons_threshold) || always_gc)
|
|
3424 /* Callers should gcpro lexpr args */
|
|
3425 garbage_collect_1 ();
|
|
3426
|
|
3427 if (++lisp_eval_depth > max_lisp_eval_depth)
|
|
3428 {
|
|
3429 if (max_lisp_eval_depth < 100)
|
|
3430 max_lisp_eval_depth = 100;
|
|
3431 if (lisp_eval_depth > max_lisp_eval_depth)
|
563
|
3432 stack_overflow ("Lisp nesting exceeds `max-lisp-eval-depth'",
|
|
3433 Qunbound);
|
428
|
3434 }
|
|
3435
|
|
3436 backtrace.pdlcount = specpdl_depth();
|
|
3437 backtrace.function = &args[0];
|
|
3438 backtrace.args = fun_args;
|
|
3439 backtrace.nargs = fun_nargs;
|
|
3440 backtrace.evalargs = 0;
|
|
3441 backtrace.debug_on_exit = 0;
|
|
3442 PUSH_BACKTRACE (backtrace);
|
|
3443
|
|
3444 if (debug_on_next_call)
|
|
3445 do_debug_on_call (Qlambda);
|
|
3446
|
|
3447 retry:
|
|
3448
|
|
3449 fun = args[0];
|
|
3450
|
|
3451 /* It might be useful to place this *after* all the checks. */
|
|
3452 if (profiling_active)
|
|
3453 profile_increase_call_count (fun);
|
|
3454
|
|
3455 /* We could call indirect_function directly, but profiling shows
|
|
3456 this is worth optimizing by partially unrolling the loop. */
|
|
3457 if (SYMBOLP (fun))
|
|
3458 {
|
|
3459 fun = XSYMBOL (fun)->function;
|
|
3460 if (SYMBOLP (fun))
|
|
3461 {
|
|
3462 fun = XSYMBOL (fun)->function;
|
|
3463 if (SYMBOLP (fun))
|
|
3464 fun = indirect_function (fun, 1);
|
|
3465 }
|
|
3466 }
|
|
3467
|
|
3468 if (SUBRP (fun))
|
|
3469 {
|
|
3470 Lisp_Subr *subr = XSUBR (fun);
|
|
3471 int max_args = subr->max_args;
|
|
3472 Lisp_Object spacious_args[SUBR_MAX_ARGS];
|
|
3473
|
|
3474 if (fun_nargs == max_args) /* Optimize for the common case */
|
|
3475 {
|
|
3476 funcall_subr:
|
|
3477 FUNCALL_SUBR (val, subr, fun_args, max_args);
|
|
3478 }
|
436
|
3479 else if (fun_nargs < subr->min_args)
|
|
3480 {
|
|
3481 goto wrong_number_of_arguments;
|
|
3482 }
|
428
|
3483 else if (fun_nargs < max_args)
|
|
3484 {
|
|
3485 Lisp_Object *p = spacious_args;
|
|
3486
|
|
3487 /* Default optionals to nil */
|
|
3488 while (fun_nargs--)
|
|
3489 *p++ = *fun_args++;
|
|
3490 while (p - spacious_args < max_args)
|
|
3491 *p++ = Qnil;
|
|
3492
|
|
3493 fun_args = spacious_args;
|
|
3494 goto funcall_subr;
|
|
3495 }
|
|
3496 else if (max_args == MANY)
|
|
3497 {
|
436
|
3498 val = SUBR_FUNCTION (subr, MANY) (fun_nargs, fun_args);
|
428
|
3499 }
|
|
3500 else if (max_args == UNEVALLED) /* Can't funcall a special form */
|
|
3501 {
|
|
3502 goto invalid_function;
|
|
3503 }
|
|
3504 else
|
|
3505 {
|
|
3506 wrong_number_of_arguments:
|
436
|
3507 val = signal_wrong_number_of_arguments_error (fun, fun_nargs);
|
428
|
3508 }
|
|
3509 }
|
|
3510 else if (COMPILED_FUNCTIONP (fun))
|
|
3511 {
|
|
3512 val = funcall_compiled_function (fun, fun_nargs, fun_args);
|
|
3513 }
|
|
3514 else if (CONSP (fun))
|
|
3515 {
|
|
3516 Lisp_Object funcar = XCAR (fun);
|
|
3517
|
|
3518 if (EQ (funcar, Qlambda))
|
|
3519 {
|
|
3520 val = funcall_lambda (fun, fun_nargs, fun_args);
|
|
3521 }
|
|
3522 else if (EQ (funcar, Qautoload))
|
|
3523 {
|
|
3524 do_autoload (fun, args[0]);
|
|
3525 goto retry;
|
|
3526 }
|
|
3527 else /* Can't funcall a macro */
|
|
3528 {
|
|
3529 goto invalid_function;
|
|
3530 }
|
|
3531 }
|
|
3532 else if (UNBOUNDP (fun))
|
|
3533 {
|
436
|
3534 val = signal_void_function_error (args[0]);
|
428
|
3535 }
|
|
3536 else
|
|
3537 {
|
|
3538 invalid_function:
|
436
|
3539 val = signal_invalid_function_error (fun);
|
428
|
3540 }
|
|
3541
|
|
3542 lisp_eval_depth--;
|
|
3543 if (backtrace.debug_on_exit)
|
|
3544 val = do_debug_on_exit (val);
|
|
3545 POP_BACKTRACE (backtrace);
|
|
3546 return val;
|
|
3547 }
|
|
3548
|
|
3549 DEFUN ("functionp", Ffunctionp, 1, 1, 0, /*
|
|
3550 Return t if OBJECT can be called as a function, else nil.
|
|
3551 A function is an object that can be applied to arguments,
|
|
3552 using for example `funcall' or `apply'.
|
|
3553 */
|
|
3554 (object))
|
|
3555 {
|
|
3556 if (SYMBOLP (object))
|
|
3557 object = indirect_function (object, 0);
|
|
3558
|
|
3559 return
|
|
3560 (SUBRP (object) ||
|
|
3561 COMPILED_FUNCTIONP (object) ||
|
|
3562 (CONSP (object) &&
|
|
3563 (EQ (XCAR (object), Qlambda) ||
|
|
3564 EQ (XCAR (object), Qautoload))))
|
|
3565 ? Qt : Qnil;
|
|
3566 }
|
|
3567
|
|
3568 static Lisp_Object
|
|
3569 function_argcount (Lisp_Object function, int function_min_args_p)
|
|
3570 {
|
|
3571 Lisp_Object orig_function = function;
|
|
3572 Lisp_Object arglist;
|
|
3573
|
|
3574 retry:
|
|
3575
|
|
3576 if (SYMBOLP (function))
|
|
3577 function = indirect_function (function, 1);
|
|
3578
|
|
3579 if (SUBRP (function))
|
|
3580 {
|
442
|
3581 /* Using return with the ?: operator tickles a DEC CC compiler bug. */
|
|
3582 if (function_min_args_p)
|
|
3583 return Fsubr_min_args (function);
|
|
3584 else
|
|
3585 return Fsubr_max_args (function);
|
428
|
3586 }
|
|
3587 else if (COMPILED_FUNCTIONP (function))
|
|
3588 {
|
|
3589 arglist = compiled_function_arglist (XCOMPILED_FUNCTION (function));
|
|
3590 }
|
|
3591 else if (CONSP (function))
|
|
3592 {
|
|
3593 Lisp_Object funcar = XCAR (function);
|
|
3594
|
|
3595 if (EQ (funcar, Qmacro))
|
|
3596 {
|
|
3597 function = XCDR (function);
|
|
3598 goto retry;
|
|
3599 }
|
|
3600 else if (EQ (funcar, Qautoload))
|
|
3601 {
|
442
|
3602 struct gcpro gcpro1;
|
|
3603
|
|
3604 GCPRO1 (function);
|
428
|
3605 do_autoload (function, orig_function);
|
442
|
3606 UNGCPRO;
|
|
3607 function = orig_function;
|
428
|
3608 goto retry;
|
|
3609 }
|
|
3610 else if (EQ (funcar, Qlambda))
|
|
3611 {
|
|
3612 arglist = Fcar (XCDR (function));
|
|
3613 }
|
|
3614 else
|
|
3615 {
|
|
3616 goto invalid_function;
|
|
3617 }
|
|
3618 }
|
|
3619 else
|
|
3620 {
|
|
3621 invalid_function:
|
442
|
3622 return signal_invalid_function_error (orig_function);
|
428
|
3623 }
|
|
3624
|
|
3625 {
|
|
3626 int argcount = 0;
|
|
3627
|
|
3628 EXTERNAL_LIST_LOOP_2 (arg, arglist)
|
|
3629 {
|
|
3630 if (EQ (arg, Qand_optional))
|
|
3631 {
|
|
3632 if (function_min_args_p)
|
|
3633 break;
|
|
3634 }
|
|
3635 else if (EQ (arg, Qand_rest))
|
|
3636 {
|
|
3637 if (function_min_args_p)
|
|
3638 break;
|
|
3639 else
|
|
3640 return Qnil;
|
|
3641 }
|
|
3642 else
|
|
3643 {
|
|
3644 argcount++;
|
|
3645 }
|
|
3646 }
|
|
3647
|
|
3648 return make_int (argcount);
|
|
3649 }
|
|
3650 }
|
|
3651
|
|
3652 DEFUN ("function-min-args", Ffunction_min_args, 1, 1, 0, /*
|
617
|
3653 Return the minimum number of arguments a function may be called with.
|
428
|
3654 The function may be any form that can be passed to `funcall',
|
|
3655 any special form, or any macro.
|
|
3656 */
|
|
3657 (function))
|
|
3658 {
|
|
3659 return function_argcount (function, 1);
|
|
3660 }
|
|
3661
|
|
3662 DEFUN ("function-max-args", Ffunction_max_args, 1, 1, 0, /*
|
617
|
3663 Return the maximum number of arguments a function may be called with.
|
428
|
3664 The function may be any form that can be passed to `funcall',
|
|
3665 any special form, or any macro.
|
|
3666 If the function takes an arbitrary number of arguments or is
|
|
3667 a built-in special form, nil is returned.
|
|
3668 */
|
|
3669 (function))
|
|
3670 {
|
|
3671 return function_argcount (function, 0);
|
|
3672 }
|
|
3673
|
|
3674
|
|
3675 DEFUN ("apply", Fapply, 2, MANY, 0, /*
|
|
3676 Call FUNCTION with the remaining args, using the last arg as a list of args.
|
|
3677 Thus, (apply '+ 1 2 '(3 4)) returns 10.
|
|
3678 */
|
|
3679 (int nargs, Lisp_Object *args))
|
|
3680 {
|
|
3681 /* This function can GC */
|
|
3682 Lisp_Object fun = args[0];
|
|
3683 Lisp_Object spread_arg = args [nargs - 1];
|
|
3684 int numargs;
|
|
3685 int funcall_nargs;
|
|
3686
|
|
3687 GET_EXTERNAL_LIST_LENGTH (spread_arg, numargs);
|
|
3688
|
|
3689 if (numargs == 0)
|
|
3690 /* (apply foo 0 1 '()) */
|
|
3691 return Ffuncall (nargs - 1, args);
|
|
3692 else if (numargs == 1)
|
|
3693 {
|
|
3694 /* (apply foo 0 1 '(2)) */
|
|
3695 args [nargs - 1] = XCAR (spread_arg);
|
|
3696 return Ffuncall (nargs, args);
|
|
3697 }
|
|
3698
|
|
3699 /* -1 for function, -1 for spread arg */
|
|
3700 numargs = nargs - 2 + numargs;
|
|
3701 /* +1 for function */
|
|
3702 funcall_nargs = 1 + numargs;
|
|
3703
|
|
3704 if (SYMBOLP (fun))
|
|
3705 fun = indirect_function (fun, 0);
|
|
3706
|
|
3707 if (SUBRP (fun))
|
|
3708 {
|
|
3709 Lisp_Subr *subr = XSUBR (fun);
|
|
3710 int max_args = subr->max_args;
|
|
3711
|
|
3712 if (numargs < subr->min_args
|
|
3713 || (max_args >= 0 && max_args < numargs))
|
|
3714 {
|
|
3715 /* Let funcall get the error */
|
|
3716 }
|
|
3717 else if (max_args > numargs)
|
|
3718 {
|
|
3719 /* Avoid having funcall cons up yet another new vector of arguments
|
|
3720 by explicitly supplying nil's for optional values */
|
|
3721 funcall_nargs += (max_args - numargs);
|
|
3722 }
|
|
3723 }
|
|
3724 else if (UNBOUNDP (fun))
|
|
3725 {
|
|
3726 /* Let funcall get the error */
|
|
3727 fun = args[0];
|
|
3728 }
|
|
3729
|
|
3730 {
|
|
3731 REGISTER int i;
|
|
3732 Lisp_Object *funcall_args = alloca_array (Lisp_Object, funcall_nargs);
|
|
3733 struct gcpro gcpro1;
|
|
3734
|
|
3735 GCPRO1 (*funcall_args);
|
|
3736 gcpro1.nvars = funcall_nargs;
|
|
3737
|
|
3738 /* Copy in the unspread args */
|
|
3739 memcpy (funcall_args, args, (nargs - 1) * sizeof (Lisp_Object));
|
|
3740 /* Spread the last arg we got. Its first element goes in
|
|
3741 the slot that it used to occupy, hence this value of I. */
|
|
3742 for (i = nargs - 1;
|
|
3743 !NILP (spread_arg); /* i < 1 + numargs */
|
|
3744 i++, spread_arg = XCDR (spread_arg))
|
|
3745 {
|
|
3746 funcall_args [i] = XCAR (spread_arg);
|
|
3747 }
|
|
3748 /* Supply nil for optional args (to subrs) */
|
|
3749 for (; i < funcall_nargs; i++)
|
|
3750 funcall_args[i] = Qnil;
|
|
3751
|
|
3752
|
|
3753 RETURN_UNGCPRO (Ffuncall (funcall_nargs, funcall_args));
|
|
3754 }
|
|
3755 }
|
|
3756
|
|
3757
|
|
3758 /* Apply lambda list FUN to the NARGS evaluated arguments in ARGS and
|
|
3759 return the result of evaluation. */
|
|
3760
|
|
3761 static Lisp_Object
|
|
3762 funcall_lambda (Lisp_Object fun, int nargs, Lisp_Object args[])
|
|
3763 {
|
|
3764 /* This function can GC */
|
442
|
3765 Lisp_Object arglist, body, tail;
|
428
|
3766 int speccount = specpdl_depth();
|
|
3767 REGISTER int i = 0;
|
|
3768
|
|
3769 tail = XCDR (fun);
|
|
3770
|
|
3771 if (!CONSP (tail))
|
|
3772 goto invalid_function;
|
|
3773
|
|
3774 arglist = XCAR (tail);
|
|
3775 body = XCDR (tail);
|
|
3776
|
|
3777 {
|
|
3778 int optional = 0, rest = 0;
|
|
3779
|
442
|
3780 EXTERNAL_LIST_LOOP_2 (symbol, arglist)
|
428
|
3781 {
|
|
3782 if (!SYMBOLP (symbol))
|
|
3783 goto invalid_function;
|
|
3784 if (EQ (symbol, Qand_rest))
|
|
3785 rest = 1;
|
|
3786 else if (EQ (symbol, Qand_optional))
|
|
3787 optional = 1;
|
|
3788 else if (rest)
|
|
3789 {
|
|
3790 specbind (symbol, Flist (nargs - i, &args[i]));
|
|
3791 i = nargs;
|
|
3792 }
|
|
3793 else if (i < nargs)
|
|
3794 specbind (symbol, args[i++]);
|
|
3795 else if (!optional)
|
|
3796 goto wrong_number_of_arguments;
|
|
3797 else
|
|
3798 specbind (symbol, Qnil);
|
|
3799 }
|
|
3800 }
|
|
3801
|
|
3802 if (i < nargs)
|
|
3803 goto wrong_number_of_arguments;
|
|
3804
|
|
3805 return unbind_to (speccount, Fprogn (body));
|
|
3806
|
|
3807 wrong_number_of_arguments:
|
436
|
3808 return signal_wrong_number_of_arguments_error (fun, nargs);
|
428
|
3809
|
|
3810 invalid_function:
|
436
|
3811 return signal_invalid_function_error (fun);
|
428
|
3812 }
|
|
3813
|
|
3814
|
|
3815 /************************************************************************/
|
|
3816 /* Run hook variables in various ways. */
|
|
3817 /************************************************************************/
|
|
3818
|
|
3819 DEFUN ("run-hooks", Frun_hooks, 1, MANY, 0, /*
|
|
3820 Run each hook in HOOKS. Major mode functions use this.
|
|
3821 Each argument should be a symbol, a hook variable.
|
|
3822 These symbols are processed in the order specified.
|
|
3823 If a hook symbol has a non-nil value, that value may be a function
|
|
3824 or a list of functions to be called to run the hook.
|
|
3825 If the value is a function, it is called with no arguments.
|
|
3826 If it is a list, the elements are called, in order, with no arguments.
|
|
3827
|
|
3828 To make a hook variable buffer-local, use `make-local-hook',
|
|
3829 not `make-local-variable'.
|
|
3830 */
|
|
3831 (int nargs, Lisp_Object *args))
|
|
3832 {
|
|
3833 REGISTER int i;
|
|
3834
|
|
3835 for (i = 0; i < nargs; i++)
|
|
3836 run_hook_with_args (1, args + i, RUN_HOOKS_TO_COMPLETION);
|
|
3837
|
|
3838 return Qnil;
|
|
3839 }
|
|
3840
|
|
3841 DEFUN ("run-hook-with-args", Frun_hook_with_args, 1, MANY, 0, /*
|
|
3842 Run HOOK with the specified arguments ARGS.
|
|
3843 HOOK should be a symbol, a hook variable. If HOOK has a non-nil
|
|
3844 value, that value may be a function or a list of functions to be
|
|
3845 called to run the hook. If the value is a function, it is called with
|
|
3846 the given arguments and its return value is returned. If it is a list
|
|
3847 of functions, those functions are called, in order,
|
|
3848 with the given arguments ARGS.
|
444
|
3849 It is best not to depend on the value returned by `run-hook-with-args',
|
428
|
3850 as that may change.
|
|
3851
|
|
3852 To make a hook variable buffer-local, use `make-local-hook',
|
|
3853 not `make-local-variable'.
|
|
3854 */
|
|
3855 (int nargs, Lisp_Object *args))
|
|
3856 {
|
|
3857 return run_hook_with_args (nargs, args, RUN_HOOKS_TO_COMPLETION);
|
|
3858 }
|
|
3859
|
|
3860 DEFUN ("run-hook-with-args-until-success", Frun_hook_with_args_until_success, 1, MANY, 0, /*
|
|
3861 Run HOOK with the specified arguments ARGS.
|
|
3862 HOOK should be a symbol, a hook variable. Its value should
|
|
3863 be a list of functions. We call those functions, one by one,
|
|
3864 passing arguments ARGS to each of them, until one of them
|
|
3865 returns a non-nil value. Then we return that value.
|
|
3866 If all the functions return nil, we return nil.
|
|
3867
|
|
3868 To make a hook variable buffer-local, use `make-local-hook',
|
|
3869 not `make-local-variable'.
|
|
3870 */
|
|
3871 (int nargs, Lisp_Object *args))
|
|
3872 {
|
|
3873 return run_hook_with_args (nargs, args, RUN_HOOKS_UNTIL_SUCCESS);
|
|
3874 }
|
|
3875
|
|
3876 DEFUN ("run-hook-with-args-until-failure", Frun_hook_with_args_until_failure, 1, MANY, 0, /*
|
|
3877 Run HOOK with the specified arguments ARGS.
|
|
3878 HOOK should be a symbol, a hook variable. Its value should
|
|
3879 be a list of functions. We call those functions, one by one,
|
|
3880 passing arguments ARGS to each of them, until one of them
|
|
3881 returns nil. Then we return nil.
|
|
3882 If all the functions return non-nil, we return non-nil.
|
|
3883
|
|
3884 To make a hook variable buffer-local, use `make-local-hook',
|
|
3885 not `make-local-variable'.
|
|
3886 */
|
|
3887 (int nargs, Lisp_Object *args))
|
|
3888 {
|
|
3889 return run_hook_with_args (nargs, args, RUN_HOOKS_UNTIL_FAILURE);
|
|
3890 }
|
|
3891
|
|
3892 /* ARGS[0] should be a hook symbol.
|
|
3893 Call each of the functions in the hook value, passing each of them
|
|
3894 as arguments all the rest of ARGS (all NARGS - 1 elements).
|
|
3895 COND specifies a condition to test after each call
|
|
3896 to decide whether to stop.
|
|
3897 The caller (or its caller, etc) must gcpro all of ARGS,
|
|
3898 except that it isn't necessary to gcpro ARGS[0]. */
|
|
3899
|
|
3900 Lisp_Object
|
|
3901 run_hook_with_args_in_buffer (struct buffer *buf, int nargs, Lisp_Object *args,
|
|
3902 enum run_hooks_condition cond)
|
|
3903 {
|
|
3904 Lisp_Object sym, val, ret;
|
|
3905
|
|
3906 if (!initialized || preparing_for_armageddon)
|
|
3907 /* We need to bail out of here pronto. */
|
|
3908 return Qnil;
|
|
3909
|
|
3910 /* Whenever gc_in_progress is true, preparing_for_armageddon
|
|
3911 will also be true unless something is really hosed. */
|
|
3912 assert (!gc_in_progress);
|
|
3913
|
|
3914 sym = args[0];
|
|
3915 val = symbol_value_in_buffer (sym, make_buffer (buf));
|
|
3916 ret = (cond == RUN_HOOKS_UNTIL_FAILURE ? Qt : Qnil);
|
|
3917
|
|
3918 if (UNBOUNDP (val) || NILP (val))
|
|
3919 return ret;
|
|
3920 else if (!CONSP (val) || EQ (XCAR (val), Qlambda))
|
|
3921 {
|
|
3922 args[0] = val;
|
|
3923 return Ffuncall (nargs, args);
|
|
3924 }
|
|
3925 else
|
|
3926 {
|
|
3927 struct gcpro gcpro1, gcpro2, gcpro3;
|
|
3928 Lisp_Object globals = Qnil;
|
|
3929 GCPRO3 (sym, val, globals);
|
|
3930
|
|
3931 for (;
|
|
3932 CONSP (val) && ((cond == RUN_HOOKS_TO_COMPLETION)
|
|
3933 || (cond == RUN_HOOKS_UNTIL_SUCCESS ? NILP (ret)
|
|
3934 : !NILP (ret)));
|
|
3935 val = XCDR (val))
|
|
3936 {
|
|
3937 if (EQ (XCAR (val), Qt))
|
|
3938 {
|
|
3939 /* t indicates this hook has a local binding;
|
|
3940 it means to run the global binding too. */
|
|
3941 globals = Fdefault_value (sym);
|
|
3942
|
|
3943 if ((! CONSP (globals) || EQ (XCAR (globals), Qlambda)) &&
|
|
3944 ! NILP (globals))
|
|
3945 {
|
|
3946 args[0] = globals;
|
|
3947 ret = Ffuncall (nargs, args);
|
|
3948 }
|
|
3949 else
|
|
3950 {
|
|
3951 for (;
|
|
3952 CONSP (globals) && ((cond == RUN_HOOKS_TO_COMPLETION)
|
|
3953 || (cond == RUN_HOOKS_UNTIL_SUCCESS
|
|
3954 ? NILP (ret)
|
|
3955 : !NILP (ret)));
|
|
3956 globals = XCDR (globals))
|
|
3957 {
|
|
3958 args[0] = XCAR (globals);
|
|
3959 /* In a global value, t should not occur. If it does, we
|
|
3960 must ignore it to avoid an endless loop. */
|
|
3961 if (!EQ (args[0], Qt))
|
|
3962 ret = Ffuncall (nargs, args);
|
|
3963 }
|
|
3964 }
|
|
3965 }
|
|
3966 else
|
|
3967 {
|
|
3968 args[0] = XCAR (val);
|
|
3969 ret = Ffuncall (nargs, args);
|
|
3970 }
|
|
3971 }
|
|
3972
|
|
3973 UNGCPRO;
|
|
3974 return ret;
|
|
3975 }
|
|
3976 }
|
|
3977
|
|
3978 Lisp_Object
|
|
3979 run_hook_with_args (int nargs, Lisp_Object *args,
|
|
3980 enum run_hooks_condition cond)
|
|
3981 {
|
|
3982 return run_hook_with_args_in_buffer (current_buffer, nargs, args, cond);
|
|
3983 }
|
|
3984
|
|
3985 #if 0
|
|
3986
|
|
3987 /* From FSF 19.30, not currently used */
|
|
3988
|
|
3989 /* Run a hook symbol ARGS[0], but use FUNLIST instead of the actual
|
|
3990 present value of that symbol.
|
|
3991 Call each element of FUNLIST,
|
|
3992 passing each of them the rest of ARGS.
|
|
3993 The caller (or its caller, etc) must gcpro all of ARGS,
|
|
3994 except that it isn't necessary to gcpro ARGS[0]. */
|
|
3995
|
|
3996 Lisp_Object
|
|
3997 run_hook_list_with_args (Lisp_Object funlist, int nargs, Lisp_Object *args)
|
|
3998 {
|
|
3999 Lisp_Object sym = args[0];
|
|
4000 Lisp_Object val;
|
|
4001 struct gcpro gcpro1, gcpro2;
|
|
4002
|
|
4003 GCPRO2 (sym, val);
|
|
4004
|
|
4005 for (val = funlist; CONSP (val); val = XCDR (val))
|
|
4006 {
|
|
4007 if (EQ (XCAR (val), Qt))
|
|
4008 {
|
|
4009 /* t indicates this hook has a local binding;
|
|
4010 it means to run the global binding too. */
|
|
4011 Lisp_Object globals;
|
|
4012
|
|
4013 for (globals = Fdefault_value (sym);
|
|
4014 CONSP (globals);
|
|
4015 globals = XCDR (globals))
|
|
4016 {
|
|
4017 args[0] = XCAR (globals);
|
|
4018 /* In a global value, t should not occur. If it does, we
|
|
4019 must ignore it to avoid an endless loop. */
|
|
4020 if (!EQ (args[0], Qt))
|
|
4021 Ffuncall (nargs, args);
|
|
4022 }
|
|
4023 }
|
|
4024 else
|
|
4025 {
|
|
4026 args[0] = XCAR (val);
|
|
4027 Ffuncall (nargs, args);
|
|
4028 }
|
|
4029 }
|
|
4030 UNGCPRO;
|
|
4031 return Qnil;
|
|
4032 }
|
|
4033
|
|
4034 #endif /* 0 */
|
|
4035
|
|
4036 void
|
|
4037 va_run_hook_with_args (Lisp_Object hook_var, int nargs, ...)
|
|
4038 {
|
|
4039 /* This function can GC */
|
|
4040 struct gcpro gcpro1;
|
|
4041 int i;
|
|
4042 va_list vargs;
|
|
4043 Lisp_Object *funcall_args = alloca_array (Lisp_Object, 1 + nargs);
|
|
4044
|
|
4045 va_start (vargs, nargs);
|
|
4046 funcall_args[0] = hook_var;
|
|
4047 for (i = 0; i < nargs; i++)
|
|
4048 funcall_args[i + 1] = va_arg (vargs, Lisp_Object);
|
|
4049 va_end (vargs);
|
|
4050
|
|
4051 GCPRO1 (*funcall_args);
|
|
4052 gcpro1.nvars = nargs + 1;
|
|
4053 run_hook_with_args (nargs + 1, funcall_args, RUN_HOOKS_TO_COMPLETION);
|
|
4054 UNGCPRO;
|
|
4055 }
|
|
4056
|
|
4057 void
|
|
4058 va_run_hook_with_args_in_buffer (struct buffer *buf, Lisp_Object hook_var,
|
|
4059 int nargs, ...)
|
|
4060 {
|
|
4061 /* This function can GC */
|
|
4062 struct gcpro gcpro1;
|
|
4063 int i;
|
|
4064 va_list vargs;
|
|
4065 Lisp_Object *funcall_args = alloca_array (Lisp_Object, 1 + nargs);
|
|
4066
|
|
4067 va_start (vargs, nargs);
|
|
4068 funcall_args[0] = hook_var;
|
|
4069 for (i = 0; i < nargs; i++)
|
|
4070 funcall_args[i + 1] = va_arg (vargs, Lisp_Object);
|
|
4071 va_end (vargs);
|
|
4072
|
|
4073 GCPRO1 (*funcall_args);
|
|
4074 gcpro1.nvars = nargs + 1;
|
|
4075 run_hook_with_args_in_buffer (buf, nargs + 1, funcall_args,
|
|
4076 RUN_HOOKS_TO_COMPLETION);
|
|
4077 UNGCPRO;
|
|
4078 }
|
|
4079
|
|
4080 Lisp_Object
|
|
4081 run_hook (Lisp_Object hook)
|
|
4082 {
|
|
4083 Frun_hooks (1, &hook);
|
|
4084 return Qnil;
|
|
4085 }
|
|
4086
|
|
4087
|
|
4088 /************************************************************************/
|
|
4089 /* Front-ends to eval, funcall, apply */
|
|
4090 /************************************************************************/
|
|
4091
|
|
4092 /* Apply fn to arg */
|
|
4093 Lisp_Object
|
|
4094 apply1 (Lisp_Object fn, Lisp_Object arg)
|
|
4095 {
|
|
4096 /* This function can GC */
|
|
4097 struct gcpro gcpro1;
|
|
4098 Lisp_Object args[2];
|
|
4099
|
|
4100 if (NILP (arg))
|
|
4101 return Ffuncall (1, &fn);
|
|
4102 GCPRO1 (args[0]);
|
|
4103 gcpro1.nvars = 2;
|
|
4104 args[0] = fn;
|
|
4105 args[1] = arg;
|
|
4106 RETURN_UNGCPRO (Fapply (2, args));
|
|
4107 }
|
|
4108
|
|
4109 /* Call function fn on no arguments */
|
|
4110 Lisp_Object
|
|
4111 call0 (Lisp_Object fn)
|
|
4112 {
|
|
4113 /* This function can GC */
|
|
4114 struct gcpro gcpro1;
|
|
4115
|
|
4116 GCPRO1 (fn);
|
|
4117 RETURN_UNGCPRO (Ffuncall (1, &fn));
|
|
4118 }
|
|
4119
|
|
4120 /* Call function fn with argument arg0 */
|
|
4121 Lisp_Object
|
|
4122 call1 (Lisp_Object fn,
|
|
4123 Lisp_Object arg0)
|
|
4124 {
|
|
4125 /* This function can GC */
|
|
4126 struct gcpro gcpro1;
|
|
4127 Lisp_Object args[2];
|
|
4128 args[0] = fn;
|
|
4129 args[1] = arg0;
|
|
4130 GCPRO1 (args[0]);
|
|
4131 gcpro1.nvars = 2;
|
|
4132 RETURN_UNGCPRO (Ffuncall (2, args));
|
|
4133 }
|
|
4134
|
|
4135 /* Call function fn with arguments arg0, arg1 */
|
|
4136 Lisp_Object
|
|
4137 call2 (Lisp_Object fn,
|
|
4138 Lisp_Object arg0, Lisp_Object arg1)
|
|
4139 {
|
|
4140 /* This function can GC */
|
|
4141 struct gcpro gcpro1;
|
|
4142 Lisp_Object args[3];
|
|
4143 args[0] = fn;
|
|
4144 args[1] = arg0;
|
|
4145 args[2] = arg1;
|
|
4146 GCPRO1 (args[0]);
|
|
4147 gcpro1.nvars = 3;
|
|
4148 RETURN_UNGCPRO (Ffuncall (3, args));
|
|
4149 }
|
|
4150
|
|
4151 /* Call function fn with arguments arg0, arg1, arg2 */
|
|
4152 Lisp_Object
|
|
4153 call3 (Lisp_Object fn,
|
|
4154 Lisp_Object arg0, Lisp_Object arg1, Lisp_Object arg2)
|
|
4155 {
|
|
4156 /* This function can GC */
|
|
4157 struct gcpro gcpro1;
|
|
4158 Lisp_Object args[4];
|
|
4159 args[0] = fn;
|
|
4160 args[1] = arg0;
|
|
4161 args[2] = arg1;
|
|
4162 args[3] = arg2;
|
|
4163 GCPRO1 (args[0]);
|
|
4164 gcpro1.nvars = 4;
|
|
4165 RETURN_UNGCPRO (Ffuncall (4, args));
|
|
4166 }
|
|
4167
|
|
4168 /* Call function fn with arguments arg0, arg1, arg2, arg3 */
|
|
4169 Lisp_Object
|
|
4170 call4 (Lisp_Object fn,
|
|
4171 Lisp_Object arg0, Lisp_Object arg1, Lisp_Object arg2,
|
|
4172 Lisp_Object arg3)
|
|
4173 {
|
|
4174 /* This function can GC */
|
|
4175 struct gcpro gcpro1;
|
|
4176 Lisp_Object args[5];
|
|
4177 args[0] = fn;
|
|
4178 args[1] = arg0;
|
|
4179 args[2] = arg1;
|
|
4180 args[3] = arg2;
|
|
4181 args[4] = arg3;
|
|
4182 GCPRO1 (args[0]);
|
|
4183 gcpro1.nvars = 5;
|
|
4184 RETURN_UNGCPRO (Ffuncall (5, args));
|
|
4185 }
|
|
4186
|
|
4187 /* Call function fn with arguments arg0, arg1, arg2, arg3, arg4 */
|
|
4188 Lisp_Object
|
|
4189 call5 (Lisp_Object fn,
|
|
4190 Lisp_Object arg0, Lisp_Object arg1, Lisp_Object arg2,
|
|
4191 Lisp_Object arg3, Lisp_Object arg4)
|
|
4192 {
|
|
4193 /* This function can GC */
|
|
4194 struct gcpro gcpro1;
|
|
4195 Lisp_Object args[6];
|
|
4196 args[0] = fn;
|
|
4197 args[1] = arg0;
|
|
4198 args[2] = arg1;
|
|
4199 args[3] = arg2;
|
|
4200 args[4] = arg3;
|
|
4201 args[5] = arg4;
|
|
4202 GCPRO1 (args[0]);
|
|
4203 gcpro1.nvars = 6;
|
|
4204 RETURN_UNGCPRO (Ffuncall (6, args));
|
|
4205 }
|
|
4206
|
|
4207 Lisp_Object
|
|
4208 call6 (Lisp_Object fn,
|
|
4209 Lisp_Object arg0, Lisp_Object arg1, Lisp_Object arg2,
|
|
4210 Lisp_Object arg3, Lisp_Object arg4, Lisp_Object arg5)
|
|
4211 {
|
|
4212 /* This function can GC */
|
|
4213 struct gcpro gcpro1;
|
|
4214 Lisp_Object args[7];
|
|
4215 args[0] = fn;
|
|
4216 args[1] = arg0;
|
|
4217 args[2] = arg1;
|
|
4218 args[3] = arg2;
|
|
4219 args[4] = arg3;
|
|
4220 args[5] = arg4;
|
|
4221 args[6] = arg5;
|
|
4222 GCPRO1 (args[0]);
|
|
4223 gcpro1.nvars = 7;
|
|
4224 RETURN_UNGCPRO (Ffuncall (7, args));
|
|
4225 }
|
|
4226
|
|
4227 Lisp_Object
|
|
4228 call7 (Lisp_Object fn,
|
|
4229 Lisp_Object arg0, Lisp_Object arg1, Lisp_Object arg2,
|
|
4230 Lisp_Object arg3, Lisp_Object arg4, Lisp_Object arg5,
|
|
4231 Lisp_Object arg6)
|
|
4232 {
|
|
4233 /* This function can GC */
|
|
4234 struct gcpro gcpro1;
|
|
4235 Lisp_Object args[8];
|
|
4236 args[0] = fn;
|
|
4237 args[1] = arg0;
|
|
4238 args[2] = arg1;
|
|
4239 args[3] = arg2;
|
|
4240 args[4] = arg3;
|
|
4241 args[5] = arg4;
|
|
4242 args[6] = arg5;
|
|
4243 args[7] = arg6;
|
|
4244 GCPRO1 (args[0]);
|
|
4245 gcpro1.nvars = 8;
|
|
4246 RETURN_UNGCPRO (Ffuncall (8, args));
|
|
4247 }
|
|
4248
|
|
4249 Lisp_Object
|
|
4250 call8 (Lisp_Object fn,
|
|
4251 Lisp_Object arg0, Lisp_Object arg1, Lisp_Object arg2,
|
|
4252 Lisp_Object arg3, Lisp_Object arg4, Lisp_Object arg5,
|
|
4253 Lisp_Object arg6, Lisp_Object arg7)
|
|
4254 {
|
|
4255 /* This function can GC */
|
|
4256 struct gcpro gcpro1;
|
|
4257 Lisp_Object args[9];
|
|
4258 args[0] = fn;
|
|
4259 args[1] = arg0;
|
|
4260 args[2] = arg1;
|
|
4261 args[3] = arg2;
|
|
4262 args[4] = arg3;
|
|
4263 args[5] = arg4;
|
|
4264 args[6] = arg5;
|
|
4265 args[7] = arg6;
|
|
4266 args[8] = arg7;
|
|
4267 GCPRO1 (args[0]);
|
|
4268 gcpro1.nvars = 9;
|
|
4269 RETURN_UNGCPRO (Ffuncall (9, args));
|
|
4270 }
|
|
4271
|
|
4272 Lisp_Object
|
|
4273 call0_in_buffer (struct buffer *buf, Lisp_Object fn)
|
|
4274 {
|
|
4275 if (current_buffer == buf)
|
|
4276 return call0 (fn);
|
|
4277 else
|
|
4278 {
|
|
4279 Lisp_Object val;
|
|
4280 int speccount = specpdl_depth();
|
|
4281 record_unwind_protect (Fset_buffer, Fcurrent_buffer ());
|
|
4282 set_buffer_internal (buf);
|
|
4283 val = call0 (fn);
|
|
4284 unbind_to (speccount, Qnil);
|
|
4285 return val;
|
|
4286 }
|
|
4287 }
|
|
4288
|
|
4289 Lisp_Object
|
|
4290 call1_in_buffer (struct buffer *buf, Lisp_Object fn,
|
|
4291 Lisp_Object arg0)
|
|
4292 {
|
|
4293 if (current_buffer == buf)
|
|
4294 return call1 (fn, arg0);
|
|
4295 else
|
|
4296 {
|
|
4297 Lisp_Object val;
|
|
4298 int speccount = specpdl_depth();
|
|
4299 record_unwind_protect (Fset_buffer, Fcurrent_buffer ());
|
|
4300 set_buffer_internal (buf);
|
|
4301 val = call1 (fn, arg0);
|
|
4302 unbind_to (speccount, Qnil);
|
|
4303 return val;
|
|
4304 }
|
|
4305 }
|
|
4306
|
|
4307 Lisp_Object
|
|
4308 call2_in_buffer (struct buffer *buf, Lisp_Object fn,
|
|
4309 Lisp_Object arg0, Lisp_Object arg1)
|
|
4310 {
|
|
4311 if (current_buffer == buf)
|
|
4312 return call2 (fn, arg0, arg1);
|
|
4313 else
|
|
4314 {
|
|
4315 Lisp_Object val;
|
|
4316 int speccount = specpdl_depth();
|
|
4317 record_unwind_protect (Fset_buffer, Fcurrent_buffer ());
|
|
4318 set_buffer_internal (buf);
|
|
4319 val = call2 (fn, arg0, arg1);
|
|
4320 unbind_to (speccount, Qnil);
|
|
4321 return val;
|
|
4322 }
|
|
4323 }
|
|
4324
|
|
4325 Lisp_Object
|
|
4326 call3_in_buffer (struct buffer *buf, Lisp_Object fn,
|
|
4327 Lisp_Object arg0, Lisp_Object arg1, Lisp_Object arg2)
|
|
4328 {
|
|
4329 if (current_buffer == buf)
|
|
4330 return call3 (fn, arg0, arg1, arg2);
|
|
4331 else
|
|
4332 {
|
|
4333 Lisp_Object val;
|
|
4334 int speccount = specpdl_depth();
|
|
4335 record_unwind_protect (Fset_buffer, Fcurrent_buffer ());
|
|
4336 set_buffer_internal (buf);
|
|
4337 val = call3 (fn, arg0, arg1, arg2);
|
|
4338 unbind_to (speccount, Qnil);
|
|
4339 return val;
|
|
4340 }
|
|
4341 }
|
|
4342
|
|
4343 Lisp_Object
|
|
4344 call4_in_buffer (struct buffer *buf, Lisp_Object fn,
|
|
4345 Lisp_Object arg0, Lisp_Object arg1, Lisp_Object arg2,
|
|
4346 Lisp_Object arg3)
|
|
4347 {
|
|
4348 if (current_buffer == buf)
|
|
4349 return call4 (fn, arg0, arg1, arg2, arg3);
|
|
4350 else
|
|
4351 {
|
|
4352 Lisp_Object val;
|
|
4353 int speccount = specpdl_depth();
|
|
4354 record_unwind_protect (Fset_buffer, Fcurrent_buffer ());
|
|
4355 set_buffer_internal (buf);
|
|
4356 val = call4 (fn, arg0, arg1, arg2, arg3);
|
|
4357 unbind_to (speccount, Qnil);
|
|
4358 return val;
|
|
4359 }
|
|
4360 }
|
|
4361
|
|
4362 Lisp_Object
|
|
4363 eval_in_buffer (struct buffer *buf, Lisp_Object form)
|
|
4364 {
|
|
4365 if (current_buffer == buf)
|
|
4366 return Feval (form);
|
|
4367 else
|
|
4368 {
|
|
4369 Lisp_Object val;
|
|
4370 int speccount = specpdl_depth();
|
|
4371 record_unwind_protect (Fset_buffer, Fcurrent_buffer ());
|
|
4372 set_buffer_internal (buf);
|
|
4373 val = Feval (form);
|
|
4374 unbind_to (speccount, Qnil);
|
|
4375 return val;
|
|
4376 }
|
|
4377 }
|
|
4378
|
|
4379
|
|
4380 /************************************************************************/
|
|
4381 /* Error-catching front-ends to eval, funcall, apply */
|
|
4382 /************************************************************************/
|
|
4383
|
|
4384 /* Call function fn on no arguments, with condition handler */
|
|
4385 Lisp_Object
|
|
4386 call0_with_handler (Lisp_Object handler, Lisp_Object fn)
|
|
4387 {
|
|
4388 /* This function can GC */
|
|
4389 struct gcpro gcpro1;
|
|
4390 Lisp_Object args[2];
|
|
4391 args[0] = handler;
|
|
4392 args[1] = fn;
|
|
4393 GCPRO1 (args[0]);
|
|
4394 gcpro1.nvars = 2;
|
|
4395 RETURN_UNGCPRO (Fcall_with_condition_handler (2, args));
|
|
4396 }
|
|
4397
|
|
4398 /* Call function fn with argument arg0, with condition handler */
|
|
4399 Lisp_Object
|
|
4400 call1_with_handler (Lisp_Object handler, Lisp_Object fn,
|
|
4401 Lisp_Object arg0)
|
|
4402 {
|
|
4403 /* This function can GC */
|
|
4404 struct gcpro gcpro1;
|
|
4405 Lisp_Object args[3];
|
|
4406 args[0] = handler;
|
|
4407 args[1] = fn;
|
|
4408 args[2] = arg0;
|
|
4409 GCPRO1 (args[0]);
|
|
4410 gcpro1.nvars = 3;
|
|
4411 RETURN_UNGCPRO (Fcall_with_condition_handler (3, args));
|
|
4412 }
|
|
4413
|
|
4414
|
|
4415 /* The following functions provide you with error-trapping versions
|
|
4416 of the various front-ends above. They take an additional
|
|
4417 "warning_string" argument; if non-zero, a warning with this
|
|
4418 string and the actual error that occurred will be displayed
|
|
4419 in the *Warnings* buffer if an error occurs. In all cases,
|
|
4420 QUIT is inhibited while these functions are running, and if
|
|
4421 an error occurs, Qunbound is returned instead of the normal
|
|
4422 return value.
|
|
4423 */
|
|
4424
|
|
4425 /* #### This stuff needs to catch throws as well. We need to
|
|
4426 improve internal_catch() so it can take a "catch anything"
|
|
4427 argument similar to Qt or Qerror for condition_case_1(). */
|
|
4428
|
|
4429 static Lisp_Object
|
|
4430 caught_a_squirmer (Lisp_Object errordata, Lisp_Object arg)
|
|
4431 {
|
|
4432 if (!NILP (errordata))
|
|
4433 {
|
|
4434 Lisp_Object args[2];
|
|
4435
|
|
4436 if (!NILP (arg))
|
|
4437 {
|
665
|
4438 CIntbyte *str = (CIntbyte *) get_opaque_ptr (arg);
|
428
|
4439 args[0] = build_string (str);
|
|
4440 }
|
|
4441 else
|
|
4442 args[0] = build_string ("error");
|
|
4443 /* #### This should call
|
|
4444 (with-output-to-string (display-error errordata))
|
|
4445 but that stuff is all in Lisp currently. */
|
|
4446 args[1] = errordata;
|
|
4447 warn_when_safe_lispobj
|
|
4448 (Qerror, Qwarning,
|
665
|
4449 emacs_doprnt_string_lisp ((const Intbyte *) "%s: %s",
|
428
|
4450 Qnil, -1, 2, args));
|
|
4451 }
|
|
4452 return Qunbound;
|
|
4453 }
|
|
4454
|
|
4455 static Lisp_Object
|
|
4456 allow_quit_caught_a_squirmer (Lisp_Object errordata, Lisp_Object arg)
|
|
4457 {
|
|
4458 if (CONSP (errordata) && EQ (XCAR (errordata), Qquit))
|
|
4459 return Fsignal (Qquit, XCDR (errordata));
|
|
4460 return caught_a_squirmer (errordata, arg);
|
|
4461 }
|
|
4462
|
|
4463 static Lisp_Object
|
|
4464 safe_run_hook_caught_a_squirmer (Lisp_Object errordata, Lisp_Object arg)
|
|
4465 {
|
|
4466 Lisp_Object hook = Fcar (arg);
|
|
4467 arg = Fcdr (arg);
|
|
4468 /* Clear out the hook. */
|
|
4469 Fset (hook, Qnil);
|
|
4470 return caught_a_squirmer (errordata, arg);
|
|
4471 }
|
|
4472
|
|
4473 static Lisp_Object
|
|
4474 allow_quit_safe_run_hook_caught_a_squirmer (Lisp_Object errordata,
|
|
4475 Lisp_Object arg)
|
|
4476 {
|
|
4477 Lisp_Object hook = Fcar (arg);
|
|
4478 arg = Fcdr (arg);
|
|
4479 if (!CONSP (errordata) || !EQ (XCAR (errordata), Qquit))
|
|
4480 /* Clear out the hook. */
|
|
4481 Fset (hook, Qnil);
|
|
4482 return allow_quit_caught_a_squirmer (errordata, arg);
|
|
4483 }
|
|
4484
|
|
4485 static Lisp_Object
|
|
4486 catch_them_squirmers_eval_in_buffer (Lisp_Object cons)
|
|
4487 {
|
|
4488 return eval_in_buffer (XBUFFER (XCAR (cons)), XCDR (cons));
|
|
4489 }
|
|
4490
|
|
4491 Lisp_Object
|
665
|
4492 eval_in_buffer_trapping_errors (const CIntbyte *warning_string,
|
428
|
4493 struct buffer *buf, Lisp_Object form)
|
|
4494 {
|
|
4495 int speccount = specpdl_depth();
|
|
4496 Lisp_Object tem;
|
|
4497 Lisp_Object buffer;
|
|
4498 Lisp_Object cons;
|
|
4499 Lisp_Object opaque;
|
|
4500 struct gcpro gcpro1, gcpro2;
|
|
4501
|
|
4502 XSETBUFFER (buffer, buf);
|
|
4503
|
|
4504 specbind (Qinhibit_quit, Qt);
|
|
4505 /* gc_currently_forbidden = 1; Currently no reason to do this; */
|
|
4506
|
|
4507 cons = noseeum_cons (buffer, form);
|
|
4508 opaque = (warning_string ? make_opaque_ptr ((void *)warning_string) : Qnil);
|
|
4509 GCPRO2 (cons, opaque);
|
|
4510 /* Qerror not Qt, so you can get a backtrace */
|
|
4511 tem = condition_case_1 (Qerror,
|
|
4512 catch_them_squirmers_eval_in_buffer, cons,
|
|
4513 caught_a_squirmer, opaque);
|
|
4514 free_cons (XCONS (cons));
|
|
4515 if (OPAQUE_PTRP (opaque))
|
|
4516 free_opaque_ptr (opaque);
|
|
4517 UNGCPRO;
|
|
4518
|
|
4519 /* gc_currently_forbidden = 0; */
|
|
4520 return unbind_to (speccount, tem);
|
|
4521 }
|
|
4522
|
|
4523 static Lisp_Object
|
|
4524 catch_them_squirmers_run_hook (Lisp_Object hook_symbol)
|
|
4525 {
|
|
4526 /* This function can GC */
|
|
4527 run_hook (hook_symbol);
|
|
4528 return Qnil;
|
|
4529 }
|
|
4530
|
|
4531 Lisp_Object
|
665
|
4532 run_hook_trapping_errors (const CIntbyte *warning_string,
|
609
|
4533 Lisp_Object hook_symbol)
|
428
|
4534 {
|
|
4535 int speccount;
|
|
4536 Lisp_Object tem;
|
|
4537 Lisp_Object opaque;
|
|
4538 struct gcpro gcpro1;
|
|
4539
|
|
4540 if (!initialized || preparing_for_armageddon)
|
|
4541 return Qnil;
|
|
4542 tem = find_symbol_value (hook_symbol);
|
|
4543 if (NILP (tem) || UNBOUNDP (tem))
|
|
4544 return Qnil;
|
|
4545
|
|
4546 speccount = specpdl_depth();
|
|
4547 specbind (Qinhibit_quit, Qt);
|
|
4548
|
|
4549 opaque = (warning_string ? make_opaque_ptr ((void *)warning_string) : Qnil);
|
|
4550 GCPRO1 (opaque);
|
|
4551 /* Qerror not Qt, so you can get a backtrace */
|
|
4552 tem = condition_case_1 (Qerror,
|
|
4553 catch_them_squirmers_run_hook, hook_symbol,
|
|
4554 caught_a_squirmer, opaque);
|
|
4555 if (OPAQUE_PTRP (opaque))
|
|
4556 free_opaque_ptr (opaque);
|
|
4557 UNGCPRO;
|
|
4558
|
|
4559 return unbind_to (speccount, tem);
|
|
4560 }
|
|
4561
|
|
4562 /* Same as run_hook_trapping_errors() but also set the hook to nil
|
|
4563 if an error occurs. */
|
|
4564
|
|
4565 Lisp_Object
|
665
|
4566 safe_run_hook_trapping_errors (const CIntbyte *warning_string,
|
428
|
4567 Lisp_Object hook_symbol,
|
|
4568 int allow_quit)
|
|
4569 {
|
|
4570 int speccount = specpdl_depth();
|
|
4571 Lisp_Object tem;
|
|
4572 Lisp_Object cons = Qnil;
|
|
4573 struct gcpro gcpro1;
|
|
4574
|
|
4575 if (!initialized || preparing_for_armageddon)
|
|
4576 return Qnil;
|
|
4577 tem = find_symbol_value (hook_symbol);
|
|
4578 if (NILP (tem) || UNBOUNDP (tem))
|
|
4579 return Qnil;
|
|
4580
|
|
4581 if (!allow_quit)
|
|
4582 specbind (Qinhibit_quit, Qt);
|
|
4583
|
|
4584 cons = noseeum_cons (hook_symbol,
|
|
4585 warning_string ? make_opaque_ptr ((void *)warning_string)
|
|
4586 : Qnil);
|
|
4587 GCPRO1 (cons);
|
|
4588 /* Qerror not Qt, so you can get a backtrace */
|
|
4589 tem = condition_case_1 (Qerror,
|
|
4590 catch_them_squirmers_run_hook,
|
|
4591 hook_symbol,
|
|
4592 allow_quit ?
|
|
4593 allow_quit_safe_run_hook_caught_a_squirmer :
|
|
4594 safe_run_hook_caught_a_squirmer,
|
|
4595 cons);
|
|
4596 if (OPAQUE_PTRP (XCDR (cons)))
|
|
4597 free_opaque_ptr (XCDR (cons));
|
|
4598 free_cons (XCONS (cons));
|
|
4599 UNGCPRO;
|
|
4600
|
|
4601 return unbind_to (speccount, tem);
|
|
4602 }
|
|
4603
|
|
4604 static Lisp_Object
|
|
4605 catch_them_squirmers_call0 (Lisp_Object function)
|
|
4606 {
|
|
4607 /* This function can GC */
|
|
4608 return call0 (function);
|
|
4609 }
|
|
4610
|
|
4611 Lisp_Object
|
665
|
4612 call0_trapping_errors (const CIntbyte *warning_string, Lisp_Object function)
|
428
|
4613 {
|
|
4614 int speccount;
|
|
4615 Lisp_Object tem;
|
|
4616 Lisp_Object opaque = Qnil;
|
|
4617 struct gcpro gcpro1, gcpro2;
|
|
4618
|
|
4619 if (SYMBOLP (function))
|
|
4620 {
|
|
4621 tem = XSYMBOL (function)->function;
|
|
4622 if (NILP (tem) || UNBOUNDP (tem))
|
|
4623 return Qnil;
|
|
4624 }
|
|
4625
|
|
4626 GCPRO2 (opaque, function);
|
|
4627 speccount = specpdl_depth();
|
|
4628 specbind (Qinhibit_quit, Qt);
|
|
4629 /* gc_currently_forbidden = 1; Currently no reason to do this; */
|
|
4630
|
|
4631 opaque = (warning_string ? make_opaque_ptr ((void *)warning_string) : Qnil);
|
|
4632 /* Qerror not Qt, so you can get a backtrace */
|
|
4633 tem = condition_case_1 (Qerror,
|
|
4634 catch_them_squirmers_call0, function,
|
|
4635 caught_a_squirmer, opaque);
|
|
4636 if (OPAQUE_PTRP (opaque))
|
|
4637 free_opaque_ptr (opaque);
|
|
4638 UNGCPRO;
|
|
4639
|
|
4640 /* gc_currently_forbidden = 0; */
|
|
4641 return unbind_to (speccount, tem);
|
|
4642 }
|
|
4643
|
|
4644 static Lisp_Object
|
|
4645 catch_them_squirmers_call1 (Lisp_Object cons)
|
|
4646 {
|
|
4647 /* This function can GC */
|
|
4648 return call1 (XCAR (cons), XCDR (cons));
|
|
4649 }
|
|
4650
|
|
4651 static Lisp_Object
|
|
4652 catch_them_squirmers_call2 (Lisp_Object cons)
|
|
4653 {
|
|
4654 /* This function can GC */
|
|
4655 return call2 (XCAR (cons), XCAR (XCDR (cons)), XCAR (XCDR (XCDR (cons))));
|
|
4656 }
|
|
4657
|
|
4658 Lisp_Object
|
665
|
4659 call1_trapping_errors (const CIntbyte *warning_string, Lisp_Object function,
|
428
|
4660 Lisp_Object object)
|
|
4661 {
|
|
4662 int speccount = specpdl_depth();
|
|
4663 Lisp_Object tem;
|
|
4664 Lisp_Object cons = Qnil;
|
|
4665 Lisp_Object opaque = Qnil;
|
|
4666 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4;
|
|
4667
|
|
4668 if (SYMBOLP (function))
|
|
4669 {
|
|
4670 tem = XSYMBOL (function)->function;
|
|
4671 if (NILP (tem) || UNBOUNDP (tem))
|
|
4672 return Qnil;
|
|
4673 }
|
|
4674
|
|
4675 GCPRO4 (cons, opaque, function, object);
|
|
4676
|
|
4677 specbind (Qinhibit_quit, Qt);
|
|
4678 /* gc_currently_forbidden = 1; Currently no reason to do this; */
|
|
4679
|
|
4680 cons = noseeum_cons (function, object);
|
|
4681 opaque = (warning_string ? make_opaque_ptr ((void *)warning_string) : Qnil);
|
|
4682 /* Qerror not Qt, so you can get a backtrace */
|
|
4683 tem = condition_case_1 (Qerror,
|
|
4684 catch_them_squirmers_call1, cons,
|
|
4685 caught_a_squirmer, opaque);
|
|
4686 if (OPAQUE_PTRP (opaque))
|
|
4687 free_opaque_ptr (opaque);
|
|
4688 free_cons (XCONS (cons));
|
|
4689 UNGCPRO;
|
|
4690
|
|
4691 /* gc_currently_forbidden = 0; */
|
|
4692 return unbind_to (speccount, tem);
|
|
4693 }
|
|
4694
|
|
4695 Lisp_Object
|
665
|
4696 call2_trapping_errors (const CIntbyte *warning_string, Lisp_Object function,
|
428
|
4697 Lisp_Object object1, Lisp_Object object2)
|
|
4698 {
|
|
4699 int speccount = specpdl_depth();
|
|
4700 Lisp_Object tem;
|
|
4701 Lisp_Object cons = Qnil;
|
|
4702 Lisp_Object opaque = Qnil;
|
|
4703 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4, gcpro5;
|
|
4704
|
|
4705 if (SYMBOLP (function))
|
|
4706 {
|
|
4707 tem = XSYMBOL (function)->function;
|
|
4708 if (NILP (tem) || UNBOUNDP (tem))
|
|
4709 return Qnil;
|
|
4710 }
|
|
4711
|
|
4712 GCPRO5 (cons, opaque, function, object1, object2);
|
|
4713 specbind (Qinhibit_quit, Qt);
|
|
4714 /* gc_currently_forbidden = 1; Currently no reason to do this; */
|
|
4715
|
|
4716 cons = list3 (function, object1, object2);
|
|
4717 opaque = (warning_string ? make_opaque_ptr ((void *)warning_string) : Qnil);
|
|
4718 /* Qerror not Qt, so you can get a backtrace */
|
|
4719 tem = condition_case_1 (Qerror,
|
|
4720 catch_them_squirmers_call2, cons,
|
|
4721 caught_a_squirmer, opaque);
|
|
4722 if (OPAQUE_PTRP (opaque))
|
|
4723 free_opaque_ptr (opaque);
|
|
4724 free_list (cons);
|
|
4725 UNGCPRO;
|
|
4726
|
|
4727 /* gc_currently_forbidden = 0; */
|
|
4728 return unbind_to (speccount, tem);
|
|
4729 }
|
|
4730
|
|
4731
|
|
4732 /************************************************************************/
|
|
4733 /* The special binding stack */
|
|
4734 /* Most C code should simply use specbind() and unbind_to(). */
|
|
4735 /* When performance is critical, use the macros in backtrace.h. */
|
|
4736 /************************************************************************/
|
|
4737
|
|
4738 #define min_max_specpdl_size 400
|
|
4739
|
|
4740 void
|
647
|
4741 grow_specpdl (EMACS_INT reserved)
|
|
4742 {
|
|
4743 EMACS_INT size_needed = specpdl_depth() + reserved;
|
428
|
4744 if (size_needed >= max_specpdl_size)
|
|
4745 {
|
|
4746 if (max_specpdl_size < min_max_specpdl_size)
|
|
4747 max_specpdl_size = min_max_specpdl_size;
|
|
4748 if (size_needed >= max_specpdl_size)
|
|
4749 {
|
|
4750 if (!NILP (Vdebug_on_error) ||
|
|
4751 !NILP (Vdebug_on_signal))
|
|
4752 /* Leave room for some specpdl in the debugger. */
|
|
4753 max_specpdl_size = size_needed + 100;
|
563
|
4754 signal_continuable_error
|
|
4755 (Qstack_overflow,
|
|
4756 "Variable binding depth exceeds max-specpdl-size", Qunbound);
|
428
|
4757 }
|
|
4758 }
|
|
4759 while (specpdl_size < size_needed)
|
|
4760 {
|
|
4761 specpdl_size *= 2;
|
|
4762 if (specpdl_size > max_specpdl_size)
|
|
4763 specpdl_size = max_specpdl_size;
|
|
4764 }
|
|
4765 XREALLOC_ARRAY (specpdl, struct specbinding, specpdl_size);
|
|
4766 specpdl_ptr = specpdl + specpdl_depth();
|
|
4767 }
|
|
4768
|
|
4769
|
|
4770 /* Handle unbinding buffer-local variables */
|
|
4771 static Lisp_Object
|
|
4772 specbind_unwind_local (Lisp_Object ovalue)
|
|
4773 {
|
|
4774 Lisp_Object current = Fcurrent_buffer ();
|
|
4775 Lisp_Object symbol = specpdl_ptr->symbol;
|
440
|
4776 Lisp_Cons *victim = XCONS (ovalue);
|
428
|
4777 Lisp_Object buf = get_buffer (victim->car, 0);
|
|
4778 ovalue = victim->cdr;
|
|
4779
|
|
4780 free_cons (victim);
|
|
4781
|
|
4782 if (NILP (buf))
|
|
4783 {
|
|
4784 /* Deleted buffer -- do nothing */
|
|
4785 }
|
|
4786 else if (symbol_value_buffer_local_info (symbol, XBUFFER (buf)) == 0)
|
|
4787 {
|
|
4788 /* Was buffer-local when binding was made, now no longer is.
|
|
4789 * (kill-local-variable can do this.)
|
|
4790 * Do nothing in this case.
|
|
4791 */
|
|
4792 }
|
|
4793 else if (EQ (buf, current))
|
|
4794 Fset (symbol, ovalue);
|
|
4795 else
|
|
4796 {
|
|
4797 /* Urk! Somebody switched buffers */
|
|
4798 struct gcpro gcpro1;
|
|
4799 GCPRO1 (current);
|
|
4800 Fset_buffer (buf);
|
|
4801 Fset (symbol, ovalue);
|
|
4802 Fset_buffer (current);
|
|
4803 UNGCPRO;
|
|
4804 }
|
|
4805 return symbol;
|
|
4806 }
|
|
4807
|
|
4808 static Lisp_Object
|
|
4809 specbind_unwind_wasnt_local (Lisp_Object buffer)
|
|
4810 {
|
|
4811 Lisp_Object current = Fcurrent_buffer ();
|
|
4812 Lisp_Object symbol = specpdl_ptr->symbol;
|
|
4813
|
|
4814 buffer = get_buffer (buffer, 0);
|
|
4815 if (NILP (buffer))
|
|
4816 {
|
|
4817 /* Deleted buffer -- do nothing */
|
|
4818 }
|
|
4819 else if (symbol_value_buffer_local_info (symbol, XBUFFER (buffer)) == 0)
|
|
4820 {
|
|
4821 /* Was buffer-local when binding was made, now no longer is.
|
|
4822 * (kill-local-variable can do this.)
|
|
4823 * Do nothing in this case.
|
|
4824 */
|
|
4825 }
|
|
4826 else if (EQ (buffer, current))
|
|
4827 Fkill_local_variable (symbol);
|
|
4828 else
|
|
4829 {
|
|
4830 /* Urk! Somebody switched buffers */
|
|
4831 struct gcpro gcpro1;
|
|
4832 GCPRO1 (current);
|
|
4833 Fset_buffer (buffer);
|
|
4834 Fkill_local_variable (symbol);
|
|
4835 Fset_buffer (current);
|
|
4836 UNGCPRO;
|
|
4837 }
|
|
4838 return symbol;
|
|
4839 }
|
|
4840
|
|
4841
|
|
4842 void
|
|
4843 specbind (Lisp_Object symbol, Lisp_Object value)
|
|
4844 {
|
|
4845 SPECBIND (symbol, value);
|
|
4846 }
|
|
4847
|
|
4848 void
|
|
4849 specbind_magic (Lisp_Object symbol, Lisp_Object value)
|
|
4850 {
|
|
4851 int buffer_local =
|
|
4852 symbol_value_buffer_local_info (symbol, current_buffer);
|
|
4853
|
|
4854 if (buffer_local == 0)
|
|
4855 {
|
|
4856 specpdl_ptr->old_value = find_symbol_value (symbol);
|
|
4857 specpdl_ptr->func = 0; /* Handled specially by unbind_to */
|
|
4858 }
|
|
4859 else if (buffer_local > 0)
|
|
4860 {
|
|
4861 /* Already buffer-local */
|
|
4862 specpdl_ptr->old_value = noseeum_cons (Fcurrent_buffer (),
|
|
4863 find_symbol_value (symbol));
|
|
4864 specpdl_ptr->func = specbind_unwind_local;
|
|
4865 }
|
|
4866 else
|
|
4867 {
|
|
4868 /* About to become buffer-local */
|
|
4869 specpdl_ptr->old_value = Fcurrent_buffer ();
|
|
4870 specpdl_ptr->func = specbind_unwind_wasnt_local;
|
|
4871 }
|
|
4872
|
|
4873 specpdl_ptr->symbol = symbol;
|
|
4874 specpdl_ptr++;
|
|
4875 specpdl_depth_counter++;
|
|
4876
|
|
4877 Fset (symbol, value);
|
|
4878 }
|
|
4879
|
546
|
4880 /* Note: As long as the unwind-protect exists, its arg is automatically
|
|
4881 GCPRO'd. */
|
|
4882
|
428
|
4883 void
|
|
4884 record_unwind_protect (Lisp_Object (*function) (Lisp_Object arg),
|
|
4885 Lisp_Object arg)
|
|
4886 {
|
|
4887 SPECPDL_RESERVE (1);
|
|
4888 specpdl_ptr->func = function;
|
|
4889 specpdl_ptr->symbol = Qnil;
|
|
4890 specpdl_ptr->old_value = arg;
|
|
4891 specpdl_ptr++;
|
|
4892 specpdl_depth_counter++;
|
|
4893 }
|
|
4894
|
|
4895 extern int check_sigio (void);
|
|
4896
|
|
4897 /* Unwind the stack till specpdl_depth() == COUNT.
|
|
4898 VALUE is not used, except that, purely as a convenience to the
|
|
4899 caller, it is protected from garbage-protection. */
|
|
4900 Lisp_Object
|
|
4901 unbind_to (int count, Lisp_Object value)
|
|
4902 {
|
|
4903 UNBIND_TO_GCPRO (count, value);
|
|
4904 return value;
|
|
4905 }
|
|
4906
|
|
4907 /* Don't call this directly.
|
|
4908 Only for use by UNBIND_TO* macros in backtrace.h */
|
|
4909 void
|
|
4910 unbind_to_hairy (int count)
|
|
4911 {
|
|
4912 int quitf;
|
|
4913
|
442
|
4914 ++specpdl_ptr;
|
|
4915 ++specpdl_depth_counter;
|
|
4916
|
428
|
4917 check_quit (); /* make Vquit_flag accurate */
|
|
4918 quitf = !NILP (Vquit_flag);
|
|
4919 Vquit_flag = Qnil;
|
|
4920
|
|
4921 while (specpdl_depth_counter != count)
|
|
4922 {
|
|
4923 --specpdl_ptr;
|
|
4924 --specpdl_depth_counter;
|
|
4925
|
|
4926 if (specpdl_ptr->func != 0)
|
|
4927 /* An unwind-protect */
|
|
4928 (*specpdl_ptr->func) (specpdl_ptr->old_value);
|
|
4929 else
|
|
4930 {
|
|
4931 /* We checked symbol for validity when we specbound it,
|
|
4932 so only need to call Fset if symbol has magic value. */
|
440
|
4933 Lisp_Symbol *sym = XSYMBOL (specpdl_ptr->symbol);
|
428
|
4934 if (!SYMBOL_VALUE_MAGIC_P (sym->value))
|
|
4935 sym->value = specpdl_ptr->old_value;
|
|
4936 else
|
|
4937 Fset (specpdl_ptr->symbol, specpdl_ptr->old_value);
|
|
4938 }
|
|
4939
|
|
4940 #if 0 /* martin */
|
|
4941 #ifndef EXCEEDINGLY_QUESTIONABLE_CODE
|
|
4942 /* There should never be anything here for us to remove.
|
|
4943 If so, it indicates a logic error in Emacs. Catches
|
|
4944 should get removed when a throw or signal occurs, or
|
|
4945 when a catch or condition-case exits normally. But
|
|
4946 it's too dangerous to just remove this code. --ben */
|
|
4947
|
|
4948 /* Furthermore, this code is not in FSFmacs!!!
|
|
4949 Braino on mly's part? */
|
|
4950 /* If we're unwound past the pdlcount of a catch frame,
|
|
4951 that catch can't possibly still be valid. */
|
|
4952 while (catchlist && catchlist->pdlcount > specpdl_depth_counter)
|
|
4953 {
|
|
4954 catchlist = catchlist->next;
|
|
4955 /* Don't mess with gcprolist, backtrace_list here */
|
|
4956 }
|
|
4957 #endif
|
|
4958 #endif
|
|
4959 }
|
|
4960 if (quitf)
|
|
4961 Vquit_flag = Qt;
|
|
4962 }
|
|
4963
|
|
4964
|
|
4965
|
|
4966 /* Get the value of symbol's global binding, even if that binding is
|
|
4967 not now dynamically visible. May return Qunbound or magic values. */
|
|
4968
|
|
4969 Lisp_Object
|
|
4970 top_level_value (Lisp_Object symbol)
|
|
4971 {
|
|
4972 REGISTER struct specbinding *ptr = specpdl;
|
|
4973
|
|
4974 CHECK_SYMBOL (symbol);
|
|
4975 for (; ptr != specpdl_ptr; ptr++)
|
|
4976 {
|
|
4977 if (EQ (ptr->symbol, symbol))
|
|
4978 return ptr->old_value;
|
|
4979 }
|
|
4980 return XSYMBOL (symbol)->value;
|
|
4981 }
|
|
4982
|
|
4983 #if 0
|
|
4984
|
|
4985 Lisp_Object
|
|
4986 top_level_set (Lisp_Object symbol, Lisp_Object newval)
|
|
4987 {
|
|
4988 REGISTER struct specbinding *ptr = specpdl;
|
|
4989
|
|
4990 CHECK_SYMBOL (symbol);
|
|
4991 for (; ptr != specpdl_ptr; ptr++)
|
|
4992 {
|
|
4993 if (EQ (ptr->symbol, symbol))
|
|
4994 {
|
|
4995 ptr->old_value = newval;
|
|
4996 return newval;
|
|
4997 }
|
|
4998 }
|
|
4999 return Fset (symbol, newval);
|
|
5000 }
|
|
5001
|
|
5002 #endif /* 0 */
|
|
5003
|
|
5004
|
|
5005 /************************************************************************/
|
|
5006 /* Backtraces */
|
|
5007 /************************************************************************/
|
|
5008
|
|
5009 DEFUN ("backtrace-debug", Fbacktrace_debug, 2, 2, 0, /*
|
|
5010 Set the debug-on-exit flag of eval frame LEVEL levels down to FLAG.
|
|
5011 The debugger is entered when that frame exits, if the flag is non-nil.
|
|
5012 */
|
|
5013 (level, flag))
|
|
5014 {
|
|
5015 REGISTER struct backtrace *backlist = backtrace_list;
|
|
5016 REGISTER int i;
|
|
5017
|
|
5018 CHECK_INT (level);
|
|
5019
|
|
5020 for (i = 0; backlist && i < XINT (level); i++)
|
|
5021 {
|
|
5022 backlist = backlist->next;
|
|
5023 }
|
|
5024
|
|
5025 if (backlist)
|
|
5026 backlist->debug_on_exit = !NILP (flag);
|
|
5027
|
|
5028 return flag;
|
|
5029 }
|
|
5030
|
|
5031 static void
|
|
5032 backtrace_specials (int speccount, int speclimit, Lisp_Object stream)
|
|
5033 {
|
|
5034 int printing_bindings = 0;
|
|
5035
|
|
5036 for (; speccount > speclimit; speccount--)
|
|
5037 {
|
|
5038 if (specpdl[speccount - 1].func == 0
|
|
5039 || specpdl[speccount - 1].func == specbind_unwind_local
|
|
5040 || specpdl[speccount - 1].func == specbind_unwind_wasnt_local)
|
|
5041 {
|
|
5042 write_c_string (((!printing_bindings) ? " # bind (" : " "),
|
|
5043 stream);
|
|
5044 Fprin1 (specpdl[speccount - 1].symbol, stream);
|
|
5045 printing_bindings = 1;
|
|
5046 }
|
|
5047 else
|
|
5048 {
|
|
5049 if (printing_bindings) write_c_string (")\n", stream);
|
|
5050 write_c_string (" # (unwind-protect ...)\n", stream);
|
|
5051 printing_bindings = 0;
|
|
5052 }
|
|
5053 }
|
|
5054 if (printing_bindings) write_c_string (")\n", stream);
|
|
5055 }
|
|
5056
|
|
5057 DEFUN ("backtrace", Fbacktrace, 0, 2, "", /*
|
|
5058 Print a trace of Lisp function calls currently active.
|
438
|
5059 Optional arg STREAM specifies the output stream to send the backtrace to,
|
444
|
5060 and defaults to the value of `standard-output'.
|
|
5061 Optional second arg DETAILED non-nil means show places where currently
|
|
5062 active variable bindings, catches, condition-cases, and
|
|
5063 unwind-protects, as well as function calls, were made.
|
428
|
5064 */
|
|
5065 (stream, detailed))
|
|
5066 {
|
|
5067 /* This function can GC */
|
|
5068 struct backtrace *backlist = backtrace_list;
|
|
5069 struct catchtag *catches = catchlist;
|
|
5070 int speccount = specpdl_depth();
|
|
5071
|
|
5072 int old_nl = print_escape_newlines;
|
|
5073 int old_pr = print_readably;
|
|
5074 Lisp_Object old_level = Vprint_level;
|
|
5075 Lisp_Object oiq = Vinhibit_quit;
|
|
5076 struct gcpro gcpro1, gcpro2;
|
|
5077
|
|
5078 /* We can't allow quits in here because that could cause the values
|
|
5079 of print_readably and print_escape_newlines to get screwed up.
|
|
5080 Normally we would use a record_unwind_protect but that would
|
|
5081 screw up the functioning of this function. */
|
|
5082 Vinhibit_quit = Qt;
|
|
5083
|
|
5084 entering_debugger = 0;
|
|
5085
|
|
5086 Vprint_level = make_int (3);
|
|
5087 print_readably = 0;
|
|
5088 print_escape_newlines = 1;
|
|
5089
|
|
5090 GCPRO2 (stream, old_level);
|
|
5091
|
|
5092 if (NILP (stream))
|
|
5093 stream = Vstandard_output;
|
|
5094 if (!noninteractive && (NILP (stream) || EQ (stream, Qt)))
|
|
5095 stream = Fselected_frame (Qnil);
|
|
5096
|
|
5097 for (;;)
|
|
5098 {
|
|
5099 if (!NILP (detailed) && catches && catches->backlist == backlist)
|
|
5100 {
|
|
5101 int catchpdl = catches->pdlcount;
|
438
|
5102 if (speccount > catchpdl
|
|
5103 && specpdl[catchpdl].func == condition_case_unwind)
|
428
|
5104 /* This is a condition-case catchpoint */
|
|
5105 catchpdl = catchpdl + 1;
|
|
5106
|
|
5107 backtrace_specials (speccount, catchpdl, stream);
|
|
5108
|
|
5109 speccount = catches->pdlcount;
|
|
5110 if (catchpdl == speccount)
|
|
5111 {
|
|
5112 write_c_string (" # (catch ", stream);
|
|
5113 Fprin1 (catches->tag, stream);
|
|
5114 write_c_string (" ...)\n", stream);
|
|
5115 }
|
|
5116 else
|
|
5117 {
|
|
5118 write_c_string (" # (condition-case ... . ", stream);
|
|
5119 Fprin1 (Fcdr (Fcar (catches->tag)), stream);
|
|
5120 write_c_string (")\n", stream);
|
|
5121 }
|
|
5122 catches = catches->next;
|
|
5123 }
|
|
5124 else if (!backlist)
|
|
5125 break;
|
|
5126 else
|
|
5127 {
|
|
5128 if (!NILP (detailed) && backlist->pdlcount < speccount)
|
|
5129 {
|
|
5130 backtrace_specials (speccount, backlist->pdlcount, stream);
|
|
5131 speccount = backlist->pdlcount;
|
|
5132 }
|
|
5133 write_c_string (((backlist->debug_on_exit) ? "* " : " "),
|
|
5134 stream);
|
|
5135 if (backlist->nargs == UNEVALLED)
|
|
5136 {
|
|
5137 Fprin1 (Fcons (*backlist->function, *backlist->args), stream);
|
|
5138 write_c_string ("\n", stream); /* from FSFmacs 19.30 */
|
|
5139 }
|
|
5140 else
|
|
5141 {
|
|
5142 Lisp_Object tem = *backlist->function;
|
|
5143 Fprin1 (tem, stream); /* This can QUIT */
|
|
5144 write_c_string ("(", stream);
|
|
5145 if (backlist->nargs == MANY)
|
|
5146 {
|
|
5147 int i;
|
|
5148 Lisp_Object tail = Qnil;
|
|
5149 struct gcpro ngcpro1;
|
|
5150
|
|
5151 NGCPRO1 (tail);
|
|
5152 for (tail = *backlist->args, i = 0;
|
|
5153 !NILP (tail);
|
|
5154 tail = Fcdr (tail), i++)
|
|
5155 {
|
|
5156 if (i != 0) write_c_string (" ", stream);
|
|
5157 Fprin1 (Fcar (tail), stream);
|
|
5158 }
|
|
5159 NUNGCPRO;
|
|
5160 }
|
|
5161 else
|
|
5162 {
|
|
5163 int i;
|
|
5164 for (i = 0; i < backlist->nargs; i++)
|
|
5165 {
|
|
5166 if (!i && EQ(tem, Qbyte_code)) {
|
|
5167 write_c_string("\"...\"", stream);
|
|
5168 continue;
|
|
5169 }
|
|
5170 if (i != 0) write_c_string (" ", stream);
|
|
5171 Fprin1 (backlist->args[i], stream);
|
|
5172 }
|
|
5173 }
|
442
|
5174 write_c_string (")\n", stream);
|
428
|
5175 }
|
|
5176 backlist = backlist->next;
|
|
5177 }
|
|
5178 }
|
|
5179 Vprint_level = old_level;
|
|
5180 print_readably = old_pr;
|
|
5181 print_escape_newlines = old_nl;
|
|
5182 UNGCPRO;
|
|
5183 Vinhibit_quit = oiq;
|
|
5184 return Qnil;
|
|
5185 }
|
|
5186
|
|
5187
|
444
|
5188 DEFUN ("backtrace-frame", Fbacktrace_frame, 1, 1, 0, /*
|
|
5189 Return the function and arguments NFRAMES up from current execution point.
|
428
|
5190 If that frame has not evaluated the arguments yet (or is a special form),
|
|
5191 the value is (nil FUNCTION ARG-FORMS...).
|
|
5192 If that frame has evaluated its arguments and called its function already,
|
|
5193 the value is (t FUNCTION ARG-VALUES...).
|
|
5194 A &rest arg is represented as the tail of the list ARG-VALUES.
|
|
5195 FUNCTION is whatever was supplied as car of evaluated list,
|
|
5196 or a lambda expression for macro calls.
|
444
|
5197 If NFRAMES is more than the number of frames, the value is nil.
|
428
|
5198 */
|
|
5199 (nframes))
|
|
5200 {
|
|
5201 REGISTER struct backtrace *backlist = backtrace_list;
|
|
5202 REGISTER int i;
|
|
5203 Lisp_Object tem;
|
|
5204
|
|
5205 CHECK_NATNUM (nframes);
|
|
5206
|
|
5207 /* Find the frame requested. */
|
|
5208 for (i = XINT (nframes); backlist && (i-- > 0);)
|
|
5209 backlist = backlist->next;
|
|
5210
|
|
5211 if (!backlist)
|
|
5212 return Qnil;
|
|
5213 if (backlist->nargs == UNEVALLED)
|
|
5214 return Fcons (Qnil, Fcons (*backlist->function, *backlist->args));
|
|
5215 else
|
|
5216 {
|
|
5217 if (backlist->nargs == MANY)
|
|
5218 tem = *backlist->args;
|
|
5219 else
|
|
5220 tem = Flist (backlist->nargs, backlist->args);
|
|
5221
|
|
5222 return Fcons (Qt, Fcons (*backlist->function, tem));
|
|
5223 }
|
|
5224 }
|
|
5225
|
|
5226
|
|
5227 /************************************************************************/
|
|
5228 /* Warnings */
|
|
5229 /************************************************************************/
|
|
5230
|
|
5231 void
|
|
5232 warn_when_safe_lispobj (Lisp_Object class, Lisp_Object level,
|
|
5233 Lisp_Object obj)
|
|
5234 {
|
|
5235 obj = list1 (list3 (class, level, obj));
|
|
5236 if (NILP (Vpending_warnings))
|
|
5237 Vpending_warnings = Vpending_warnings_tail = obj;
|
|
5238 else
|
|
5239 {
|
|
5240 Fsetcdr (Vpending_warnings_tail, obj);
|
|
5241 Vpending_warnings_tail = obj;
|
|
5242 }
|
|
5243 }
|
|
5244
|
|
5245 /* #### This should probably accept Lisp objects; but then we have
|
|
5246 to make sure that Feval() isn't called, since it might not be safe.
|
|
5247
|
|
5248 An alternative approach is to just pass some non-string type of
|
|
5249 Lisp_Object to warn_when_safe_lispobj(); `prin1-to-string' will
|
|
5250 automatically be called when it is safe to do so. */
|
|
5251
|
|
5252 void
|
665
|
5253 warn_when_safe (Lisp_Object class, Lisp_Object level, const CIntbyte *fmt, ...)
|
428
|
5254 {
|
|
5255 Lisp_Object obj;
|
|
5256 va_list args;
|
|
5257
|
|
5258 va_start (args, fmt);
|
665
|
5259 obj = emacs_doprnt_string_va ((const Intbyte *) GETTEXT (fmt),
|
428
|
5260 Qnil, -1, args);
|
|
5261 va_end (args);
|
|
5262
|
|
5263 warn_when_safe_lispobj (class, level, obj);
|
|
5264 }
|
|
5265
|
|
5266
|
|
5267
|
|
5268
|
|
5269 /************************************************************************/
|
|
5270 /* Initialization */
|
|
5271 /************************************************************************/
|
|
5272
|
|
5273 void
|
|
5274 syms_of_eval (void)
|
|
5275 {
|
442
|
5276 INIT_LRECORD_IMPLEMENTATION (subr);
|
|
5277
|
563
|
5278 DEFSYMBOL (Qinhibit_quit);
|
|
5279 DEFSYMBOL (Qautoload);
|
|
5280 DEFSYMBOL (Qdebug_on_error);
|
|
5281 DEFSYMBOL (Qstack_trace_on_error);
|
|
5282 DEFSYMBOL (Qdebug_on_signal);
|
|
5283 DEFSYMBOL (Qstack_trace_on_signal);
|
|
5284 DEFSYMBOL (Qdebugger);
|
|
5285 DEFSYMBOL (Qmacro);
|
428
|
5286 defsymbol (&Qand_rest, "&rest");
|
|
5287 defsymbol (&Qand_optional, "&optional");
|
|
5288 /* Note that the process code also uses Qexit */
|
563
|
5289 DEFSYMBOL (Qexit);
|
|
5290 DEFSYMBOL (Qsetq);
|
|
5291 DEFSYMBOL (Qinteractive);
|
|
5292 DEFSYMBOL (Qcommandp);
|
|
5293 DEFSYMBOL (Qdefun);
|
|
5294 DEFSYMBOL (Qprogn);
|
|
5295 DEFSYMBOL (Qvalues);
|
|
5296 DEFSYMBOL (Qdisplay_warning);
|
|
5297 DEFSYMBOL (Qrun_hooks);
|
|
5298 DEFSYMBOL (Qif);
|
428
|
5299
|
|
5300 DEFSUBR (For);
|
|
5301 DEFSUBR (Fand);
|
|
5302 DEFSUBR (Fif);
|
|
5303 DEFSUBR_MACRO (Fwhen);
|
|
5304 DEFSUBR_MACRO (Funless);
|
|
5305 DEFSUBR (Fcond);
|
|
5306 DEFSUBR (Fprogn);
|
|
5307 DEFSUBR (Fprog1);
|
|
5308 DEFSUBR (Fprog2);
|
|
5309 DEFSUBR (Fsetq);
|
|
5310 DEFSUBR (Fquote);
|
|
5311 DEFSUBR (Ffunction);
|
|
5312 DEFSUBR (Fdefun);
|
|
5313 DEFSUBR (Fdefmacro);
|
|
5314 DEFSUBR (Fdefvar);
|
|
5315 DEFSUBR (Fdefconst);
|
|
5316 DEFSUBR (Fuser_variable_p);
|
|
5317 DEFSUBR (Flet);
|
|
5318 DEFSUBR (FletX);
|
|
5319 DEFSUBR (Fwhile);
|
|
5320 DEFSUBR (Fmacroexpand_internal);
|
|
5321 DEFSUBR (Fcatch);
|
|
5322 DEFSUBR (Fthrow);
|
|
5323 DEFSUBR (Funwind_protect);
|
|
5324 DEFSUBR (Fcondition_case);
|
|
5325 DEFSUBR (Fcall_with_condition_handler);
|
|
5326 DEFSUBR (Fsignal);
|
|
5327 DEFSUBR (Finteractive_p);
|
|
5328 DEFSUBR (Fcommandp);
|
|
5329 DEFSUBR (Fcommand_execute);
|
|
5330 DEFSUBR (Fautoload);
|
|
5331 DEFSUBR (Feval);
|
|
5332 DEFSUBR (Fapply);
|
|
5333 DEFSUBR (Ffuncall);
|
|
5334 DEFSUBR (Ffunctionp);
|
|
5335 DEFSUBR (Ffunction_min_args);
|
|
5336 DEFSUBR (Ffunction_max_args);
|
|
5337 DEFSUBR (Frun_hooks);
|
|
5338 DEFSUBR (Frun_hook_with_args);
|
|
5339 DEFSUBR (Frun_hook_with_args_until_success);
|
|
5340 DEFSUBR (Frun_hook_with_args_until_failure);
|
|
5341 DEFSUBR (Fbacktrace_debug);
|
|
5342 DEFSUBR (Fbacktrace);
|
|
5343 DEFSUBR (Fbacktrace_frame);
|
|
5344 }
|
|
5345
|
|
5346 void
|
|
5347 reinit_eval (void)
|
|
5348 {
|
|
5349 specpdl_ptr = specpdl;
|
|
5350 specpdl_depth_counter = 0;
|
|
5351 catchlist = 0;
|
|
5352 Vcondition_handlers = Qnil;
|
|
5353 backtrace_list = 0;
|
|
5354 Vquit_flag = Qnil;
|
|
5355 debug_on_next_call = 0;
|
|
5356 lisp_eval_depth = 0;
|
|
5357 entering_debugger = 0;
|
|
5358 }
|
|
5359
|
|
5360 void
|
|
5361 reinit_vars_of_eval (void)
|
|
5362 {
|
|
5363 preparing_for_armageddon = 0;
|
|
5364 in_warnings = 0;
|
|
5365 Qunbound_suspended_errors_tag = make_opaque_ptr (&Qunbound_suspended_errors_tag);
|
|
5366 staticpro_nodump (&Qunbound_suspended_errors_tag);
|
|
5367
|
|
5368 specpdl_size = 50;
|
|
5369 specpdl = xnew_array (struct specbinding, specpdl_size);
|
|
5370 /* XEmacs change: increase these values. */
|
|
5371 max_specpdl_size = 3000;
|
442
|
5372 max_lisp_eval_depth = 1000;
|
|
5373 #ifdef DEFEND_AGAINST_THROW_RECURSION
|
428
|
5374 throw_level = 0;
|
|
5375 #endif
|
|
5376 }
|
|
5377
|
|
5378 void
|
|
5379 vars_of_eval (void)
|
|
5380 {
|
|
5381 reinit_vars_of_eval ();
|
|
5382
|
|
5383 DEFVAR_INT ("max-specpdl-size", &max_specpdl_size /*
|
|
5384 Limit on number of Lisp variable bindings & unwind-protects before error.
|
|
5385 */ );
|
|
5386
|
|
5387 DEFVAR_INT ("max-lisp-eval-depth", &max_lisp_eval_depth /*
|
|
5388 Limit on depth in `eval', `apply' and `funcall' before error.
|
|
5389 This limit is to catch infinite recursions for you before they cause
|
|
5390 actual stack overflow in C, which would be fatal for Emacs.
|
|
5391 You can safely make it considerably larger than its default value,
|
|
5392 if that proves inconveniently small.
|
|
5393 */ );
|
|
5394
|
|
5395 DEFVAR_LISP ("quit-flag", &Vquit_flag /*
|
|
5396 Non-nil causes `eval' to abort, unless `inhibit-quit' is non-nil.
|
|
5397 Typing C-G sets `quit-flag' non-nil, regardless of `inhibit-quit'.
|
|
5398 */ );
|
|
5399 Vquit_flag = Qnil;
|
|
5400
|
|
5401 DEFVAR_LISP ("inhibit-quit", &Vinhibit_quit /*
|
|
5402 Non-nil inhibits C-g quitting from happening immediately.
|
|
5403 Note that `quit-flag' will still be set by typing C-g,
|
|
5404 so a quit will be signalled as soon as `inhibit-quit' is nil.
|
|
5405 To prevent this happening, set `quit-flag' to nil
|
|
5406 before making `inhibit-quit' nil. The value of `inhibit-quit' is
|
|
5407 ignored if a critical quit is requested by typing control-shift-G in
|
|
5408 an X frame.
|
|
5409 */ );
|
|
5410 Vinhibit_quit = Qnil;
|
|
5411
|
|
5412 DEFVAR_LISP ("stack-trace-on-error", &Vstack_trace_on_error /*
|
|
5413 *Non-nil means automatically display a backtrace buffer
|
|
5414 after any error that is not handled by a `condition-case'.
|
|
5415 If the value is a list, an error only means to display a backtrace
|
|
5416 if one of its condition symbols appears in the list.
|
|
5417 See also variable `stack-trace-on-signal'.
|
|
5418 */ );
|
|
5419 Vstack_trace_on_error = Qnil;
|
|
5420
|
|
5421 DEFVAR_LISP ("stack-trace-on-signal", &Vstack_trace_on_signal /*
|
|
5422 *Non-nil means automatically display a backtrace buffer
|
|
5423 after any error that is signalled, whether or not it is handled by
|
|
5424 a `condition-case'.
|
|
5425 If the value is a list, an error only means to display a backtrace
|
|
5426 if one of its condition symbols appears in the list.
|
|
5427 See also variable `stack-trace-on-error'.
|
|
5428 */ );
|
|
5429 Vstack_trace_on_signal = Qnil;
|
|
5430
|
|
5431 DEFVAR_LISP ("debug-ignored-errors", &Vdebug_ignored_errors /*
|
|
5432 *List of errors for which the debugger should not be called.
|
|
5433 Each element may be a condition-name or a regexp that matches error messages.
|
|
5434 If any element applies to a given error, that error skips the debugger
|
|
5435 and just returns to top level.
|
|
5436 This overrides the variable `debug-on-error'.
|
|
5437 It does not apply to errors handled by `condition-case'.
|
|
5438 */ );
|
|
5439 Vdebug_ignored_errors = Qnil;
|
|
5440
|
|
5441 DEFVAR_LISP ("debug-on-error", &Vdebug_on_error /*
|
|
5442 *Non-nil means enter debugger if an unhandled error is signalled.
|
|
5443 The debugger will not be entered if the error is handled by
|
|
5444 a `condition-case'.
|
|
5445 If the value is a list, an error only means to enter the debugger
|
|
5446 if one of its condition symbols appears in the list.
|
|
5447 This variable is overridden by `debug-ignored-errors'.
|
|
5448 See also variables `debug-on-quit' and `debug-on-signal'.
|
|
5449 */ );
|
|
5450 Vdebug_on_error = Qnil;
|
|
5451
|
|
5452 DEFVAR_LISP ("debug-on-signal", &Vdebug_on_signal /*
|
|
5453 *Non-nil means enter debugger if an error is signalled.
|
|
5454 The debugger will be entered whether or not the error is handled by
|
|
5455 a `condition-case'.
|
|
5456 If the value is a list, an error only means to enter the debugger
|
|
5457 if one of its condition symbols appears in the list.
|
|
5458 See also variable `debug-on-quit'.
|
|
5459 */ );
|
|
5460 Vdebug_on_signal = Qnil;
|
|
5461
|
|
5462 DEFVAR_BOOL ("debug-on-quit", &debug_on_quit /*
|
|
5463 *Non-nil means enter debugger if quit is signalled (C-G, for example).
|
|
5464 Does not apply if quit is handled by a `condition-case'. Entering the
|
|
5465 debugger can also be achieved at any time (for X11 console) by typing
|
|
5466 control-shift-G to signal a critical quit.
|
|
5467 */ );
|
|
5468 debug_on_quit = 0;
|
|
5469
|
|
5470 DEFVAR_BOOL ("debug-on-next-call", &debug_on_next_call /*
|
|
5471 Non-nil means enter debugger before next `eval', `apply' or `funcall'.
|
|
5472 */ );
|
|
5473
|
|
5474 DEFVAR_LISP ("debugger", &Vdebugger /*
|
|
5475 Function to call to invoke debugger.
|
|
5476 If due to frame exit, args are `exit' and the value being returned;
|
|
5477 this function's value will be returned instead of that.
|
|
5478 If due to error, args are `error' and a list of the args to `signal'.
|
|
5479 If due to `apply' or `funcall' entry, one arg, `lambda'.
|
|
5480 If due to `eval' entry, one arg, t.
|
|
5481 */ );
|
|
5482 Vdebugger = Qnil;
|
|
5483
|
|
5484 staticpro (&Vpending_warnings);
|
|
5485 Vpending_warnings = Qnil;
|
452
|
5486 dump_add_root_object (&Vpending_warnings_tail);
|
428
|
5487 Vpending_warnings_tail = Qnil;
|
|
5488
|
|
5489 staticpro (&Vautoload_queue);
|
|
5490 Vautoload_queue = Qnil;
|
|
5491
|
|
5492 staticpro (&Vcondition_handlers);
|
|
5493
|
|
5494 staticpro (&Vcurrent_warning_class);
|
|
5495 Vcurrent_warning_class = Qnil;
|
|
5496
|
|
5497 staticpro (&Vcurrent_error_state);
|
|
5498 Vcurrent_error_state = Qnil; /* errors as normal */
|
|
5499
|
|
5500 reinit_eval ();
|
|
5501 }
|