Improve the explanation of version control to include concepts
[emacs.git] / src / eval.c
blob7d7e73484f79545734e03820401503b443cf129e
1 /* Evaluator for GNU Emacs Lisp interpreter.
2 Copyright (C) 1985, 1986, 1987, 1993, 1994, 1995, 1999, 2000, 2001,
3 2002, 2003, 2004, 2005, 2006, 2007 Free Software Foundation, Inc.
5 This file is part of GNU Emacs.
7 GNU Emacs is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2, or (at your option)
10 any later version.
12 GNU Emacs is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with GNU Emacs; see the file COPYING. If not, write to
19 the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
20 Boston, MA 02110-1301, USA. */
23 #include <config.h>
24 #include "lisp.h"
25 #include "blockinput.h"
26 #include "commands.h"
27 #include "keyboard.h"
28 #include "dispextern.h"
29 #include <setjmp.h>
31 #if HAVE_X_WINDOWS
32 #include "xterm.h"
33 #endif
35 /* This definition is duplicated in alloc.c and keyboard.c */
36 /* Putting it in lisp.h makes cc bomb out! */
38 struct backtrace
40 struct backtrace *next;
41 Lisp_Object *function;
42 Lisp_Object *args; /* Points to vector of args. */
43 int nargs; /* Length of vector.
44 If nargs is UNEVALLED, args points to slot holding
45 list of unevalled args */
46 char evalargs;
47 /* Nonzero means call value of debugger when done with this operation. */
48 char debug_on_exit;
51 struct backtrace *backtrace_list;
53 /* This structure helps implement the `catch' and `throw' control
54 structure. A struct catchtag contains all the information needed
55 to restore the state of the interpreter after a non-local jump.
57 Handlers for error conditions (represented by `struct handler'
58 structures) just point to a catch tag to do the cleanup required
59 for their jumps.
61 catchtag structures are chained together in the C calling stack;
62 the `next' member points to the next outer catchtag.
64 A call like (throw TAG VAL) searches for a catchtag whose `tag'
65 member is TAG, and then unbinds to it. The `val' member is used to
66 hold VAL while the stack is unwound; `val' is returned as the value
67 of the catch form.
69 All the other members are concerned with restoring the interpreter
70 state. */
72 struct catchtag
74 Lisp_Object tag;
75 Lisp_Object val;
76 struct catchtag *next;
77 struct gcpro *gcpro;
78 jmp_buf jmp;
79 struct backtrace *backlist;
80 struct handler *handlerlist;
81 int lisp_eval_depth;
82 int pdlcount;
83 int poll_suppress_count;
84 int interrupt_input_blocked;
85 struct byte_stack *byte_stack;
88 struct catchtag *catchlist;
90 #ifdef DEBUG_GCPRO
91 /* Count levels of GCPRO to detect failure to UNGCPRO. */
92 int gcpro_level;
93 #endif
95 Lisp_Object Qautoload, Qmacro, Qexit, Qinteractive, Qcommandp, Qdefun;
96 Lisp_Object Qinhibit_quit, Vinhibit_quit, Vquit_flag;
97 Lisp_Object Qand_rest, Qand_optional;
98 Lisp_Object Qdebug_on_error;
99 Lisp_Object Qdeclare;
100 Lisp_Object Qdebug;
102 /* This holds either the symbol `run-hooks' or nil.
103 It is nil at an early stage of startup, and when Emacs
104 is shutting down. */
106 Lisp_Object Vrun_hooks;
108 /* Non-nil means record all fset's and provide's, to be undone
109 if the file being autoloaded is not fully loaded.
110 They are recorded by being consed onto the front of Vautoload_queue:
111 (FUN . ODEF) for a defun, (0 . OFEATURES) for a provide. */
113 Lisp_Object Vautoload_queue;
115 /* Current number of specbindings allocated in specpdl. */
117 int specpdl_size;
119 /* Pointer to beginning of specpdl. */
121 struct specbinding *specpdl;
123 /* Pointer to first unused element in specpdl. */
125 struct specbinding *specpdl_ptr;
127 /* Maximum size allowed for specpdl allocation */
129 EMACS_INT max_specpdl_size;
131 /* Depth in Lisp evaluations and function calls. */
133 int lisp_eval_depth;
135 /* Maximum allowed depth in Lisp evaluations and function calls. */
137 EMACS_INT max_lisp_eval_depth;
139 /* Nonzero means enter debugger before next function call */
141 int debug_on_next_call;
143 /* Non-zero means debugger may continue. This is zero when the
144 debugger is called during redisplay, where it might not be safe to
145 continue the interrupted redisplay. */
147 int debugger_may_continue;
149 /* List of conditions (non-nil atom means all) which cause a backtrace
150 if an error is handled by the command loop's error handler. */
152 Lisp_Object Vstack_trace_on_error;
154 /* List of conditions (non-nil atom means all) which enter the debugger
155 if an error is handled by the command loop's error handler. */
157 Lisp_Object Vdebug_on_error;
159 /* List of conditions and regexps specifying error messages which
160 do not enter the debugger even if Vdebug_on_error says they should. */
162 Lisp_Object Vdebug_ignored_errors;
164 /* Non-nil means call the debugger even if the error will be handled. */
166 Lisp_Object Vdebug_on_signal;
168 /* Hook for edebug to use. */
170 Lisp_Object Vsignal_hook_function;
172 /* Nonzero means enter debugger if a quit signal
173 is handled by the command loop's error handler. */
175 int debug_on_quit;
177 /* The value of num_nonmacro_input_events as of the last time we
178 started to enter the debugger. If we decide to enter the debugger
179 again when this is still equal to num_nonmacro_input_events, then we
180 know that the debugger itself has an error, and we should just
181 signal the error instead of entering an infinite loop of debugger
182 invocations. */
184 int when_entered_debugger;
186 Lisp_Object Vdebugger;
188 /* The function from which the last `signal' was called. Set in
189 Fsignal. */
191 Lisp_Object Vsignaling_function;
193 /* Set to non-zero while processing X events. Checked in Feval to
194 make sure the Lisp interpreter isn't called from a signal handler,
195 which is unsafe because the interpreter isn't reentrant. */
197 int handling_signal;
199 /* Function to process declarations in defmacro forms. */
201 Lisp_Object Vmacro_declaration_function;
203 extern Lisp_Object Qrisky_local_variable;
205 static Lisp_Object funcall_lambda P_ ((Lisp_Object, int, Lisp_Object*));
206 static void unwind_to_catch P_ ((struct catchtag *, Lisp_Object)) NO_RETURN;
208 #if __GNUC__
209 /* "gcc -O3" enables automatic function inlining, which optimizes out
210 the arguments for the invocations of these functions, whereas they
211 expect these values on the stack. */
212 Lisp_Object apply1 () __attribute__((noinline));
213 Lisp_Object call2 () __attribute__((noinline));
214 #endif
216 void
217 init_eval_once ()
219 specpdl_size = 50;
220 specpdl = (struct specbinding *) xmalloc (specpdl_size * sizeof (struct specbinding));
221 specpdl_ptr = specpdl;
222 /* Don't forget to update docs (lispref node "Local Variables"). */
223 max_specpdl_size = 1000;
224 max_lisp_eval_depth = 400;
226 Vrun_hooks = Qnil;
229 void
230 init_eval ()
232 specpdl_ptr = specpdl;
233 catchlist = 0;
234 handlerlist = 0;
235 backtrace_list = 0;
236 Vquit_flag = Qnil;
237 debug_on_next_call = 0;
238 lisp_eval_depth = 0;
239 #ifdef DEBUG_GCPRO
240 gcpro_level = 0;
241 #endif
242 /* This is less than the initial value of num_nonmacro_input_events. */
243 when_entered_debugger = -1;
246 /* unwind-protect function used by call_debugger. */
248 static Lisp_Object
249 restore_stack_limits (data)
250 Lisp_Object data;
252 max_specpdl_size = XINT (XCAR (data));
253 max_lisp_eval_depth = XINT (XCDR (data));
254 return Qnil;
257 /* Call the Lisp debugger, giving it argument ARG. */
259 Lisp_Object
260 call_debugger (arg)
261 Lisp_Object arg;
263 int debug_while_redisplaying;
264 int count = SPECPDL_INDEX ();
265 Lisp_Object val;
266 int old_max = max_specpdl_size;
268 /* Temporarily bump up the stack limits,
269 so the debugger won't run out of stack. */
271 max_specpdl_size += 1;
272 record_unwind_protect (restore_stack_limits,
273 Fcons (make_number (old_max),
274 make_number (max_lisp_eval_depth)));
275 max_specpdl_size = old_max;
277 if (lisp_eval_depth + 40 > max_lisp_eval_depth)
278 max_lisp_eval_depth = lisp_eval_depth + 40;
280 if (SPECPDL_INDEX () + 100 > max_specpdl_size)
281 max_specpdl_size = SPECPDL_INDEX () + 100;
283 #ifdef HAVE_X_WINDOWS
284 if (display_hourglass_p)
285 cancel_hourglass ();
286 #endif
288 debug_on_next_call = 0;
289 when_entered_debugger = num_nonmacro_input_events;
291 /* Resetting redisplaying_p to 0 makes sure that debug output is
292 displayed if the debugger is invoked during redisplay. */
293 debug_while_redisplaying = redisplaying_p;
294 redisplaying_p = 0;
295 specbind (intern ("debugger-may-continue"),
296 debug_while_redisplaying ? Qnil : Qt);
297 specbind (Qinhibit_redisplay, Qnil);
298 specbind (Qdebug_on_error, Qnil);
300 #if 0 /* Binding this prevents execution of Lisp code during
301 redisplay, which necessarily leads to display problems. */
302 specbind (Qinhibit_eval_during_redisplay, Qt);
303 #endif
305 val = apply1 (Vdebugger, arg);
307 /* Interrupting redisplay and resuming it later is not safe under
308 all circumstances. So, when the debugger returns, abort the
309 interrupted redisplay by going back to the top-level. */
310 if (debug_while_redisplaying)
311 Ftop_level ();
313 return unbind_to (count, val);
316 void
317 do_debug_on_call (code)
318 Lisp_Object code;
320 debug_on_next_call = 0;
321 backtrace_list->debug_on_exit = 1;
322 call_debugger (Fcons (code, Qnil));
325 /* NOTE!!! Every function that can call EVAL must protect its args
326 and temporaries from garbage collection while it needs them.
327 The definition of `For' shows what you have to do. */
329 DEFUN ("or", For, Sor, 0, UNEVALLED, 0,
330 doc: /* Eval args until one of them yields non-nil, then return that value.
331 The remaining args are not evalled at all.
332 If all args return nil, return nil.
333 usage: (or CONDITIONS...) */)
334 (args)
335 Lisp_Object args;
337 register Lisp_Object val = Qnil;
338 struct gcpro gcpro1;
340 GCPRO1 (args);
342 while (CONSP (args))
344 val = Feval (XCAR (args));
345 if (!NILP (val))
346 break;
347 args = XCDR (args);
350 UNGCPRO;
351 return val;
354 DEFUN ("and", Fand, Sand, 0, UNEVALLED, 0,
355 doc: /* Eval args until one of them yields nil, then return nil.
356 The remaining args are not evalled at all.
357 If no arg yields nil, return the last arg's value.
358 usage: (and CONDITIONS...) */)
359 (args)
360 Lisp_Object args;
362 register Lisp_Object val = Qt;
363 struct gcpro gcpro1;
365 GCPRO1 (args);
367 while (CONSP (args))
369 val = Feval (XCAR (args));
370 if (NILP (val))
371 break;
372 args = XCDR (args);
375 UNGCPRO;
376 return val;
379 DEFUN ("if", Fif, Sif, 2, UNEVALLED, 0,
380 doc: /* If COND yields non-nil, do THEN, else do ELSE...
381 Returns the value of THEN or the value of the last of the ELSE's.
382 THEN must be one expression, but ELSE... can be zero or more expressions.
383 If COND yields nil, and there are no ELSE's, the value is nil.
384 usage: (if COND THEN ELSE...) */)
385 (args)
386 Lisp_Object args;
388 register Lisp_Object cond;
389 struct gcpro gcpro1;
391 GCPRO1 (args);
392 cond = Feval (Fcar (args));
393 UNGCPRO;
395 if (!NILP (cond))
396 return Feval (Fcar (Fcdr (args)));
397 return Fprogn (Fcdr (Fcdr (args)));
400 DEFUN ("cond", Fcond, Scond, 0, UNEVALLED, 0,
401 doc: /* Try each clause until one succeeds.
402 Each clause looks like (CONDITION BODY...). CONDITION is evaluated
403 and, if the value is non-nil, this clause succeeds:
404 then the expressions in BODY are evaluated and the last one's
405 value is the value of the cond-form.
406 If no clause succeeds, cond returns nil.
407 If a clause has one element, as in (CONDITION),
408 CONDITION's value if non-nil is returned from the cond-form.
409 usage: (cond CLAUSES...) */)
410 (args)
411 Lisp_Object args;
413 register Lisp_Object clause, val;
414 struct gcpro gcpro1;
416 val = Qnil;
417 GCPRO1 (args);
418 while (!NILP (args))
420 clause = Fcar (args);
421 val = Feval (Fcar (clause));
422 if (!NILP (val))
424 if (!EQ (XCDR (clause), Qnil))
425 val = Fprogn (XCDR (clause));
426 break;
428 args = XCDR (args);
430 UNGCPRO;
432 return val;
435 DEFUN ("progn", Fprogn, Sprogn, 0, UNEVALLED, 0,
436 doc: /* Eval BODY forms sequentially and return value of last one.
437 usage: (progn BODY...) */)
438 (args)
439 Lisp_Object args;
441 register Lisp_Object val = Qnil;
442 struct gcpro gcpro1;
444 GCPRO1 (args);
446 while (CONSP (args))
448 val = Feval (XCAR (args));
449 args = XCDR (args);
452 UNGCPRO;
453 return val;
456 DEFUN ("prog1", Fprog1, Sprog1, 1, UNEVALLED, 0,
457 doc: /* Eval FIRST and BODY sequentially; value from FIRST.
458 The value of FIRST is saved during the evaluation of the remaining args,
459 whose values are discarded.
460 usage: (prog1 FIRST BODY...) */)
461 (args)
462 Lisp_Object args;
464 Lisp_Object val;
465 register Lisp_Object args_left;
466 struct gcpro gcpro1, gcpro2;
467 register int argnum = 0;
469 if (NILP(args))
470 return Qnil;
472 args_left = args;
473 val = Qnil;
474 GCPRO2 (args, val);
478 if (!(argnum++))
479 val = Feval (Fcar (args_left));
480 else
481 Feval (Fcar (args_left));
482 args_left = Fcdr (args_left);
484 while (!NILP(args_left));
486 UNGCPRO;
487 return val;
490 DEFUN ("prog2", Fprog2, Sprog2, 2, UNEVALLED, 0,
491 doc: /* Eval FORM1, FORM2 and BODY sequentially; value from FORM2.
492 The value of FORM2 is saved during the evaluation of the
493 remaining args, whose values are discarded.
494 usage: (prog2 FORM1 FORM2 BODY...) */)
495 (args)
496 Lisp_Object args;
498 Lisp_Object val;
499 register Lisp_Object args_left;
500 struct gcpro gcpro1, gcpro2;
501 register int argnum = -1;
503 val = Qnil;
505 if (NILP (args))
506 return Qnil;
508 args_left = args;
509 val = Qnil;
510 GCPRO2 (args, val);
514 if (!(argnum++))
515 val = Feval (Fcar (args_left));
516 else
517 Feval (Fcar (args_left));
518 args_left = Fcdr (args_left);
520 while (!NILP (args_left));
522 UNGCPRO;
523 return val;
526 DEFUN ("setq", Fsetq, Ssetq, 0, UNEVALLED, 0,
527 doc: /* Set each SYM to the value of its VAL.
528 The symbols SYM are variables; they are literal (not evaluated).
529 The values VAL are expressions; they are evaluated.
530 Thus, (setq x (1+ y)) sets `x' to the value of `(1+ y)'.
531 The second VAL is not computed until after the first SYM is set, and so on;
532 each VAL can use the new value of variables set earlier in the `setq'.
533 The return value of the `setq' form is the value of the last VAL.
534 usage: (setq [SYM VAL]...) */)
535 (args)
536 Lisp_Object args;
538 register Lisp_Object args_left;
539 register Lisp_Object val, sym;
540 struct gcpro gcpro1;
542 if (NILP(args))
543 return Qnil;
545 args_left = args;
546 GCPRO1 (args);
550 val = Feval (Fcar (Fcdr (args_left)));
551 sym = Fcar (args_left);
552 Fset (sym, val);
553 args_left = Fcdr (Fcdr (args_left));
555 while (!NILP(args_left));
557 UNGCPRO;
558 return val;
561 DEFUN ("quote", Fquote, Squote, 1, UNEVALLED, 0,
562 doc: /* Return the argument, without evaluating it. `(quote x)' yields `x'.
563 usage: (quote ARG) */)
564 (args)
565 Lisp_Object args;
567 return Fcar (args);
570 DEFUN ("function", Ffunction, Sfunction, 1, UNEVALLED, 0,
571 doc: /* Like `quote', but preferred for objects which are functions.
572 In byte compilation, `function' causes its argument to be compiled.
573 `quote' cannot do that.
574 usage: (function ARG) */)
575 (args)
576 Lisp_Object args;
578 return Fcar (args);
582 DEFUN ("interactive-p", Finteractive_p, Sinteractive_p, 0, 0, 0,
583 doc: /* Return t if the function was run directly by user input.
584 This means that the function was called with `call-interactively'
585 \(which includes being called as the binding of a key)
586 and input is currently coming from the keyboard (not in keyboard macro),
587 and Emacs is not running in batch mode (`noninteractive' is nil).
589 The only known proper use of `interactive-p' is in deciding whether to
590 display a helpful message, or how to display it. If you're thinking
591 of using it for any other purpose, it is quite likely that you're
592 making a mistake. Think: what do you want to do when the command is
593 called from a keyboard macro?
595 If you want to test whether your function was called with
596 `call-interactively', the way to do that is by adding an extra
597 optional argument, and making the `interactive' spec specify non-nil
598 unconditionally for that argument. (`p' is a good way to do this.) */)
601 return (INTERACTIVE && interactive_p (1)) ? Qt : Qnil;
605 DEFUN ("called-interactively-p", Fcalled_interactively_p, Scalled_interactively_p, 0, 0, 0,
606 doc: /* Return t if the function using this was called with `call-interactively'.
607 This is used for implementing advice and other function-modifying
608 features of Emacs.
610 The cleanest way to test whether your function was called with
611 `call-interactively' is by adding an extra optional argument,
612 and making the `interactive' spec specify non-nil unconditionally
613 for that argument. (`p' is a good way to do this.) */)
616 return interactive_p (1) ? Qt : Qnil;
620 /* Return 1 if function in which this appears was called using
621 call-interactively.
623 EXCLUDE_SUBRS_P non-zero means always return 0 if the function
624 called is a built-in. */
627 interactive_p (exclude_subrs_p)
628 int exclude_subrs_p;
630 struct backtrace *btp;
631 Lisp_Object fun;
633 btp = backtrace_list;
635 /* If this isn't a byte-compiled function, there may be a frame at
636 the top for Finteractive_p. If so, skip it. */
637 fun = Findirect_function (*btp->function, Qnil);
638 if (SUBRP (fun) && (XSUBR (fun) == &Sinteractive_p
639 || XSUBR (fun) == &Scalled_interactively_p))
640 btp = btp->next;
642 /* If we're running an Emacs 18-style byte-compiled function, there
643 may be a frame for Fbytecode at the top level. In any version of
644 Emacs there can be Fbytecode frames for subexpressions evaluated
645 inside catch and condition-case. Skip past them.
647 If this isn't a byte-compiled function, then we may now be
648 looking at several frames for special forms. Skip past them. */
649 while (btp
650 && (EQ (*btp->function, Qbytecode)
651 || btp->nargs == UNEVALLED))
652 btp = btp->next;
654 /* btp now points at the frame of the innermost function that isn't
655 a special form, ignoring frames for Finteractive_p and/or
656 Fbytecode at the top. If this frame is for a built-in function
657 (such as load or eval-region) return nil. */
658 fun = Findirect_function (*btp->function, Qnil);
659 if (exclude_subrs_p && SUBRP (fun))
660 return 0;
662 /* btp points to the frame of a Lisp function that called interactive-p.
663 Return t if that function was called interactively. */
664 if (btp && btp->next && EQ (*btp->next->function, Qcall_interactively))
665 return 1;
666 return 0;
670 DEFUN ("defun", Fdefun, Sdefun, 2, UNEVALLED, 0,
671 doc: /* Define NAME as a function.
672 The definition is (lambda ARGLIST [DOCSTRING] BODY...).
673 See also the function `interactive'.
674 usage: (defun NAME ARGLIST [DOCSTRING] BODY...) */)
675 (args)
676 Lisp_Object args;
678 register Lisp_Object fn_name;
679 register Lisp_Object defn;
681 fn_name = Fcar (args);
682 CHECK_SYMBOL (fn_name);
683 defn = Fcons (Qlambda, Fcdr (args));
684 if (!NILP (Vpurify_flag))
685 defn = Fpurecopy (defn);
686 if (CONSP (XSYMBOL (fn_name)->function)
687 && EQ (XCAR (XSYMBOL (fn_name)->function), Qautoload))
688 LOADHIST_ATTACH (Fcons (Qt, fn_name));
689 Ffset (fn_name, defn);
690 LOADHIST_ATTACH (Fcons (Qdefun, fn_name));
691 return fn_name;
694 DEFUN ("defmacro", Fdefmacro, Sdefmacro, 2, UNEVALLED, 0,
695 doc: /* Define NAME as a macro.
696 The actual definition looks like
697 (macro lambda ARGLIST [DOCSTRING] [DECL] BODY...).
698 When the macro is called, as in (NAME ARGS...),
699 the function (lambda ARGLIST BODY...) is applied to
700 the list ARGS... as it appears in the expression,
701 and the result should be a form to be evaluated instead of the original.
703 DECL is a declaration, optional, which can specify how to indent
704 calls to this macro and how Edebug should handle it. It looks like this:
705 (declare SPECS...)
706 The elements can look like this:
707 (indent INDENT)
708 Set NAME's `lisp-indent-function' property to INDENT.
710 (debug DEBUG)
711 Set NAME's `edebug-form-spec' property to DEBUG. (This is
712 equivalent to writing a `def-edebug-spec' for the macro.)
713 usage: (defmacro NAME ARGLIST [DOCSTRING] [DECL] BODY...) */)
714 (args)
715 Lisp_Object args;
717 register Lisp_Object fn_name;
718 register Lisp_Object defn;
719 Lisp_Object lambda_list, doc, tail;
721 fn_name = Fcar (args);
722 CHECK_SYMBOL (fn_name);
723 lambda_list = Fcar (Fcdr (args));
724 tail = Fcdr (Fcdr (args));
726 doc = Qnil;
727 if (STRINGP (Fcar (tail)))
729 doc = XCAR (tail);
730 tail = XCDR (tail);
733 while (CONSP (Fcar (tail))
734 && EQ (Fcar (Fcar (tail)), Qdeclare))
736 if (!NILP (Vmacro_declaration_function))
738 struct gcpro gcpro1;
739 GCPRO1 (args);
740 call2 (Vmacro_declaration_function, fn_name, Fcar (tail));
741 UNGCPRO;
744 tail = Fcdr (tail);
747 if (NILP (doc))
748 tail = Fcons (lambda_list, tail);
749 else
750 tail = Fcons (lambda_list, Fcons (doc, tail));
751 defn = Fcons (Qmacro, Fcons (Qlambda, tail));
753 if (!NILP (Vpurify_flag))
754 defn = Fpurecopy (defn);
755 if (CONSP (XSYMBOL (fn_name)->function)
756 && EQ (XCAR (XSYMBOL (fn_name)->function), Qautoload))
757 LOADHIST_ATTACH (Fcons (Qt, fn_name));
758 Ffset (fn_name, defn);
759 LOADHIST_ATTACH (Fcons (Qdefun, fn_name));
760 return fn_name;
764 DEFUN ("defvaralias", Fdefvaralias, Sdefvaralias, 2, 3, 0,
765 doc: /* Make NEW-ALIAS a variable alias for symbol BASE-VARIABLE.
766 Aliased variables always have the same value; setting one sets the other.
767 Third arg DOCSTRING, if non-nil, is documentation for NEW-ALIAS. If it is
768 omitted or nil, NEW-ALIAS gets the documentation string of BASE-VARIABLE,
769 or of the variable at the end of the chain of aliases, if BASE-VARIABLE is
770 itself an alias.
771 The return value is BASE-VARIABLE. */)
772 (new_alias, base_variable, docstring)
773 Lisp_Object new_alias, base_variable, docstring;
775 struct Lisp_Symbol *sym;
777 CHECK_SYMBOL (new_alias);
778 CHECK_SYMBOL (base_variable);
780 if (SYMBOL_CONSTANT_P (new_alias))
781 error ("Cannot make a constant an alias");
783 sym = XSYMBOL (new_alias);
784 sym->indirect_variable = 1;
785 sym->value = base_variable;
786 sym->constant = SYMBOL_CONSTANT_P (base_variable);
787 LOADHIST_ATTACH (new_alias);
788 if (!NILP (docstring))
789 Fput (new_alias, Qvariable_documentation, docstring);
790 else
791 Fput (new_alias, Qvariable_documentation, Qnil);
793 return base_variable;
797 DEFUN ("defvar", Fdefvar, Sdefvar, 1, UNEVALLED, 0,
798 doc: /* Define SYMBOL as a variable, and return SYMBOL.
799 You are not required to define a variable in order to use it,
800 but the definition can supply documentation and an initial value
801 in a way that tags can recognize.
803 INITVALUE is evaluated, and used to set SYMBOL, only if SYMBOL's value is void.
804 If SYMBOL is buffer-local, its default value is what is set;
805 buffer-local values are not affected.
806 INITVALUE and DOCSTRING are optional.
807 If DOCSTRING starts with *, this variable is identified as a user option.
808 This means that M-x set-variable recognizes it.
809 See also `user-variable-p'.
810 If INITVALUE is missing, SYMBOL's value is not set.
812 If SYMBOL has a local binding, then this form affects the local
813 binding. This is usually not what you want. Thus, if you need to
814 load a file defining variables, with this form or with `defconst' or
815 `defcustom', you should always load that file _outside_ any bindings
816 for these variables. \(`defconst' and `defcustom' behave similarly in
817 this respect.)
818 usage: (defvar SYMBOL &optional INITVALUE DOCSTRING) */)
819 (args)
820 Lisp_Object args;
822 register Lisp_Object sym, tem, tail;
824 sym = Fcar (args);
825 tail = Fcdr (args);
826 if (!NILP (Fcdr (Fcdr (tail))))
827 error ("Too many arguments");
829 tem = Fdefault_boundp (sym);
830 if (!NILP (tail))
832 if (SYMBOL_CONSTANT_P (sym))
834 /* For upward compatibility, allow (defvar :foo (quote :foo)). */
835 Lisp_Object tem = Fcar (tail);
836 if (! (CONSP (tem)
837 && EQ (XCAR (tem), Qquote)
838 && CONSP (XCDR (tem))
839 && EQ (XCAR (XCDR (tem)), sym)))
840 error ("Constant symbol `%s' specified in defvar",
841 SDATA (SYMBOL_NAME (sym)));
844 if (NILP (tem))
845 Fset_default (sym, Feval (Fcar (tail)));
846 else
847 { /* Check if there is really a global binding rather than just a let
848 binding that shadows the global unboundness of the var. */
849 volatile struct specbinding *pdl = specpdl_ptr;
850 while (--pdl >= specpdl)
852 if (EQ (pdl->symbol, sym) && !pdl->func
853 && EQ (pdl->old_value, Qunbound))
855 message_with_string ("Warning: defvar ignored because %s is let-bound",
856 SYMBOL_NAME (sym), 1);
857 break;
861 tail = Fcdr (tail);
862 tem = Fcar (tail);
863 if (!NILP (tem))
865 if (!NILP (Vpurify_flag))
866 tem = Fpurecopy (tem);
867 Fput (sym, Qvariable_documentation, tem);
869 LOADHIST_ATTACH (sym);
871 else
872 /* Simple (defvar <var>) should not count as a definition at all.
873 It could get in the way of other definitions, and unloading this
874 package could try to make the variable unbound. */
877 return sym;
880 DEFUN ("defconst", Fdefconst, Sdefconst, 2, UNEVALLED, 0,
881 doc: /* Define SYMBOL as a constant variable.
882 The intent is that neither programs nor users should ever change this value.
883 Always sets the value of SYMBOL to the result of evalling INITVALUE.
884 If SYMBOL is buffer-local, its default value is what is set;
885 buffer-local values are not affected.
886 DOCSTRING is optional.
888 If SYMBOL has a local binding, then this form sets the local binding's
889 value. However, you should normally not make local bindings for
890 variables defined with this form.
891 usage: (defconst SYMBOL INITVALUE [DOCSTRING]) */)
892 (args)
893 Lisp_Object args;
895 register Lisp_Object sym, tem;
897 sym = Fcar (args);
898 if (!NILP (Fcdr (Fcdr (Fcdr (args)))))
899 error ("Too many arguments");
901 tem = Feval (Fcar (Fcdr (args)));
902 if (!NILP (Vpurify_flag))
903 tem = Fpurecopy (tem);
904 Fset_default (sym, tem);
905 tem = Fcar (Fcdr (Fcdr (args)));
906 if (!NILP (tem))
908 if (!NILP (Vpurify_flag))
909 tem = Fpurecopy (tem);
910 Fput (sym, Qvariable_documentation, tem);
912 Fput (sym, Qrisky_local_variable, Qt);
913 LOADHIST_ATTACH (sym);
914 return sym;
917 /* Error handler used in Fuser_variable_p. */
918 static Lisp_Object
919 user_variable_p_eh (ignore)
920 Lisp_Object ignore;
922 return Qnil;
925 DEFUN ("user-variable-p", Fuser_variable_p, Suser_variable_p, 1, 1, 0,
926 doc: /* Return t if VARIABLE is intended to be set and modified by users.
927 \(The alternative is a variable used internally in a Lisp program.)
928 A variable is a user variable if
929 \(1) the first character of its documentation is `*', or
930 \(2) it is customizable (its property list contains a non-nil value
931 of `standard-value' or `custom-autoload'), or
932 \(3) it is an alias for another user variable.
933 Return nil if VARIABLE is an alias and there is a loop in the
934 chain of symbols. */)
935 (variable)
936 Lisp_Object variable;
938 Lisp_Object documentation;
940 if (!SYMBOLP (variable))
941 return Qnil;
943 /* If indirect and there's an alias loop, don't check anything else. */
944 if (XSYMBOL (variable)->indirect_variable
945 && NILP (internal_condition_case_1 (indirect_variable, variable,
946 Qt, user_variable_p_eh)))
947 return Qnil;
949 while (1)
951 documentation = Fget (variable, Qvariable_documentation);
952 if (INTEGERP (documentation) && XINT (documentation) < 0)
953 return Qt;
954 if (STRINGP (documentation)
955 && ((unsigned char) SREF (documentation, 0) == '*'))
956 return Qt;
957 /* If it is (STRING . INTEGER), a negative integer means a user variable. */
958 if (CONSP (documentation)
959 && STRINGP (XCAR (documentation))
960 && INTEGERP (XCDR (documentation))
961 && XINT (XCDR (documentation)) < 0)
962 return Qt;
963 /* Customizable? See `custom-variable-p'. */
964 if ((!NILP (Fget (variable, intern ("standard-value"))))
965 || (!NILP (Fget (variable, intern ("custom-autoload")))))
966 return Qt;
968 if (!XSYMBOL (variable)->indirect_variable)
969 return Qnil;
971 /* An indirect variable? Let's follow the chain. */
972 variable = XSYMBOL (variable)->value;
976 DEFUN ("let*", FletX, SletX, 1, UNEVALLED, 0,
977 doc: /* Bind variables according to VARLIST then eval BODY.
978 The value of the last form in BODY is returned.
979 Each element of VARLIST is a symbol (which is bound to nil)
980 or a list (SYMBOL VALUEFORM) (which binds SYMBOL to the value of VALUEFORM).
981 Each VALUEFORM can refer to the symbols already bound by this VARLIST.
982 usage: (let* VARLIST BODY...) */)
983 (args)
984 Lisp_Object args;
986 Lisp_Object varlist, val, elt;
987 int count = SPECPDL_INDEX ();
988 struct gcpro gcpro1, gcpro2, gcpro3;
990 GCPRO3 (args, elt, varlist);
992 varlist = Fcar (args);
993 while (!NILP (varlist))
995 QUIT;
996 elt = Fcar (varlist);
997 if (SYMBOLP (elt))
998 specbind (elt, Qnil);
999 else if (! NILP (Fcdr (Fcdr (elt))))
1000 signal_error ("`let' bindings can have only one value-form", elt);
1001 else
1003 val = Feval (Fcar (Fcdr (elt)));
1004 specbind (Fcar (elt), val);
1006 varlist = Fcdr (varlist);
1008 UNGCPRO;
1009 val = Fprogn (Fcdr (args));
1010 return unbind_to (count, val);
1013 DEFUN ("let", Flet, Slet, 1, UNEVALLED, 0,
1014 doc: /* Bind variables according to VARLIST then eval BODY.
1015 The value of the last form in BODY is returned.
1016 Each element of VARLIST is a symbol (which is bound to nil)
1017 or a list (SYMBOL VALUEFORM) (which binds SYMBOL to the value of VALUEFORM).
1018 All the VALUEFORMs are evalled before any symbols are bound.
1019 usage: (let VARLIST BODY...) */)
1020 (args)
1021 Lisp_Object args;
1023 Lisp_Object *temps, tem;
1024 register Lisp_Object elt, varlist;
1025 int count = SPECPDL_INDEX ();
1026 register int argnum;
1027 struct gcpro gcpro1, gcpro2;
1029 varlist = Fcar (args);
1031 /* Make space to hold the values to give the bound variables */
1032 elt = Flength (varlist);
1033 temps = (Lisp_Object *) alloca (XFASTINT (elt) * sizeof (Lisp_Object));
1035 /* Compute the values and store them in `temps' */
1037 GCPRO2 (args, *temps);
1038 gcpro2.nvars = 0;
1040 for (argnum = 0; !NILP (varlist); varlist = Fcdr (varlist))
1042 QUIT;
1043 elt = Fcar (varlist);
1044 if (SYMBOLP (elt))
1045 temps [argnum++] = Qnil;
1046 else if (! NILP (Fcdr (Fcdr (elt))))
1047 signal_error ("`let' bindings can have only one value-form", elt);
1048 else
1049 temps [argnum++] = Feval (Fcar (Fcdr (elt)));
1050 gcpro2.nvars = argnum;
1052 UNGCPRO;
1054 varlist = Fcar (args);
1055 for (argnum = 0; !NILP (varlist); varlist = Fcdr (varlist))
1057 elt = Fcar (varlist);
1058 tem = temps[argnum++];
1059 if (SYMBOLP (elt))
1060 specbind (elt, tem);
1061 else
1062 specbind (Fcar (elt), tem);
1065 elt = Fprogn (Fcdr (args));
1066 return unbind_to (count, elt);
1069 DEFUN ("while", Fwhile, Swhile, 1, UNEVALLED, 0,
1070 doc: /* If TEST yields non-nil, eval BODY... and repeat.
1071 The order of execution is thus TEST, BODY, TEST, BODY and so on
1072 until TEST returns nil.
1073 usage: (while TEST BODY...) */)
1074 (args)
1075 Lisp_Object args;
1077 Lisp_Object test, body;
1078 struct gcpro gcpro1, gcpro2;
1080 GCPRO2 (test, body);
1082 test = Fcar (args);
1083 body = Fcdr (args);
1084 while (!NILP (Feval (test)))
1086 QUIT;
1087 Fprogn (body);
1090 UNGCPRO;
1091 return Qnil;
1094 DEFUN ("macroexpand", Fmacroexpand, Smacroexpand, 1, 2, 0,
1095 doc: /* Return result of expanding macros at top level of FORM.
1096 If FORM is not a macro call, it is returned unchanged.
1097 Otherwise, the macro is expanded and the expansion is considered
1098 in place of FORM. When a non-macro-call results, it is returned.
1100 The second optional arg ENVIRONMENT specifies an environment of macro
1101 definitions to shadow the loaded ones for use in file byte-compilation. */)
1102 (form, environment)
1103 Lisp_Object form;
1104 Lisp_Object environment;
1106 /* With cleanups from Hallvard Furuseth. */
1107 register Lisp_Object expander, sym, def, tem;
1109 while (1)
1111 /* Come back here each time we expand a macro call,
1112 in case it expands into another macro call. */
1113 if (!CONSP (form))
1114 break;
1115 /* Set SYM, give DEF and TEM right values in case SYM is not a symbol. */
1116 def = sym = XCAR (form);
1117 tem = Qnil;
1118 /* Trace symbols aliases to other symbols
1119 until we get a symbol that is not an alias. */
1120 while (SYMBOLP (def))
1122 QUIT;
1123 sym = def;
1124 tem = Fassq (sym, environment);
1125 if (NILP (tem))
1127 def = XSYMBOL (sym)->function;
1128 if (!EQ (def, Qunbound))
1129 continue;
1131 break;
1133 /* Right now TEM is the result from SYM in ENVIRONMENT,
1134 and if TEM is nil then DEF is SYM's function definition. */
1135 if (NILP (tem))
1137 /* SYM is not mentioned in ENVIRONMENT.
1138 Look at its function definition. */
1139 if (EQ (def, Qunbound) || !CONSP (def))
1140 /* Not defined or definition not suitable */
1141 break;
1142 if (EQ (XCAR (def), Qautoload))
1144 /* Autoloading function: will it be a macro when loaded? */
1145 tem = Fnth (make_number (4), def);
1146 if (EQ (tem, Qt) || EQ (tem, Qmacro))
1147 /* Yes, load it and try again. */
1149 struct gcpro gcpro1;
1150 GCPRO1 (form);
1151 do_autoload (def, sym);
1152 UNGCPRO;
1153 continue;
1155 else
1156 break;
1158 else if (!EQ (XCAR (def), Qmacro))
1159 break;
1160 else expander = XCDR (def);
1162 else
1164 expander = XCDR (tem);
1165 if (NILP (expander))
1166 break;
1168 form = apply1 (expander, XCDR (form));
1170 return form;
1173 DEFUN ("catch", Fcatch, Scatch, 1, UNEVALLED, 0,
1174 doc: /* Eval BODY allowing nonlocal exits using `throw'.
1175 TAG is evalled to get the tag to use; it must not be nil.
1177 Then the BODY is executed.
1178 Within BODY, a call to `throw' with the same TAG exits BODY and this `catch'.
1179 If no throw happens, `catch' returns the value of the last BODY form.
1180 If a throw happens, it specifies the value to return from `catch'.
1181 usage: (catch TAG BODY...) */)
1182 (args)
1183 Lisp_Object args;
1185 register Lisp_Object tag;
1186 struct gcpro gcpro1;
1188 GCPRO1 (args);
1189 tag = Feval (Fcar (args));
1190 UNGCPRO;
1191 return internal_catch (tag, Fprogn, Fcdr (args));
1194 /* Set up a catch, then call C function FUNC on argument ARG.
1195 FUNC should return a Lisp_Object.
1196 This is how catches are done from within C code. */
1198 Lisp_Object
1199 internal_catch (tag, func, arg)
1200 Lisp_Object tag;
1201 Lisp_Object (*func) ();
1202 Lisp_Object arg;
1204 /* This structure is made part of the chain `catchlist'. */
1205 struct catchtag c;
1207 /* Fill in the components of c, and put it on the list. */
1208 c.next = catchlist;
1209 c.tag = tag;
1210 c.val = Qnil;
1211 c.backlist = backtrace_list;
1212 c.handlerlist = handlerlist;
1213 c.lisp_eval_depth = lisp_eval_depth;
1214 c.pdlcount = SPECPDL_INDEX ();
1215 c.poll_suppress_count = poll_suppress_count;
1216 c.interrupt_input_blocked = interrupt_input_blocked;
1217 c.gcpro = gcprolist;
1218 c.byte_stack = byte_stack_list;
1219 catchlist = &c;
1221 /* Call FUNC. */
1222 if (! _setjmp (c.jmp))
1223 c.val = (*func) (arg);
1225 /* Throw works by a longjmp that comes right here. */
1226 catchlist = c.next;
1227 return c.val;
1230 /* Unwind the specbind, catch, and handler stacks back to CATCH, and
1231 jump to that CATCH, returning VALUE as the value of that catch.
1233 This is the guts Fthrow and Fsignal; they differ only in the way
1234 they choose the catch tag to throw to. A catch tag for a
1235 condition-case form has a TAG of Qnil.
1237 Before each catch is discarded, unbind all special bindings and
1238 execute all unwind-protect clauses made above that catch. Unwind
1239 the handler stack as we go, so that the proper handlers are in
1240 effect for each unwind-protect clause we run. At the end, restore
1241 some static info saved in CATCH, and longjmp to the location
1242 specified in the
1244 This is used for correct unwinding in Fthrow and Fsignal. */
1246 static void
1247 unwind_to_catch (catch, value)
1248 struct catchtag *catch;
1249 Lisp_Object value;
1251 register int last_time;
1253 /* Save the value in the tag. */
1254 catch->val = value;
1256 /* Restore certain special C variables. */
1257 set_poll_suppress_count (catch->poll_suppress_count);
1258 UNBLOCK_INPUT_TO (catch->interrupt_input_blocked);
1259 handling_signal = 0;
1260 immediate_quit = 0;
1264 last_time = catchlist == catch;
1266 /* Unwind the specpdl stack, and then restore the proper set of
1267 handlers. */
1268 unbind_to (catchlist->pdlcount, Qnil);
1269 handlerlist = catchlist->handlerlist;
1270 catchlist = catchlist->next;
1272 while (! last_time);
1274 #if HAVE_X_WINDOWS
1275 /* If x_catch_errors was done, turn it off now.
1276 (First we give unbind_to a chance to do that.) */
1277 x_fully_uncatch_errors ();
1278 #endif
1280 byte_stack_list = catch->byte_stack;
1281 gcprolist = catch->gcpro;
1282 #ifdef DEBUG_GCPRO
1283 if (gcprolist != 0)
1284 gcpro_level = gcprolist->level + 1;
1285 else
1286 gcpro_level = 0;
1287 #endif
1288 backtrace_list = catch->backlist;
1289 lisp_eval_depth = catch->lisp_eval_depth;
1291 _longjmp (catch->jmp, 1);
1294 DEFUN ("throw", Fthrow, Sthrow, 2, 2, 0,
1295 doc: /* Throw to the catch for TAG and return VALUE from it.
1296 Both TAG and VALUE are evalled. */)
1297 (tag, value)
1298 register Lisp_Object tag, value;
1300 register struct catchtag *c;
1302 if (!NILP (tag))
1303 for (c = catchlist; c; c = c->next)
1305 if (EQ (c->tag, tag))
1306 unwind_to_catch (c, value);
1308 xsignal2 (Qno_catch, tag, value);
1312 DEFUN ("unwind-protect", Funwind_protect, Sunwind_protect, 1, UNEVALLED, 0,
1313 doc: /* Do BODYFORM, protecting with UNWINDFORMS.
1314 If BODYFORM completes normally, its value is returned
1315 after executing the UNWINDFORMS.
1316 If BODYFORM exits nonlocally, the UNWINDFORMS are executed anyway.
1317 usage: (unwind-protect BODYFORM UNWINDFORMS...) */)
1318 (args)
1319 Lisp_Object args;
1321 Lisp_Object val;
1322 int count = SPECPDL_INDEX ();
1324 record_unwind_protect (Fprogn, Fcdr (args));
1325 val = Feval (Fcar (args));
1326 return unbind_to (count, val);
1329 /* Chain of condition handlers currently in effect.
1330 The elements of this chain are contained in the stack frames
1331 of Fcondition_case and internal_condition_case.
1332 When an error is signaled (by calling Fsignal, below),
1333 this chain is searched for an element that applies. */
1335 struct handler *handlerlist;
1337 DEFUN ("condition-case", Fcondition_case, Scondition_case, 2, UNEVALLED, 0,
1338 doc: /* Regain control when an error is signaled.
1339 Executes BODYFORM and returns its value if no error happens.
1340 Each element of HANDLERS looks like (CONDITION-NAME BODY...)
1341 where the BODY is made of Lisp expressions.
1343 A handler is applicable to an error
1344 if CONDITION-NAME is one of the error's condition names.
1345 If an error happens, the first applicable handler is run.
1347 The car of a handler may be a list of condition names
1348 instead of a single condition name.
1350 When a handler handles an error,
1351 control returns to the condition-case and the handler BODY... is executed
1352 with VAR bound to (SIGNALED-CONDITIONS . SIGNAL-DATA).
1353 VAR may be nil; then you do not get access to the signal information.
1355 The value of the last BODY form is returned from the condition-case.
1356 See also the function `signal' for more info.
1357 usage: (condition-case VAR BODYFORM &rest HANDLERS) */)
1358 (args)
1359 Lisp_Object args;
1361 register Lisp_Object bodyform, handlers;
1362 volatile Lisp_Object var;
1364 var = Fcar (args);
1365 bodyform = Fcar (Fcdr (args));
1366 handlers = Fcdr (Fcdr (args));
1368 return internal_lisp_condition_case (var, bodyform, handlers);
1371 /* Like Fcondition_case, but the args are separate
1372 rather than passed in a list. Used by Fbyte_code. */
1374 Lisp_Object
1375 internal_lisp_condition_case (var, bodyform, handlers)
1376 volatile Lisp_Object var;
1377 Lisp_Object bodyform, handlers;
1379 Lisp_Object val;
1380 struct catchtag c;
1381 struct handler h;
1383 CHECK_SYMBOL (var);
1385 for (val = handlers; CONSP (val); val = XCDR (val))
1387 Lisp_Object tem;
1388 tem = XCAR (val);
1389 if (! (NILP (tem)
1390 || (CONSP (tem)
1391 && (SYMBOLP (XCAR (tem))
1392 || CONSP (XCAR (tem))))))
1393 error ("Invalid condition handler", tem);
1396 c.tag = Qnil;
1397 c.val = Qnil;
1398 c.backlist = backtrace_list;
1399 c.handlerlist = handlerlist;
1400 c.lisp_eval_depth = lisp_eval_depth;
1401 c.pdlcount = SPECPDL_INDEX ();
1402 c.poll_suppress_count = poll_suppress_count;
1403 c.interrupt_input_blocked = interrupt_input_blocked;
1404 c.gcpro = gcprolist;
1405 c.byte_stack = byte_stack_list;
1406 if (_setjmp (c.jmp))
1408 if (!NILP (h.var))
1409 specbind (h.var, c.val);
1410 val = Fprogn (Fcdr (h.chosen_clause));
1412 /* Note that this just undoes the binding of h.var; whoever
1413 longjumped to us unwound the stack to c.pdlcount before
1414 throwing. */
1415 unbind_to (c.pdlcount, Qnil);
1416 return val;
1418 c.next = catchlist;
1419 catchlist = &c;
1421 h.var = var;
1422 h.handler = handlers;
1423 h.next = handlerlist;
1424 h.tag = &c;
1425 handlerlist = &h;
1427 val = Feval (bodyform);
1428 catchlist = c.next;
1429 handlerlist = h.next;
1430 return val;
1433 /* Call the function BFUN with no arguments, catching errors within it
1434 according to HANDLERS. If there is an error, call HFUN with
1435 one argument which is the data that describes the error:
1436 (SIGNALNAME . DATA)
1438 HANDLERS can be a list of conditions to catch.
1439 If HANDLERS is Qt, catch all errors.
1440 If HANDLERS is Qerror, catch all errors
1441 but allow the debugger to run if that is enabled. */
1443 Lisp_Object
1444 internal_condition_case (bfun, handlers, hfun)
1445 Lisp_Object (*bfun) ();
1446 Lisp_Object handlers;
1447 Lisp_Object (*hfun) ();
1449 Lisp_Object val;
1450 struct catchtag c;
1451 struct handler h;
1453 /* Since Fsignal will close off all calls to x_catch_errors,
1454 we will get the wrong results if some are not closed now. */
1455 #if HAVE_X_WINDOWS
1456 if (x_catching_errors ())
1457 abort ();
1458 #endif
1460 c.tag = Qnil;
1461 c.val = Qnil;
1462 c.backlist = backtrace_list;
1463 c.handlerlist = handlerlist;
1464 c.lisp_eval_depth = lisp_eval_depth;
1465 c.pdlcount = SPECPDL_INDEX ();
1466 c.poll_suppress_count = poll_suppress_count;
1467 c.interrupt_input_blocked = interrupt_input_blocked;
1468 c.gcpro = gcprolist;
1469 c.byte_stack = byte_stack_list;
1470 if (_setjmp (c.jmp))
1472 return (*hfun) (c.val);
1474 c.next = catchlist;
1475 catchlist = &c;
1476 h.handler = handlers;
1477 h.var = Qnil;
1478 h.next = handlerlist;
1479 h.tag = &c;
1480 handlerlist = &h;
1482 val = (*bfun) ();
1483 catchlist = c.next;
1484 handlerlist = h.next;
1485 return val;
1488 /* Like internal_condition_case but call BFUN with ARG as its argument. */
1490 Lisp_Object
1491 internal_condition_case_1 (bfun, arg, handlers, hfun)
1492 Lisp_Object (*bfun) ();
1493 Lisp_Object arg;
1494 Lisp_Object handlers;
1495 Lisp_Object (*hfun) ();
1497 Lisp_Object val;
1498 struct catchtag c;
1499 struct handler h;
1501 /* Since Fsignal will close off all calls to x_catch_errors,
1502 we will get the wrong results if some are not closed now. */
1503 #if HAVE_X_WINDOWS
1504 if (x_catching_errors ())
1505 abort ();
1506 #endif
1508 c.tag = Qnil;
1509 c.val = Qnil;
1510 c.backlist = backtrace_list;
1511 c.handlerlist = handlerlist;
1512 c.lisp_eval_depth = lisp_eval_depth;
1513 c.pdlcount = SPECPDL_INDEX ();
1514 c.poll_suppress_count = poll_suppress_count;
1515 c.interrupt_input_blocked = interrupt_input_blocked;
1516 c.gcpro = gcprolist;
1517 c.byte_stack = byte_stack_list;
1518 if (_setjmp (c.jmp))
1520 return (*hfun) (c.val);
1522 c.next = catchlist;
1523 catchlist = &c;
1524 h.handler = handlers;
1525 h.var = Qnil;
1526 h.next = handlerlist;
1527 h.tag = &c;
1528 handlerlist = &h;
1530 val = (*bfun) (arg);
1531 catchlist = c.next;
1532 handlerlist = h.next;
1533 return val;
1537 /* Like internal_condition_case but call BFUN with NARGS as first,
1538 and ARGS as second argument. */
1540 Lisp_Object
1541 internal_condition_case_2 (bfun, nargs, args, handlers, hfun)
1542 Lisp_Object (*bfun) ();
1543 int nargs;
1544 Lisp_Object *args;
1545 Lisp_Object handlers;
1546 Lisp_Object (*hfun) ();
1548 Lisp_Object val;
1549 struct catchtag c;
1550 struct handler h;
1552 /* Since Fsignal will close off all calls to x_catch_errors,
1553 we will get the wrong results if some are not closed now. */
1554 #if HAVE_X_WINDOWS
1555 if (x_catching_errors ())
1556 abort ();
1557 #endif
1559 c.tag = Qnil;
1560 c.val = Qnil;
1561 c.backlist = backtrace_list;
1562 c.handlerlist = handlerlist;
1563 c.lisp_eval_depth = lisp_eval_depth;
1564 c.pdlcount = SPECPDL_INDEX ();
1565 c.poll_suppress_count = poll_suppress_count;
1566 c.interrupt_input_blocked = interrupt_input_blocked;
1567 c.gcpro = gcprolist;
1568 c.byte_stack = byte_stack_list;
1569 if (_setjmp (c.jmp))
1571 return (*hfun) (c.val);
1573 c.next = catchlist;
1574 catchlist = &c;
1575 h.handler = handlers;
1576 h.var = Qnil;
1577 h.next = handlerlist;
1578 h.tag = &c;
1579 handlerlist = &h;
1581 val = (*bfun) (nargs, args);
1582 catchlist = c.next;
1583 handlerlist = h.next;
1584 return val;
1588 static Lisp_Object find_handler_clause P_ ((Lisp_Object, Lisp_Object,
1589 Lisp_Object, Lisp_Object));
1591 DEFUN ("signal", Fsignal, Ssignal, 2, 2, 0,
1592 doc: /* Signal an error. Args are ERROR-SYMBOL and associated DATA.
1593 This function does not return.
1595 An error symbol is a symbol with an `error-conditions' property
1596 that is a list of condition names.
1597 A handler for any of those names will get to handle this signal.
1598 The symbol `error' should normally be one of them.
1600 DATA should be a list. Its elements are printed as part of the error message.
1601 See Info anchor `(elisp)Definition of signal' for some details on how this
1602 error message is constructed.
1603 If the signal is handled, DATA is made available to the handler.
1604 See also the function `condition-case'. */)
1605 (error_symbol, data)
1606 Lisp_Object error_symbol, data;
1608 /* When memory is full, ERROR-SYMBOL is nil,
1609 and DATA is (REAL-ERROR-SYMBOL . REAL-DATA).
1610 That is a special case--don't do this in other situations. */
1611 register struct handler *allhandlers = handlerlist;
1612 Lisp_Object conditions;
1613 extern int gc_in_progress;
1614 extern int waiting_for_input;
1615 Lisp_Object string;
1616 Lisp_Object real_error_symbol;
1617 struct backtrace *bp;
1619 immediate_quit = handling_signal = 0;
1620 abort_on_gc = 0;
1621 if (gc_in_progress || waiting_for_input)
1622 abort ();
1624 if (NILP (error_symbol))
1625 real_error_symbol = Fcar (data);
1626 else
1627 real_error_symbol = error_symbol;
1629 #if 0 /* rms: I don't know why this was here,
1630 but it is surely wrong for an error that is handled. */
1631 #ifdef HAVE_X_WINDOWS
1632 if (display_hourglass_p)
1633 cancel_hourglass ();
1634 #endif
1635 #endif
1637 /* This hook is used by edebug. */
1638 if (! NILP (Vsignal_hook_function)
1639 && ! NILP (error_symbol))
1641 /* Edebug takes care of restoring these variables when it exits. */
1642 if (lisp_eval_depth + 20 > max_lisp_eval_depth)
1643 max_lisp_eval_depth = lisp_eval_depth + 20;
1645 if (SPECPDL_INDEX () + 40 > max_specpdl_size)
1646 max_specpdl_size = SPECPDL_INDEX () + 40;
1648 call2 (Vsignal_hook_function, error_symbol, data);
1651 conditions = Fget (real_error_symbol, Qerror_conditions);
1653 /* Remember from where signal was called. Skip over the frame for
1654 `signal' itself. If a frame for `error' follows, skip that,
1655 too. Don't do this when ERROR_SYMBOL is nil, because that
1656 is a memory-full error. */
1657 Vsignaling_function = Qnil;
1658 if (backtrace_list && !NILP (error_symbol))
1660 bp = backtrace_list->next;
1661 if (bp && bp->function && EQ (*bp->function, Qerror))
1662 bp = bp->next;
1663 if (bp && bp->function)
1664 Vsignaling_function = *bp->function;
1667 for (; handlerlist; handlerlist = handlerlist->next)
1669 register Lisp_Object clause;
1671 clause = find_handler_clause (handlerlist->handler, conditions,
1672 error_symbol, data);
1674 if (EQ (clause, Qlambda))
1676 /* We can't return values to code which signaled an error, but we
1677 can continue code which has signaled a quit. */
1678 if (EQ (real_error_symbol, Qquit))
1679 return Qnil;
1680 else
1681 error ("Cannot return from the debugger in an error");
1684 if (!NILP (clause))
1686 Lisp_Object unwind_data;
1687 struct handler *h = handlerlist;
1689 handlerlist = allhandlers;
1691 if (NILP (error_symbol))
1692 unwind_data = data;
1693 else
1694 unwind_data = Fcons (error_symbol, data);
1695 h->chosen_clause = clause;
1696 unwind_to_catch (h->tag, unwind_data);
1700 handlerlist = allhandlers;
1701 /* If no handler is present now, try to run the debugger,
1702 and if that fails, throw to top level. */
1703 find_handler_clause (Qerror, conditions, error_symbol, data);
1704 if (catchlist != 0)
1705 Fthrow (Qtop_level, Qt);
1707 if (! NILP (error_symbol))
1708 data = Fcons (error_symbol, data);
1710 string = Ferror_message_string (data);
1711 fatal ("%s", SDATA (string), 0);
1714 /* Internal version of Fsignal that never returns.
1715 Used for anything but Qquit (which can return from Fsignal). */
1717 void
1718 xsignal (error_symbol, data)
1719 Lisp_Object error_symbol, data;
1721 Fsignal (error_symbol, data);
1722 abort ();
1725 /* Like xsignal, but takes 0, 1, 2, or 3 args instead of a list. */
1727 void
1728 xsignal0 (error_symbol)
1729 Lisp_Object error_symbol;
1731 xsignal (error_symbol, Qnil);
1734 void
1735 xsignal1 (error_symbol, arg)
1736 Lisp_Object error_symbol, arg;
1738 xsignal (error_symbol, list1 (arg));
1741 void
1742 xsignal2 (error_symbol, arg1, arg2)
1743 Lisp_Object error_symbol, arg1, arg2;
1745 xsignal (error_symbol, list2 (arg1, arg2));
1748 void
1749 xsignal3 (error_symbol, arg1, arg2, arg3)
1750 Lisp_Object error_symbol, arg1, arg2, arg3;
1752 xsignal (error_symbol, list3 (arg1, arg2, arg3));
1755 /* Signal `error' with message S, and additional arg ARG.
1756 If ARG is not a genuine list, make it a one-element list. */
1758 void
1759 signal_error (s, arg)
1760 char *s;
1761 Lisp_Object arg;
1763 Lisp_Object tortoise, hare;
1765 hare = tortoise = arg;
1766 while (CONSP (hare))
1768 hare = XCDR (hare);
1769 if (!CONSP (hare))
1770 break;
1772 hare = XCDR (hare);
1773 tortoise = XCDR (tortoise);
1775 if (EQ (hare, tortoise))
1776 break;
1779 if (!NILP (hare))
1780 arg = Fcons (arg, Qnil); /* Make it a list. */
1782 xsignal (Qerror, Fcons (build_string (s), arg));
1786 /* Return nonzero iff LIST is a non-nil atom or
1787 a list containing one of CONDITIONS. */
1789 static int
1790 wants_debugger (list, conditions)
1791 Lisp_Object list, conditions;
1793 if (NILP (list))
1794 return 0;
1795 if (! CONSP (list))
1796 return 1;
1798 while (CONSP (conditions))
1800 Lisp_Object this, tail;
1801 this = XCAR (conditions);
1802 for (tail = list; CONSP (tail); tail = XCDR (tail))
1803 if (EQ (XCAR (tail), this))
1804 return 1;
1805 conditions = XCDR (conditions);
1807 return 0;
1810 /* Return 1 if an error with condition-symbols CONDITIONS,
1811 and described by SIGNAL-DATA, should skip the debugger
1812 according to debugger-ignored-errors. */
1814 static int
1815 skip_debugger (conditions, data)
1816 Lisp_Object conditions, data;
1818 Lisp_Object tail;
1819 int first_string = 1;
1820 Lisp_Object error_message;
1822 error_message = Qnil;
1823 for (tail = Vdebug_ignored_errors; CONSP (tail); tail = XCDR (tail))
1825 if (STRINGP (XCAR (tail)))
1827 if (first_string)
1829 error_message = Ferror_message_string (data);
1830 first_string = 0;
1833 if (fast_string_match (XCAR (tail), error_message) >= 0)
1834 return 1;
1836 else
1838 Lisp_Object contail;
1840 for (contail = conditions; CONSP (contail); contail = XCDR (contail))
1841 if (EQ (XCAR (tail), XCAR (contail)))
1842 return 1;
1846 return 0;
1849 /* Value of Qlambda means we have called debugger and user has continued.
1850 There are two ways to pass SIG and DATA:
1851 = SIG is the error symbol, and DATA is the rest of the data.
1852 = SIG is nil, and DATA is (SYMBOL . REST-OF-DATA).
1853 This is for memory-full errors only.
1855 We need to increase max_specpdl_size temporarily around
1856 anything we do that can push on the specpdl, so as not to get
1857 a second error here in case we're handling specpdl overflow. */
1859 static Lisp_Object
1860 find_handler_clause (handlers, conditions, sig, data)
1861 Lisp_Object handlers, conditions, sig, data;
1863 register Lisp_Object h;
1864 register Lisp_Object tem;
1865 int debugger_called = 0;
1866 int debugger_considered = 0;
1868 /* t is used by handlers for all conditions, set up by C code. */
1869 if (EQ (handlers, Qt))
1870 return Qt;
1872 /* Don't run the debugger for a memory-full error.
1873 (There is no room in memory to do that!) */
1874 if (NILP (sig))
1875 debugger_considered = 1;
1877 /* error is used similarly, but means print an error message
1878 and run the debugger if that is enabled. */
1879 if (EQ (handlers, Qerror)
1880 || !NILP (Vdebug_on_signal)) /* This says call debugger even if
1881 there is a handler. */
1883 if (!NILP (sig) && wants_debugger (Vstack_trace_on_error, conditions))
1885 max_specpdl_size++;
1886 #ifdef PROTOTYPES
1887 internal_with_output_to_temp_buffer ("*Backtrace*",
1888 (Lisp_Object (*) (Lisp_Object)) Fbacktrace,
1889 Qnil);
1890 #else
1891 internal_with_output_to_temp_buffer ("*Backtrace*",
1892 Fbacktrace, Qnil);
1893 #endif
1894 max_specpdl_size--;
1897 if (!debugger_considered)
1899 debugger_considered = 1;
1900 debugger_called = maybe_call_debugger (conditions, sig, data);
1903 /* If there is no handler, return saying whether we ran the debugger. */
1904 if (EQ (handlers, Qerror))
1906 if (debugger_called)
1907 return Qlambda;
1908 return Qt;
1912 for (h = handlers; CONSP (h); h = Fcdr (h))
1914 Lisp_Object handler, condit;
1916 handler = Fcar (h);
1917 if (!CONSP (handler))
1918 continue;
1919 condit = Fcar (handler);
1920 /* Handle a single condition name in handler HANDLER. */
1921 if (SYMBOLP (condit))
1923 tem = Fmemq (Fcar (handler), conditions);
1924 if (!NILP (tem))
1925 return handler;
1927 /* Handle a list of condition names in handler HANDLER. */
1928 else if (CONSP (condit))
1930 Lisp_Object tail;
1931 for (tail = condit; CONSP (tail); tail = XCDR (tail))
1933 tem = Fmemq (Fcar (tail), conditions);
1934 if (!NILP (tem))
1936 /* This handler is going to apply.
1937 Does it allow the debugger to run first? */
1938 if (! debugger_considered && !NILP (Fmemq (Qdebug, condit)))
1939 maybe_call_debugger (conditions, sig, data);
1940 return handler;
1946 return Qnil;
1949 /* Call the debugger if calling it is currently enabled for CONDITIONS.
1950 SIG and DATA describe the signal, as in find_handler_clause. */
1953 maybe_call_debugger (conditions, sig, data)
1954 Lisp_Object conditions, sig, data;
1956 Lisp_Object combined_data;
1958 combined_data = Fcons (sig, data);
1960 if (
1961 /* Don't try to run the debugger with interrupts blocked.
1962 The editing loop would return anyway. */
1963 ! INPUT_BLOCKED_P
1964 /* Does user wants to enter debugger for this kind of error? */
1965 && (EQ (sig, Qquit)
1966 ? debug_on_quit
1967 : wants_debugger (Vdebug_on_error, conditions))
1968 && ! skip_debugger (conditions, combined_data)
1969 /* rms: what's this for? */
1970 && when_entered_debugger < num_nonmacro_input_events)
1972 call_debugger (Fcons (Qerror, Fcons (combined_data, Qnil)));
1973 return 1;
1976 return 0;
1979 /* dump an error message; called like printf */
1981 /* VARARGS 1 */
1982 void
1983 error (m, a1, a2, a3)
1984 char *m;
1985 char *a1, *a2, *a3;
1987 char buf[200];
1988 int size = 200;
1989 int mlen;
1990 char *buffer = buf;
1991 char *args[3];
1992 int allocated = 0;
1993 Lisp_Object string;
1995 args[0] = a1;
1996 args[1] = a2;
1997 args[2] = a3;
1999 mlen = strlen (m);
2001 while (1)
2003 int used = doprnt (buffer, size, m, m + mlen, 3, args);
2004 if (used < size)
2005 break;
2006 size *= 2;
2007 if (allocated)
2008 buffer = (char *) xrealloc (buffer, size);
2009 else
2011 buffer = (char *) xmalloc (size);
2012 allocated = 1;
2016 string = build_string (buffer);
2017 if (allocated)
2018 xfree (buffer);
2020 xsignal1 (Qerror, string);
2023 DEFUN ("commandp", Fcommandp, Scommandp, 1, 2, 0,
2024 doc: /* Non-nil if FUNCTION makes provisions for interactive calling.
2025 This means it contains a description for how to read arguments to give it.
2026 The value is nil for an invalid function or a symbol with no function
2027 definition.
2029 Interactively callable functions include strings and vectors (treated
2030 as keyboard macros), lambda-expressions that contain a top-level call
2031 to `interactive', autoload definitions made by `autoload' with non-nil
2032 fourth argument, and some of the built-in functions of Lisp.
2034 Also, a symbol satisfies `commandp' if its function definition does so.
2036 If the optional argument FOR-CALL-INTERACTIVELY is non-nil,
2037 then strings and vectors are not accepted. */)
2038 (function, for_call_interactively)
2039 Lisp_Object function, for_call_interactively;
2041 register Lisp_Object fun;
2042 register Lisp_Object funcar;
2044 fun = function;
2046 fun = indirect_function (fun);
2047 if (EQ (fun, Qunbound))
2048 return Qnil;
2050 /* Emacs primitives are interactive if their DEFUN specifies an
2051 interactive spec. */
2052 if (SUBRP (fun))
2054 if (XSUBR (fun)->prompt)
2055 return Qt;
2056 else
2057 return Qnil;
2060 /* Bytecode objects are interactive if they are long enough to
2061 have an element whose index is COMPILED_INTERACTIVE, which is
2062 where the interactive spec is stored. */
2063 else if (COMPILEDP (fun))
2064 return ((ASIZE (fun) & PSEUDOVECTOR_SIZE_MASK) > COMPILED_INTERACTIVE
2065 ? Qt : Qnil);
2067 /* Strings and vectors are keyboard macros. */
2068 if (NILP (for_call_interactively) && (STRINGP (fun) || VECTORP (fun)))
2069 return Qt;
2071 /* Lists may represent commands. */
2072 if (!CONSP (fun))
2073 return Qnil;
2074 funcar = XCAR (fun);
2075 if (EQ (funcar, Qlambda))
2076 return Fassq (Qinteractive, Fcdr (XCDR (fun)));
2077 if (EQ (funcar, Qautoload))
2078 return Fcar (Fcdr (Fcdr (XCDR (fun))));
2079 else
2080 return Qnil;
2083 /* ARGSUSED */
2084 DEFUN ("autoload", Fautoload, Sautoload, 2, 5, 0,
2085 doc: /* Define FUNCTION to autoload from FILE.
2086 FUNCTION is a symbol; FILE is a file name string to pass to `load'.
2087 Third arg DOCSTRING is documentation for the function.
2088 Fourth arg INTERACTIVE if non-nil says function can be called interactively.
2089 Fifth arg TYPE indicates the type of the object:
2090 nil or omitted says FUNCTION is a function,
2091 `keymap' says FUNCTION is really a keymap, and
2092 `macro' or t says FUNCTION is really a macro.
2093 Third through fifth args give info about the real definition.
2094 They default to nil.
2095 If FUNCTION is already defined other than as an autoload,
2096 this does nothing and returns nil. */)
2097 (function, file, docstring, interactive, type)
2098 Lisp_Object function, file, docstring, interactive, type;
2100 #ifdef NO_ARG_ARRAY
2101 Lisp_Object args[4];
2102 #endif
2104 CHECK_SYMBOL (function);
2105 CHECK_STRING (file);
2107 /* If function is defined and not as an autoload, don't override */
2108 if (!EQ (XSYMBOL (function)->function, Qunbound)
2109 && !(CONSP (XSYMBOL (function)->function)
2110 && EQ (XCAR (XSYMBOL (function)->function), Qautoload)))
2111 return Qnil;
2113 if (NILP (Vpurify_flag))
2114 /* Only add entries after dumping, because the ones before are
2115 not useful and else we get loads of them from the loaddefs.el. */
2116 LOADHIST_ATTACH (Fcons (Qautoload, function));
2118 #ifdef NO_ARG_ARRAY
2119 args[0] = file;
2120 args[1] = docstring;
2121 args[2] = interactive;
2122 args[3] = type;
2124 return Ffset (function, Fcons (Qautoload, Flist (4, &args[0])));
2125 #else /* NO_ARG_ARRAY */
2126 return Ffset (function, Fcons (Qautoload, Flist (4, &file)));
2127 #endif /* not NO_ARG_ARRAY */
2130 Lisp_Object
2131 un_autoload (oldqueue)
2132 Lisp_Object oldqueue;
2134 register Lisp_Object queue, first, second;
2136 /* Queue to unwind is current value of Vautoload_queue.
2137 oldqueue is the shadowed value to leave in Vautoload_queue. */
2138 queue = Vautoload_queue;
2139 Vautoload_queue = oldqueue;
2140 while (CONSP (queue))
2142 first = XCAR (queue);
2143 second = Fcdr (first);
2144 first = Fcar (first);
2145 if (EQ (first, make_number (0)))
2146 Vfeatures = second;
2147 else
2148 Ffset (first, second);
2149 queue = XCDR (queue);
2151 return Qnil;
2154 /* Load an autoloaded function.
2155 FUNNAME is the symbol which is the function's name.
2156 FUNDEF is the autoload definition (a list). */
2158 void
2159 do_autoload (fundef, funname)
2160 Lisp_Object fundef, funname;
2162 int count = SPECPDL_INDEX ();
2163 Lisp_Object fun, queue, first, second;
2164 struct gcpro gcpro1, gcpro2, gcpro3;
2166 /* This is to make sure that loadup.el gives a clear picture
2167 of what files are preloaded and when. */
2168 if (! NILP (Vpurify_flag))
2169 error ("Attempt to autoload %s while preparing to dump",
2170 SDATA (SYMBOL_NAME (funname)));
2172 fun = funname;
2173 CHECK_SYMBOL (funname);
2174 GCPRO3 (fun, funname, fundef);
2176 /* Preserve the match data. */
2177 record_unwind_save_match_data ();
2179 /* Value saved here is to be restored into Vautoload_queue. */
2180 record_unwind_protect (un_autoload, Vautoload_queue);
2181 Vautoload_queue = Qt;
2182 Fload (Fcar (Fcdr (fundef)), Qnil, noninteractive ? Qt : Qnil, Qnil, Qt);
2184 /* Save the old autoloads, in case we ever do an unload. */
2185 queue = Vautoload_queue;
2186 while (CONSP (queue))
2188 first = XCAR (queue);
2189 second = Fcdr (first);
2190 first = Fcar (first);
2192 if (SYMBOLP (first) && CONSP (second) && EQ (XCAR (second), Qautoload))
2193 Fput (first, Qautoload, (XCDR (second)));
2195 queue = XCDR (queue);
2198 /* Once loading finishes, don't undo it. */
2199 Vautoload_queue = Qt;
2200 unbind_to (count, Qnil);
2202 fun = Findirect_function (fun, Qnil);
2204 if (!NILP (Fequal (fun, fundef)))
2205 error ("Autoloading failed to define function %s",
2206 SDATA (SYMBOL_NAME (funname)));
2207 UNGCPRO;
2211 DEFUN ("eval", Feval, Seval, 1, 1, 0,
2212 doc: /* Evaluate FORM and return its value. */)
2213 (form)
2214 Lisp_Object form;
2216 Lisp_Object fun, val, original_fun, original_args;
2217 Lisp_Object funcar;
2218 struct backtrace backtrace;
2219 struct gcpro gcpro1, gcpro2, gcpro3;
2221 if (handling_signal)
2222 abort ();
2224 if (SYMBOLP (form))
2225 return Fsymbol_value (form);
2226 if (!CONSP (form))
2227 return form;
2229 QUIT;
2230 if ((consing_since_gc > gc_cons_threshold
2231 && consing_since_gc > gc_relative_threshold)
2233 (!NILP (Vmemory_full) && consing_since_gc > memory_full_cons_threshold))
2235 GCPRO1 (form);
2236 Fgarbage_collect ();
2237 UNGCPRO;
2240 if (++lisp_eval_depth > max_lisp_eval_depth)
2242 if (max_lisp_eval_depth < 100)
2243 max_lisp_eval_depth = 100;
2244 if (lisp_eval_depth > max_lisp_eval_depth)
2245 error ("Lisp nesting exceeds `max-lisp-eval-depth'");
2248 original_fun = Fcar (form);
2249 original_args = Fcdr (form);
2251 backtrace.next = backtrace_list;
2252 backtrace_list = &backtrace;
2253 backtrace.function = &original_fun; /* This also protects them from gc */
2254 backtrace.args = &original_args;
2255 backtrace.nargs = UNEVALLED;
2256 backtrace.evalargs = 1;
2257 backtrace.debug_on_exit = 0;
2259 if (debug_on_next_call)
2260 do_debug_on_call (Qt);
2262 /* At this point, only original_fun and original_args
2263 have values that will be used below */
2264 retry:
2266 /* Optimize for no indirection. */
2267 fun = original_fun;
2268 if (SYMBOLP (fun) && !EQ (fun, Qunbound)
2269 && (fun = XSYMBOL (fun)->function, SYMBOLP (fun)))
2270 fun = indirect_function (fun);
2272 if (SUBRP (fun))
2274 Lisp_Object numargs;
2275 Lisp_Object argvals[8];
2276 Lisp_Object args_left;
2277 register int i, maxargs;
2279 args_left = original_args;
2280 numargs = Flength (args_left);
2282 CHECK_CONS_LIST ();
2284 if (XINT (numargs) < XSUBR (fun)->min_args ||
2285 (XSUBR (fun)->max_args >= 0 && XSUBR (fun)->max_args < XINT (numargs)))
2286 xsignal2 (Qwrong_number_of_arguments, original_fun, numargs);
2288 if (XSUBR (fun)->max_args == UNEVALLED)
2290 backtrace.evalargs = 0;
2291 val = (*XSUBR (fun)->function) (args_left);
2292 goto done;
2295 if (XSUBR (fun)->max_args == MANY)
2297 /* Pass a vector of evaluated arguments */
2298 Lisp_Object *vals;
2299 register int argnum = 0;
2301 vals = (Lisp_Object *) alloca (XINT (numargs) * sizeof (Lisp_Object));
2303 GCPRO3 (args_left, fun, fun);
2304 gcpro3.var = vals;
2305 gcpro3.nvars = 0;
2307 while (!NILP (args_left))
2309 vals[argnum++] = Feval (Fcar (args_left));
2310 args_left = Fcdr (args_left);
2311 gcpro3.nvars = argnum;
2314 backtrace.args = vals;
2315 backtrace.nargs = XINT (numargs);
2317 val = (*XSUBR (fun)->function) (XINT (numargs), vals);
2318 UNGCPRO;
2319 goto done;
2322 GCPRO3 (args_left, fun, fun);
2323 gcpro3.var = argvals;
2324 gcpro3.nvars = 0;
2326 maxargs = XSUBR (fun)->max_args;
2327 for (i = 0; i < maxargs; args_left = Fcdr (args_left))
2329 argvals[i] = Feval (Fcar (args_left));
2330 gcpro3.nvars = ++i;
2333 UNGCPRO;
2335 backtrace.args = argvals;
2336 backtrace.nargs = XINT (numargs);
2338 switch (i)
2340 case 0:
2341 val = (*XSUBR (fun)->function) ();
2342 goto done;
2343 case 1:
2344 val = (*XSUBR (fun)->function) (argvals[0]);
2345 goto done;
2346 case 2:
2347 val = (*XSUBR (fun)->function) (argvals[0], argvals[1]);
2348 goto done;
2349 case 3:
2350 val = (*XSUBR (fun)->function) (argvals[0], argvals[1],
2351 argvals[2]);
2352 goto done;
2353 case 4:
2354 val = (*XSUBR (fun)->function) (argvals[0], argvals[1],
2355 argvals[2], argvals[3]);
2356 goto done;
2357 case 5:
2358 val = (*XSUBR (fun)->function) (argvals[0], argvals[1], argvals[2],
2359 argvals[3], argvals[4]);
2360 goto done;
2361 case 6:
2362 val = (*XSUBR (fun)->function) (argvals[0], argvals[1], argvals[2],
2363 argvals[3], argvals[4], argvals[5]);
2364 goto done;
2365 case 7:
2366 val = (*XSUBR (fun)->function) (argvals[0], argvals[1], argvals[2],
2367 argvals[3], argvals[4], argvals[5],
2368 argvals[6]);
2369 goto done;
2371 case 8:
2372 val = (*XSUBR (fun)->function) (argvals[0], argvals[1], argvals[2],
2373 argvals[3], argvals[4], argvals[5],
2374 argvals[6], argvals[7]);
2375 goto done;
2377 default:
2378 /* Someone has created a subr that takes more arguments than
2379 is supported by this code. We need to either rewrite the
2380 subr to use a different argument protocol, or add more
2381 cases to this switch. */
2382 abort ();
2385 if (COMPILEDP (fun))
2386 val = apply_lambda (fun, original_args, 1);
2387 else
2389 if (EQ (fun, Qunbound))
2390 xsignal1 (Qvoid_function, original_fun);
2391 if (!CONSP (fun))
2392 xsignal1 (Qinvalid_function, original_fun);
2393 funcar = XCAR (fun);
2394 if (!SYMBOLP (funcar))
2395 xsignal1 (Qinvalid_function, original_fun);
2396 if (EQ (funcar, Qautoload))
2398 do_autoload (fun, original_fun);
2399 goto retry;
2401 if (EQ (funcar, Qmacro))
2402 val = Feval (apply1 (Fcdr (fun), original_args));
2403 else if (EQ (funcar, Qlambda))
2404 val = apply_lambda (fun, original_args, 1);
2405 else
2406 xsignal1 (Qinvalid_function, original_fun);
2408 done:
2409 CHECK_CONS_LIST ();
2411 lisp_eval_depth--;
2412 if (backtrace.debug_on_exit)
2413 val = call_debugger (Fcons (Qexit, Fcons (val, Qnil)));
2414 backtrace_list = backtrace.next;
2416 return val;
2419 DEFUN ("apply", Fapply, Sapply, 2, MANY, 0,
2420 doc: /* Call FUNCTION with our remaining args, using our last arg as list of args.
2421 Then return the value FUNCTION returns.
2422 Thus, (apply '+ 1 2 '(3 4)) returns 10.
2423 usage: (apply FUNCTION &rest ARGUMENTS) */)
2424 (nargs, args)
2425 int nargs;
2426 Lisp_Object *args;
2428 register int i, numargs;
2429 register Lisp_Object spread_arg;
2430 register Lisp_Object *funcall_args;
2431 Lisp_Object fun;
2432 struct gcpro gcpro1;
2434 fun = args [0];
2435 funcall_args = 0;
2436 spread_arg = args [nargs - 1];
2437 CHECK_LIST (spread_arg);
2439 numargs = XINT (Flength (spread_arg));
2441 if (numargs == 0)
2442 return Ffuncall (nargs - 1, args);
2443 else if (numargs == 1)
2445 args [nargs - 1] = XCAR (spread_arg);
2446 return Ffuncall (nargs, args);
2449 numargs += nargs - 2;
2451 /* Optimize for no indirection. */
2452 if (SYMBOLP (fun) && !EQ (fun, Qunbound)
2453 && (fun = XSYMBOL (fun)->function, SYMBOLP (fun)))
2454 fun = indirect_function (fun);
2455 if (EQ (fun, Qunbound))
2457 /* Let funcall get the error */
2458 fun = args[0];
2459 goto funcall;
2462 if (SUBRP (fun))
2464 if (numargs < XSUBR (fun)->min_args
2465 || (XSUBR (fun)->max_args >= 0 && XSUBR (fun)->max_args < numargs))
2466 goto funcall; /* Let funcall get the error */
2467 else if (XSUBR (fun)->max_args > numargs)
2469 /* Avoid making funcall cons up a yet another new vector of arguments
2470 by explicitly supplying nil's for optional values */
2471 funcall_args = (Lisp_Object *) alloca ((1 + XSUBR (fun)->max_args)
2472 * sizeof (Lisp_Object));
2473 for (i = numargs; i < XSUBR (fun)->max_args;)
2474 funcall_args[++i] = Qnil;
2475 GCPRO1 (*funcall_args);
2476 gcpro1.nvars = 1 + XSUBR (fun)->max_args;
2479 funcall:
2480 /* We add 1 to numargs because funcall_args includes the
2481 function itself as well as its arguments. */
2482 if (!funcall_args)
2484 funcall_args = (Lisp_Object *) alloca ((1 + numargs)
2485 * sizeof (Lisp_Object));
2486 GCPRO1 (*funcall_args);
2487 gcpro1.nvars = 1 + numargs;
2490 bcopy (args, funcall_args, nargs * sizeof (Lisp_Object));
2491 /* Spread the last arg we got. Its first element goes in
2492 the slot that it used to occupy, hence this value of I. */
2493 i = nargs - 1;
2494 while (!NILP (spread_arg))
2496 funcall_args [i++] = XCAR (spread_arg);
2497 spread_arg = XCDR (spread_arg);
2500 /* By convention, the caller needs to gcpro Ffuncall's args. */
2501 RETURN_UNGCPRO (Ffuncall (gcpro1.nvars, funcall_args));
2504 /* Run hook variables in various ways. */
2506 enum run_hooks_condition {to_completion, until_success, until_failure};
2507 static Lisp_Object run_hook_with_args P_ ((int, Lisp_Object *,
2508 enum run_hooks_condition));
2510 DEFUN ("run-hooks", Frun_hooks, Srun_hooks, 0, MANY, 0,
2511 doc: /* Run each hook in HOOKS.
2512 Each argument should be a symbol, a hook variable.
2513 These symbols are processed in the order specified.
2514 If a hook symbol has a non-nil value, that value may be a function
2515 or a list of functions to be called to run the hook.
2516 If the value is a function, it is called with no arguments.
2517 If it is a list, the elements are called, in order, with no arguments.
2519 Major modes should not use this function directly to run their mode
2520 hook; they should use `run-mode-hooks' instead.
2522 Do not use `make-local-variable' to make a hook variable buffer-local.
2523 Instead, use `add-hook' and specify t for the LOCAL argument.
2524 usage: (run-hooks &rest HOOKS) */)
2525 (nargs, args)
2526 int nargs;
2527 Lisp_Object *args;
2529 Lisp_Object hook[1];
2530 register int i;
2532 for (i = 0; i < nargs; i++)
2534 hook[0] = args[i];
2535 run_hook_with_args (1, hook, to_completion);
2538 return Qnil;
2541 DEFUN ("run-hook-with-args", Frun_hook_with_args,
2542 Srun_hook_with_args, 1, MANY, 0,
2543 doc: /* Run HOOK with the specified arguments ARGS.
2544 HOOK should be a symbol, a hook variable. If HOOK has a non-nil
2545 value, that value may be a function or a list of functions to be
2546 called to run the hook. If the value is a function, it is called with
2547 the given arguments and its return value is returned. If it is a list
2548 of functions, those functions are called, in order,
2549 with the given arguments ARGS.
2550 It is best not to depend on the value returned by `run-hook-with-args',
2551 as that may change.
2553 Do not use `make-local-variable' to make a hook variable buffer-local.
2554 Instead, use `add-hook' and specify t for the LOCAL argument.
2555 usage: (run-hook-with-args HOOK &rest ARGS) */)
2556 (nargs, args)
2557 int nargs;
2558 Lisp_Object *args;
2560 return run_hook_with_args (nargs, args, to_completion);
2563 DEFUN ("run-hook-with-args-until-success", Frun_hook_with_args_until_success,
2564 Srun_hook_with_args_until_success, 1, MANY, 0,
2565 doc: /* Run HOOK with the specified arguments ARGS.
2566 HOOK should be a symbol, a hook variable. If HOOK has a non-nil
2567 value, that value may be a function or a list of functions to be
2568 called to run the hook. If the value is a function, it is called with
2569 the given arguments and its return value is returned.
2570 If it is a list of functions, those functions are called, in order,
2571 with the given arguments ARGS, until one of them
2572 returns a non-nil value. Then we return that value.
2573 However, if they all return nil, we return nil.
2575 Do not use `make-local-variable' to make a hook variable buffer-local.
2576 Instead, use `add-hook' and specify t for the LOCAL argument.
2577 usage: (run-hook-with-args-until-success HOOK &rest ARGS) */)
2578 (nargs, args)
2579 int nargs;
2580 Lisp_Object *args;
2582 return run_hook_with_args (nargs, args, until_success);
2585 DEFUN ("run-hook-with-args-until-failure", Frun_hook_with_args_until_failure,
2586 Srun_hook_with_args_until_failure, 1, MANY, 0,
2587 doc: /* Run HOOK with the specified arguments ARGS.
2588 HOOK should be a symbol, a hook variable. If HOOK has a non-nil
2589 value, that value may be a function or a list of functions to be
2590 called to run the hook. If the value is a function, it is called with
2591 the given arguments and its return value is returned.
2592 If it is a list of functions, those functions are called, in order,
2593 with the given arguments ARGS, until one of them returns nil.
2594 Then we return nil. However, if they all return non-nil, we return non-nil.
2596 Do not use `make-local-variable' to make a hook variable buffer-local.
2597 Instead, use `add-hook' and specify t for the LOCAL argument.
2598 usage: (run-hook-with-args-until-failure HOOK &rest ARGS) */)
2599 (nargs, args)
2600 int nargs;
2601 Lisp_Object *args;
2603 return run_hook_with_args (nargs, args, until_failure);
2606 /* ARGS[0] should be a hook symbol.
2607 Call each of the functions in the hook value, passing each of them
2608 as arguments all the rest of ARGS (all NARGS - 1 elements).
2609 COND specifies a condition to test after each call
2610 to decide whether to stop.
2611 The caller (or its caller, etc) must gcpro all of ARGS,
2612 except that it isn't necessary to gcpro ARGS[0]. */
2614 static Lisp_Object
2615 run_hook_with_args (nargs, args, cond)
2616 int nargs;
2617 Lisp_Object *args;
2618 enum run_hooks_condition cond;
2620 Lisp_Object sym, val, ret;
2621 Lisp_Object globals;
2622 struct gcpro gcpro1, gcpro2, gcpro3;
2624 /* If we are dying or still initializing,
2625 don't do anything--it would probably crash if we tried. */
2626 if (NILP (Vrun_hooks))
2627 return Qnil;
2629 sym = args[0];
2630 val = find_symbol_value (sym);
2631 ret = (cond == until_failure ? Qt : Qnil);
2633 if (EQ (val, Qunbound) || NILP (val))
2634 return ret;
2635 else if (!CONSP (val) || EQ (XCAR (val), Qlambda))
2637 args[0] = val;
2638 return Ffuncall (nargs, args);
2640 else
2642 globals = Qnil;
2643 GCPRO3 (sym, val, globals);
2645 for (;
2646 CONSP (val) && ((cond == to_completion)
2647 || (cond == until_success ? NILP (ret)
2648 : !NILP (ret)));
2649 val = XCDR (val))
2651 if (EQ (XCAR (val), Qt))
2653 /* t indicates this hook has a local binding;
2654 it means to run the global binding too. */
2656 for (globals = Fdefault_value (sym);
2657 CONSP (globals) && ((cond == to_completion)
2658 || (cond == until_success ? NILP (ret)
2659 : !NILP (ret)));
2660 globals = XCDR (globals))
2662 args[0] = XCAR (globals);
2663 /* In a global value, t should not occur. If it does, we
2664 must ignore it to avoid an endless loop. */
2665 if (!EQ (args[0], Qt))
2666 ret = Ffuncall (nargs, args);
2669 else
2671 args[0] = XCAR (val);
2672 ret = Ffuncall (nargs, args);
2676 UNGCPRO;
2677 return ret;
2681 /* Run a hook symbol ARGS[0], but use FUNLIST instead of the actual
2682 present value of that symbol.
2683 Call each element of FUNLIST,
2684 passing each of them the rest of ARGS.
2685 The caller (or its caller, etc) must gcpro all of ARGS,
2686 except that it isn't necessary to gcpro ARGS[0]. */
2688 Lisp_Object
2689 run_hook_list_with_args (funlist, nargs, args)
2690 Lisp_Object funlist;
2691 int nargs;
2692 Lisp_Object *args;
2694 Lisp_Object sym;
2695 Lisp_Object val;
2696 Lisp_Object globals;
2697 struct gcpro gcpro1, gcpro2, gcpro3;
2699 sym = args[0];
2700 globals = Qnil;
2701 GCPRO3 (sym, val, globals);
2703 for (val = funlist; CONSP (val); val = XCDR (val))
2705 if (EQ (XCAR (val), Qt))
2707 /* t indicates this hook has a local binding;
2708 it means to run the global binding too. */
2710 for (globals = Fdefault_value (sym);
2711 CONSP (globals);
2712 globals = XCDR (globals))
2714 args[0] = XCAR (globals);
2715 /* In a global value, t should not occur. If it does, we
2716 must ignore it to avoid an endless loop. */
2717 if (!EQ (args[0], Qt))
2718 Ffuncall (nargs, args);
2721 else
2723 args[0] = XCAR (val);
2724 Ffuncall (nargs, args);
2727 UNGCPRO;
2728 return Qnil;
2731 /* Run the hook HOOK, giving each function the two args ARG1 and ARG2. */
2733 void
2734 run_hook_with_args_2 (hook, arg1, arg2)
2735 Lisp_Object hook, arg1, arg2;
2737 Lisp_Object temp[3];
2738 temp[0] = hook;
2739 temp[1] = arg1;
2740 temp[2] = arg2;
2742 Frun_hook_with_args (3, temp);
2745 /* Apply fn to arg */
2746 Lisp_Object
2747 apply1 (fn, arg)
2748 Lisp_Object fn, arg;
2750 struct gcpro gcpro1;
2752 GCPRO1 (fn);
2753 if (NILP (arg))
2754 RETURN_UNGCPRO (Ffuncall (1, &fn));
2755 gcpro1.nvars = 2;
2756 #ifdef NO_ARG_ARRAY
2758 Lisp_Object args[2];
2759 args[0] = fn;
2760 args[1] = arg;
2761 gcpro1.var = args;
2762 RETURN_UNGCPRO (Fapply (2, args));
2764 #else /* not NO_ARG_ARRAY */
2765 RETURN_UNGCPRO (Fapply (2, &fn));
2766 #endif /* not NO_ARG_ARRAY */
2769 /* Call function fn on no arguments */
2770 Lisp_Object
2771 call0 (fn)
2772 Lisp_Object fn;
2774 struct gcpro gcpro1;
2776 GCPRO1 (fn);
2777 RETURN_UNGCPRO (Ffuncall (1, &fn));
2780 /* Call function fn with 1 argument arg1 */
2781 /* ARGSUSED */
2782 Lisp_Object
2783 call1 (fn, arg1)
2784 Lisp_Object fn, arg1;
2786 struct gcpro gcpro1;
2787 #ifdef NO_ARG_ARRAY
2788 Lisp_Object args[2];
2790 args[0] = fn;
2791 args[1] = arg1;
2792 GCPRO1 (args[0]);
2793 gcpro1.nvars = 2;
2794 RETURN_UNGCPRO (Ffuncall (2, args));
2795 #else /* not NO_ARG_ARRAY */
2796 GCPRO1 (fn);
2797 gcpro1.nvars = 2;
2798 RETURN_UNGCPRO (Ffuncall (2, &fn));
2799 #endif /* not NO_ARG_ARRAY */
2802 /* Call function fn with 2 arguments arg1, arg2 */
2803 /* ARGSUSED */
2804 Lisp_Object
2805 call2 (fn, arg1, arg2)
2806 Lisp_Object fn, arg1, arg2;
2808 struct gcpro gcpro1;
2809 #ifdef NO_ARG_ARRAY
2810 Lisp_Object args[3];
2811 args[0] = fn;
2812 args[1] = arg1;
2813 args[2] = arg2;
2814 GCPRO1 (args[0]);
2815 gcpro1.nvars = 3;
2816 RETURN_UNGCPRO (Ffuncall (3, args));
2817 #else /* not NO_ARG_ARRAY */
2818 GCPRO1 (fn);
2819 gcpro1.nvars = 3;
2820 RETURN_UNGCPRO (Ffuncall (3, &fn));
2821 #endif /* not NO_ARG_ARRAY */
2824 /* Call function fn with 3 arguments arg1, arg2, arg3 */
2825 /* ARGSUSED */
2826 Lisp_Object
2827 call3 (fn, arg1, arg2, arg3)
2828 Lisp_Object fn, arg1, arg2, arg3;
2830 struct gcpro gcpro1;
2831 #ifdef NO_ARG_ARRAY
2832 Lisp_Object args[4];
2833 args[0] = fn;
2834 args[1] = arg1;
2835 args[2] = arg2;
2836 args[3] = arg3;
2837 GCPRO1 (args[0]);
2838 gcpro1.nvars = 4;
2839 RETURN_UNGCPRO (Ffuncall (4, args));
2840 #else /* not NO_ARG_ARRAY */
2841 GCPRO1 (fn);
2842 gcpro1.nvars = 4;
2843 RETURN_UNGCPRO (Ffuncall (4, &fn));
2844 #endif /* not NO_ARG_ARRAY */
2847 /* Call function fn with 4 arguments arg1, arg2, arg3, arg4 */
2848 /* ARGSUSED */
2849 Lisp_Object
2850 call4 (fn, arg1, arg2, arg3, arg4)
2851 Lisp_Object fn, arg1, arg2, arg3, arg4;
2853 struct gcpro gcpro1;
2854 #ifdef NO_ARG_ARRAY
2855 Lisp_Object args[5];
2856 args[0] = fn;
2857 args[1] = arg1;
2858 args[2] = arg2;
2859 args[3] = arg3;
2860 args[4] = arg4;
2861 GCPRO1 (args[0]);
2862 gcpro1.nvars = 5;
2863 RETURN_UNGCPRO (Ffuncall (5, args));
2864 #else /* not NO_ARG_ARRAY */
2865 GCPRO1 (fn);
2866 gcpro1.nvars = 5;
2867 RETURN_UNGCPRO (Ffuncall (5, &fn));
2868 #endif /* not NO_ARG_ARRAY */
2871 /* Call function fn with 5 arguments arg1, arg2, arg3, arg4, arg5 */
2872 /* ARGSUSED */
2873 Lisp_Object
2874 call5 (fn, arg1, arg2, arg3, arg4, arg5)
2875 Lisp_Object fn, arg1, arg2, arg3, arg4, arg5;
2877 struct gcpro gcpro1;
2878 #ifdef NO_ARG_ARRAY
2879 Lisp_Object args[6];
2880 args[0] = fn;
2881 args[1] = arg1;
2882 args[2] = arg2;
2883 args[3] = arg3;
2884 args[4] = arg4;
2885 args[5] = arg5;
2886 GCPRO1 (args[0]);
2887 gcpro1.nvars = 6;
2888 RETURN_UNGCPRO (Ffuncall (6, args));
2889 #else /* not NO_ARG_ARRAY */
2890 GCPRO1 (fn);
2891 gcpro1.nvars = 6;
2892 RETURN_UNGCPRO (Ffuncall (6, &fn));
2893 #endif /* not NO_ARG_ARRAY */
2896 /* Call function fn with 6 arguments arg1, arg2, arg3, arg4, arg5, arg6 */
2897 /* ARGSUSED */
2898 Lisp_Object
2899 call6 (fn, arg1, arg2, arg3, arg4, arg5, arg6)
2900 Lisp_Object fn, arg1, arg2, arg3, arg4, arg5, arg6;
2902 struct gcpro gcpro1;
2903 #ifdef NO_ARG_ARRAY
2904 Lisp_Object args[7];
2905 args[0] = fn;
2906 args[1] = arg1;
2907 args[2] = arg2;
2908 args[3] = arg3;
2909 args[4] = arg4;
2910 args[5] = arg5;
2911 args[6] = arg6;
2912 GCPRO1 (args[0]);
2913 gcpro1.nvars = 7;
2914 RETURN_UNGCPRO (Ffuncall (7, args));
2915 #else /* not NO_ARG_ARRAY */
2916 GCPRO1 (fn);
2917 gcpro1.nvars = 7;
2918 RETURN_UNGCPRO (Ffuncall (7, &fn));
2919 #endif /* not NO_ARG_ARRAY */
2922 /* The caller should GCPRO all the elements of ARGS. */
2924 DEFUN ("funcall", Ffuncall, Sfuncall, 1, MANY, 0,
2925 doc: /* Call first argument as a function, passing remaining arguments to it.
2926 Return the value that function returns.
2927 Thus, (funcall 'cons 'x 'y) returns (x . y).
2928 usage: (funcall FUNCTION &rest ARGUMENTS) */)
2929 (nargs, args)
2930 int nargs;
2931 Lisp_Object *args;
2933 Lisp_Object fun, original_fun;
2934 Lisp_Object funcar;
2935 int numargs = nargs - 1;
2936 Lisp_Object lisp_numargs;
2937 Lisp_Object val;
2938 struct backtrace backtrace;
2939 register Lisp_Object *internal_args;
2940 register int i;
2942 QUIT;
2943 if ((consing_since_gc > gc_cons_threshold
2944 && consing_since_gc > gc_relative_threshold)
2946 (!NILP (Vmemory_full) && consing_since_gc > memory_full_cons_threshold))
2947 Fgarbage_collect ();
2949 if (++lisp_eval_depth > max_lisp_eval_depth)
2951 if (max_lisp_eval_depth < 100)
2952 max_lisp_eval_depth = 100;
2953 if (lisp_eval_depth > max_lisp_eval_depth)
2954 error ("Lisp nesting exceeds `max-lisp-eval-depth'");
2957 backtrace.next = backtrace_list;
2958 backtrace_list = &backtrace;
2959 backtrace.function = &args[0];
2960 backtrace.args = &args[1];
2961 backtrace.nargs = nargs - 1;
2962 backtrace.evalargs = 0;
2963 backtrace.debug_on_exit = 0;
2965 if (debug_on_next_call)
2966 do_debug_on_call (Qlambda);
2968 CHECK_CONS_LIST ();
2970 original_fun = args[0];
2972 retry:
2974 /* Optimize for no indirection. */
2975 fun = original_fun;
2976 if (SYMBOLP (fun) && !EQ (fun, Qunbound)
2977 && (fun = XSYMBOL (fun)->function, SYMBOLP (fun)))
2978 fun = indirect_function (fun);
2980 if (SUBRP (fun))
2982 if (numargs < XSUBR (fun)->min_args
2983 || (XSUBR (fun)->max_args >= 0 && XSUBR (fun)->max_args < numargs))
2985 XSETFASTINT (lisp_numargs, numargs);
2986 xsignal2 (Qwrong_number_of_arguments, original_fun, lisp_numargs);
2989 if (XSUBR (fun)->max_args == UNEVALLED)
2990 xsignal1 (Qinvalid_function, original_fun);
2992 if (XSUBR (fun)->max_args == MANY)
2994 val = (*XSUBR (fun)->function) (numargs, args + 1);
2995 goto done;
2998 if (XSUBR (fun)->max_args > numargs)
3000 internal_args = (Lisp_Object *) alloca (XSUBR (fun)->max_args * sizeof (Lisp_Object));
3001 bcopy (args + 1, internal_args, numargs * sizeof (Lisp_Object));
3002 for (i = numargs; i < XSUBR (fun)->max_args; i++)
3003 internal_args[i] = Qnil;
3005 else
3006 internal_args = args + 1;
3007 switch (XSUBR (fun)->max_args)
3009 case 0:
3010 val = (*XSUBR (fun)->function) ();
3011 goto done;
3012 case 1:
3013 val = (*XSUBR (fun)->function) (internal_args[0]);
3014 goto done;
3015 case 2:
3016 val = (*XSUBR (fun)->function) (internal_args[0], internal_args[1]);
3017 goto done;
3018 case 3:
3019 val = (*XSUBR (fun)->function) (internal_args[0], internal_args[1],
3020 internal_args[2]);
3021 goto done;
3022 case 4:
3023 val = (*XSUBR (fun)->function) (internal_args[0], internal_args[1],
3024 internal_args[2], internal_args[3]);
3025 goto done;
3026 case 5:
3027 val = (*XSUBR (fun)->function) (internal_args[0], internal_args[1],
3028 internal_args[2], internal_args[3],
3029 internal_args[4]);
3030 goto done;
3031 case 6:
3032 val = (*XSUBR (fun)->function) (internal_args[0], internal_args[1],
3033 internal_args[2], internal_args[3],
3034 internal_args[4], internal_args[5]);
3035 goto done;
3036 case 7:
3037 val = (*XSUBR (fun)->function) (internal_args[0], internal_args[1],
3038 internal_args[2], internal_args[3],
3039 internal_args[4], internal_args[5],
3040 internal_args[6]);
3041 goto done;
3043 case 8:
3044 val = (*XSUBR (fun)->function) (internal_args[0], internal_args[1],
3045 internal_args[2], internal_args[3],
3046 internal_args[4], internal_args[5],
3047 internal_args[6], internal_args[7]);
3048 goto done;
3050 default:
3052 /* If a subr takes more than 8 arguments without using MANY
3053 or UNEVALLED, we need to extend this function to support it.
3054 Until this is done, there is no way to call the function. */
3055 abort ();
3058 if (COMPILEDP (fun))
3059 val = funcall_lambda (fun, numargs, args + 1);
3060 else
3062 if (EQ (fun, Qunbound))
3063 xsignal1 (Qvoid_function, original_fun);
3064 if (!CONSP (fun))
3065 xsignal1 (Qinvalid_function, original_fun);
3066 funcar = XCAR (fun);
3067 if (!SYMBOLP (funcar))
3068 xsignal1 (Qinvalid_function, original_fun);
3069 if (EQ (funcar, Qlambda))
3070 val = funcall_lambda (fun, numargs, args + 1);
3071 else if (EQ (funcar, Qautoload))
3073 do_autoload (fun, original_fun);
3074 CHECK_CONS_LIST ();
3075 goto retry;
3077 else
3078 xsignal1 (Qinvalid_function, original_fun);
3080 done:
3081 CHECK_CONS_LIST ();
3082 lisp_eval_depth--;
3083 if (backtrace.debug_on_exit)
3084 val = call_debugger (Fcons (Qexit, Fcons (val, Qnil)));
3085 backtrace_list = backtrace.next;
3086 return val;
3089 Lisp_Object
3090 apply_lambda (fun, args, eval_flag)
3091 Lisp_Object fun, args;
3092 int eval_flag;
3094 Lisp_Object args_left;
3095 Lisp_Object numargs;
3096 register Lisp_Object *arg_vector;
3097 struct gcpro gcpro1, gcpro2, gcpro3;
3098 register int i;
3099 register Lisp_Object tem;
3101 numargs = Flength (args);
3102 arg_vector = (Lisp_Object *) alloca (XINT (numargs) * sizeof (Lisp_Object));
3103 args_left = args;
3105 GCPRO3 (*arg_vector, args_left, fun);
3106 gcpro1.nvars = 0;
3108 for (i = 0; i < XINT (numargs);)
3110 tem = Fcar (args_left), args_left = Fcdr (args_left);
3111 if (eval_flag) tem = Feval (tem);
3112 arg_vector[i++] = tem;
3113 gcpro1.nvars = i;
3116 UNGCPRO;
3118 if (eval_flag)
3120 backtrace_list->args = arg_vector;
3121 backtrace_list->nargs = i;
3123 backtrace_list->evalargs = 0;
3124 tem = funcall_lambda (fun, XINT (numargs), arg_vector);
3126 /* Do the debug-on-exit now, while arg_vector still exists. */
3127 if (backtrace_list->debug_on_exit)
3128 tem = call_debugger (Fcons (Qexit, Fcons (tem, Qnil)));
3129 /* Don't do it again when we return to eval. */
3130 backtrace_list->debug_on_exit = 0;
3131 return tem;
3134 /* Apply a Lisp function FUN to the NARGS evaluated arguments in ARG_VECTOR
3135 and return the result of evaluation.
3136 FUN must be either a lambda-expression or a compiled-code object. */
3138 static Lisp_Object
3139 funcall_lambda (fun, nargs, arg_vector)
3140 Lisp_Object fun;
3141 int nargs;
3142 register Lisp_Object *arg_vector;
3144 Lisp_Object val, syms_left, next;
3145 int count = SPECPDL_INDEX ();
3146 int i, optional, rest;
3148 if (CONSP (fun))
3150 syms_left = XCDR (fun);
3151 if (CONSP (syms_left))
3152 syms_left = XCAR (syms_left);
3153 else
3154 xsignal1 (Qinvalid_function, fun);
3156 else if (COMPILEDP (fun))
3157 syms_left = AREF (fun, COMPILED_ARGLIST);
3158 else
3159 abort ();
3161 i = optional = rest = 0;
3162 for (; CONSP (syms_left); syms_left = XCDR (syms_left))
3164 QUIT;
3166 next = XCAR (syms_left);
3167 if (!SYMBOLP (next))
3168 xsignal1 (Qinvalid_function, fun);
3170 if (EQ (next, Qand_rest))
3171 rest = 1;
3172 else if (EQ (next, Qand_optional))
3173 optional = 1;
3174 else if (rest)
3176 specbind (next, Flist (nargs - i, &arg_vector[i]));
3177 i = nargs;
3179 else if (i < nargs)
3180 specbind (next, arg_vector[i++]);
3181 else if (!optional)
3182 xsignal2 (Qwrong_number_of_arguments, fun, make_number (nargs));
3183 else
3184 specbind (next, Qnil);
3187 if (!NILP (syms_left))
3188 xsignal1 (Qinvalid_function, fun);
3189 else if (i < nargs)
3190 xsignal2 (Qwrong_number_of_arguments, fun, make_number (nargs));
3192 if (CONSP (fun))
3193 val = Fprogn (XCDR (XCDR (fun)));
3194 else
3196 /* If we have not actually read the bytecode string
3197 and constants vector yet, fetch them from the file. */
3198 if (CONSP (AREF (fun, COMPILED_BYTECODE)))
3199 Ffetch_bytecode (fun);
3200 val = Fbyte_code (AREF (fun, COMPILED_BYTECODE),
3201 AREF (fun, COMPILED_CONSTANTS),
3202 AREF (fun, COMPILED_STACK_DEPTH));
3205 return unbind_to (count, val);
3208 DEFUN ("fetch-bytecode", Ffetch_bytecode, Sfetch_bytecode,
3209 1, 1, 0,
3210 doc: /* If byte-compiled OBJECT is lazy-loaded, fetch it now. */)
3211 (object)
3212 Lisp_Object object;
3214 Lisp_Object tem;
3216 if (COMPILEDP (object) && CONSP (AREF (object, COMPILED_BYTECODE)))
3218 tem = read_doc_string (AREF (object, COMPILED_BYTECODE));
3219 if (!CONSP (tem))
3221 tem = AREF (object, COMPILED_BYTECODE);
3222 if (CONSP (tem) && STRINGP (XCAR (tem)))
3223 error ("Invalid byte code in %s", SDATA (XCAR (tem)));
3224 else
3225 error ("Invalid byte code");
3227 AREF (object, COMPILED_BYTECODE) = XCAR (tem);
3228 AREF (object, COMPILED_CONSTANTS) = XCDR (tem);
3230 return object;
3233 void
3234 grow_specpdl ()
3236 register int count = SPECPDL_INDEX ();
3237 if (specpdl_size >= max_specpdl_size)
3239 if (max_specpdl_size < 400)
3240 max_specpdl_size = 400;
3241 if (specpdl_size >= max_specpdl_size)
3242 signal_error ("Variable binding depth exceeds max-specpdl-size", Qnil);
3244 specpdl_size *= 2;
3245 if (specpdl_size > max_specpdl_size)
3246 specpdl_size = max_specpdl_size;
3247 specpdl = (struct specbinding *) xrealloc (specpdl, specpdl_size * sizeof (struct specbinding));
3248 specpdl_ptr = specpdl + count;
3251 void
3252 specbind (symbol, value)
3253 Lisp_Object symbol, value;
3255 Lisp_Object ovalue;
3256 Lisp_Object valcontents;
3258 CHECK_SYMBOL (symbol);
3259 if (specpdl_ptr == specpdl + specpdl_size)
3260 grow_specpdl ();
3262 /* The most common case is that of a non-constant symbol with a
3263 trivial value. Make that as fast as we can. */
3264 valcontents = SYMBOL_VALUE (symbol);
3265 if (!MISCP (valcontents) && !SYMBOL_CONSTANT_P (symbol))
3267 specpdl_ptr->symbol = symbol;
3268 specpdl_ptr->old_value = valcontents;
3269 specpdl_ptr->func = NULL;
3270 ++specpdl_ptr;
3271 SET_SYMBOL_VALUE (symbol, value);
3273 else
3275 Lisp_Object valcontents;
3277 ovalue = find_symbol_value (symbol);
3278 specpdl_ptr->func = 0;
3279 specpdl_ptr->old_value = ovalue;
3281 valcontents = XSYMBOL (symbol)->value;
3283 if (BUFFER_LOCAL_VALUEP (valcontents)
3284 || SOME_BUFFER_LOCAL_VALUEP (valcontents)
3285 || BUFFER_OBJFWDP (valcontents))
3287 Lisp_Object where, current_buffer;
3289 current_buffer = Fcurrent_buffer ();
3291 /* For a local variable, record both the symbol and which
3292 buffer's or frame's value we are saving. */
3293 if (!NILP (Flocal_variable_p (symbol, Qnil)))
3294 where = current_buffer;
3295 else if (!BUFFER_OBJFWDP (valcontents)
3296 && XBUFFER_LOCAL_VALUE (valcontents)->found_for_frame)
3297 where = XBUFFER_LOCAL_VALUE (valcontents)->frame;
3298 else
3299 where = Qnil;
3301 /* We're not using the `unused' slot in the specbinding
3302 structure because this would mean we have to do more
3303 work for simple variables. */
3304 specpdl_ptr->symbol = Fcons (symbol, Fcons (where, current_buffer));
3306 /* If SYMBOL is a per-buffer variable which doesn't have a
3307 buffer-local value here, make the `let' change the global
3308 value by changing the value of SYMBOL in all buffers not
3309 having their own value. This is consistent with what
3310 happens with other buffer-local variables. */
3311 if (NILP (where)
3312 && BUFFER_OBJFWDP (valcontents))
3314 ++specpdl_ptr;
3315 Fset_default (symbol, value);
3316 return;
3319 else
3320 specpdl_ptr->symbol = symbol;
3322 specpdl_ptr++;
3323 if (BUFFER_OBJFWDP (ovalue) || KBOARD_OBJFWDP (ovalue))
3324 store_symval_forwarding (symbol, ovalue, value, NULL);
3325 else
3326 set_internal (symbol, value, 0, 1);
3330 void
3331 record_unwind_protect (function, arg)
3332 Lisp_Object (*function) P_ ((Lisp_Object));
3333 Lisp_Object arg;
3335 eassert (!handling_signal);
3337 if (specpdl_ptr == specpdl + specpdl_size)
3338 grow_specpdl ();
3339 specpdl_ptr->func = function;
3340 specpdl_ptr->symbol = Qnil;
3341 specpdl_ptr->old_value = arg;
3342 specpdl_ptr++;
3345 Lisp_Object
3346 unbind_to (count, value)
3347 int count;
3348 Lisp_Object value;
3350 Lisp_Object quitf = Vquit_flag;
3351 struct gcpro gcpro1, gcpro2;
3353 GCPRO2 (value, quitf);
3354 Vquit_flag = Qnil;
3356 while (specpdl_ptr != specpdl + count)
3358 /* Copy the binding, and decrement specpdl_ptr, before we do
3359 the work to unbind it. We decrement first
3360 so that an error in unbinding won't try to unbind
3361 the same entry again, and we copy the binding first
3362 in case more bindings are made during some of the code we run. */
3364 struct specbinding this_binding;
3365 this_binding = *--specpdl_ptr;
3367 if (this_binding.func != 0)
3368 (*this_binding.func) (this_binding.old_value);
3369 /* If the symbol is a list, it is really (SYMBOL WHERE
3370 . CURRENT-BUFFER) where WHERE is either nil, a buffer, or a
3371 frame. If WHERE is a buffer or frame, this indicates we
3372 bound a variable that had a buffer-local or frame-local
3373 binding. WHERE nil means that the variable had the default
3374 value when it was bound. CURRENT-BUFFER is the buffer that
3375 was current when the variable was bound. */
3376 else if (CONSP (this_binding.symbol))
3378 Lisp_Object symbol, where;
3380 symbol = XCAR (this_binding.symbol);
3381 where = XCAR (XCDR (this_binding.symbol));
3383 if (NILP (where))
3384 Fset_default (symbol, this_binding.old_value);
3385 else if (BUFFERP (where))
3386 set_internal (symbol, this_binding.old_value, XBUFFER (where), 1);
3387 else
3388 set_internal (symbol, this_binding.old_value, NULL, 1);
3390 else
3392 /* If variable has a trivial value (no forwarding), we can
3393 just set it. No need to check for constant symbols here,
3394 since that was already done by specbind. */
3395 if (!MISCP (SYMBOL_VALUE (this_binding.symbol)))
3396 SET_SYMBOL_VALUE (this_binding.symbol, this_binding.old_value);
3397 else
3398 set_internal (this_binding.symbol, this_binding.old_value, 0, 1);
3402 if (NILP (Vquit_flag) && !NILP (quitf))
3403 Vquit_flag = quitf;
3405 UNGCPRO;
3406 return value;
3409 DEFUN ("backtrace-debug", Fbacktrace_debug, Sbacktrace_debug, 2, 2, 0,
3410 doc: /* Set the debug-on-exit flag of eval frame LEVEL levels down to FLAG.
3411 The debugger is entered when that frame exits, if the flag is non-nil. */)
3412 (level, flag)
3413 Lisp_Object level, flag;
3415 register struct backtrace *backlist = backtrace_list;
3416 register int i;
3418 CHECK_NUMBER (level);
3420 for (i = 0; backlist && i < XINT (level); i++)
3422 backlist = backlist->next;
3425 if (backlist)
3426 backlist->debug_on_exit = !NILP (flag);
3428 return flag;
3431 DEFUN ("backtrace", Fbacktrace, Sbacktrace, 0, 0, "",
3432 doc: /* Print a trace of Lisp function calls currently active.
3433 Output stream used is value of `standard-output'. */)
3436 register struct backtrace *backlist = backtrace_list;
3437 register int i;
3438 Lisp_Object tail;
3439 Lisp_Object tem;
3440 extern Lisp_Object Vprint_level;
3441 struct gcpro gcpro1;
3443 XSETFASTINT (Vprint_level, 3);
3445 tail = Qnil;
3446 GCPRO1 (tail);
3448 while (backlist)
3450 write_string (backlist->debug_on_exit ? "* " : " ", 2);
3451 if (backlist->nargs == UNEVALLED)
3453 Fprin1 (Fcons (*backlist->function, *backlist->args), Qnil);
3454 write_string ("\n", -1);
3456 else
3458 tem = *backlist->function;
3459 Fprin1 (tem, Qnil); /* This can QUIT */
3460 write_string ("(", -1);
3461 if (backlist->nargs == MANY)
3463 for (tail = *backlist->args, i = 0;
3464 !NILP (tail);
3465 tail = Fcdr (tail), i++)
3467 if (i) write_string (" ", -1);
3468 Fprin1 (Fcar (tail), Qnil);
3471 else
3473 for (i = 0; i < backlist->nargs; i++)
3475 if (i) write_string (" ", -1);
3476 Fprin1 (backlist->args[i], Qnil);
3479 write_string (")\n", -1);
3481 backlist = backlist->next;
3484 Vprint_level = Qnil;
3485 UNGCPRO;
3486 return Qnil;
3489 DEFUN ("backtrace-frame", Fbacktrace_frame, Sbacktrace_frame, 1, 1, NULL,
3490 doc: /* Return the function and arguments NFRAMES up from current execution point.
3491 If that frame has not evaluated the arguments yet (or is a special form),
3492 the value is (nil FUNCTION ARG-FORMS...).
3493 If that frame has evaluated its arguments and called its function already,
3494 the value is (t FUNCTION ARG-VALUES...).
3495 A &rest arg is represented as the tail of the list ARG-VALUES.
3496 FUNCTION is whatever was supplied as car of evaluated list,
3497 or a lambda expression for macro calls.
3498 If NFRAMES is more than the number of frames, the value is nil. */)
3499 (nframes)
3500 Lisp_Object nframes;
3502 register struct backtrace *backlist = backtrace_list;
3503 register int i;
3504 Lisp_Object tem;
3506 CHECK_NATNUM (nframes);
3508 /* Find the frame requested. */
3509 for (i = 0; backlist && i < XFASTINT (nframes); i++)
3510 backlist = backlist->next;
3512 if (!backlist)
3513 return Qnil;
3514 if (backlist->nargs == UNEVALLED)
3515 return Fcons (Qnil, Fcons (*backlist->function, *backlist->args));
3516 else
3518 if (backlist->nargs == MANY)
3519 tem = *backlist->args;
3520 else
3521 tem = Flist (backlist->nargs, backlist->args);
3523 return Fcons (Qt, Fcons (*backlist->function, tem));
3528 void
3529 mark_backtrace ()
3531 register struct backtrace *backlist;
3532 register int i;
3534 for (backlist = backtrace_list; backlist; backlist = backlist->next)
3536 mark_object (*backlist->function);
3538 if (backlist->nargs == UNEVALLED || backlist->nargs == MANY)
3539 i = 0;
3540 else
3541 i = backlist->nargs - 1;
3542 for (; i >= 0; i--)
3543 mark_object (backlist->args[i]);
3547 void
3548 syms_of_eval ()
3550 DEFVAR_INT ("max-specpdl-size", &max_specpdl_size,
3551 doc: /* *Limit on number of Lisp variable bindings and `unwind-protect's.
3552 If Lisp code tries to increase the total number past this amount,
3553 an error is signaled.
3554 You can safely use a value considerably larger than the default value,
3555 if that proves inconveniently small. However, if you increase it too far,
3556 Emacs could run out of memory trying to make the stack bigger. */);
3558 DEFVAR_INT ("max-lisp-eval-depth", &max_lisp_eval_depth,
3559 doc: /* *Limit on depth in `eval', `apply' and `funcall' before error.
3561 This limit serves to catch infinite recursions for you before they cause
3562 actual stack overflow in C, which would be fatal for Emacs.
3563 You can safely make it considerably larger than its default value,
3564 if that proves inconveniently small. However, if you increase it too far,
3565 Emacs could overflow the real C stack, and crash. */);
3567 DEFVAR_LISP ("quit-flag", &Vquit_flag,
3568 doc: /* Non-nil causes `eval' to abort, unless `inhibit-quit' is non-nil.
3569 If the value is t, that means do an ordinary quit.
3570 If the value equals `throw-on-input', that means quit by throwing
3571 to the tag specified in `throw-on-input'; it's for handling `while-no-input'.
3572 Typing C-g sets `quit-flag' to t, regardless of `inhibit-quit',
3573 but `inhibit-quit' non-nil prevents anything from taking notice of that. */);
3574 Vquit_flag = Qnil;
3576 DEFVAR_LISP ("inhibit-quit", &Vinhibit_quit,
3577 doc: /* Non-nil inhibits C-g quitting from happening immediately.
3578 Note that `quit-flag' will still be set by typing C-g,
3579 so a quit will be signaled as soon as `inhibit-quit' is nil.
3580 To prevent this happening, set `quit-flag' to nil
3581 before making `inhibit-quit' nil. */);
3582 Vinhibit_quit = Qnil;
3584 Qinhibit_quit = intern ("inhibit-quit");
3585 staticpro (&Qinhibit_quit);
3587 Qautoload = intern ("autoload");
3588 staticpro (&Qautoload);
3590 Qdebug_on_error = intern ("debug-on-error");
3591 staticpro (&Qdebug_on_error);
3593 Qmacro = intern ("macro");
3594 staticpro (&Qmacro);
3596 Qdeclare = intern ("declare");
3597 staticpro (&Qdeclare);
3599 /* Note that the process handling also uses Qexit, but we don't want
3600 to staticpro it twice, so we just do it here. */
3601 Qexit = intern ("exit");
3602 staticpro (&Qexit);
3604 Qinteractive = intern ("interactive");
3605 staticpro (&Qinteractive);
3607 Qcommandp = intern ("commandp");
3608 staticpro (&Qcommandp);
3610 Qdefun = intern ("defun");
3611 staticpro (&Qdefun);
3613 Qand_rest = intern ("&rest");
3614 staticpro (&Qand_rest);
3616 Qand_optional = intern ("&optional");
3617 staticpro (&Qand_optional);
3619 Qdebug = intern ("debug");
3620 staticpro (&Qdebug);
3622 DEFVAR_LISP ("stack-trace-on-error", &Vstack_trace_on_error,
3623 doc: /* *Non-nil means errors display a backtrace buffer.
3624 More precisely, this happens for any error that is handled
3625 by the editor command loop.
3626 If the value is a list, an error only means to display a backtrace
3627 if one of its condition symbols appears in the list. */);
3628 Vstack_trace_on_error = Qnil;
3630 DEFVAR_LISP ("debug-on-error", &Vdebug_on_error,
3631 doc: /* *Non-nil means enter debugger if an error is signaled.
3632 Does not apply to errors handled by `condition-case' or those
3633 matched by `debug-ignored-errors'.
3634 If the value is a list, an error only means to enter the debugger
3635 if one of its condition symbols appears in the list.
3636 When you evaluate an expression interactively, this variable
3637 is temporarily non-nil if `eval-expression-debug-on-error' is non-nil.
3638 See also variable `debug-on-quit'. */);
3639 Vdebug_on_error = Qnil;
3641 DEFVAR_LISP ("debug-ignored-errors", &Vdebug_ignored_errors,
3642 doc: /* *List of errors for which the debugger should not be called.
3643 Each element may be a condition-name or a regexp that matches error messages.
3644 If any element applies to a given error, that error skips the debugger
3645 and just returns to top level.
3646 This overrides the variable `debug-on-error'.
3647 It does not apply to errors handled by `condition-case'. */);
3648 Vdebug_ignored_errors = Qnil;
3650 DEFVAR_BOOL ("debug-on-quit", &debug_on_quit,
3651 doc: /* *Non-nil means enter debugger if quit is signaled (C-g, for example).
3652 Does not apply if quit is handled by a `condition-case'. */);
3653 debug_on_quit = 0;
3655 DEFVAR_BOOL ("debug-on-next-call", &debug_on_next_call,
3656 doc: /* Non-nil means enter debugger before next `eval', `apply' or `funcall'. */);
3658 DEFVAR_BOOL ("debugger-may-continue", &debugger_may_continue,
3659 doc: /* Non-nil means debugger may continue execution.
3660 This is nil when the debugger is called under circumstances where it
3661 might not be safe to continue. */);
3662 debugger_may_continue = 1;
3664 DEFVAR_LISP ("debugger", &Vdebugger,
3665 doc: /* Function to call to invoke debugger.
3666 If due to frame exit, args are `exit' and the value being returned;
3667 this function's value will be returned instead of that.
3668 If due to error, args are `error' and a list of the args to `signal'.
3669 If due to `apply' or `funcall' entry, one arg, `lambda'.
3670 If due to `eval' entry, one arg, t. */);
3671 Vdebugger = Qnil;
3673 DEFVAR_LISP ("signal-hook-function", &Vsignal_hook_function,
3674 doc: /* If non-nil, this is a function for `signal' to call.
3675 It receives the same arguments that `signal' was given.
3676 The Edebug package uses this to regain control. */);
3677 Vsignal_hook_function = Qnil;
3679 DEFVAR_LISP ("debug-on-signal", &Vdebug_on_signal,
3680 doc: /* *Non-nil means call the debugger regardless of condition handlers.
3681 Note that `debug-on-error', `debug-on-quit' and friends
3682 still determine whether to handle the particular condition. */);
3683 Vdebug_on_signal = Qnil;
3685 DEFVAR_LISP ("macro-declaration-function", &Vmacro_declaration_function,
3686 doc: /* Function to process declarations in a macro definition.
3687 The function will be called with two args MACRO and DECL.
3688 MACRO is the name of the macro being defined.
3689 DECL is a list `(declare ...)' containing the declarations.
3690 The value the function returns is not used. */);
3691 Vmacro_declaration_function = Qnil;
3693 Vrun_hooks = intern ("run-hooks");
3694 staticpro (&Vrun_hooks);
3696 staticpro (&Vautoload_queue);
3697 Vautoload_queue = Qnil;
3698 staticpro (&Vsignaling_function);
3699 Vsignaling_function = Qnil;
3701 defsubr (&Sor);
3702 defsubr (&Sand);
3703 defsubr (&Sif);
3704 defsubr (&Scond);
3705 defsubr (&Sprogn);
3706 defsubr (&Sprog1);
3707 defsubr (&Sprog2);
3708 defsubr (&Ssetq);
3709 defsubr (&Squote);
3710 defsubr (&Sfunction);
3711 defsubr (&Sdefun);
3712 defsubr (&Sdefmacro);
3713 defsubr (&Sdefvar);
3714 defsubr (&Sdefvaralias);
3715 defsubr (&Sdefconst);
3716 defsubr (&Suser_variable_p);
3717 defsubr (&Slet);
3718 defsubr (&SletX);
3719 defsubr (&Swhile);
3720 defsubr (&Smacroexpand);
3721 defsubr (&Scatch);
3722 defsubr (&Sthrow);
3723 defsubr (&Sunwind_protect);
3724 defsubr (&Scondition_case);
3725 defsubr (&Ssignal);
3726 defsubr (&Sinteractive_p);
3727 defsubr (&Scalled_interactively_p);
3728 defsubr (&Scommandp);
3729 defsubr (&Sautoload);
3730 defsubr (&Seval);
3731 defsubr (&Sapply);
3732 defsubr (&Sfuncall);
3733 defsubr (&Srun_hooks);
3734 defsubr (&Srun_hook_with_args);
3735 defsubr (&Srun_hook_with_args_until_success);
3736 defsubr (&Srun_hook_with_args_until_failure);
3737 defsubr (&Sfetch_bytecode);
3738 defsubr (&Sbacktrace_debug);
3739 defsubr (&Sbacktrace);
3740 defsubr (&Sbacktrace_frame);
3743 /* arch-tag: 014a07aa-33ab-4a8f-a3d2-ee8a4a9ff7fb
3744 (do not change this comment) */