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