Do not use map.el in seq-tests.el
[emacs.git] / src / eval.c
blobcaeb791c19bd891ffd3bd93c565985e19a8c5a27
1 /* Evaluator for GNU Emacs Lisp interpreter.
3 Copyright (C) 1985-1987, 1993-1995, 1999-2016 Free Software Foundation,
4 Inc.
6 This file is part of GNU Emacs.
8 GNU Emacs is free software: you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation, either version 3 of the License, or (at
11 your option) any later version.
13 GNU Emacs is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
22 #include <config.h>
23 #include <limits.h>
24 #include <stdio.h>
25 #include <stdlib.h>
26 #include "lisp.h"
27 #include "blockinput.h"
28 #include "commands.h"
29 #include "keyboard.h"
30 #include "dispextern.h"
31 #include "buffer.h"
33 /* Chain of condition and catch handlers currently in effect. */
35 struct handler *handlerlist;
37 /* Non-nil means record all fset's and provide's, to be undone
38 if the file being autoloaded is not fully loaded.
39 They are recorded by being consed onto the front of Vautoload_queue:
40 (FUN . ODEF) for a defun, (0 . OFEATURES) for a provide. */
42 Lisp_Object Vautoload_queue;
44 /* This holds either the symbol `run-hooks' or nil.
45 It is nil at an early stage of startup, and when Emacs
46 is shutting down. */
47 Lisp_Object Vrun_hooks;
49 /* Current number of specbindings allocated in specpdl, not counting
50 the dummy entry specpdl[-1]. */
52 ptrdiff_t specpdl_size;
54 /* Pointer to beginning of specpdl. A dummy entry specpdl[-1] exists
55 only so that its address can be taken. */
57 union specbinding *specpdl;
59 /* Pointer to first unused element in specpdl. */
61 union specbinding *specpdl_ptr;
63 /* Depth in Lisp evaluations and function calls. */
65 static EMACS_INT lisp_eval_depth;
67 /* The value of num_nonmacro_input_events as of the last time we
68 started to enter the debugger. If we decide to enter the debugger
69 again when this is still equal to num_nonmacro_input_events, then we
70 know that the debugger itself has an error, and we should just
71 signal the error instead of entering an infinite loop of debugger
72 invocations. */
74 static EMACS_INT when_entered_debugger;
76 /* The function from which the last `signal' was called. Set in
77 Fsignal. */
78 /* FIXME: We should probably get rid of this! */
79 Lisp_Object Vsignaling_function;
81 /* If non-nil, Lisp code must not be run since some part of Emacs is in
82 an inconsistent state. Currently unused. */
83 Lisp_Object inhibit_lisp_code;
85 /* These would ordinarily be static, but they need to be visible to GDB. */
86 bool backtrace_p (union specbinding *) EXTERNALLY_VISIBLE;
87 Lisp_Object *backtrace_args (union specbinding *) EXTERNALLY_VISIBLE;
88 Lisp_Object backtrace_function (union specbinding *) EXTERNALLY_VISIBLE;
89 union specbinding *backtrace_next (union specbinding *) EXTERNALLY_VISIBLE;
90 union specbinding *backtrace_top (void) EXTERNALLY_VISIBLE;
92 static Lisp_Object funcall_lambda (Lisp_Object, ptrdiff_t, Lisp_Object *);
93 static Lisp_Object apply_lambda (Lisp_Object, Lisp_Object, ptrdiff_t);
94 static Lisp_Object lambda_arity (Lisp_Object);
96 static Lisp_Object
97 specpdl_symbol (union specbinding *pdl)
99 eassert (pdl->kind >= SPECPDL_LET);
100 return pdl->let.symbol;
103 static Lisp_Object
104 specpdl_old_value (union specbinding *pdl)
106 eassert (pdl->kind >= SPECPDL_LET);
107 return pdl->let.old_value;
110 static void
111 set_specpdl_old_value (union specbinding *pdl, Lisp_Object val)
113 eassert (pdl->kind >= SPECPDL_LET);
114 pdl->let.old_value = val;
117 static Lisp_Object
118 specpdl_where (union specbinding *pdl)
120 eassert (pdl->kind > SPECPDL_LET);
121 return pdl->let.where;
124 static Lisp_Object
125 specpdl_arg (union specbinding *pdl)
127 eassert (pdl->kind == SPECPDL_UNWIND);
128 return pdl->unwind.arg;
131 Lisp_Object
132 backtrace_function (union specbinding *pdl)
134 eassert (pdl->kind == SPECPDL_BACKTRACE);
135 return pdl->bt.function;
138 static ptrdiff_t
139 backtrace_nargs (union specbinding *pdl)
141 eassert (pdl->kind == SPECPDL_BACKTRACE);
142 return pdl->bt.nargs;
145 Lisp_Object *
146 backtrace_args (union specbinding *pdl)
148 eassert (pdl->kind == SPECPDL_BACKTRACE);
149 return pdl->bt.args;
152 static bool
153 backtrace_debug_on_exit (union specbinding *pdl)
155 eassert (pdl->kind == SPECPDL_BACKTRACE);
156 return pdl->bt.debug_on_exit;
159 /* Functions to modify slots of backtrace records. */
161 static void
162 set_backtrace_args (union specbinding *pdl, Lisp_Object *args, ptrdiff_t nargs)
164 eassert (pdl->kind == SPECPDL_BACKTRACE);
165 pdl->bt.args = args;
166 pdl->bt.nargs = nargs;
169 static void
170 set_backtrace_debug_on_exit (union specbinding *pdl, bool doe)
172 eassert (pdl->kind == SPECPDL_BACKTRACE);
173 pdl->bt.debug_on_exit = doe;
176 /* Helper functions to scan the backtrace. */
178 bool
179 backtrace_p (union specbinding *pdl)
180 { return pdl >= specpdl; }
182 union specbinding *
183 backtrace_top (void)
185 union specbinding *pdl = specpdl_ptr - 1;
186 while (backtrace_p (pdl) && pdl->kind != SPECPDL_BACKTRACE)
187 pdl--;
188 return pdl;
191 union specbinding *
192 backtrace_next (union specbinding *pdl)
194 pdl--;
195 while (backtrace_p (pdl) && pdl->kind != SPECPDL_BACKTRACE)
196 pdl--;
197 return pdl;
200 /* Return a pointer to somewhere near the top of the C stack. */
201 void *
202 near_C_stack_top (void)
204 return backtrace_args (backtrace_top ());
207 void
208 init_eval_once (void)
210 enum { size = 50 };
211 union specbinding *pdlvec = xmalloc ((size + 1) * sizeof *specpdl);
212 specpdl_size = size;
213 specpdl = specpdl_ptr = pdlvec + 1;
214 /* Don't forget to update docs (lispref node "Local Variables"). */
215 max_specpdl_size = 1300; /* 1000 is not enough for CEDET's c-by.el. */
216 max_lisp_eval_depth = 800;
218 Vrun_hooks = Qnil;
221 static struct handler handlerlist_sentinel;
223 void
224 init_eval (void)
226 specpdl_ptr = specpdl;
227 { /* Put a dummy catcher at top-level so that handlerlist is never NULL.
228 This is important since handlerlist->nextfree holds the freelist
229 which would otherwise leak every time we unwind back to top-level. */
230 handlerlist = handlerlist_sentinel.nextfree = &handlerlist_sentinel;
231 struct handler *c = push_handler (Qunbound, CATCHER);
232 eassert (c == &handlerlist_sentinel);
233 handlerlist_sentinel.nextfree = NULL;
234 handlerlist_sentinel.next = NULL;
236 Vquit_flag = Qnil;
237 debug_on_next_call = 0;
238 lisp_eval_depth = 0;
239 /* This is less than the initial value of num_nonmacro_input_events. */
240 when_entered_debugger = -1;
243 /* Unwind-protect function used by call_debugger. */
245 static void
246 restore_stack_limits (Lisp_Object data)
248 max_specpdl_size = XINT (XCAR (data));
249 max_lisp_eval_depth = XINT (XCDR (data));
252 static void grow_specpdl (void);
254 /* Call the Lisp debugger, giving it argument ARG. */
256 Lisp_Object
257 call_debugger (Lisp_Object arg)
259 bool debug_while_redisplaying;
260 ptrdiff_t count = SPECPDL_INDEX ();
261 Lisp_Object val;
262 EMACS_INT old_depth = max_lisp_eval_depth;
263 /* Do not allow max_specpdl_size less than actual depth (Bug#16603). */
264 EMACS_INT old_max = max (max_specpdl_size, count);
266 if (lisp_eval_depth + 40 > max_lisp_eval_depth)
267 max_lisp_eval_depth = lisp_eval_depth + 40;
269 /* While debugging Bug#16603, previous value of 100 was found
270 too small to avoid specpdl overflow in the debugger itself. */
271 if (max_specpdl_size - 200 < count)
272 max_specpdl_size = count + 200;
274 if (old_max == count)
276 /* We can enter the debugger due to specpdl overflow (Bug#16603). */
277 specpdl_ptr--;
278 grow_specpdl ();
281 /* Restore limits after leaving the debugger. */
282 record_unwind_protect (restore_stack_limits,
283 Fcons (make_number (old_max),
284 make_number (old_depth)));
286 #ifdef HAVE_WINDOW_SYSTEM
287 if (display_hourglass_p)
288 cancel_hourglass ();
289 #endif
291 debug_on_next_call = 0;
292 when_entered_debugger = num_nonmacro_input_events;
294 /* Resetting redisplaying_p to 0 makes sure that debug output is
295 displayed if the debugger is invoked during redisplay. */
296 debug_while_redisplaying = redisplaying_p;
297 redisplaying_p = 0;
298 specbind (intern ("debugger-may-continue"),
299 debug_while_redisplaying ? Qnil : Qt);
300 specbind (Qinhibit_redisplay, Qnil);
301 specbind (Qinhibit_debugger, Qt);
303 /* If we are debugging an error while `inhibit-changing-match-data'
304 is bound to non-nil (e.g., within a call to `string-match-p'),
305 then make sure debugger code can still use match data. */
306 specbind (Qinhibit_changing_match_data, Qnil);
308 #if 0 /* Binding this prevents execution of Lisp code during
309 redisplay, which necessarily leads to display problems. */
310 specbind (Qinhibit_eval_during_redisplay, Qt);
311 #endif
313 val = apply1 (Vdebugger, arg);
315 /* Interrupting redisplay and resuming it later is not safe under
316 all circumstances. So, when the debugger returns, abort the
317 interrupted redisplay by going back to the top-level. */
318 if (debug_while_redisplaying)
319 Ftop_level ();
321 return unbind_to (count, val);
324 static void
325 do_debug_on_call (Lisp_Object code, ptrdiff_t count)
327 debug_on_next_call = 0;
328 set_backtrace_debug_on_exit (specpdl + count, true);
329 call_debugger (list1 (code));
332 /* NOTE!!! Every function that can call EVAL must protect its args
333 and temporaries from garbage collection while it needs them.
334 The definition of `For' shows what you have to do. */
336 DEFUN ("or", For, Sor, 0, UNEVALLED, 0,
337 doc: /* Eval args until one of them yields non-nil, then return that value.
338 The remaining args are not evalled at all.
339 If all args return nil, return nil.
340 usage: (or CONDITIONS...) */)
341 (Lisp_Object args)
343 Lisp_Object val = Qnil;
345 while (CONSP (args))
347 val = eval_sub (XCAR (args));
348 if (!NILP (val))
349 break;
350 args = XCDR (args);
353 return val;
356 DEFUN ("and", Fand, Sand, 0, UNEVALLED, 0,
357 doc: /* Eval args until one of them yields nil, then return nil.
358 The remaining args are not evalled at all.
359 If no arg yields nil, return the last arg's value.
360 usage: (and CONDITIONS...) */)
361 (Lisp_Object args)
363 Lisp_Object val = Qt;
365 while (CONSP (args))
367 val = eval_sub (XCAR (args));
368 if (NILP (val))
369 break;
370 args = XCDR (args);
373 return val;
376 DEFUN ("if", Fif, Sif, 2, UNEVALLED, 0,
377 doc: /* If COND yields non-nil, do THEN, else do ELSE...
378 Returns the value of THEN or the value of the last of the ELSE's.
379 THEN must be one expression, but ELSE... can be zero or more expressions.
380 If COND yields nil, and there are no ELSE's, the value is nil.
381 usage: (if COND THEN ELSE...) */)
382 (Lisp_Object args)
384 Lisp_Object cond;
386 cond = eval_sub (XCAR (args));
388 if (!NILP (cond))
389 return eval_sub (Fcar (XCDR (args)));
390 return Fprogn (XCDR (XCDR (args)));
393 DEFUN ("cond", Fcond, Scond, 0, UNEVALLED, 0,
394 doc: /* Try each clause until one succeeds.
395 Each clause looks like (CONDITION BODY...). CONDITION is evaluated
396 and, if the value is non-nil, this clause succeeds:
397 then the expressions in BODY are evaluated and the last one's
398 value is the value of the cond-form.
399 If a clause has one element, as in (CONDITION), then the cond-form
400 returns CONDITION's value, if that is non-nil.
401 If no clause succeeds, cond returns nil.
402 usage: (cond CLAUSES...) */)
403 (Lisp_Object args)
405 Lisp_Object val = args;
407 while (CONSP (args))
409 Lisp_Object clause = XCAR (args);
410 val = eval_sub (Fcar (clause));
411 if (!NILP (val))
413 if (!NILP (XCDR (clause)))
414 val = Fprogn (XCDR (clause));
415 break;
417 args = XCDR (args);
420 return val;
423 DEFUN ("progn", Fprogn, Sprogn, 0, UNEVALLED, 0,
424 doc: /* Eval BODY forms sequentially and return value of last one.
425 usage: (progn BODY...) */)
426 (Lisp_Object body)
428 Lisp_Object val = Qnil;
430 while (CONSP (body))
432 val = eval_sub (XCAR (body));
433 body = XCDR (body);
436 return val;
439 /* Evaluate BODY sequentially, discarding its value. Suitable for
440 record_unwind_protect. */
442 void
443 unwind_body (Lisp_Object body)
445 Fprogn (body);
448 DEFUN ("prog1", Fprog1, Sprog1, 1, UNEVALLED, 0,
449 doc: /* Eval FIRST and BODY sequentially; return value from FIRST.
450 The value of FIRST is saved during the evaluation of the remaining args,
451 whose values are discarded.
452 usage: (prog1 FIRST BODY...) */)
453 (Lisp_Object args)
455 Lisp_Object val;
456 Lisp_Object args_left;
458 args_left = args;
459 val = args;
461 val = eval_sub (XCAR (args_left));
462 while (CONSP (args_left = XCDR (args_left)))
463 eval_sub (XCAR (args_left));
465 return val;
468 DEFUN ("prog2", Fprog2, Sprog2, 2, UNEVALLED, 0,
469 doc: /* Eval FORM1, FORM2 and BODY sequentially; return value from FORM2.
470 The value of FORM2 is saved during the evaluation of the
471 remaining args, whose values are discarded.
472 usage: (prog2 FORM1 FORM2 BODY...) */)
473 (Lisp_Object args)
475 eval_sub (XCAR (args));
476 return Fprog1 (XCDR (args));
479 DEFUN ("setq", Fsetq, Ssetq, 0, UNEVALLED, 0,
480 doc: /* Set each SYM to the value of its VAL.
481 The symbols SYM are variables; they are literal (not evaluated).
482 The values VAL are expressions; they are evaluated.
483 Thus, (setq x (1+ y)) sets `x' to the value of `(1+ y)'.
484 The second VAL is not computed until after the first SYM is set, and so on;
485 each VAL can use the new value of variables set earlier in the `setq'.
486 The return value of the `setq' form is the value of the last VAL.
487 usage: (setq [SYM VAL]...) */)
488 (Lisp_Object args)
490 Lisp_Object val, sym, lex_binding;
492 val = args;
493 if (CONSP (args))
495 Lisp_Object args_left = args;
496 Lisp_Object numargs = Flength (args);
498 if (XINT (numargs) & 1)
499 xsignal2 (Qwrong_number_of_arguments, Qsetq, numargs);
503 val = eval_sub (Fcar (XCDR (args_left)));
504 sym = XCAR (args_left);
506 /* Like for eval_sub, we do not check declared_special here since
507 it's been done when let-binding. */
508 if (!NILP (Vinternal_interpreter_environment) /* Mere optimization! */
509 && SYMBOLP (sym)
510 && !NILP (lex_binding
511 = Fassq (sym, Vinternal_interpreter_environment)))
512 XSETCDR (lex_binding, val); /* SYM is lexically bound. */
513 else
514 Fset (sym, val); /* SYM is dynamically bound. */
516 args_left = Fcdr (XCDR (args_left));
518 while (CONSP (args_left));
521 return val;
524 DEFUN ("quote", Fquote, Squote, 1, UNEVALLED, 0,
525 doc: /* Return the argument, without evaluating it. `(quote x)' yields `x'.
526 Warning: `quote' does not construct its return value, but just returns
527 the value that was pre-constructed by the Lisp reader (see info node
528 `(elisp)Printed Representation').
529 This means that \\='(a . b) is not identical to (cons \\='a \\='b): the former
530 does not cons. Quoting should be reserved for constants that will
531 never be modified by side-effects, unless you like self-modifying code.
532 See the common pitfall in info node `(elisp)Rearrangement' for an example
533 of unexpected results when a quoted object is modified.
534 usage: (quote ARG) */)
535 (Lisp_Object args)
537 if (CONSP (XCDR (args)))
538 xsignal2 (Qwrong_number_of_arguments, Qquote, Flength (args));
539 return XCAR (args);
542 DEFUN ("function", Ffunction, Sfunction, 1, UNEVALLED, 0,
543 doc: /* Like `quote', but preferred for objects which are functions.
544 In byte compilation, `function' causes its argument to be compiled.
545 `quote' cannot do that.
546 usage: (function ARG) */)
547 (Lisp_Object args)
549 Lisp_Object quoted = XCAR (args);
551 if (CONSP (XCDR (args)))
552 xsignal2 (Qwrong_number_of_arguments, Qfunction, Flength (args));
554 if (!NILP (Vinternal_interpreter_environment)
555 && CONSP (quoted)
556 && EQ (XCAR (quoted), Qlambda))
557 { /* This is a lambda expression within a lexical environment;
558 return an interpreted closure instead of a simple lambda. */
559 Lisp_Object cdr = XCDR (quoted);
560 Lisp_Object tmp = cdr;
561 if (CONSP (tmp)
562 && (tmp = XCDR (tmp), CONSP (tmp))
563 && (tmp = XCAR (tmp), CONSP (tmp))
564 && (EQ (QCdocumentation, XCAR (tmp))))
565 { /* Handle the special (:documentation <form>) to build the docstring
566 dynamically. */
567 Lisp_Object docstring = eval_sub (Fcar (XCDR (tmp)));
568 CHECK_STRING (docstring);
569 cdr = Fcons (XCAR (cdr), Fcons (docstring, XCDR (XCDR (cdr))));
571 return Fcons (Qclosure, Fcons (Vinternal_interpreter_environment,
572 cdr));
574 else
575 /* Simply quote the argument. */
576 return quoted;
580 DEFUN ("defvaralias", Fdefvaralias, Sdefvaralias, 2, 3, 0,
581 doc: /* Make NEW-ALIAS a variable alias for symbol BASE-VARIABLE.
582 Aliased variables always have the same value; setting one sets the other.
583 Third arg DOCSTRING, if non-nil, is documentation for NEW-ALIAS. If it is
584 omitted or nil, NEW-ALIAS gets the documentation string of BASE-VARIABLE,
585 or of the variable at the end of the chain of aliases, if BASE-VARIABLE is
586 itself an alias. If NEW-ALIAS is bound, and BASE-VARIABLE is not,
587 then the value of BASE-VARIABLE is set to that of NEW-ALIAS.
588 The return value is BASE-VARIABLE. */)
589 (Lisp_Object new_alias, Lisp_Object base_variable, Lisp_Object docstring)
591 struct Lisp_Symbol *sym;
593 CHECK_SYMBOL (new_alias);
594 CHECK_SYMBOL (base_variable);
596 sym = XSYMBOL (new_alias);
598 if (sym->constant)
599 /* Not sure why, but why not? */
600 error ("Cannot make a constant an alias");
602 switch (sym->redirect)
604 case SYMBOL_FORWARDED:
605 error ("Cannot make an internal variable an alias");
606 case SYMBOL_LOCALIZED:
607 error ("Don't know how to make a localized variable an alias");
608 case SYMBOL_PLAINVAL:
609 case SYMBOL_VARALIAS:
610 break;
611 default:
612 emacs_abort ();
615 /* http://lists.gnu.org/archive/html/emacs-devel/2008-04/msg00834.html
616 If n_a is bound, but b_v is not, set the value of b_v to n_a,
617 so that old-code that affects n_a before the aliasing is setup
618 still works. */
619 if (NILP (Fboundp (base_variable)))
620 set_internal (base_variable, find_symbol_value (new_alias), Qnil, 1);
623 union specbinding *p;
625 for (p = specpdl_ptr; p > specpdl; )
626 if ((--p)->kind >= SPECPDL_LET
627 && (EQ (new_alias, specpdl_symbol (p))))
628 error ("Don't know how to make a let-bound variable an alias");
631 sym->declared_special = 1;
632 XSYMBOL (base_variable)->declared_special = 1;
633 sym->redirect = SYMBOL_VARALIAS;
634 SET_SYMBOL_ALIAS (sym, XSYMBOL (base_variable));
635 sym->constant = SYMBOL_CONSTANT_P (base_variable);
636 LOADHIST_ATTACH (new_alias);
637 /* Even if docstring is nil: remove old docstring. */
638 Fput (new_alias, Qvariable_documentation, docstring);
640 return base_variable;
643 static union specbinding *
644 default_toplevel_binding (Lisp_Object symbol)
646 union specbinding *binding = NULL;
647 union specbinding *pdl = specpdl_ptr;
648 while (pdl > specpdl)
650 switch ((--pdl)->kind)
652 case SPECPDL_LET_DEFAULT:
653 case SPECPDL_LET:
654 if (EQ (specpdl_symbol (pdl), symbol))
655 binding = pdl;
656 break;
658 case SPECPDL_UNWIND:
659 case SPECPDL_UNWIND_PTR:
660 case SPECPDL_UNWIND_INT:
661 case SPECPDL_UNWIND_VOID:
662 case SPECPDL_BACKTRACE:
663 case SPECPDL_LET_LOCAL:
664 break;
666 default:
667 emacs_abort ();
670 return binding;
673 DEFUN ("default-toplevel-value", Fdefault_toplevel_value, Sdefault_toplevel_value, 1, 1, 0,
674 doc: /* Return SYMBOL's toplevel default value.
675 "Toplevel" means outside of any let binding. */)
676 (Lisp_Object symbol)
678 union specbinding *binding = default_toplevel_binding (symbol);
679 Lisp_Object value
680 = binding ? specpdl_old_value (binding) : Fdefault_value (symbol);
681 if (!EQ (value, Qunbound))
682 return value;
683 xsignal1 (Qvoid_variable, symbol);
686 DEFUN ("set-default-toplevel-value", Fset_default_toplevel_value,
687 Sset_default_toplevel_value, 2, 2, 0,
688 doc: /* Set SYMBOL's toplevel default value to VALUE.
689 "Toplevel" means outside of any let binding. */)
690 (Lisp_Object symbol, Lisp_Object value)
692 union specbinding *binding = default_toplevel_binding (symbol);
693 if (binding)
694 set_specpdl_old_value (binding, value);
695 else
696 Fset_default (symbol, value);
697 return Qnil;
700 DEFUN ("defvar", Fdefvar, Sdefvar, 1, UNEVALLED, 0,
701 doc: /* Define SYMBOL as a variable, and return SYMBOL.
702 You are not required to define a variable in order to use it, but
703 defining it lets you supply an initial value and documentation, which
704 can be referred to by the Emacs help facilities and other programming
705 tools. The `defvar' form also declares the variable as \"special\",
706 so that it is always dynamically bound even if `lexical-binding' is t.
708 The optional argument INITVALUE is evaluated, and used to set SYMBOL,
709 only if SYMBOL's value is void. If SYMBOL is buffer-local, its
710 default value is what is set; buffer-local values are not affected.
711 If INITVALUE is missing, SYMBOL's value is not set.
713 If SYMBOL has a local binding, then this form affects the local
714 binding. This is usually not what you want. Thus, if you need to
715 load a file defining variables, with this form or with `defconst' or
716 `defcustom', you should always load that file _outside_ any bindings
717 for these variables. (`defconst' and `defcustom' behave similarly in
718 this respect.)
720 The optional argument DOCSTRING is a documentation string for the
721 variable.
723 To define a user option, use `defcustom' instead of `defvar'.
724 usage: (defvar SYMBOL &optional INITVALUE DOCSTRING) */)
725 (Lisp_Object args)
727 Lisp_Object sym, tem, tail;
729 sym = XCAR (args);
730 tail = XCDR (args);
732 if (CONSP (tail))
734 if (CONSP (XCDR (tail)) && CONSP (XCDR (XCDR (tail))))
735 error ("Too many arguments");
737 tem = Fdefault_boundp (sym);
739 /* Do it before evaluating the initial value, for self-references. */
740 XSYMBOL (sym)->declared_special = 1;
742 if (NILP (tem))
743 Fset_default (sym, eval_sub (XCAR (tail)));
744 else
745 { /* Check if there is really a global binding rather than just a let
746 binding that shadows the global unboundness of the var. */
747 union specbinding *binding = default_toplevel_binding (sym);
748 if (binding && EQ (specpdl_old_value (binding), Qunbound))
750 set_specpdl_old_value (binding, eval_sub (XCAR (tail)));
753 tail = XCDR (tail);
754 tem = Fcar (tail);
755 if (!NILP (tem))
757 if (!NILP (Vpurify_flag))
758 tem = Fpurecopy (tem);
759 Fput (sym, Qvariable_documentation, tem);
761 LOADHIST_ATTACH (sym);
763 else if (!NILP (Vinternal_interpreter_environment)
764 && !XSYMBOL (sym)->declared_special)
765 /* A simple (defvar foo) with lexical scoping does "nothing" except
766 declare that var to be dynamically scoped *locally* (i.e. within
767 the current file or let-block). */
768 Vinternal_interpreter_environment
769 = Fcons (sym, Vinternal_interpreter_environment);
770 else
772 /* Simple (defvar <var>) should not count as a definition at all.
773 It could get in the way of other definitions, and unloading this
774 package could try to make the variable unbound. */
777 return sym;
780 DEFUN ("defconst", Fdefconst, Sdefconst, 2, UNEVALLED, 0,
781 doc: /* Define SYMBOL as a constant variable.
782 This declares that neither programs nor users should ever change the
783 value. This constancy is not actually enforced by Emacs Lisp, but
784 SYMBOL is marked as a special variable so that it is never lexically
785 bound.
787 The `defconst' form always sets the value of SYMBOL to the result of
788 evalling INITVALUE. If SYMBOL is buffer-local, its default value is
789 what is set; buffer-local values are not affected. If SYMBOL has a
790 local binding, then this form sets the local binding's value.
791 However, you should normally not make local bindings for variables
792 defined with this form.
794 The optional DOCSTRING specifies the variable's documentation string.
795 usage: (defconst SYMBOL INITVALUE [DOCSTRING]) */)
796 (Lisp_Object args)
798 Lisp_Object sym, tem;
800 sym = XCAR (args);
801 if (CONSP (Fcdr (XCDR (XCDR (args)))))
802 error ("Too many arguments");
804 tem = eval_sub (Fcar (XCDR (args)));
805 if (!NILP (Vpurify_flag))
806 tem = Fpurecopy (tem);
807 Fset_default (sym, tem);
808 XSYMBOL (sym)->declared_special = 1;
809 tem = Fcar (XCDR (XCDR (args)));
810 if (!NILP (tem))
812 if (!NILP (Vpurify_flag))
813 tem = Fpurecopy (tem);
814 Fput (sym, Qvariable_documentation, tem);
816 Fput (sym, Qrisky_local_variable, Qt);
817 LOADHIST_ATTACH (sym);
818 return sym;
821 /* Make SYMBOL lexically scoped. */
822 DEFUN ("internal-make-var-non-special", Fmake_var_non_special,
823 Smake_var_non_special, 1, 1, 0,
824 doc: /* Internal function. */)
825 (Lisp_Object symbol)
827 CHECK_SYMBOL (symbol);
828 XSYMBOL (symbol)->declared_special = 0;
829 return Qnil;
833 DEFUN ("let*", FletX, SletX, 1, UNEVALLED, 0,
834 doc: /* Bind variables according to VARLIST then eval BODY.
835 The value of the last form in BODY is returned.
836 Each element of VARLIST is a symbol (which is bound to nil)
837 or a list (SYMBOL VALUEFORM) (which binds SYMBOL to the value of VALUEFORM).
838 Each VALUEFORM can refer to the symbols already bound by this VARLIST.
839 usage: (let* VARLIST BODY...) */)
840 (Lisp_Object args)
842 Lisp_Object varlist, var, val, elt, lexenv;
843 ptrdiff_t count = SPECPDL_INDEX ();
845 lexenv = Vinternal_interpreter_environment;
847 varlist = XCAR (args);
848 while (CONSP (varlist))
850 QUIT;
852 elt = XCAR (varlist);
853 if (SYMBOLP (elt))
855 var = elt;
856 val = Qnil;
858 else if (! NILP (Fcdr (Fcdr (elt))))
859 signal_error ("`let' bindings can have only one value-form", elt);
860 else
862 var = Fcar (elt);
863 val = eval_sub (Fcar (Fcdr (elt)));
866 if (!NILP (lexenv) && SYMBOLP (var)
867 && !XSYMBOL (var)->declared_special
868 && NILP (Fmemq (var, Vinternal_interpreter_environment)))
869 /* Lexically bind VAR by adding it to the interpreter's binding
870 alist. */
872 Lisp_Object newenv
873 = Fcons (Fcons (var, val), Vinternal_interpreter_environment);
874 if (EQ (Vinternal_interpreter_environment, lexenv))
875 /* Save the old lexical environment on the specpdl stack,
876 but only for the first lexical binding, since we'll never
877 need to revert to one of the intermediate ones. */
878 specbind (Qinternal_interpreter_environment, newenv);
879 else
880 Vinternal_interpreter_environment = newenv;
882 else
883 specbind (var, val);
885 varlist = XCDR (varlist);
888 val = Fprogn (XCDR (args));
889 return unbind_to (count, val);
892 DEFUN ("let", Flet, Slet, 1, UNEVALLED, 0,
893 doc: /* Bind variables according to VARLIST then eval BODY.
894 The value of the last form in BODY is returned.
895 Each element of VARLIST is a symbol (which is bound to nil)
896 or a list (SYMBOL VALUEFORM) (which binds SYMBOL to the value of VALUEFORM).
897 All the VALUEFORMs are evalled before any symbols are bound.
898 usage: (let VARLIST BODY...) */)
899 (Lisp_Object args)
901 Lisp_Object *temps, tem, lexenv;
902 Lisp_Object elt, varlist;
903 ptrdiff_t count = SPECPDL_INDEX ();
904 ptrdiff_t argnum;
905 USE_SAFE_ALLOCA;
907 varlist = XCAR (args);
909 /* Make space to hold the values to give the bound variables. */
910 elt = Flength (varlist);
911 SAFE_ALLOCA_LISP (temps, XFASTINT (elt));
913 /* Compute the values and store them in `temps'. */
915 for (argnum = 0; CONSP (varlist); varlist = XCDR (varlist))
917 QUIT;
918 elt = XCAR (varlist);
919 if (SYMBOLP (elt))
920 temps [argnum++] = Qnil;
921 else if (! NILP (Fcdr (Fcdr (elt))))
922 signal_error ("`let' bindings can have only one value-form", elt);
923 else
924 temps [argnum++] = eval_sub (Fcar (Fcdr (elt)));
927 lexenv = Vinternal_interpreter_environment;
929 varlist = XCAR (args);
930 for (argnum = 0; CONSP (varlist); varlist = XCDR (varlist))
932 Lisp_Object var;
934 elt = XCAR (varlist);
935 var = SYMBOLP (elt) ? elt : Fcar (elt);
936 tem = temps[argnum++];
938 if (!NILP (lexenv) && SYMBOLP (var)
939 && !XSYMBOL (var)->declared_special
940 && NILP (Fmemq (var, Vinternal_interpreter_environment)))
941 /* Lexically bind VAR by adding it to the lexenv alist. */
942 lexenv = Fcons (Fcons (var, tem), lexenv);
943 else
944 /* Dynamically bind VAR. */
945 specbind (var, tem);
948 if (!EQ (lexenv, Vinternal_interpreter_environment))
949 /* Instantiate a new lexical environment. */
950 specbind (Qinternal_interpreter_environment, lexenv);
952 elt = Fprogn (XCDR (args));
953 SAFE_FREE ();
954 return unbind_to (count, elt);
957 DEFUN ("while", Fwhile, Swhile, 1, UNEVALLED, 0,
958 doc: /* If TEST yields non-nil, eval BODY... and repeat.
959 The order of execution is thus TEST, BODY, TEST, BODY and so on
960 until TEST returns nil.
961 usage: (while TEST BODY...) */)
962 (Lisp_Object args)
964 Lisp_Object test, body;
966 test = XCAR (args);
967 body = XCDR (args);
968 while (!NILP (eval_sub (test)))
970 QUIT;
971 Fprogn (body);
974 return Qnil;
977 DEFUN ("macroexpand", Fmacroexpand, Smacroexpand, 1, 2, 0,
978 doc: /* Return result of expanding macros at top level of FORM.
979 If FORM is not a macro call, it is returned unchanged.
980 Otherwise, the macro is expanded and the expansion is considered
981 in place of FORM. When a non-macro-call results, it is returned.
983 The second optional arg ENVIRONMENT specifies an environment of macro
984 definitions to shadow the loaded ones for use in file byte-compilation. */)
985 (Lisp_Object form, Lisp_Object environment)
987 /* With cleanups from Hallvard Furuseth. */
988 register Lisp_Object expander, sym, def, tem;
990 while (1)
992 /* Come back here each time we expand a macro call,
993 in case it expands into another macro call. */
994 if (!CONSP (form))
995 break;
996 /* Set SYM, give DEF and TEM right values in case SYM is not a symbol. */
997 def = sym = XCAR (form);
998 tem = Qnil;
999 /* Trace symbols aliases to other symbols
1000 until we get a symbol that is not an alias. */
1001 while (SYMBOLP (def))
1003 QUIT;
1004 sym = def;
1005 tem = Fassq (sym, environment);
1006 if (NILP (tem))
1008 def = XSYMBOL (sym)->function;
1009 if (!NILP (def))
1010 continue;
1012 break;
1014 /* Right now TEM is the result from SYM in ENVIRONMENT,
1015 and if TEM is nil then DEF is SYM's function definition. */
1016 if (NILP (tem))
1018 /* SYM is not mentioned in ENVIRONMENT.
1019 Look at its function definition. */
1020 def = Fautoload_do_load (def, sym, Qmacro);
1021 if (!CONSP (def))
1022 /* Not defined or definition not suitable. */
1023 break;
1024 if (!EQ (XCAR (def), Qmacro))
1025 break;
1026 else expander = XCDR (def);
1028 else
1030 expander = XCDR (tem);
1031 if (NILP (expander))
1032 break;
1035 Lisp_Object newform = apply1 (expander, XCDR (form));
1036 if (EQ (form, newform))
1037 break;
1038 else
1039 form = newform;
1042 return form;
1045 DEFUN ("catch", Fcatch, Scatch, 1, UNEVALLED, 0,
1046 doc: /* Eval BODY allowing nonlocal exits using `throw'.
1047 TAG is evalled to get the tag to use; it must not be nil.
1049 Then the BODY is executed.
1050 Within BODY, a call to `throw' with the same TAG exits BODY and this `catch'.
1051 If no throw happens, `catch' returns the value of the last BODY form.
1052 If a throw happens, it specifies the value to return from `catch'.
1053 usage: (catch TAG BODY...) */)
1054 (Lisp_Object args)
1056 Lisp_Object tag = eval_sub (XCAR (args));
1057 return internal_catch (tag, Fprogn, XCDR (args));
1060 /* Assert that E is true, as a comment only. Use this instead of
1061 eassert (E) when E contains variables that might be clobbered by a
1062 longjmp. */
1064 #define clobbered_eassert(E) ((void) 0)
1066 /* Set up a catch, then call C function FUNC on argument ARG.
1067 FUNC should return a Lisp_Object.
1068 This is how catches are done from within C code. */
1070 Lisp_Object
1071 internal_catch (Lisp_Object tag,
1072 Lisp_Object (*func) (Lisp_Object), Lisp_Object arg)
1074 /* This structure is made part of the chain `catchlist'. */
1075 struct handler *c = push_handler (tag, CATCHER);
1077 /* Call FUNC. */
1078 if (! sys_setjmp (c->jmp))
1080 Lisp_Object val = func (arg);
1081 clobbered_eassert (handlerlist == c);
1082 handlerlist = handlerlist->next;
1083 return val;
1085 else
1086 { /* Throw works by a longjmp that comes right here. */
1087 Lisp_Object val = handlerlist->val;
1088 clobbered_eassert (handlerlist == c);
1089 handlerlist = handlerlist->next;
1090 return val;
1094 /* Unwind the specbind, catch, and handler stacks back to CATCH, and
1095 jump to that CATCH, returning VALUE as the value of that catch.
1097 This is the guts of Fthrow and Fsignal; they differ only in the way
1098 they choose the catch tag to throw to. A catch tag for a
1099 condition-case form has a TAG of Qnil.
1101 Before each catch is discarded, unbind all special bindings and
1102 execute all unwind-protect clauses made above that catch. Unwind
1103 the handler stack as we go, so that the proper handlers are in
1104 effect for each unwind-protect clause we run. At the end, restore
1105 some static info saved in CATCH, and longjmp to the location
1106 specified there.
1108 This is used for correct unwinding in Fthrow and Fsignal. */
1110 static _Noreturn void
1111 unwind_to_catch (struct handler *catch, Lisp_Object value)
1113 bool last_time;
1115 eassert (catch->next);
1117 /* Save the value in the tag. */
1118 catch->val = value;
1120 /* Restore certain special C variables. */
1121 set_poll_suppress_count (catch->poll_suppress_count);
1122 unblock_input_to (catch->interrupt_input_blocked);
1123 immediate_quit = 0;
1127 /* Unwind the specpdl stack, and then restore the proper set of
1128 handlers. */
1129 unbind_to (handlerlist->pdlcount, Qnil);
1130 last_time = handlerlist == catch;
1131 if (! last_time)
1132 handlerlist = handlerlist->next;
1134 while (! last_time);
1136 eassert (handlerlist == catch);
1138 lisp_eval_depth = catch->lisp_eval_depth;
1140 sys_longjmp (catch->jmp, 1);
1143 DEFUN ("throw", Fthrow, Sthrow, 2, 2, 0,
1144 doc: /* Throw to the catch for TAG and return VALUE from it.
1145 Both TAG and VALUE are evalled. */
1146 attributes: noreturn)
1147 (register Lisp_Object tag, Lisp_Object value)
1149 struct handler *c;
1151 if (!NILP (tag))
1152 for (c = handlerlist; c; c = c->next)
1154 if (c->type == CATCHER_ALL)
1155 unwind_to_catch (c, Fcons (tag, value));
1156 if (c->type == CATCHER && EQ (c->tag_or_ch, tag))
1157 unwind_to_catch (c, value);
1159 xsignal2 (Qno_catch, tag, value);
1163 DEFUN ("unwind-protect", Funwind_protect, Sunwind_protect, 1, UNEVALLED, 0,
1164 doc: /* Do BODYFORM, protecting with UNWINDFORMS.
1165 If BODYFORM completes normally, its value is returned
1166 after executing the UNWINDFORMS.
1167 If BODYFORM exits nonlocally, the UNWINDFORMS are executed anyway.
1168 usage: (unwind-protect BODYFORM UNWINDFORMS...) */)
1169 (Lisp_Object args)
1171 Lisp_Object val;
1172 ptrdiff_t count = SPECPDL_INDEX ();
1174 record_unwind_protect (unwind_body, XCDR (args));
1175 val = eval_sub (XCAR (args));
1176 return unbind_to (count, val);
1179 DEFUN ("condition-case", Fcondition_case, Scondition_case, 2, UNEVALLED, 0,
1180 doc: /* Regain control when an error is signaled.
1181 Executes BODYFORM and returns its value if no error happens.
1182 Each element of HANDLERS looks like (CONDITION-NAME BODY...)
1183 where the BODY is made of Lisp expressions.
1185 A handler is applicable to an error
1186 if CONDITION-NAME is one of the error's condition names.
1187 If an error happens, the first applicable handler is run.
1189 The car of a handler may be a list of condition names instead of a
1190 single condition name; then it handles all of them. If the special
1191 condition name `debug' is present in this list, it allows another
1192 condition in the list to run the debugger if `debug-on-error' and the
1193 other usual mechanisms says it should (otherwise, `condition-case'
1194 suppresses the debugger).
1196 When a handler handles an error, control returns to the `condition-case'
1197 and it executes the handler's BODY...
1198 with VAR bound to (ERROR-SYMBOL . SIGNAL-DATA) from the error.
1199 \(If VAR is nil, the handler can't access that information.)
1200 Then the value of the last BODY form is returned from the `condition-case'
1201 expression.
1203 See also the function `signal' for more info.
1204 usage: (condition-case VAR BODYFORM &rest HANDLERS) */)
1205 (Lisp_Object args)
1207 Lisp_Object var = XCAR (args);
1208 Lisp_Object bodyform = XCAR (XCDR (args));
1209 Lisp_Object handlers = XCDR (XCDR (args));
1211 return internal_lisp_condition_case (var, bodyform, handlers);
1214 /* Like Fcondition_case, but the args are separate
1215 rather than passed in a list. Used by Fbyte_code. */
1217 Lisp_Object
1218 internal_lisp_condition_case (volatile Lisp_Object var, Lisp_Object bodyform,
1219 Lisp_Object handlers)
1221 Lisp_Object val;
1222 struct handler *oldhandlerlist = handlerlist;
1223 int clausenb = 0;
1225 CHECK_SYMBOL (var);
1227 for (val = handlers; CONSP (val); val = XCDR (val))
1229 Lisp_Object tem = XCAR (val);
1230 clausenb++;
1231 if (! (NILP (tem)
1232 || (CONSP (tem)
1233 && (SYMBOLP (XCAR (tem))
1234 || CONSP (XCAR (tem))))))
1235 error ("Invalid condition handler: %s",
1236 SDATA (Fprin1_to_string (tem, Qt)));
1239 { /* The first clause is the one that should be checked first, so it should
1240 be added to handlerlist last. So we build in `clauses' a table that
1241 contains `handlers' but in reverse order. SAFE_ALLOCA won't work
1242 here due to the setjmp, so impose a MAX_ALLOCA limit. */
1243 if (MAX_ALLOCA / word_size < clausenb)
1244 memory_full (SIZE_MAX);
1245 Lisp_Object *clauses = alloca (clausenb * sizeof *clauses);
1246 Lisp_Object *volatile clauses_volatile = clauses;
1247 int i = clausenb;
1248 for (val = handlers; CONSP (val); val = XCDR (val))
1249 clauses[--i] = XCAR (val);
1250 for (i = 0; i < clausenb; i++)
1252 Lisp_Object clause = clauses[i];
1253 Lisp_Object condition = CONSP (clause) ? XCAR (clause) : Qnil;
1254 if (!CONSP (condition))
1255 condition = Fcons (condition, Qnil);
1256 struct handler *c = push_handler (condition, CONDITION_CASE);
1257 if (sys_setjmp (c->jmp))
1259 ptrdiff_t count = SPECPDL_INDEX ();
1260 Lisp_Object val = handlerlist->val;
1261 Lisp_Object *chosen_clause = clauses_volatile;
1262 for (c = handlerlist->next; c != oldhandlerlist; c = c->next)
1263 chosen_clause++;
1264 handlerlist = oldhandlerlist;
1265 if (!NILP (var))
1267 if (!NILP (Vinternal_interpreter_environment))
1268 specbind (Qinternal_interpreter_environment,
1269 Fcons (Fcons (var, val),
1270 Vinternal_interpreter_environment));
1271 else
1272 specbind (var, val);
1274 val = Fprogn (XCDR (*chosen_clause));
1275 /* Note that this just undoes the binding of var; whoever
1276 longjumped to us unwound the stack to c.pdlcount before
1277 throwing. */
1278 if (!NILP (var))
1279 unbind_to (count, Qnil);
1280 return val;
1285 val = eval_sub (bodyform);
1286 handlerlist = oldhandlerlist;
1287 return val;
1290 /* Call the function BFUN with no arguments, catching errors within it
1291 according to HANDLERS. If there is an error, call HFUN with
1292 one argument which is the data that describes the error:
1293 (SIGNALNAME . DATA)
1295 HANDLERS can be a list of conditions to catch.
1296 If HANDLERS is Qt, catch all errors.
1297 If HANDLERS is Qerror, catch all errors
1298 but allow the debugger to run if that is enabled. */
1300 Lisp_Object
1301 internal_condition_case (Lisp_Object (*bfun) (void), Lisp_Object handlers,
1302 Lisp_Object (*hfun) (Lisp_Object))
1304 struct handler *c = push_handler (handlers, CONDITION_CASE);
1305 if (sys_setjmp (c->jmp))
1307 Lisp_Object val = handlerlist->val;
1308 clobbered_eassert (handlerlist == c);
1309 handlerlist = handlerlist->next;
1310 return hfun (val);
1312 else
1314 Lisp_Object val = bfun ();
1315 clobbered_eassert (handlerlist == c);
1316 handlerlist = handlerlist->next;
1317 return val;
1321 /* Like internal_condition_case but call BFUN with ARG as its argument. */
1323 Lisp_Object
1324 internal_condition_case_1 (Lisp_Object (*bfun) (Lisp_Object), Lisp_Object arg,
1325 Lisp_Object handlers,
1326 Lisp_Object (*hfun) (Lisp_Object))
1328 struct handler *c = push_handler (handlers, CONDITION_CASE);
1329 if (sys_setjmp (c->jmp))
1331 Lisp_Object val = handlerlist->val;
1332 clobbered_eassert (handlerlist == c);
1333 handlerlist = handlerlist->next;
1334 return hfun (val);
1336 else
1338 Lisp_Object val = bfun (arg);
1339 clobbered_eassert (handlerlist == c);
1340 handlerlist = handlerlist->next;
1341 return val;
1345 /* Like internal_condition_case_1 but call BFUN with ARG1 and ARG2 as
1346 its arguments. */
1348 Lisp_Object
1349 internal_condition_case_2 (Lisp_Object (*bfun) (Lisp_Object, Lisp_Object),
1350 Lisp_Object arg1,
1351 Lisp_Object arg2,
1352 Lisp_Object handlers,
1353 Lisp_Object (*hfun) (Lisp_Object))
1355 struct handler *c = push_handler (handlers, CONDITION_CASE);
1356 if (sys_setjmp (c->jmp))
1358 Lisp_Object val = handlerlist->val;
1359 clobbered_eassert (handlerlist == c);
1360 handlerlist = handlerlist->next;
1361 return hfun (val);
1363 else
1365 Lisp_Object val = bfun (arg1, arg2);
1366 clobbered_eassert (handlerlist == c);
1367 handlerlist = handlerlist->next;
1368 return val;
1372 /* Like internal_condition_case but call BFUN with NARGS as first,
1373 and ARGS as second argument. */
1375 Lisp_Object
1376 internal_condition_case_n (Lisp_Object (*bfun) (ptrdiff_t, Lisp_Object *),
1377 ptrdiff_t nargs,
1378 Lisp_Object *args,
1379 Lisp_Object handlers,
1380 Lisp_Object (*hfun) (Lisp_Object err,
1381 ptrdiff_t nargs,
1382 Lisp_Object *args))
1384 struct handler *c = push_handler (handlers, CONDITION_CASE);
1385 if (sys_setjmp (c->jmp))
1387 Lisp_Object val = handlerlist->val;
1388 clobbered_eassert (handlerlist == c);
1389 handlerlist = handlerlist->next;
1390 return hfun (val, nargs, args);
1392 else
1394 Lisp_Object val = bfun (nargs, args);
1395 clobbered_eassert (handlerlist == c);
1396 handlerlist = handlerlist->next;
1397 return val;
1401 struct handler *
1402 push_handler (Lisp_Object tag_ch_val, enum handlertype handlertype)
1404 struct handler *c = push_handler_nosignal (tag_ch_val, handlertype);
1405 if (!c)
1406 memory_full (sizeof *c);
1407 return c;
1410 struct handler *
1411 push_handler_nosignal (Lisp_Object tag_ch_val, enum handlertype handlertype)
1413 struct handler *c = handlerlist->nextfree;
1414 if (!c)
1416 c = malloc (sizeof *c);
1417 if (!c)
1418 return c;
1419 if (profiler_memory_running)
1420 malloc_probe (sizeof *c);
1421 c->nextfree = NULL;
1422 handlerlist->nextfree = c;
1424 c->type = handlertype;
1425 c->tag_or_ch = tag_ch_val;
1426 c->val = Qnil;
1427 c->next = handlerlist;
1428 c->lisp_eval_depth = lisp_eval_depth;
1429 c->pdlcount = SPECPDL_INDEX ();
1430 c->poll_suppress_count = poll_suppress_count;
1431 c->interrupt_input_blocked = interrupt_input_blocked;
1432 handlerlist = c;
1433 return c;
1437 static Lisp_Object signal_or_quit (Lisp_Object, Lisp_Object, bool);
1438 static Lisp_Object find_handler_clause (Lisp_Object, Lisp_Object);
1439 static bool maybe_call_debugger (Lisp_Object conditions, Lisp_Object sig,
1440 Lisp_Object data);
1442 void
1443 process_quit_flag (void)
1445 Lisp_Object flag = Vquit_flag;
1446 Vquit_flag = Qnil;
1447 if (EQ (flag, Qkill_emacs))
1448 Fkill_emacs (Qnil);
1449 if (EQ (Vthrow_on_input, flag))
1450 Fthrow (Vthrow_on_input, Qt);
1451 quit ();
1454 DEFUN ("signal", Fsignal, Ssignal, 2, 2, 0,
1455 doc: /* Signal an error. Args are ERROR-SYMBOL and associated DATA.
1456 This function does not return.
1458 An error symbol is a symbol with an `error-conditions' property
1459 that is a list of condition names.
1460 A handler for any of those names will get to handle this signal.
1461 The symbol `error' should normally be one of them.
1463 DATA should be a list. Its elements are printed as part of the error message.
1464 See Info anchor `(elisp)Definition of signal' for some details on how this
1465 error message is constructed.
1466 If the signal is handled, DATA is made available to the handler.
1467 See also the function `condition-case'. */
1468 attributes: noreturn)
1469 (Lisp_Object error_symbol, Lisp_Object data)
1471 signal_or_quit (error_symbol, data, false);
1472 eassume (false);
1475 /* Quit, in response to a keyboard quit request. */
1476 Lisp_Object
1477 quit (void)
1479 return signal_or_quit (Qquit, Qnil, true);
1482 /* Signal an error, or quit. ERROR_SYMBOL and DATA are as with Fsignal.
1483 If KEYBOARD_QUIT, this is a quit; ERROR_SYMBOL should be
1484 Qquit and DATA should be Qnil, and this function may return.
1485 Otherwise this function is like Fsignal and does not return. */
1487 static Lisp_Object
1488 signal_or_quit (Lisp_Object error_symbol, Lisp_Object data, bool keyboard_quit)
1490 /* When memory is full, ERROR-SYMBOL is nil,
1491 and DATA is (REAL-ERROR-SYMBOL . REAL-DATA).
1492 That is a special case--don't do this in other situations. */
1493 Lisp_Object conditions;
1494 Lisp_Object string;
1495 Lisp_Object real_error_symbol
1496 = (NILP (error_symbol) ? Fcar (data) : error_symbol);
1497 register Lisp_Object clause = Qnil;
1498 struct handler *h;
1500 immediate_quit = 0;
1501 if (gc_in_progress || waiting_for_input)
1502 emacs_abort ();
1504 #if 0 /* rms: I don't know why this was here,
1505 but it is surely wrong for an error that is handled. */
1506 #ifdef HAVE_WINDOW_SYSTEM
1507 if (display_hourglass_p)
1508 cancel_hourglass ();
1509 #endif
1510 #endif
1512 /* This hook is used by edebug. */
1513 if (! NILP (Vsignal_hook_function)
1514 && ! NILP (error_symbol))
1516 /* Edebug takes care of restoring these variables when it exits. */
1517 if (lisp_eval_depth + 20 > max_lisp_eval_depth)
1518 max_lisp_eval_depth = lisp_eval_depth + 20;
1520 if (SPECPDL_INDEX () + 40 > max_specpdl_size)
1521 max_specpdl_size = SPECPDL_INDEX () + 40;
1523 call2 (Vsignal_hook_function, error_symbol, data);
1526 conditions = Fget (real_error_symbol, Qerror_conditions);
1528 /* Remember from where signal was called. Skip over the frame for
1529 `signal' itself. If a frame for `error' follows, skip that,
1530 too. Don't do this when ERROR_SYMBOL is nil, because that
1531 is a memory-full error. */
1532 Vsignaling_function = Qnil;
1533 if (!NILP (error_symbol))
1535 union specbinding *pdl = backtrace_next (backtrace_top ());
1536 if (backtrace_p (pdl) && EQ (backtrace_function (pdl), Qerror))
1537 pdl = backtrace_next (pdl);
1538 if (backtrace_p (pdl))
1539 Vsignaling_function = backtrace_function (pdl);
1542 for (h = handlerlist; h; h = h->next)
1544 if (h->type != CONDITION_CASE)
1545 continue;
1546 clause = find_handler_clause (h->tag_or_ch, conditions);
1547 if (!NILP (clause))
1548 break;
1551 if (/* Don't run the debugger for a memory-full error.
1552 (There is no room in memory to do that!) */
1553 !NILP (error_symbol)
1554 && (!NILP (Vdebug_on_signal)
1555 /* If no handler is present now, try to run the debugger. */
1556 || NILP (clause)
1557 /* A `debug' symbol in the handler list disables the normal
1558 suppression of the debugger. */
1559 || (CONSP (clause) && !NILP (Fmemq (Qdebug, clause)))
1560 /* Special handler that means "print a message and run debugger
1561 if requested". */
1562 || EQ (h->tag_or_ch, Qerror)))
1564 bool debugger_called
1565 = maybe_call_debugger (conditions, error_symbol, data);
1566 /* We can't return values to code which signaled an error, but we
1567 can continue code which has signaled a quit. */
1568 if (keyboard_quit && debugger_called && EQ (real_error_symbol, Qquit))
1569 return Qnil;
1572 if (!NILP (clause))
1574 Lisp_Object unwind_data
1575 = (NILP (error_symbol) ? data : Fcons (error_symbol, data));
1577 unwind_to_catch (h, unwind_data);
1579 else
1581 if (handlerlist != &handlerlist_sentinel)
1582 /* FIXME: This will come right back here if there's no `top-level'
1583 catcher. A better solution would be to abort here, and instead
1584 add a catch-all condition handler so we never come here. */
1585 Fthrow (Qtop_level, Qt);
1588 if (! NILP (error_symbol))
1589 data = Fcons (error_symbol, data);
1591 string = Ferror_message_string (data);
1592 fatal ("%s", SDATA (string));
1595 /* Like xsignal, but takes 0, 1, 2, or 3 args instead of a list. */
1597 void
1598 xsignal0 (Lisp_Object error_symbol)
1600 xsignal (error_symbol, Qnil);
1603 void
1604 xsignal1 (Lisp_Object error_symbol, Lisp_Object arg)
1606 xsignal (error_symbol, list1 (arg));
1609 void
1610 xsignal2 (Lisp_Object error_symbol, Lisp_Object arg1, Lisp_Object arg2)
1612 xsignal (error_symbol, list2 (arg1, arg2));
1615 void
1616 xsignal3 (Lisp_Object error_symbol, Lisp_Object arg1, Lisp_Object arg2, Lisp_Object arg3)
1618 xsignal (error_symbol, list3 (arg1, arg2, arg3));
1621 /* Signal `error' with message S, and additional arg ARG.
1622 If ARG is not a genuine list, make it a one-element list. */
1624 void
1625 signal_error (const char *s, Lisp_Object arg)
1627 Lisp_Object tortoise, hare;
1629 hare = tortoise = arg;
1630 while (CONSP (hare))
1632 hare = XCDR (hare);
1633 if (!CONSP (hare))
1634 break;
1636 hare = XCDR (hare);
1637 tortoise = XCDR (tortoise);
1639 if (EQ (hare, tortoise))
1640 break;
1643 if (!NILP (hare))
1644 arg = list1 (arg);
1646 xsignal (Qerror, Fcons (build_string (s), arg));
1650 /* Return true if LIST is a non-nil atom or
1651 a list containing one of CONDITIONS. */
1653 static bool
1654 wants_debugger (Lisp_Object list, Lisp_Object conditions)
1656 if (NILP (list))
1657 return 0;
1658 if (! CONSP (list))
1659 return 1;
1661 while (CONSP (conditions))
1663 Lisp_Object this, tail;
1664 this = XCAR (conditions);
1665 for (tail = list; CONSP (tail); tail = XCDR (tail))
1666 if (EQ (XCAR (tail), this))
1667 return 1;
1668 conditions = XCDR (conditions);
1670 return 0;
1673 /* Return true if an error with condition-symbols CONDITIONS,
1674 and described by SIGNAL-DATA, should skip the debugger
1675 according to debugger-ignored-errors. */
1677 static bool
1678 skip_debugger (Lisp_Object conditions, Lisp_Object data)
1680 Lisp_Object tail;
1681 bool first_string = 1;
1682 Lisp_Object error_message;
1684 error_message = Qnil;
1685 for (tail = Vdebug_ignored_errors; CONSP (tail); tail = XCDR (tail))
1687 if (STRINGP (XCAR (tail)))
1689 if (first_string)
1691 error_message = Ferror_message_string (data);
1692 first_string = 0;
1695 if (fast_string_match (XCAR (tail), error_message) >= 0)
1696 return 1;
1698 else
1700 Lisp_Object contail;
1702 for (contail = conditions; CONSP (contail); contail = XCDR (contail))
1703 if (EQ (XCAR (tail), XCAR (contail)))
1704 return 1;
1708 return 0;
1711 /* Call the debugger if calling it is currently enabled for CONDITIONS.
1712 SIG and DATA describe the signal. There are two ways to pass them:
1713 = SIG is the error symbol, and DATA is the rest of the data.
1714 = SIG is nil, and DATA is (SYMBOL . REST-OF-DATA).
1715 This is for memory-full errors only. */
1716 static bool
1717 maybe_call_debugger (Lisp_Object conditions, Lisp_Object sig, Lisp_Object data)
1719 Lisp_Object combined_data;
1721 combined_data = Fcons (sig, data);
1723 if (
1724 /* Don't try to run the debugger with interrupts blocked.
1725 The editing loop would return anyway. */
1726 ! input_blocked_p ()
1727 && NILP (Vinhibit_debugger)
1728 /* Does user want to enter debugger for this kind of error? */
1729 && (EQ (sig, Qquit)
1730 ? debug_on_quit
1731 : wants_debugger (Vdebug_on_error, conditions))
1732 && ! skip_debugger (conditions, combined_data)
1733 /* RMS: What's this for? */
1734 && when_entered_debugger < num_nonmacro_input_events)
1736 call_debugger (list2 (Qerror, combined_data));
1737 return 1;
1740 return 0;
1743 static Lisp_Object
1744 find_handler_clause (Lisp_Object handlers, Lisp_Object conditions)
1746 register Lisp_Object h;
1748 /* t is used by handlers for all conditions, set up by C code. */
1749 if (EQ (handlers, Qt))
1750 return Qt;
1752 /* error is used similarly, but means print an error message
1753 and run the debugger if that is enabled. */
1754 if (EQ (handlers, Qerror))
1755 return Qt;
1757 for (h = handlers; CONSP (h); h = XCDR (h))
1759 Lisp_Object handler = XCAR (h);
1760 if (!NILP (Fmemq (handler, conditions)))
1761 return handlers;
1764 return Qnil;
1768 /* Format and return a string; called like vprintf. */
1769 Lisp_Object
1770 vformat_string (const char *m, va_list ap)
1772 char buf[4000];
1773 ptrdiff_t size = sizeof buf;
1774 ptrdiff_t size_max = STRING_BYTES_BOUND + 1;
1775 char *buffer = buf;
1776 ptrdiff_t used;
1777 Lisp_Object string;
1779 used = evxprintf (&buffer, &size, buf, size_max, m, ap);
1780 string = make_string (buffer, used);
1781 if (buffer != buf)
1782 xfree (buffer);
1784 return string;
1787 /* Dump an error message; called like vprintf. */
1788 void
1789 verror (const char *m, va_list ap)
1791 xsignal1 (Qerror, vformat_string (m, ap));
1795 /* Dump an error message; called like printf. */
1797 /* VARARGS 1 */
1798 void
1799 error (const char *m, ...)
1801 va_list ap;
1802 va_start (ap, m);
1803 verror (m, ap);
1806 DEFUN ("commandp", Fcommandp, Scommandp, 1, 2, 0,
1807 doc: /* Non-nil if FUNCTION makes provisions for interactive calling.
1808 This means it contains a description for how to read arguments to give it.
1809 The value is nil for an invalid function or a symbol with no function
1810 definition.
1812 Interactively callable functions include strings and vectors (treated
1813 as keyboard macros), lambda-expressions that contain a top-level call
1814 to `interactive', autoload definitions made by `autoload' with non-nil
1815 fourth argument, and some of the built-in functions of Lisp.
1817 Also, a symbol satisfies `commandp' if its function definition does so.
1819 If the optional argument FOR-CALL-INTERACTIVELY is non-nil,
1820 then strings and vectors are not accepted. */)
1821 (Lisp_Object function, Lisp_Object for_call_interactively)
1823 register Lisp_Object fun;
1824 register Lisp_Object funcar;
1825 Lisp_Object if_prop = Qnil;
1827 fun = function;
1829 fun = indirect_function (fun); /* Check cycles. */
1830 if (NILP (fun))
1831 return Qnil;
1833 /* Check an `interactive-form' property if present, analogous to the
1834 function-documentation property. */
1835 fun = function;
1836 while (SYMBOLP (fun))
1838 Lisp_Object tmp = Fget (fun, Qinteractive_form);
1839 if (!NILP (tmp))
1840 if_prop = Qt;
1841 fun = Fsymbol_function (fun);
1844 /* Emacs primitives are interactive if their DEFUN specifies an
1845 interactive spec. */
1846 if (SUBRP (fun))
1847 return XSUBR (fun)->intspec ? Qt : if_prop;
1849 /* Bytecode objects are interactive if they are long enough to
1850 have an element whose index is COMPILED_INTERACTIVE, which is
1851 where the interactive spec is stored. */
1852 else if (COMPILEDP (fun))
1853 return ((ASIZE (fun) & PSEUDOVECTOR_SIZE_MASK) > COMPILED_INTERACTIVE
1854 ? Qt : if_prop);
1856 /* Strings and vectors are keyboard macros. */
1857 if (STRINGP (fun) || VECTORP (fun))
1858 return (NILP (for_call_interactively) ? Qt : Qnil);
1860 /* Lists may represent commands. */
1861 if (!CONSP (fun))
1862 return Qnil;
1863 funcar = XCAR (fun);
1864 if (EQ (funcar, Qclosure))
1865 return (!NILP (Fassq (Qinteractive, Fcdr (Fcdr (XCDR (fun)))))
1866 ? Qt : if_prop);
1867 else if (EQ (funcar, Qlambda))
1868 return !NILP (Fassq (Qinteractive, Fcdr (XCDR (fun)))) ? Qt : if_prop;
1869 else if (EQ (funcar, Qautoload))
1870 return !NILP (Fcar (Fcdr (Fcdr (XCDR (fun))))) ? Qt : if_prop;
1871 else
1872 return Qnil;
1875 DEFUN ("autoload", Fautoload, Sautoload, 2, 5, 0,
1876 doc: /* Define FUNCTION to autoload from FILE.
1877 FUNCTION is a symbol; FILE is a file name string to pass to `load'.
1878 Third arg DOCSTRING is documentation for the function.
1879 Fourth arg INTERACTIVE if non-nil says function can be called interactively.
1880 Fifth arg TYPE indicates the type of the object:
1881 nil or omitted says FUNCTION is a function,
1882 `keymap' says FUNCTION is really a keymap, and
1883 `macro' or t says FUNCTION is really a macro.
1884 Third through fifth args give info about the real definition.
1885 They default to nil.
1886 If FUNCTION is already defined other than as an autoload,
1887 this does nothing and returns nil. */)
1888 (Lisp_Object function, Lisp_Object file, Lisp_Object docstring, Lisp_Object interactive, Lisp_Object type)
1890 CHECK_SYMBOL (function);
1891 CHECK_STRING (file);
1893 /* If function is defined and not as an autoload, don't override. */
1894 if (!NILP (XSYMBOL (function)->function)
1895 && !AUTOLOADP (XSYMBOL (function)->function))
1896 return Qnil;
1898 if (!NILP (Vpurify_flag) && EQ (docstring, make_number (0)))
1899 /* `read1' in lread.c has found the docstring starting with "\
1900 and assumed the docstring will be provided by Snarf-documentation, so it
1901 passed us 0 instead. But that leads to accidental sharing in purecopy's
1902 hash-consing, so we use a (hopefully) unique integer instead. */
1903 docstring = make_number (XHASH (function));
1904 return Fdefalias (function,
1905 list5 (Qautoload, file, docstring, interactive, type),
1906 Qnil);
1909 void
1910 un_autoload (Lisp_Object oldqueue)
1912 Lisp_Object queue, first, second;
1914 /* Queue to unwind is current value of Vautoload_queue.
1915 oldqueue is the shadowed value to leave in Vautoload_queue. */
1916 queue = Vautoload_queue;
1917 Vautoload_queue = oldqueue;
1918 while (CONSP (queue))
1920 first = XCAR (queue);
1921 second = Fcdr (first);
1922 first = Fcar (first);
1923 if (EQ (first, make_number (0)))
1924 Vfeatures = second;
1925 else
1926 Ffset (first, second);
1927 queue = XCDR (queue);
1931 /* Load an autoloaded function.
1932 FUNNAME is the symbol which is the function's name.
1933 FUNDEF is the autoload definition (a list). */
1935 DEFUN ("autoload-do-load", Fautoload_do_load, Sautoload_do_load, 1, 3, 0,
1936 doc: /* Load FUNDEF which should be an autoload.
1937 If non-nil, FUNNAME should be the symbol whose function value is FUNDEF,
1938 in which case the function returns the new autoloaded function value.
1939 If equal to `macro', MACRO-ONLY specifies that FUNDEF should only be loaded if
1940 it defines a macro. */)
1941 (Lisp_Object fundef, Lisp_Object funname, Lisp_Object macro_only)
1943 ptrdiff_t count = SPECPDL_INDEX ();
1945 if (!CONSP (fundef) || !EQ (Qautoload, XCAR (fundef)))
1946 return fundef;
1948 if (EQ (macro_only, Qmacro))
1950 Lisp_Object kind = Fnth (make_number (4), fundef);
1951 if (! (EQ (kind, Qt) || EQ (kind, Qmacro)))
1952 return fundef;
1955 /* This is to make sure that loadup.el gives a clear picture
1956 of what files are preloaded and when. */
1957 if (! NILP (Vpurify_flag))
1958 error ("Attempt to autoload %s while preparing to dump",
1959 SDATA (SYMBOL_NAME (funname)));
1961 CHECK_SYMBOL (funname);
1963 /* Preserve the match data. */
1964 record_unwind_save_match_data ();
1966 /* If autoloading gets an error (which includes the error of failing
1967 to define the function being called), we use Vautoload_queue
1968 to undo function definitions and `provide' calls made by
1969 the function. We do this in the specific case of autoloading
1970 because autoloading is not an explicit request "load this file",
1971 but rather a request to "call this function".
1973 The value saved here is to be restored into Vautoload_queue. */
1974 record_unwind_protect (un_autoload, Vautoload_queue);
1975 Vautoload_queue = Qt;
1976 /* If `macro_only', assume this autoload to be a "best-effort",
1977 so don't signal an error if autoloading fails. */
1978 Fload (Fcar (Fcdr (fundef)), macro_only, Qt, Qnil, Qt);
1980 /* Once loading finishes, don't undo it. */
1981 Vautoload_queue = Qt;
1982 unbind_to (count, Qnil);
1984 if (NILP (funname))
1985 return Qnil;
1986 else
1988 Lisp_Object fun = Findirect_function (funname, Qnil);
1990 if (!NILP (Fequal (fun, fundef)))
1991 error ("Autoloading file %s failed to define function %s",
1992 SDATA (Fcar (Fcar (Vload_history))),
1993 SDATA (SYMBOL_NAME (funname)));
1994 else
1995 return fun;
2000 DEFUN ("eval", Feval, Seval, 1, 2, 0,
2001 doc: /* Evaluate FORM and return its value.
2002 If LEXICAL is t, evaluate using lexical scoping.
2003 LEXICAL can also be an actual lexical environment, in the form of an
2004 alist mapping symbols to their value. */)
2005 (Lisp_Object form, Lisp_Object lexical)
2007 ptrdiff_t count = SPECPDL_INDEX ();
2008 specbind (Qinternal_interpreter_environment,
2009 CONSP (lexical) || NILP (lexical) ? lexical : list1 (Qt));
2010 return unbind_to (count, eval_sub (form));
2013 /* Grow the specpdl stack by one entry.
2014 The caller should have already initialized the entry.
2015 Signal an error on stack overflow.
2017 Make sure that there is always one unused entry past the top of the
2018 stack, so that the just-initialized entry is safely unwound if
2019 memory exhausted and an error is signaled here. Also, allocate a
2020 never-used entry just before the bottom of the stack; sometimes its
2021 address is taken. */
2023 static void
2024 grow_specpdl (void)
2026 specpdl_ptr++;
2028 if (specpdl_ptr == specpdl + specpdl_size)
2030 ptrdiff_t count = SPECPDL_INDEX ();
2031 ptrdiff_t max_size = min (max_specpdl_size, PTRDIFF_MAX - 1000);
2032 union specbinding *pdlvec = specpdl - 1;
2033 ptrdiff_t pdlvecsize = specpdl_size + 1;
2034 if (max_size <= specpdl_size)
2036 if (max_specpdl_size < 400)
2037 max_size = max_specpdl_size = 400;
2038 if (max_size <= specpdl_size)
2039 signal_error ("Variable binding depth exceeds max-specpdl-size",
2040 Qnil);
2042 pdlvec = xpalloc (pdlvec, &pdlvecsize, 1, max_size + 1, sizeof *specpdl);
2043 specpdl = pdlvec + 1;
2044 specpdl_size = pdlvecsize - 1;
2045 specpdl_ptr = specpdl + count;
2049 ptrdiff_t
2050 record_in_backtrace (Lisp_Object function, Lisp_Object *args, ptrdiff_t nargs)
2052 ptrdiff_t count = SPECPDL_INDEX ();
2054 eassert (nargs >= UNEVALLED);
2055 specpdl_ptr->bt.kind = SPECPDL_BACKTRACE;
2056 specpdl_ptr->bt.debug_on_exit = false;
2057 specpdl_ptr->bt.function = function;
2058 specpdl_ptr->bt.args = args;
2059 specpdl_ptr->bt.nargs = nargs;
2060 grow_specpdl ();
2062 return count;
2065 /* Eval a sub-expression of the current expression (i.e. in the same
2066 lexical scope). */
2067 Lisp_Object
2068 eval_sub (Lisp_Object form)
2070 Lisp_Object fun, val, original_fun, original_args;
2071 Lisp_Object funcar;
2072 ptrdiff_t count;
2074 /* Declare here, as this array may be accessed by call_debugger near
2075 the end of this function. See Bug#21245. */
2076 Lisp_Object argvals[8];
2078 if (SYMBOLP (form))
2080 /* Look up its binding in the lexical environment.
2081 We do not pay attention to the declared_special flag here, since we
2082 already did that when let-binding the variable. */
2083 Lisp_Object lex_binding
2084 = !NILP (Vinternal_interpreter_environment) /* Mere optimization! */
2085 ? Fassq (form, Vinternal_interpreter_environment)
2086 : Qnil;
2087 if (CONSP (lex_binding))
2088 return XCDR (lex_binding);
2089 else
2090 return Fsymbol_value (form);
2093 if (!CONSP (form))
2094 return form;
2096 QUIT;
2098 maybe_gc ();
2100 if (++lisp_eval_depth > max_lisp_eval_depth)
2102 if (max_lisp_eval_depth < 100)
2103 max_lisp_eval_depth = 100;
2104 if (lisp_eval_depth > max_lisp_eval_depth)
2105 error ("Lisp nesting exceeds `max-lisp-eval-depth'");
2108 original_fun = XCAR (form);
2109 original_args = XCDR (form);
2111 /* This also protects them from gc. */
2112 count = record_in_backtrace (original_fun, &original_args, UNEVALLED);
2114 if (debug_on_next_call)
2115 do_debug_on_call (Qt, count);
2117 /* At this point, only original_fun and original_args
2118 have values that will be used below. */
2119 retry:
2121 /* Optimize for no indirection. */
2122 fun = original_fun;
2123 if (!SYMBOLP (fun))
2124 fun = Ffunction (Fcons (fun, Qnil));
2125 else if (!NILP (fun) && (fun = XSYMBOL (fun)->function, SYMBOLP (fun)))
2126 fun = indirect_function (fun);
2128 if (SUBRP (fun))
2130 Lisp_Object args_left = original_args;
2131 Lisp_Object numargs = Flength (args_left);
2133 check_cons_list ();
2135 if (XINT (numargs) < XSUBR (fun)->min_args
2136 || (XSUBR (fun)->max_args >= 0
2137 && XSUBR (fun)->max_args < XINT (numargs)))
2138 xsignal2 (Qwrong_number_of_arguments, original_fun, numargs);
2140 else if (XSUBR (fun)->max_args == UNEVALLED)
2141 val = (XSUBR (fun)->function.aUNEVALLED) (args_left);
2142 else if (XSUBR (fun)->max_args == MANY)
2144 /* Pass a vector of evaluated arguments. */
2145 Lisp_Object *vals;
2146 ptrdiff_t argnum = 0;
2147 USE_SAFE_ALLOCA;
2149 SAFE_ALLOCA_LISP (vals, XINT (numargs));
2151 while (!NILP (args_left))
2153 vals[argnum++] = eval_sub (Fcar (args_left));
2154 args_left = Fcdr (args_left);
2157 set_backtrace_args (specpdl + count, vals, XINT (numargs));
2159 val = (XSUBR (fun)->function.aMANY) (XINT (numargs), vals);
2161 check_cons_list ();
2162 lisp_eval_depth--;
2163 /* Do the debug-on-exit now, while VALS still exists. */
2164 if (backtrace_debug_on_exit (specpdl + count))
2165 val = call_debugger (list2 (Qexit, val));
2166 SAFE_FREE ();
2167 specpdl_ptr--;
2168 return val;
2170 else
2172 int i, maxargs = XSUBR (fun)->max_args;
2174 for (i = 0; i < maxargs; i++)
2176 argvals[i] = eval_sub (Fcar (args_left));
2177 args_left = Fcdr (args_left);
2180 set_backtrace_args (specpdl + count, argvals, XINT (numargs));
2182 switch (i)
2184 case 0:
2185 val = (XSUBR (fun)->function.a0 ());
2186 break;
2187 case 1:
2188 val = (XSUBR (fun)->function.a1 (argvals[0]));
2189 break;
2190 case 2:
2191 val = (XSUBR (fun)->function.a2 (argvals[0], argvals[1]));
2192 break;
2193 case 3:
2194 val = (XSUBR (fun)->function.a3
2195 (argvals[0], argvals[1], argvals[2]));
2196 break;
2197 case 4:
2198 val = (XSUBR (fun)->function.a4
2199 (argvals[0], argvals[1], argvals[2], argvals[3]));
2200 break;
2201 case 5:
2202 val = (XSUBR (fun)->function.a5
2203 (argvals[0], argvals[1], argvals[2], argvals[3],
2204 argvals[4]));
2205 break;
2206 case 6:
2207 val = (XSUBR (fun)->function.a6
2208 (argvals[0], argvals[1], argvals[2], argvals[3],
2209 argvals[4], argvals[5]));
2210 break;
2211 case 7:
2212 val = (XSUBR (fun)->function.a7
2213 (argvals[0], argvals[1], argvals[2], argvals[3],
2214 argvals[4], argvals[5], argvals[6]));
2215 break;
2217 case 8:
2218 val = (XSUBR (fun)->function.a8
2219 (argvals[0], argvals[1], argvals[2], argvals[3],
2220 argvals[4], argvals[5], argvals[6], argvals[7]));
2221 break;
2223 default:
2224 /* Someone has created a subr that takes more arguments than
2225 is supported by this code. We need to either rewrite the
2226 subr to use a different argument protocol, or add more
2227 cases to this switch. */
2228 emacs_abort ();
2232 else if (COMPILEDP (fun))
2233 return apply_lambda (fun, original_args, count);
2234 else
2236 if (NILP (fun))
2237 xsignal1 (Qvoid_function, original_fun);
2238 if (!CONSP (fun))
2239 xsignal1 (Qinvalid_function, original_fun);
2240 funcar = XCAR (fun);
2241 if (!SYMBOLP (funcar))
2242 xsignal1 (Qinvalid_function, original_fun);
2243 if (EQ (funcar, Qautoload))
2245 Fautoload_do_load (fun, original_fun, Qnil);
2246 goto retry;
2248 if (EQ (funcar, Qmacro))
2250 ptrdiff_t count1 = SPECPDL_INDEX ();
2251 Lisp_Object exp;
2252 /* Bind lexical-binding during expansion of the macro, so the
2253 macro can know reliably if the code it outputs will be
2254 interpreted using lexical-binding or not. */
2255 specbind (Qlexical_binding,
2256 NILP (Vinternal_interpreter_environment) ? Qnil : Qt);
2257 exp = apply1 (Fcdr (fun), original_args);
2258 unbind_to (count1, Qnil);
2259 val = eval_sub (exp);
2261 else if (EQ (funcar, Qlambda)
2262 || EQ (funcar, Qclosure))
2263 return apply_lambda (fun, original_args, count);
2264 else
2265 xsignal1 (Qinvalid_function, original_fun);
2267 check_cons_list ();
2269 lisp_eval_depth--;
2270 if (backtrace_debug_on_exit (specpdl + count))
2271 val = call_debugger (list2 (Qexit, val));
2272 specpdl_ptr--;
2274 return val;
2277 DEFUN ("apply", Fapply, Sapply, 1, MANY, 0,
2278 doc: /* Call FUNCTION with our remaining args, using our last arg as list of args.
2279 Then return the value FUNCTION returns.
2280 Thus, (apply \\='+ 1 2 \\='(3 4)) returns 10.
2281 usage: (apply FUNCTION &rest ARGUMENTS) */)
2282 (ptrdiff_t nargs, Lisp_Object *args)
2284 ptrdiff_t i, numargs, funcall_nargs;
2285 register Lisp_Object *funcall_args = NULL;
2286 register Lisp_Object spread_arg = args[nargs - 1];
2287 Lisp_Object fun = args[0];
2288 Lisp_Object retval;
2289 USE_SAFE_ALLOCA;
2291 CHECK_LIST (spread_arg);
2293 numargs = XINT (Flength (spread_arg));
2295 if (numargs == 0)
2296 return Ffuncall (nargs - 1, args);
2297 else if (numargs == 1)
2299 args [nargs - 1] = XCAR (spread_arg);
2300 return Ffuncall (nargs, args);
2303 numargs += nargs - 2;
2305 /* Optimize for no indirection. */
2306 if (SYMBOLP (fun) && !NILP (fun)
2307 && (fun = XSYMBOL (fun)->function, SYMBOLP (fun)))
2309 fun = indirect_function (fun);
2310 if (NILP (fun))
2311 /* Let funcall get the error. */
2312 fun = args[0];
2315 if (SUBRP (fun) && XSUBR (fun)->max_args > numargs
2316 /* Don't hide an error by adding missing arguments. */
2317 && numargs >= XSUBR (fun)->min_args)
2319 /* Avoid making funcall cons up a yet another new vector of arguments
2320 by explicitly supplying nil's for optional values. */
2321 SAFE_ALLOCA_LISP (funcall_args, 1 + XSUBR (fun)->max_args);
2322 memclear (funcall_args + numargs + 1,
2323 (XSUBR (fun)->max_args - numargs) * word_size);
2324 funcall_nargs = 1 + XSUBR (fun)->max_args;
2326 else
2327 { /* We add 1 to numargs because funcall_args includes the
2328 function itself as well as its arguments. */
2329 SAFE_ALLOCA_LISP (funcall_args, 1 + numargs);
2330 funcall_nargs = 1 + numargs;
2333 memcpy (funcall_args, args, nargs * word_size);
2334 /* Spread the last arg we got. Its first element goes in
2335 the slot that it used to occupy, hence this value of I. */
2336 i = nargs - 1;
2337 while (!NILP (spread_arg))
2339 funcall_args [i++] = XCAR (spread_arg);
2340 spread_arg = XCDR (spread_arg);
2343 retval = Ffuncall (funcall_nargs, funcall_args);
2345 SAFE_FREE ();
2346 return retval;
2349 /* Run hook variables in various ways. */
2351 static Lisp_Object
2352 funcall_nil (ptrdiff_t nargs, Lisp_Object *args)
2354 Ffuncall (nargs, args);
2355 return Qnil;
2358 DEFUN ("run-hooks", Frun_hooks, Srun_hooks, 0, MANY, 0,
2359 doc: /* Run each hook in HOOKS.
2360 Each argument should be a symbol, a hook variable.
2361 These symbols are processed in the order specified.
2362 If a hook symbol has a non-nil value, that value may be a function
2363 or a list of functions to be called to run the hook.
2364 If the value is a function, it is called with no arguments.
2365 If it is a list, the elements are called, in order, with no arguments.
2367 Major modes should not use this function directly to run their mode
2368 hook; they should use `run-mode-hooks' instead.
2370 Do not use `make-local-variable' to make a hook variable buffer-local.
2371 Instead, use `add-hook' and specify t for the LOCAL argument.
2372 usage: (run-hooks &rest HOOKS) */)
2373 (ptrdiff_t nargs, Lisp_Object *args)
2375 ptrdiff_t i;
2377 for (i = 0; i < nargs; i++)
2378 run_hook (args[i]);
2380 return Qnil;
2383 DEFUN ("run-hook-with-args", Frun_hook_with_args,
2384 Srun_hook_with_args, 1, MANY, 0,
2385 doc: /* Run HOOK with the specified arguments ARGS.
2386 HOOK should be a symbol, a hook variable. The value of HOOK
2387 may be nil, a function, or a list of functions. Call each
2388 function in order with arguments ARGS. The final return value
2389 is unspecified.
2391 Do not use `make-local-variable' to make a hook variable buffer-local.
2392 Instead, use `add-hook' and specify t for the LOCAL argument.
2393 usage: (run-hook-with-args HOOK &rest ARGS) */)
2394 (ptrdiff_t nargs, Lisp_Object *args)
2396 return run_hook_with_args (nargs, args, funcall_nil);
2399 /* NB this one still documents a specific non-nil return value.
2400 (As did run-hook-with-args and run-hook-with-args-until-failure
2401 until they were changed in 24.1.) */
2402 DEFUN ("run-hook-with-args-until-success", Frun_hook_with_args_until_success,
2403 Srun_hook_with_args_until_success, 1, MANY, 0,
2404 doc: /* Run HOOK with the specified arguments ARGS.
2405 HOOK should be a symbol, a hook variable. The value of HOOK
2406 may be nil, a function, or a list of functions. Call each
2407 function in order with arguments ARGS, stopping at the first
2408 one that returns non-nil, and return that value. Otherwise (if
2409 all functions return nil, or if there are no functions to call),
2410 return nil.
2412 Do not use `make-local-variable' to make a hook variable buffer-local.
2413 Instead, use `add-hook' and specify t for the LOCAL argument.
2414 usage: (run-hook-with-args-until-success HOOK &rest ARGS) */)
2415 (ptrdiff_t nargs, Lisp_Object *args)
2417 return run_hook_with_args (nargs, args, Ffuncall);
2420 static Lisp_Object
2421 funcall_not (ptrdiff_t nargs, Lisp_Object *args)
2423 return NILP (Ffuncall (nargs, args)) ? Qt : Qnil;
2426 DEFUN ("run-hook-with-args-until-failure", Frun_hook_with_args_until_failure,
2427 Srun_hook_with_args_until_failure, 1, MANY, 0,
2428 doc: /* Run HOOK with the specified arguments ARGS.
2429 HOOK should be a symbol, a hook variable. The value of HOOK
2430 may be nil, a function, or a list of functions. Call each
2431 function in order with arguments ARGS, stopping at the first
2432 one that returns nil, and return nil. Otherwise (if all functions
2433 return non-nil, or if there are no functions to call), return non-nil
2434 \(do not rely on the precise return value in this case).
2436 Do not use `make-local-variable' to make a hook variable buffer-local.
2437 Instead, use `add-hook' and specify t for the LOCAL argument.
2438 usage: (run-hook-with-args-until-failure HOOK &rest ARGS) */)
2439 (ptrdiff_t nargs, Lisp_Object *args)
2441 return NILP (run_hook_with_args (nargs, args, funcall_not)) ? Qt : Qnil;
2444 static Lisp_Object
2445 run_hook_wrapped_funcall (ptrdiff_t nargs, Lisp_Object *args)
2447 Lisp_Object tmp = args[0], ret;
2448 args[0] = args[1];
2449 args[1] = tmp;
2450 ret = Ffuncall (nargs, args);
2451 args[1] = args[0];
2452 args[0] = tmp;
2453 return ret;
2456 DEFUN ("run-hook-wrapped", Frun_hook_wrapped, Srun_hook_wrapped, 2, MANY, 0,
2457 doc: /* Run HOOK, passing each function through WRAP-FUNCTION.
2458 I.e. instead of calling each function FUN directly with arguments ARGS,
2459 it calls WRAP-FUNCTION with arguments FUN and ARGS.
2460 As soon as a call to WRAP-FUNCTION returns non-nil, `run-hook-wrapped'
2461 aborts and returns that value.
2462 usage: (run-hook-wrapped HOOK WRAP-FUNCTION &rest ARGS) */)
2463 (ptrdiff_t nargs, Lisp_Object *args)
2465 return run_hook_with_args (nargs, args, run_hook_wrapped_funcall);
2468 /* ARGS[0] should be a hook symbol.
2469 Call each of the functions in the hook value, passing each of them
2470 as arguments all the rest of ARGS (all NARGS - 1 elements).
2471 FUNCALL specifies how to call each function on the hook. */
2473 Lisp_Object
2474 run_hook_with_args (ptrdiff_t nargs, Lisp_Object *args,
2475 Lisp_Object (*funcall) (ptrdiff_t nargs, Lisp_Object *args))
2477 Lisp_Object sym, val, ret = Qnil;
2479 /* If we are dying or still initializing,
2480 don't do anything--it would probably crash if we tried. */
2481 if (NILP (Vrun_hooks))
2482 return Qnil;
2484 sym = args[0];
2485 val = find_symbol_value (sym);
2487 if (EQ (val, Qunbound) || NILP (val))
2488 return ret;
2489 else if (!CONSP (val) || FUNCTIONP (val))
2491 args[0] = val;
2492 return funcall (nargs, args);
2494 else
2496 Lisp_Object global_vals = Qnil;
2498 for (;
2499 CONSP (val) && NILP (ret);
2500 val = XCDR (val))
2502 if (EQ (XCAR (val), Qt))
2504 /* t indicates this hook has a local binding;
2505 it means to run the global binding too. */
2506 global_vals = Fdefault_value (sym);
2507 if (NILP (global_vals)) continue;
2509 if (!CONSP (global_vals) || EQ (XCAR (global_vals), Qlambda))
2511 args[0] = global_vals;
2512 ret = funcall (nargs, args);
2514 else
2516 for (;
2517 CONSP (global_vals) && NILP (ret);
2518 global_vals = XCDR (global_vals))
2520 args[0] = XCAR (global_vals);
2521 /* In a global value, t should not occur. If it does, we
2522 must ignore it to avoid an endless loop. */
2523 if (!EQ (args[0], Qt))
2524 ret = funcall (nargs, args);
2528 else
2530 args[0] = XCAR (val);
2531 ret = funcall (nargs, args);
2535 return ret;
2539 /* Run the hook HOOK, giving each function no args. */
2541 void
2542 run_hook (Lisp_Object hook)
2544 Frun_hook_with_args (1, &hook);
2547 /* Run the hook HOOK, giving each function the two args ARG1 and ARG2. */
2549 void
2550 run_hook_with_args_2 (Lisp_Object hook, Lisp_Object arg1, Lisp_Object arg2)
2552 CALLN (Frun_hook_with_args, hook, arg1, arg2);
2555 /* Apply fn to arg. */
2556 Lisp_Object
2557 apply1 (Lisp_Object fn, Lisp_Object arg)
2559 return NILP (arg) ? Ffuncall (1, &fn) : CALLN (Fapply, fn, arg);
2562 /* Call function fn on no arguments. */
2563 Lisp_Object
2564 call0 (Lisp_Object fn)
2566 return Ffuncall (1, &fn);
2569 /* Call function fn with 1 argument arg1. */
2570 /* ARGSUSED */
2571 Lisp_Object
2572 call1 (Lisp_Object fn, Lisp_Object arg1)
2574 return CALLN (Ffuncall, fn, arg1);
2577 /* Call function fn with 2 arguments arg1, arg2. */
2578 /* ARGSUSED */
2579 Lisp_Object
2580 call2 (Lisp_Object fn, Lisp_Object arg1, Lisp_Object arg2)
2582 return CALLN (Ffuncall, fn, arg1, arg2);
2585 /* Call function fn with 3 arguments arg1, arg2, arg3. */
2586 /* ARGSUSED */
2587 Lisp_Object
2588 call3 (Lisp_Object fn, Lisp_Object arg1, Lisp_Object arg2, Lisp_Object arg3)
2590 return CALLN (Ffuncall, fn, arg1, arg2, arg3);
2593 /* Call function fn with 4 arguments arg1, arg2, arg3, arg4. */
2594 /* ARGSUSED */
2595 Lisp_Object
2596 call4 (Lisp_Object fn, Lisp_Object arg1, Lisp_Object arg2, Lisp_Object arg3,
2597 Lisp_Object arg4)
2599 return CALLN (Ffuncall, fn, arg1, arg2, arg3, arg4);
2602 /* Call function fn with 5 arguments arg1, arg2, arg3, arg4, arg5. */
2603 /* ARGSUSED */
2604 Lisp_Object
2605 call5 (Lisp_Object fn, Lisp_Object arg1, Lisp_Object arg2, Lisp_Object arg3,
2606 Lisp_Object arg4, Lisp_Object arg5)
2608 return CALLN (Ffuncall, fn, arg1, arg2, arg3, arg4, arg5);
2611 /* Call function fn with 6 arguments arg1, arg2, arg3, arg4, arg5, arg6. */
2612 /* ARGSUSED */
2613 Lisp_Object
2614 call6 (Lisp_Object fn, Lisp_Object arg1, Lisp_Object arg2, Lisp_Object arg3,
2615 Lisp_Object arg4, Lisp_Object arg5, Lisp_Object arg6)
2617 return CALLN (Ffuncall, fn, arg1, arg2, arg3, arg4, arg5, arg6);
2620 /* Call function fn with 7 arguments arg1, arg2, arg3, arg4, arg5, arg6, arg7. */
2621 /* ARGSUSED */
2622 Lisp_Object
2623 call7 (Lisp_Object fn, Lisp_Object arg1, Lisp_Object arg2, Lisp_Object arg3,
2624 Lisp_Object arg4, Lisp_Object arg5, Lisp_Object arg6, Lisp_Object arg7)
2626 return CALLN (Ffuncall, fn, arg1, arg2, arg3, arg4, arg5, arg6, arg7);
2629 DEFUN ("functionp", Ffunctionp, Sfunctionp, 1, 1, 0,
2630 doc: /* Non-nil if OBJECT is a function. */)
2631 (Lisp_Object object)
2633 if (FUNCTIONP (object))
2634 return Qt;
2635 return Qnil;
2638 DEFUN ("funcall", Ffuncall, Sfuncall, 1, MANY, 0,
2639 doc: /* Call first argument as a function, passing remaining arguments to it.
2640 Return the value that function returns.
2641 Thus, (funcall \\='cons \\='x \\='y) returns (x . y).
2642 usage: (funcall FUNCTION &rest ARGUMENTS) */)
2643 (ptrdiff_t nargs, Lisp_Object *args)
2645 Lisp_Object fun, original_fun;
2646 Lisp_Object funcar;
2647 ptrdiff_t numargs = nargs - 1;
2648 Lisp_Object lisp_numargs;
2649 Lisp_Object val;
2650 Lisp_Object *internal_args;
2651 ptrdiff_t count;
2653 QUIT;
2655 if (++lisp_eval_depth > max_lisp_eval_depth)
2657 if (max_lisp_eval_depth < 100)
2658 max_lisp_eval_depth = 100;
2659 if (lisp_eval_depth > max_lisp_eval_depth)
2660 error ("Lisp nesting exceeds `max-lisp-eval-depth'");
2663 count = record_in_backtrace (args[0], &args[1], nargs - 1);
2665 maybe_gc ();
2667 if (debug_on_next_call)
2668 do_debug_on_call (Qlambda, count);
2670 check_cons_list ();
2672 original_fun = args[0];
2674 retry:
2676 /* Optimize for no indirection. */
2677 fun = original_fun;
2678 if (SYMBOLP (fun) && !NILP (fun)
2679 && (fun = XSYMBOL (fun)->function, SYMBOLP (fun)))
2680 fun = indirect_function (fun);
2682 if (SUBRP (fun))
2684 if (numargs < XSUBR (fun)->min_args
2685 || (XSUBR (fun)->max_args >= 0 && XSUBR (fun)->max_args < numargs))
2687 XSETFASTINT (lisp_numargs, numargs);
2688 xsignal2 (Qwrong_number_of_arguments, original_fun, lisp_numargs);
2691 else if (XSUBR (fun)->max_args == UNEVALLED)
2692 xsignal1 (Qinvalid_function, original_fun);
2694 else if (XSUBR (fun)->max_args == MANY)
2695 val = (XSUBR (fun)->function.aMANY) (numargs, args + 1);
2696 else
2698 Lisp_Object internal_argbuf[8];
2699 if (XSUBR (fun)->max_args > numargs)
2701 eassert (XSUBR (fun)->max_args <= ARRAYELTS (internal_argbuf));
2702 internal_args = internal_argbuf;
2703 memcpy (internal_args, args + 1, numargs * word_size);
2704 memclear (internal_args + numargs,
2705 (XSUBR (fun)->max_args - numargs) * word_size);
2707 else
2708 internal_args = args + 1;
2709 switch (XSUBR (fun)->max_args)
2711 case 0:
2712 val = (XSUBR (fun)->function.a0 ());
2713 break;
2714 case 1:
2715 val = (XSUBR (fun)->function.a1 (internal_args[0]));
2716 break;
2717 case 2:
2718 val = (XSUBR (fun)->function.a2
2719 (internal_args[0], internal_args[1]));
2720 break;
2721 case 3:
2722 val = (XSUBR (fun)->function.a3
2723 (internal_args[0], internal_args[1], internal_args[2]));
2724 break;
2725 case 4:
2726 val = (XSUBR (fun)->function.a4
2727 (internal_args[0], internal_args[1], internal_args[2],
2728 internal_args[3]));
2729 break;
2730 case 5:
2731 val = (XSUBR (fun)->function.a5
2732 (internal_args[0], internal_args[1], internal_args[2],
2733 internal_args[3], internal_args[4]));
2734 break;
2735 case 6:
2736 val = (XSUBR (fun)->function.a6
2737 (internal_args[0], internal_args[1], internal_args[2],
2738 internal_args[3], internal_args[4], internal_args[5]));
2739 break;
2740 case 7:
2741 val = (XSUBR (fun)->function.a7
2742 (internal_args[0], internal_args[1], internal_args[2],
2743 internal_args[3], internal_args[4], internal_args[5],
2744 internal_args[6]));
2745 break;
2747 case 8:
2748 val = (XSUBR (fun)->function.a8
2749 (internal_args[0], internal_args[1], internal_args[2],
2750 internal_args[3], internal_args[4], internal_args[5],
2751 internal_args[6], internal_args[7]));
2752 break;
2754 default:
2756 /* If a subr takes more than 8 arguments without using MANY
2757 or UNEVALLED, we need to extend this function to support it.
2758 Until this is done, there is no way to call the function. */
2759 emacs_abort ();
2763 else if (COMPILEDP (fun))
2764 val = funcall_lambda (fun, numargs, args + 1);
2765 else
2767 if (NILP (fun))
2768 xsignal1 (Qvoid_function, original_fun);
2769 if (!CONSP (fun))
2770 xsignal1 (Qinvalid_function, original_fun);
2771 funcar = XCAR (fun);
2772 if (!SYMBOLP (funcar))
2773 xsignal1 (Qinvalid_function, original_fun);
2774 if (EQ (funcar, Qlambda)
2775 || EQ (funcar, Qclosure))
2776 val = funcall_lambda (fun, numargs, args + 1);
2777 else if (EQ (funcar, Qautoload))
2779 Fautoload_do_load (fun, original_fun, Qnil);
2780 check_cons_list ();
2781 goto retry;
2783 else
2784 xsignal1 (Qinvalid_function, original_fun);
2786 check_cons_list ();
2787 lisp_eval_depth--;
2788 if (backtrace_debug_on_exit (specpdl + count))
2789 val = call_debugger (list2 (Qexit, val));
2790 specpdl_ptr--;
2791 return val;
2794 static Lisp_Object
2795 apply_lambda (Lisp_Object fun, Lisp_Object args, ptrdiff_t count)
2797 Lisp_Object args_left;
2798 ptrdiff_t i;
2799 EMACS_INT numargs;
2800 Lisp_Object *arg_vector;
2801 Lisp_Object tem;
2802 USE_SAFE_ALLOCA;
2804 numargs = XFASTINT (Flength (args));
2805 SAFE_ALLOCA_LISP (arg_vector, numargs);
2806 args_left = args;
2808 for (i = 0; i < numargs; )
2810 tem = Fcar (args_left), args_left = Fcdr (args_left);
2811 tem = eval_sub (tem);
2812 arg_vector[i++] = tem;
2815 set_backtrace_args (specpdl + count, arg_vector, i);
2816 tem = funcall_lambda (fun, numargs, arg_vector);
2818 check_cons_list ();
2819 lisp_eval_depth--;
2820 /* Do the debug-on-exit now, while arg_vector still exists. */
2821 if (backtrace_debug_on_exit (specpdl + count))
2822 tem = call_debugger (list2 (Qexit, tem));
2823 SAFE_FREE ();
2824 specpdl_ptr--;
2825 return tem;
2828 /* Apply a Lisp function FUN to the NARGS evaluated arguments in ARG_VECTOR
2829 and return the result of evaluation.
2830 FUN must be either a lambda-expression or a compiled-code object. */
2832 static Lisp_Object
2833 funcall_lambda (Lisp_Object fun, ptrdiff_t nargs,
2834 register Lisp_Object *arg_vector)
2836 Lisp_Object val, syms_left, next, lexenv;
2837 ptrdiff_t count = SPECPDL_INDEX ();
2838 ptrdiff_t i;
2839 bool optional, rest;
2841 if (CONSP (fun))
2843 if (EQ (XCAR (fun), Qclosure))
2845 Lisp_Object cdr = XCDR (fun); /* Drop `closure'. */
2846 if (! CONSP (cdr))
2847 xsignal1 (Qinvalid_function, fun);
2848 fun = cdr;
2849 lexenv = XCAR (fun);
2851 else
2852 lexenv = Qnil;
2853 syms_left = XCDR (fun);
2854 if (CONSP (syms_left))
2855 syms_left = XCAR (syms_left);
2856 else
2857 xsignal1 (Qinvalid_function, fun);
2859 else if (COMPILEDP (fun))
2861 ptrdiff_t size = ASIZE (fun) & PSEUDOVECTOR_SIZE_MASK;
2862 if (size <= COMPILED_STACK_DEPTH)
2863 xsignal1 (Qinvalid_function, fun);
2864 syms_left = AREF (fun, COMPILED_ARGLIST);
2865 if (INTEGERP (syms_left))
2866 /* A byte-code object with an integer args template means we
2867 shouldn't bind any arguments, instead just call the byte-code
2868 interpreter directly; it will push arguments as necessary.
2870 Byte-code objects with a nil args template (the default)
2871 have dynamically-bound arguments, and use the
2872 argument-binding code below instead (as do all interpreted
2873 functions, even lexically bound ones). */
2875 /* If we have not actually read the bytecode string
2876 and constants vector yet, fetch them from the file. */
2877 if (CONSP (AREF (fun, COMPILED_BYTECODE)))
2878 Ffetch_bytecode (fun);
2879 return exec_byte_code (AREF (fun, COMPILED_BYTECODE),
2880 AREF (fun, COMPILED_CONSTANTS),
2881 AREF (fun, COMPILED_STACK_DEPTH),
2882 syms_left,
2883 nargs, arg_vector);
2885 lexenv = Qnil;
2887 else
2888 emacs_abort ();
2890 i = optional = rest = 0;
2891 for (; CONSP (syms_left); syms_left = XCDR (syms_left))
2893 QUIT;
2895 next = XCAR (syms_left);
2896 if (!SYMBOLP (next))
2897 xsignal1 (Qinvalid_function, fun);
2899 if (EQ (next, Qand_rest))
2900 rest = 1;
2901 else if (EQ (next, Qand_optional))
2902 optional = 1;
2903 else
2905 Lisp_Object arg;
2906 if (rest)
2908 arg = Flist (nargs - i, &arg_vector[i]);
2909 i = nargs;
2911 else if (i < nargs)
2912 arg = arg_vector[i++];
2913 else if (!optional)
2914 xsignal2 (Qwrong_number_of_arguments, fun, make_number (nargs));
2915 else
2916 arg = Qnil;
2918 /* Bind the argument. */
2919 if (!NILP (lexenv) && SYMBOLP (next))
2920 /* Lexically bind NEXT by adding it to the lexenv alist. */
2921 lexenv = Fcons (Fcons (next, arg), lexenv);
2922 else
2923 /* Dynamically bind NEXT. */
2924 specbind (next, arg);
2928 if (!NILP (syms_left))
2929 xsignal1 (Qinvalid_function, fun);
2930 else if (i < nargs)
2931 xsignal2 (Qwrong_number_of_arguments, fun, make_number (nargs));
2933 if (!EQ (lexenv, Vinternal_interpreter_environment))
2934 /* Instantiate a new lexical environment. */
2935 specbind (Qinternal_interpreter_environment, lexenv);
2937 if (CONSP (fun))
2938 val = Fprogn (XCDR (XCDR (fun)));
2939 else
2941 /* If we have not actually read the bytecode string
2942 and constants vector yet, fetch them from the file. */
2943 if (CONSP (AREF (fun, COMPILED_BYTECODE)))
2944 Ffetch_bytecode (fun);
2945 val = exec_byte_code (AREF (fun, COMPILED_BYTECODE),
2946 AREF (fun, COMPILED_CONSTANTS),
2947 AREF (fun, COMPILED_STACK_DEPTH),
2948 Qnil, 0, 0);
2951 return unbind_to (count, val);
2954 DEFUN ("func-arity", Ffunc_arity, Sfunc_arity, 1, 1, 0,
2955 doc: /* Return minimum and maximum number of args allowed for FUNCTION.
2956 FUNCTION must be a function of some kind.
2957 The returned value is a cons cell (MIN . MAX). MIN is the minimum number
2958 of args. MAX is the maximum number, or the symbol `many', for a
2959 function with `&rest' args, or `unevalled' for a special form. */)
2960 (Lisp_Object function)
2962 Lisp_Object original;
2963 Lisp_Object funcar;
2964 Lisp_Object result;
2966 original = function;
2968 retry:
2970 /* Optimize for no indirection. */
2971 function = original;
2972 if (SYMBOLP (function) && !NILP (function))
2974 function = XSYMBOL (function)->function;
2975 if (SYMBOLP (function))
2976 function = indirect_function (function);
2979 if (CONSP (function) && EQ (XCAR (function), Qmacro))
2980 function = XCDR (function);
2982 if (SUBRP (function))
2983 result = Fsubr_arity (function);
2984 else if (COMPILEDP (function))
2985 result = lambda_arity (function);
2986 else
2988 if (NILP (function))
2989 xsignal1 (Qvoid_function, original);
2990 if (!CONSP (function))
2991 xsignal1 (Qinvalid_function, original);
2992 funcar = XCAR (function);
2993 if (!SYMBOLP (funcar))
2994 xsignal1 (Qinvalid_function, original);
2995 if (EQ (funcar, Qlambda)
2996 || EQ (funcar, Qclosure))
2997 result = lambda_arity (function);
2998 else if (EQ (funcar, Qautoload))
3000 Fautoload_do_load (function, original, Qnil);
3001 goto retry;
3003 else
3004 xsignal1 (Qinvalid_function, original);
3006 return result;
3009 /* FUN must be either a lambda-expression or a compiled-code object. */
3010 static Lisp_Object
3011 lambda_arity (Lisp_Object fun)
3013 Lisp_Object syms_left;
3015 if (CONSP (fun))
3017 if (EQ (XCAR (fun), Qclosure))
3019 fun = XCDR (fun); /* Drop `closure'. */
3020 CHECK_LIST_CONS (fun, fun);
3022 syms_left = XCDR (fun);
3023 if (CONSP (syms_left))
3024 syms_left = XCAR (syms_left);
3025 else
3026 xsignal1 (Qinvalid_function, fun);
3028 else if (COMPILEDP (fun))
3030 ptrdiff_t size = ASIZE (fun) & PSEUDOVECTOR_SIZE_MASK;
3031 if (size <= COMPILED_STACK_DEPTH)
3032 xsignal1 (Qinvalid_function, fun);
3033 syms_left = AREF (fun, COMPILED_ARGLIST);
3034 if (INTEGERP (syms_left))
3035 return get_byte_code_arity (syms_left);
3037 else
3038 emacs_abort ();
3040 EMACS_INT minargs = 0, maxargs = 0;
3041 bool optional = false;
3042 for (; CONSP (syms_left); syms_left = XCDR (syms_left))
3044 Lisp_Object next = XCAR (syms_left);
3045 if (!SYMBOLP (next))
3046 xsignal1 (Qinvalid_function, fun);
3048 if (EQ (next, Qand_rest))
3049 return Fcons (make_number (minargs), Qmany);
3050 else if (EQ (next, Qand_optional))
3051 optional = true;
3052 else
3054 if (!optional)
3055 minargs++;
3056 maxargs++;
3060 if (!NILP (syms_left))
3061 xsignal1 (Qinvalid_function, fun);
3063 return Fcons (make_number (minargs), make_number (maxargs));
3066 DEFUN ("fetch-bytecode", Ffetch_bytecode, Sfetch_bytecode,
3067 1, 1, 0,
3068 doc: /* If byte-compiled OBJECT is lazy-loaded, fetch it now. */)
3069 (Lisp_Object object)
3071 Lisp_Object tem;
3073 if (COMPILEDP (object))
3075 ptrdiff_t size = ASIZE (object) & PSEUDOVECTOR_SIZE_MASK;
3076 if (size <= COMPILED_STACK_DEPTH)
3077 xsignal1 (Qinvalid_function, object);
3078 if (CONSP (AREF (object, COMPILED_BYTECODE)))
3080 tem = read_doc_string (AREF (object, COMPILED_BYTECODE));
3081 if (!CONSP (tem))
3083 tem = AREF (object, COMPILED_BYTECODE);
3084 if (CONSP (tem) && STRINGP (XCAR (tem)))
3085 error ("Invalid byte code in %s", SDATA (XCAR (tem)));
3086 else
3087 error ("Invalid byte code");
3089 ASET (object, COMPILED_BYTECODE, XCAR (tem));
3090 ASET (object, COMPILED_CONSTANTS, XCDR (tem));
3093 return object;
3096 /* Return true if SYMBOL currently has a let-binding
3097 which was made in the buffer that is now current. */
3099 bool
3100 let_shadows_buffer_binding_p (struct Lisp_Symbol *symbol)
3102 union specbinding *p;
3103 Lisp_Object buf = Fcurrent_buffer ();
3105 for (p = specpdl_ptr; p > specpdl; )
3106 if ((--p)->kind > SPECPDL_LET)
3108 struct Lisp_Symbol *let_bound_symbol = XSYMBOL (specpdl_symbol (p));
3109 eassert (let_bound_symbol->redirect != SYMBOL_VARALIAS);
3110 if (symbol == let_bound_symbol
3111 && EQ (specpdl_where (p), buf))
3112 return 1;
3115 return 0;
3118 bool
3119 let_shadows_global_binding_p (Lisp_Object symbol)
3121 union specbinding *p;
3123 for (p = specpdl_ptr; p > specpdl; )
3124 if ((--p)->kind >= SPECPDL_LET && EQ (specpdl_symbol (p), symbol))
3125 return 1;
3127 return 0;
3130 /* `specpdl_ptr' describes which variable is
3131 let-bound, so it can be properly undone when we unbind_to.
3132 It can be either a plain SPECPDL_LET or a SPECPDL_LET_LOCAL/DEFAULT.
3133 - SYMBOL is the variable being bound. Note that it should not be
3134 aliased (i.e. when let-binding V1 that's aliased to V2, we want
3135 to record V2 here).
3136 - WHERE tells us in which buffer the binding took place.
3137 This is used for SPECPDL_LET_LOCAL bindings (i.e. bindings to a
3138 buffer-local variable) as well as for SPECPDL_LET_DEFAULT bindings,
3139 i.e. bindings to the default value of a variable which can be
3140 buffer-local. */
3142 void
3143 specbind (Lisp_Object symbol, Lisp_Object value)
3145 struct Lisp_Symbol *sym;
3147 CHECK_SYMBOL (symbol);
3148 sym = XSYMBOL (symbol);
3150 start:
3151 switch (sym->redirect)
3153 case SYMBOL_VARALIAS:
3154 sym = indirect_variable (sym); XSETSYMBOL (symbol, sym); goto start;
3155 case SYMBOL_PLAINVAL:
3156 /* The most common case is that of a non-constant symbol with a
3157 trivial value. Make that as fast as we can. */
3158 specpdl_ptr->let.kind = SPECPDL_LET;
3159 specpdl_ptr->let.symbol = symbol;
3160 specpdl_ptr->let.old_value = SYMBOL_VAL (sym);
3161 grow_specpdl ();
3162 if (!sym->constant)
3163 SET_SYMBOL_VAL (sym, value);
3164 else
3165 set_internal (symbol, value, Qnil, 1);
3166 break;
3167 case SYMBOL_LOCALIZED:
3168 if (SYMBOL_BLV (sym)->frame_local)
3169 error ("Frame-local vars cannot be let-bound");
3170 case SYMBOL_FORWARDED:
3172 Lisp_Object ovalue = find_symbol_value (symbol);
3173 specpdl_ptr->let.kind = SPECPDL_LET_LOCAL;
3174 specpdl_ptr->let.symbol = symbol;
3175 specpdl_ptr->let.old_value = ovalue;
3176 specpdl_ptr->let.where = Fcurrent_buffer ();
3178 eassert (sym->redirect != SYMBOL_LOCALIZED
3179 || (EQ (SYMBOL_BLV (sym)->where, Fcurrent_buffer ())));
3181 if (sym->redirect == SYMBOL_LOCALIZED)
3183 if (!blv_found (SYMBOL_BLV (sym)))
3184 specpdl_ptr->let.kind = SPECPDL_LET_DEFAULT;
3186 else if (BUFFER_OBJFWDP (SYMBOL_FWD (sym)))
3188 /* If SYMBOL is a per-buffer variable which doesn't have a
3189 buffer-local value here, make the `let' change the global
3190 value by changing the value of SYMBOL in all buffers not
3191 having their own value. This is consistent with what
3192 happens with other buffer-local variables. */
3193 if (NILP (Flocal_variable_p (symbol, Qnil)))
3195 specpdl_ptr->let.kind = SPECPDL_LET_DEFAULT;
3196 grow_specpdl ();
3197 Fset_default (symbol, value);
3198 return;
3201 else
3202 specpdl_ptr->let.kind = SPECPDL_LET;
3204 grow_specpdl ();
3205 set_internal (symbol, value, Qnil, 1);
3206 break;
3208 default: emacs_abort ();
3212 /* Push unwind-protect entries of various types. */
3214 void
3215 record_unwind_protect (void (*function) (Lisp_Object), Lisp_Object arg)
3217 specpdl_ptr->unwind.kind = SPECPDL_UNWIND;
3218 specpdl_ptr->unwind.func = function;
3219 specpdl_ptr->unwind.arg = arg;
3220 grow_specpdl ();
3223 void
3224 record_unwind_protect_ptr (void (*function) (void *), void *arg)
3226 specpdl_ptr->unwind_ptr.kind = SPECPDL_UNWIND_PTR;
3227 specpdl_ptr->unwind_ptr.func = function;
3228 specpdl_ptr->unwind_ptr.arg = arg;
3229 grow_specpdl ();
3232 void
3233 record_unwind_protect_int (void (*function) (int), int arg)
3235 specpdl_ptr->unwind_int.kind = SPECPDL_UNWIND_INT;
3236 specpdl_ptr->unwind_int.func = function;
3237 specpdl_ptr->unwind_int.arg = arg;
3238 grow_specpdl ();
3241 void
3242 record_unwind_protect_void (void (*function) (void))
3244 specpdl_ptr->unwind_void.kind = SPECPDL_UNWIND_VOID;
3245 specpdl_ptr->unwind_void.func = function;
3246 grow_specpdl ();
3249 static void
3250 do_nothing (void)
3253 /* Push an unwind-protect entry that does nothing, so that
3254 set_unwind_protect_ptr can overwrite it later. */
3256 void
3257 record_unwind_protect_nothing (void)
3259 record_unwind_protect_void (do_nothing);
3262 /* Clear the unwind-protect entry COUNT, so that it does nothing.
3263 It need not be at the top of the stack. */
3265 void
3266 clear_unwind_protect (ptrdiff_t count)
3268 union specbinding *p = specpdl + count;
3269 p->unwind_void.kind = SPECPDL_UNWIND_VOID;
3270 p->unwind_void.func = do_nothing;
3273 /* Set the unwind-protect entry COUNT so that it invokes FUNC (ARG).
3274 It need not be at the top of the stack. Discard the entry's
3275 previous value without invoking it. */
3277 void
3278 set_unwind_protect (ptrdiff_t count, void (*func) (Lisp_Object),
3279 Lisp_Object arg)
3281 union specbinding *p = specpdl + count;
3282 p->unwind.kind = SPECPDL_UNWIND;
3283 p->unwind.func = func;
3284 p->unwind.arg = arg;
3287 void
3288 set_unwind_protect_ptr (ptrdiff_t count, void (*func) (void *), void *arg)
3290 union specbinding *p = specpdl + count;
3291 p->unwind_ptr.kind = SPECPDL_UNWIND_PTR;
3292 p->unwind_ptr.func = func;
3293 p->unwind_ptr.arg = arg;
3296 /* Pop and execute entries from the unwind-protect stack until the
3297 depth COUNT is reached. Return VALUE. */
3299 Lisp_Object
3300 unbind_to (ptrdiff_t count, Lisp_Object value)
3302 Lisp_Object quitf = Vquit_flag;
3304 Vquit_flag = Qnil;
3306 while (specpdl_ptr != specpdl + count)
3308 /* Decrement specpdl_ptr before we do the work to unbind it, so
3309 that an error in unbinding won't try to unbind the same entry
3310 again. Take care to copy any parts of the binding needed
3311 before invoking any code that can make more bindings. */
3313 specpdl_ptr--;
3315 switch (specpdl_ptr->kind)
3317 case SPECPDL_UNWIND:
3318 specpdl_ptr->unwind.func (specpdl_ptr->unwind.arg);
3319 break;
3320 case SPECPDL_UNWIND_PTR:
3321 specpdl_ptr->unwind_ptr.func (specpdl_ptr->unwind_ptr.arg);
3322 break;
3323 case SPECPDL_UNWIND_INT:
3324 specpdl_ptr->unwind_int.func (specpdl_ptr->unwind_int.arg);
3325 break;
3326 case SPECPDL_UNWIND_VOID:
3327 specpdl_ptr->unwind_void.func ();
3328 break;
3329 case SPECPDL_BACKTRACE:
3330 break;
3331 case SPECPDL_LET:
3332 { /* If variable has a trivial value (no forwarding), we can
3333 just set it. No need to check for constant symbols here,
3334 since that was already done by specbind. */
3335 Lisp_Object sym = specpdl_symbol (specpdl_ptr);
3336 if (SYMBOLP (sym) && XSYMBOL (sym)->redirect == SYMBOL_PLAINVAL)
3338 SET_SYMBOL_VAL (XSYMBOL (sym),
3339 specpdl_old_value (specpdl_ptr));
3340 break;
3342 else
3343 { /* FALLTHROUGH!!
3344 NOTE: we only ever come here if make_local_foo was used for
3345 the first time on this var within this let. */
3348 case SPECPDL_LET_DEFAULT:
3349 Fset_default (specpdl_symbol (specpdl_ptr),
3350 specpdl_old_value (specpdl_ptr));
3351 break;
3352 case SPECPDL_LET_LOCAL:
3354 Lisp_Object symbol = specpdl_symbol (specpdl_ptr);
3355 Lisp_Object where = specpdl_where (specpdl_ptr);
3356 Lisp_Object old_value = specpdl_old_value (specpdl_ptr);
3357 eassert (BUFFERP (where));
3359 /* If this was a local binding, reset the value in the appropriate
3360 buffer, but only if that buffer's binding still exists. */
3361 if (!NILP (Flocal_variable_p (symbol, where)))
3362 set_internal (symbol, old_value, where, 1);
3364 break;
3368 if (NILP (Vquit_flag) && !NILP (quitf))
3369 Vquit_flag = quitf;
3371 return value;
3374 DEFUN ("special-variable-p", Fspecial_variable_p, Sspecial_variable_p, 1, 1, 0,
3375 doc: /* Return non-nil if SYMBOL's global binding has been declared special.
3376 A special variable is one that will be bound dynamically, even in a
3377 context where binding is lexical by default. */)
3378 (Lisp_Object symbol)
3380 CHECK_SYMBOL (symbol);
3381 return XSYMBOL (symbol)->declared_special ? Qt : Qnil;
3385 DEFUN ("backtrace-debug", Fbacktrace_debug, Sbacktrace_debug, 2, 2, 0,
3386 doc: /* Set the debug-on-exit flag of eval frame LEVEL levels down to FLAG.
3387 The debugger is entered when that frame exits, if the flag is non-nil. */)
3388 (Lisp_Object level, Lisp_Object flag)
3390 union specbinding *pdl = backtrace_top ();
3391 register EMACS_INT i;
3393 CHECK_NUMBER (level);
3395 for (i = 0; backtrace_p (pdl) && i < XINT (level); i++)
3396 pdl = backtrace_next (pdl);
3398 if (backtrace_p (pdl))
3399 set_backtrace_debug_on_exit (pdl, !NILP (flag));
3401 return flag;
3404 DEFUN ("backtrace", Fbacktrace, Sbacktrace, 0, 0, "",
3405 doc: /* Print a trace of Lisp function calls currently active.
3406 Output stream used is value of `standard-output'. */)
3407 (void)
3409 union specbinding *pdl = backtrace_top ();
3410 Lisp_Object tem;
3411 Lisp_Object old_print_level = Vprint_level;
3413 if (NILP (Vprint_level))
3414 XSETFASTINT (Vprint_level, 8);
3416 while (backtrace_p (pdl))
3418 write_string (backtrace_debug_on_exit (pdl) ? "* " : " ");
3419 if (backtrace_nargs (pdl) == UNEVALLED)
3421 Fprin1 (Fcons (backtrace_function (pdl), *backtrace_args (pdl)),
3422 Qnil);
3423 write_string ("\n");
3425 else
3427 tem = backtrace_function (pdl);
3428 if (debugger_stack_frame_as_list)
3429 write_string ("(");
3430 Fprin1 (tem, Qnil); /* This can QUIT. */
3431 if (!debugger_stack_frame_as_list)
3432 write_string ("(");
3434 ptrdiff_t i;
3435 for (i = 0; i < backtrace_nargs (pdl); i++)
3437 if (i || debugger_stack_frame_as_list)
3438 write_string(" ");
3439 Fprin1 (backtrace_args (pdl)[i], Qnil);
3442 write_string (")\n");
3444 pdl = backtrace_next (pdl);
3447 Vprint_level = old_print_level;
3448 return Qnil;
3451 static union specbinding *
3452 get_backtrace_frame (Lisp_Object nframes, Lisp_Object base)
3454 union specbinding *pdl = backtrace_top ();
3455 register EMACS_INT i;
3457 CHECK_NATNUM (nframes);
3459 if (!NILP (base))
3460 { /* Skip up to `base'. */
3461 base = Findirect_function (base, Qt);
3462 while (backtrace_p (pdl)
3463 && !EQ (base, Findirect_function (backtrace_function (pdl), Qt)))
3464 pdl = backtrace_next (pdl);
3467 /* Find the frame requested. */
3468 for (i = XFASTINT (nframes); i > 0 && backtrace_p (pdl); i--)
3469 pdl = backtrace_next (pdl);
3471 return pdl;
3474 DEFUN ("backtrace-frame", Fbacktrace_frame, Sbacktrace_frame, 1, 2, NULL,
3475 doc: /* Return the function and arguments NFRAMES up from current execution point.
3476 If that frame has not evaluated the arguments yet (or is a special form),
3477 the value is (nil FUNCTION ARG-FORMS...).
3478 If that frame has evaluated its arguments and called its function already,
3479 the value is (t FUNCTION ARG-VALUES...).
3480 A &rest arg is represented as the tail of the list ARG-VALUES.
3481 FUNCTION is whatever was supplied as car of evaluated list,
3482 or a lambda expression for macro calls.
3483 If NFRAMES is more than the number of frames, the value is nil.
3484 If BASE is non-nil, it should be a function and NFRAMES counts from its
3485 nearest activation frame. */)
3486 (Lisp_Object nframes, Lisp_Object base)
3488 union specbinding *pdl = get_backtrace_frame (nframes, base);
3490 if (!backtrace_p (pdl))
3491 return Qnil;
3492 if (backtrace_nargs (pdl) == UNEVALLED)
3493 return Fcons (Qnil,
3494 Fcons (backtrace_function (pdl), *backtrace_args (pdl)));
3495 else
3497 Lisp_Object tem = Flist (backtrace_nargs (pdl), backtrace_args (pdl));
3499 return Fcons (Qt, Fcons (backtrace_function (pdl), tem));
3503 /* For backtrace-eval, we want to temporarily unwind the last few elements of
3504 the specpdl stack, and then rewind them. We store the pre-unwind values
3505 directly in the pre-existing specpdl elements (i.e. we swap the current
3506 value and the old value stored in the specpdl), kind of like the inplace
3507 pointer-reversal trick. As it turns out, the rewind does the same as the
3508 unwind, except it starts from the other end of the specpdl stack, so we use
3509 the same function for both unwind and rewind. */
3510 static void
3511 backtrace_eval_unrewind (int distance)
3513 union specbinding *tmp = specpdl_ptr;
3514 int step = -1;
3515 if (distance < 0)
3516 { /* It's a rewind rather than unwind. */
3517 tmp += distance - 1;
3518 step = 1;
3519 distance = -distance;
3522 for (; distance > 0; distance--)
3524 tmp += step;
3525 switch (tmp->kind)
3527 /* FIXME: Ideally we'd like to "temporarily unwind" (some of) those
3528 unwind_protect, but the problem is that we don't know how to
3529 rewind them afterwards. */
3530 case SPECPDL_UNWIND:
3532 Lisp_Object oldarg = tmp->unwind.arg;
3533 if (tmp->unwind.func == set_buffer_if_live)
3534 tmp->unwind.arg = Fcurrent_buffer ();
3535 else if (tmp->unwind.func == save_excursion_restore)
3536 tmp->unwind.arg = save_excursion_save ();
3537 else
3538 break;
3539 tmp->unwind.func (oldarg);
3540 break;
3543 case SPECPDL_UNWIND_PTR:
3544 case SPECPDL_UNWIND_INT:
3545 case SPECPDL_UNWIND_VOID:
3546 case SPECPDL_BACKTRACE:
3547 break;
3548 case SPECPDL_LET:
3549 { /* If variable has a trivial value (no forwarding), we can
3550 just set it. No need to check for constant symbols here,
3551 since that was already done by specbind. */
3552 Lisp_Object sym = specpdl_symbol (tmp);
3553 if (SYMBOLP (sym) && XSYMBOL (sym)->redirect == SYMBOL_PLAINVAL)
3555 Lisp_Object old_value = specpdl_old_value (tmp);
3556 set_specpdl_old_value (tmp, SYMBOL_VAL (XSYMBOL (sym)));
3557 SET_SYMBOL_VAL (XSYMBOL (sym), old_value);
3558 break;
3560 else
3561 { /* FALLTHROUGH!!
3562 NOTE: we only ever come here if make_local_foo was used for
3563 the first time on this var within this let. */
3566 case SPECPDL_LET_DEFAULT:
3568 Lisp_Object sym = specpdl_symbol (tmp);
3569 Lisp_Object old_value = specpdl_old_value (tmp);
3570 set_specpdl_old_value (tmp, Fdefault_value (sym));
3571 Fset_default (sym, old_value);
3573 break;
3574 case SPECPDL_LET_LOCAL:
3576 Lisp_Object symbol = specpdl_symbol (tmp);
3577 Lisp_Object where = specpdl_where (tmp);
3578 Lisp_Object old_value = specpdl_old_value (tmp);
3579 eassert (BUFFERP (where));
3581 /* If this was a local binding, reset the value in the appropriate
3582 buffer, but only if that buffer's binding still exists. */
3583 if (!NILP (Flocal_variable_p (symbol, where)))
3585 set_specpdl_old_value
3586 (tmp, Fbuffer_local_value (symbol, where));
3587 set_internal (symbol, old_value, where, 1);
3590 break;
3595 DEFUN ("backtrace-eval", Fbacktrace_eval, Sbacktrace_eval, 2, 3, NULL,
3596 doc: /* Evaluate EXP in the context of some activation frame.
3597 NFRAMES and BASE specify the activation frame to use, as in `backtrace-frame'. */)
3598 (Lisp_Object exp, Lisp_Object nframes, Lisp_Object base)
3600 union specbinding *pdl = get_backtrace_frame (nframes, base);
3601 ptrdiff_t count = SPECPDL_INDEX ();
3602 ptrdiff_t distance = specpdl_ptr - pdl;
3603 eassert (distance >= 0);
3605 if (!backtrace_p (pdl))
3606 error ("Activation frame not found!");
3608 backtrace_eval_unrewind (distance);
3609 record_unwind_protect_int (backtrace_eval_unrewind, -distance);
3611 /* Use eval_sub rather than Feval since the main motivation behind
3612 backtrace-eval is to be able to get/set the value of lexical variables
3613 from the debugger. */
3614 return unbind_to (count, eval_sub (exp));
3617 DEFUN ("backtrace--locals", Fbacktrace__locals, Sbacktrace__locals, 1, 2, NULL,
3618 doc: /* Return names and values of local variables of a stack frame.
3619 NFRAMES and BASE specify the activation frame to use, as in `backtrace-frame'. */)
3620 (Lisp_Object nframes, Lisp_Object base)
3622 union specbinding *frame = get_backtrace_frame (nframes, base);
3623 union specbinding *prevframe
3624 = get_backtrace_frame (make_number (XFASTINT (nframes) - 1), base);
3625 ptrdiff_t distance = specpdl_ptr - frame;
3626 Lisp_Object result = Qnil;
3627 eassert (distance >= 0);
3629 if (!backtrace_p (prevframe))
3630 error ("Activation frame not found!");
3631 if (!backtrace_p (frame))
3632 error ("Activation frame not found!");
3634 /* The specpdl entries normally contain the symbol being bound along with its
3635 `old_value', so it can be restored. The new value to which it is bound is
3636 available in one of two places: either in the current value of the
3637 variable (if it hasn't been rebound yet) or in the `old_value' slot of the
3638 next specpdl entry for it.
3639 `backtrace_eval_unrewind' happens to swap the role of `old_value'
3640 and "new value", so we abuse it here, to fetch the new value.
3641 It's ugly (we'd rather not modify global data) and a bit inefficient,
3642 but it does the job for now. */
3643 backtrace_eval_unrewind (distance);
3645 /* Grab values. */
3647 union specbinding *tmp = prevframe;
3648 for (; tmp > frame; tmp--)
3650 switch (tmp->kind)
3652 case SPECPDL_LET:
3653 case SPECPDL_LET_DEFAULT:
3654 case SPECPDL_LET_LOCAL:
3656 Lisp_Object sym = specpdl_symbol (tmp);
3657 Lisp_Object val = specpdl_old_value (tmp);
3658 if (EQ (sym, Qinternal_interpreter_environment))
3660 Lisp_Object env = val;
3661 for (; CONSP (env); env = XCDR (env))
3663 Lisp_Object binding = XCAR (env);
3664 if (CONSP (binding))
3665 result = Fcons (Fcons (XCAR (binding),
3666 XCDR (binding)),
3667 result);
3670 else
3671 result = Fcons (Fcons (sym, val), result);
3673 break;
3675 case SPECPDL_UNWIND:
3676 case SPECPDL_UNWIND_PTR:
3677 case SPECPDL_UNWIND_INT:
3678 case SPECPDL_UNWIND_VOID:
3679 case SPECPDL_BACKTRACE:
3680 break;
3682 default:
3683 emacs_abort ();
3688 /* Restore values from specpdl to original place. */
3689 backtrace_eval_unrewind (-distance);
3691 return result;
3695 void
3696 mark_specpdl (void)
3698 union specbinding *pdl;
3699 for (pdl = specpdl; pdl != specpdl_ptr; pdl++)
3701 switch (pdl->kind)
3703 case SPECPDL_UNWIND:
3704 mark_object (specpdl_arg (pdl));
3705 break;
3707 case SPECPDL_BACKTRACE:
3709 ptrdiff_t nargs = backtrace_nargs (pdl);
3710 mark_object (backtrace_function (pdl));
3711 if (nargs == UNEVALLED)
3712 nargs = 1;
3713 while (nargs--)
3714 mark_object (backtrace_args (pdl)[nargs]);
3716 break;
3718 case SPECPDL_LET_DEFAULT:
3719 case SPECPDL_LET_LOCAL:
3720 mark_object (specpdl_where (pdl));
3721 /* Fall through. */
3722 case SPECPDL_LET:
3723 mark_object (specpdl_symbol (pdl));
3724 mark_object (specpdl_old_value (pdl));
3725 break;
3727 case SPECPDL_UNWIND_PTR:
3728 case SPECPDL_UNWIND_INT:
3729 case SPECPDL_UNWIND_VOID:
3730 break;
3732 default:
3733 emacs_abort ();
3738 void
3739 get_backtrace (Lisp_Object array)
3741 union specbinding *pdl = backtrace_next (backtrace_top ());
3742 ptrdiff_t i = 0, asize = ASIZE (array);
3744 /* Copy the backtrace contents into working memory. */
3745 for (; i < asize; i++)
3747 if (backtrace_p (pdl))
3749 ASET (array, i, backtrace_function (pdl));
3750 pdl = backtrace_next (pdl);
3752 else
3753 ASET (array, i, Qnil);
3757 Lisp_Object backtrace_top_function (void)
3759 union specbinding *pdl = backtrace_top ();
3760 return (backtrace_p (pdl) ? backtrace_function (pdl) : Qnil);
3763 void
3764 syms_of_eval (void)
3766 DEFVAR_INT ("max-specpdl-size", max_specpdl_size,
3767 doc: /* Limit on number of Lisp variable bindings and `unwind-protect's.
3768 If Lisp code tries to increase the total number past this amount,
3769 an error is signaled.
3770 You can safely use a value considerably larger than the default value,
3771 if that proves inconveniently small. However, if you increase it too far,
3772 Emacs could run out of memory trying to make the stack bigger.
3773 Note that this limit may be silently increased by the debugger
3774 if `debug-on-error' or `debug-on-quit' is set. */);
3776 DEFVAR_INT ("max-lisp-eval-depth", max_lisp_eval_depth,
3777 doc: /* Limit on depth in `eval', `apply' and `funcall' before error.
3779 This limit serves to catch infinite recursions for you before they cause
3780 actual stack overflow in C, which would be fatal for Emacs.
3781 You can safely make it considerably larger than its default value,
3782 if that proves inconveniently small. However, if you increase it too far,
3783 Emacs could overflow the real C stack, and crash. */);
3785 DEFVAR_LISP ("quit-flag", Vquit_flag,
3786 doc: /* Non-nil causes `eval' to abort, unless `inhibit-quit' is non-nil.
3787 If the value is t, that means do an ordinary quit.
3788 If the value equals `throw-on-input', that means quit by throwing
3789 to the tag specified in `throw-on-input'; it's for handling `while-no-input'.
3790 Typing C-g sets `quit-flag' to t, regardless of `inhibit-quit',
3791 but `inhibit-quit' non-nil prevents anything from taking notice of that. */);
3792 Vquit_flag = Qnil;
3794 DEFVAR_LISP ("inhibit-quit", Vinhibit_quit,
3795 doc: /* Non-nil inhibits C-g quitting from happening immediately.
3796 Note that `quit-flag' will still be set by typing C-g,
3797 so a quit will be signaled as soon as `inhibit-quit' is nil.
3798 To prevent this happening, set `quit-flag' to nil
3799 before making `inhibit-quit' nil. */);
3800 Vinhibit_quit = Qnil;
3802 DEFSYM (Qsetq, "setq");
3803 DEFSYM (Qinhibit_quit, "inhibit-quit");
3804 DEFSYM (Qautoload, "autoload");
3805 DEFSYM (Qinhibit_debugger, "inhibit-debugger");
3806 DEFSYM (Qmacro, "macro");
3808 /* Note that the process handling also uses Qexit, but we don't want
3809 to staticpro it twice, so we just do it here. */
3810 DEFSYM (Qexit, "exit");
3812 DEFSYM (Qinteractive, "interactive");
3813 DEFSYM (Qcommandp, "commandp");
3814 DEFSYM (Qand_rest, "&rest");
3815 DEFSYM (Qand_optional, "&optional");
3816 DEFSYM (Qclosure, "closure");
3817 DEFSYM (QCdocumentation, ":documentation");
3818 DEFSYM (Qdebug, "debug");
3820 DEFVAR_LISP ("inhibit-debugger", Vinhibit_debugger,
3821 doc: /* Non-nil means never enter the debugger.
3822 Normally set while the debugger is already active, to avoid recursive
3823 invocations. */);
3824 Vinhibit_debugger = Qnil;
3826 DEFVAR_LISP ("debug-on-error", Vdebug_on_error,
3827 doc: /* Non-nil means enter debugger if an error is signaled.
3828 Does not apply to errors handled by `condition-case' or those
3829 matched by `debug-ignored-errors'.
3830 If the value is a list, an error only means to enter the debugger
3831 if one of its condition symbols appears in the list.
3832 When you evaluate an expression interactively, this variable
3833 is temporarily non-nil if `eval-expression-debug-on-error' is non-nil.
3834 The command `toggle-debug-on-error' toggles this.
3835 See also the variable `debug-on-quit' and `inhibit-debugger'. */);
3836 Vdebug_on_error = Qnil;
3838 DEFVAR_LISP ("debug-ignored-errors", Vdebug_ignored_errors,
3839 doc: /* List of errors for which the debugger should not be called.
3840 Each element may be a condition-name or a regexp that matches error messages.
3841 If any element applies to a given error, that error skips the debugger
3842 and just returns to top level.
3843 This overrides the variable `debug-on-error'.
3844 It does not apply to errors handled by `condition-case'. */);
3845 Vdebug_ignored_errors = Qnil;
3847 DEFVAR_BOOL ("debug-on-quit", debug_on_quit,
3848 doc: /* Non-nil means enter debugger if quit is signaled (C-g, for example).
3849 Does not apply if quit is handled by a `condition-case'. */);
3850 debug_on_quit = 0;
3852 DEFVAR_BOOL ("debug-on-next-call", debug_on_next_call,
3853 doc: /* Non-nil means enter debugger before next `eval', `apply' or `funcall'. */);
3855 DEFVAR_BOOL ("debugger-may-continue", debugger_may_continue,
3856 doc: /* Non-nil means debugger may continue execution.
3857 This is nil when the debugger is called under circumstances where it
3858 might not be safe to continue. */);
3859 debugger_may_continue = 1;
3861 DEFVAR_BOOL ("debugger-stack-frame-as-list", debugger_stack_frame_as_list,
3862 doc: /* Non-nil means display call stack frames as lists. */);
3863 debugger_stack_frame_as_list = 0;
3865 DEFVAR_LISP ("debugger", Vdebugger,
3866 doc: /* Function to call to invoke debugger.
3867 If due to frame exit, args are `exit' and the value being returned;
3868 this function's value will be returned instead of that.
3869 If due to error, args are `error' and a list of the args to `signal'.
3870 If due to `apply' or `funcall' entry, one arg, `lambda'.
3871 If due to `eval' entry, one arg, t. */);
3872 Vdebugger = Qnil;
3874 DEFVAR_LISP ("signal-hook-function", Vsignal_hook_function,
3875 doc: /* If non-nil, this is a function for `signal' to call.
3876 It receives the same arguments that `signal' was given.
3877 The Edebug package uses this to regain control. */);
3878 Vsignal_hook_function = Qnil;
3880 DEFVAR_LISP ("debug-on-signal", Vdebug_on_signal,
3881 doc: /* Non-nil means call the debugger regardless of condition handlers.
3882 Note that `debug-on-error', `debug-on-quit' and friends
3883 still determine whether to handle the particular condition. */);
3884 Vdebug_on_signal = Qnil;
3886 /* When lexical binding is being used,
3887 Vinternal_interpreter_environment is non-nil, and contains an alist
3888 of lexically-bound variable, or (t), indicating an empty
3889 environment. The lisp name of this variable would be
3890 `internal-interpreter-environment' if it weren't hidden.
3891 Every element of this list can be either a cons (VAR . VAL)
3892 specifying a lexical binding, or a single symbol VAR indicating
3893 that this variable should use dynamic scoping. */
3894 DEFSYM (Qinternal_interpreter_environment,
3895 "internal-interpreter-environment");
3896 DEFVAR_LISP ("internal-interpreter-environment",
3897 Vinternal_interpreter_environment,
3898 doc: /* If non-nil, the current lexical environment of the lisp interpreter.
3899 When lexical binding is not being used, this variable is nil.
3900 A value of `(t)' indicates an empty environment, otherwise it is an
3901 alist of active lexical bindings. */);
3902 Vinternal_interpreter_environment = Qnil;
3903 /* Don't export this variable to Elisp, so no one can mess with it
3904 (Just imagine if someone makes it buffer-local). */
3905 Funintern (Qinternal_interpreter_environment, Qnil);
3907 Vrun_hooks = intern_c_string ("run-hooks");
3908 staticpro (&Vrun_hooks);
3910 staticpro (&Vautoload_queue);
3911 Vautoload_queue = Qnil;
3912 staticpro (&Vsignaling_function);
3913 Vsignaling_function = Qnil;
3915 inhibit_lisp_code = Qnil;
3917 defsubr (&Sor);
3918 defsubr (&Sand);
3919 defsubr (&Sif);
3920 defsubr (&Scond);
3921 defsubr (&Sprogn);
3922 defsubr (&Sprog1);
3923 defsubr (&Sprog2);
3924 defsubr (&Ssetq);
3925 defsubr (&Squote);
3926 defsubr (&Sfunction);
3927 defsubr (&Sdefault_toplevel_value);
3928 defsubr (&Sset_default_toplevel_value);
3929 defsubr (&Sdefvar);
3930 defsubr (&Sdefvaralias);
3931 defsubr (&Sdefconst);
3932 defsubr (&Smake_var_non_special);
3933 defsubr (&Slet);
3934 defsubr (&SletX);
3935 defsubr (&Swhile);
3936 defsubr (&Smacroexpand);
3937 defsubr (&Scatch);
3938 defsubr (&Sthrow);
3939 defsubr (&Sunwind_protect);
3940 defsubr (&Scondition_case);
3941 defsubr (&Ssignal);
3942 defsubr (&Scommandp);
3943 defsubr (&Sautoload);
3944 defsubr (&Sautoload_do_load);
3945 defsubr (&Seval);
3946 defsubr (&Sapply);
3947 defsubr (&Sfuncall);
3948 defsubr (&Sfunc_arity);
3949 defsubr (&Srun_hooks);
3950 defsubr (&Srun_hook_with_args);
3951 defsubr (&Srun_hook_with_args_until_success);
3952 defsubr (&Srun_hook_with_args_until_failure);
3953 defsubr (&Srun_hook_wrapped);
3954 defsubr (&Sfetch_bytecode);
3955 defsubr (&Sbacktrace_debug);
3956 defsubr (&Sbacktrace);
3957 defsubr (&Sbacktrace_frame);
3958 defsubr (&Sbacktrace_eval);
3959 defsubr (&Sbacktrace__locals);
3960 defsubr (&Sspecial_variable_p);
3961 defsubr (&Sfunctionp);