; * ChangeLog.3: Update.
[emacs.git] / src / eval.c
blobca1eb84ff3faa87e18889c676c3516341ef5d67a
1 /* Evaluator for GNU Emacs Lisp interpreter.
3 Copyright (C) 1985-1987, 1993-1995, 1999-2018 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 <https://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 /* CACHEABLE is ordinarily nothing, except it is 'volatile' if
34 necessary to cajole GCC into not warning incorrectly that a
35 variable should be volatile. */
36 #if defined GCC_LINT || defined lint
37 # define CACHEABLE volatile
38 #else
39 # define CACHEABLE /* empty */
40 #endif
42 /* Chain of condition and catch handlers currently in effect. */
44 /* struct handler *handlerlist; */
46 /* Non-nil means record all fset's and provide's, to be undone
47 if the file being autoloaded is not fully loaded.
48 They are recorded by being consed onto the front of Vautoload_queue:
49 (FUN . ODEF) for a defun, (0 . OFEATURES) for a provide. */
51 Lisp_Object Vautoload_queue;
53 /* This holds either the symbol `run-hooks' or nil.
54 It is nil at an early stage of startup, and when Emacs
55 is shutting down. */
56 Lisp_Object Vrun_hooks;
58 /* The commented-out variables below are macros defined in thread.h. */
60 /* Current number of specbindings allocated in specpdl, not counting
61 the dummy entry specpdl[-1]. */
63 /* ptrdiff_t specpdl_size; */
65 /* Pointer to beginning of specpdl. A dummy entry specpdl[-1] exists
66 only so that its address can be taken. */
68 /* union specbinding *specpdl; */
70 /* Pointer to first unused element in specpdl. */
72 /* union specbinding *specpdl_ptr; */
74 /* Depth in Lisp evaluations and function calls. */
76 /* static EMACS_INT lisp_eval_depth; */
78 /* The value of num_nonmacro_input_events as of the last time we
79 started to enter the debugger. If we decide to enter the debugger
80 again when this is still equal to num_nonmacro_input_events, then we
81 know that the debugger itself has an error, and we should just
82 signal the error instead of entering an infinite loop of debugger
83 invocations. */
85 static EMACS_INT when_entered_debugger;
87 /* The function from which the last `signal' was called. Set in
88 Fsignal. */
89 /* FIXME: We should probably get rid of this! */
90 Lisp_Object Vsignaling_function;
92 /* If non-nil, Lisp code must not be run since some part of Emacs is in
93 an inconsistent state. Currently unused. */
94 Lisp_Object inhibit_lisp_code;
96 /* These would ordinarily be static, but they need to be visible to GDB. */
97 bool backtrace_p (union specbinding *) EXTERNALLY_VISIBLE;
98 Lisp_Object *backtrace_args (union specbinding *) EXTERNALLY_VISIBLE;
99 Lisp_Object backtrace_function (union specbinding *) EXTERNALLY_VISIBLE;
100 union specbinding *backtrace_next (union specbinding *) EXTERNALLY_VISIBLE;
101 union specbinding *backtrace_top (void) EXTERNALLY_VISIBLE;
103 static Lisp_Object funcall_lambda (Lisp_Object, ptrdiff_t, Lisp_Object *);
104 static Lisp_Object apply_lambda (Lisp_Object, Lisp_Object, ptrdiff_t);
105 static Lisp_Object lambda_arity (Lisp_Object);
107 static Lisp_Object
108 specpdl_symbol (union specbinding *pdl)
110 eassert (pdl->kind >= SPECPDL_LET);
111 return pdl->let.symbol;
114 static enum specbind_tag
115 specpdl_kind (union specbinding *pdl)
117 eassert (pdl->kind >= SPECPDL_LET);
118 return pdl->let.kind;
121 static Lisp_Object
122 specpdl_old_value (union specbinding *pdl)
124 eassert (pdl->kind >= SPECPDL_LET);
125 return pdl->let.old_value;
128 static void
129 set_specpdl_old_value (union specbinding *pdl, Lisp_Object val)
131 eassert (pdl->kind >= SPECPDL_LET);
132 pdl->let.old_value = val;
135 static Lisp_Object
136 specpdl_where (union specbinding *pdl)
138 eassert (pdl->kind > SPECPDL_LET);
139 return pdl->let.where;
142 static Lisp_Object
143 specpdl_saved_value (union specbinding *pdl)
145 eassert (pdl->kind >= SPECPDL_LET);
146 return pdl->let.saved_value;
149 static Lisp_Object
150 specpdl_arg (union specbinding *pdl)
152 eassert (pdl->kind == SPECPDL_UNWIND);
153 return pdl->unwind.arg;
156 Lisp_Object
157 backtrace_function (union specbinding *pdl)
159 eassert (pdl->kind == SPECPDL_BACKTRACE);
160 return pdl->bt.function;
163 static ptrdiff_t
164 backtrace_nargs (union specbinding *pdl)
166 eassert (pdl->kind == SPECPDL_BACKTRACE);
167 return pdl->bt.nargs;
170 Lisp_Object *
171 backtrace_args (union specbinding *pdl)
173 eassert (pdl->kind == SPECPDL_BACKTRACE);
174 return pdl->bt.args;
177 static bool
178 backtrace_debug_on_exit (union specbinding *pdl)
180 eassert (pdl->kind == SPECPDL_BACKTRACE);
181 return pdl->bt.debug_on_exit;
184 /* Functions to modify slots of backtrace records. */
186 static void
187 set_backtrace_args (union specbinding *pdl, Lisp_Object *args, ptrdiff_t nargs)
189 eassert (pdl->kind == SPECPDL_BACKTRACE);
190 pdl->bt.args = args;
191 pdl->bt.nargs = nargs;
194 static void
195 set_backtrace_debug_on_exit (union specbinding *pdl, bool doe)
197 eassert (pdl->kind == SPECPDL_BACKTRACE);
198 pdl->bt.debug_on_exit = doe;
201 /* Helper functions to scan the backtrace. */
203 bool
204 backtrace_p (union specbinding *pdl)
205 { return pdl >= specpdl; }
207 union specbinding *
208 backtrace_top (void)
210 union specbinding *pdl = specpdl_ptr - 1;
211 while (backtrace_p (pdl) && pdl->kind != SPECPDL_BACKTRACE)
212 pdl--;
213 return pdl;
216 union specbinding *
217 backtrace_next (union specbinding *pdl)
219 pdl--;
220 while (backtrace_p (pdl) && pdl->kind != SPECPDL_BACKTRACE)
221 pdl--;
222 return pdl;
225 void
226 init_eval_once (void)
228 enum { size = 50 };
229 union specbinding *pdlvec = xmalloc ((size + 1) * sizeof *specpdl);
230 specpdl_size = size;
231 specpdl = specpdl_ptr = pdlvec + 1;
232 /* Don't forget to update docs (lispref node "Local Variables"). */
233 max_specpdl_size = 1300; /* 1000 is not enough for CEDET's c-by.el. */
234 max_lisp_eval_depth = 800;
236 Vrun_hooks = Qnil;
239 /* static struct handler handlerlist_sentinel; */
241 void
242 init_eval (void)
244 specpdl_ptr = specpdl;
245 { /* Put a dummy catcher at top-level so that handlerlist is never NULL.
246 This is important since handlerlist->nextfree holds the freelist
247 which would otherwise leak every time we unwind back to top-level. */
248 handlerlist_sentinel = xzalloc (sizeof (struct handler));
249 handlerlist = handlerlist_sentinel->nextfree = handlerlist_sentinel;
250 struct handler *c = push_handler (Qunbound, CATCHER);
251 eassert (c == handlerlist_sentinel);
252 handlerlist_sentinel->nextfree = NULL;
253 handlerlist_sentinel->next = NULL;
255 Vquit_flag = Qnil;
256 debug_on_next_call = 0;
257 lisp_eval_depth = 0;
258 /* This is less than the initial value of num_nonmacro_input_events. */
259 when_entered_debugger = -1;
262 /* Unwind-protect function used by call_debugger. */
264 static void
265 restore_stack_limits (Lisp_Object data)
267 max_specpdl_size = XINT (XCAR (data));
268 max_lisp_eval_depth = XINT (XCDR (data));
271 static void grow_specpdl (void);
273 /* Call the Lisp debugger, giving it argument ARG. */
275 Lisp_Object
276 call_debugger (Lisp_Object arg)
278 bool debug_while_redisplaying;
279 ptrdiff_t count = SPECPDL_INDEX ();
280 Lisp_Object val;
281 EMACS_INT old_depth = max_lisp_eval_depth;
282 /* Do not allow max_specpdl_size less than actual depth (Bug#16603). */
283 EMACS_INT old_max = max (max_specpdl_size, count);
285 if (lisp_eval_depth + 40 > max_lisp_eval_depth)
286 max_lisp_eval_depth = lisp_eval_depth + 40;
288 /* While debugging Bug#16603, previous value of 100 was found
289 too small to avoid specpdl overflow in the debugger itself. */
290 if (max_specpdl_size - 200 < count)
291 max_specpdl_size = count + 200;
293 if (old_max == count)
295 /* We can enter the debugger due to specpdl overflow (Bug#16603). */
296 specpdl_ptr--;
297 grow_specpdl ();
300 /* Restore limits after leaving the debugger. */
301 record_unwind_protect (restore_stack_limits,
302 Fcons (make_number (old_max),
303 make_number (old_depth)));
305 #ifdef HAVE_WINDOW_SYSTEM
306 if (display_hourglass_p)
307 cancel_hourglass ();
308 #endif
310 debug_on_next_call = 0;
311 when_entered_debugger = num_nonmacro_input_events;
313 /* Resetting redisplaying_p to 0 makes sure that debug output is
314 displayed if the debugger is invoked during redisplay. */
315 debug_while_redisplaying = redisplaying_p;
316 redisplaying_p = 0;
317 specbind (intern ("debugger-may-continue"),
318 debug_while_redisplaying ? Qnil : Qt);
319 specbind (Qinhibit_redisplay, Qnil);
320 specbind (Qinhibit_debugger, Qt);
322 /* If we are debugging an error while `inhibit-changing-match-data'
323 is bound to non-nil (e.g., within a call to `string-match-p'),
324 then make sure debugger code can still use match data. */
325 specbind (Qinhibit_changing_match_data, Qnil);
327 #if 0 /* Binding this prevents execution of Lisp code during
328 redisplay, which necessarily leads to display problems. */
329 specbind (Qinhibit_eval_during_redisplay, Qt);
330 #endif
332 val = apply1 (Vdebugger, arg);
334 /* Interrupting redisplay and resuming it later is not safe under
335 all circumstances. So, when the debugger returns, abort the
336 interrupted redisplay by going back to the top-level. */
337 if (debug_while_redisplaying)
338 Ftop_level ();
340 return unbind_to (count, val);
343 static void
344 do_debug_on_call (Lisp_Object code, ptrdiff_t count)
346 debug_on_next_call = 0;
347 set_backtrace_debug_on_exit (specpdl + count, true);
348 call_debugger (list1 (code));
351 /* NOTE!!! Every function that can call EVAL must protect its args
352 and temporaries from garbage collection while it needs them.
353 The definition of `For' shows what you have to do. */
355 DEFUN ("or", For, Sor, 0, UNEVALLED, 0,
356 doc: /* Eval args until one of them yields non-nil, then return that value.
357 The remaining args are not evalled at all.
358 If all args return nil, return nil.
359 usage: (or CONDITIONS...) */)
360 (Lisp_Object args)
362 Lisp_Object val = Qnil;
364 while (CONSP (args))
366 Lisp_Object arg = XCAR (args);
367 args = XCDR (args);
368 val = eval_sub (arg);
369 if (!NILP (val))
370 break;
373 return val;
376 DEFUN ("and", Fand, Sand, 0, UNEVALLED, 0,
377 doc: /* Eval args until one of them yields nil, then return nil.
378 The remaining args are not evalled at all.
379 If no arg yields nil, return the last arg's value.
380 usage: (and CONDITIONS...) */)
381 (Lisp_Object args)
383 Lisp_Object val = Qt;
385 while (CONSP (args))
387 Lisp_Object arg = XCAR (args);
388 args = XCDR (args);
389 val = eval_sub (arg);
390 if (NILP (val))
391 break;
394 return val;
397 DEFUN ("if", Fif, Sif, 2, UNEVALLED, 0,
398 doc: /* If COND yields non-nil, do THEN, else do ELSE...
399 Returns the value of THEN or the value of the last of the ELSE's.
400 THEN must be one expression, but ELSE... can be zero or more expressions.
401 If COND yields nil, and there are no ELSE's, the value is nil.
402 usage: (if COND THEN ELSE...) */)
403 (Lisp_Object args)
405 Lisp_Object cond;
407 cond = eval_sub (XCAR (args));
409 if (!NILP (cond))
410 return eval_sub (Fcar (XCDR (args)));
411 return Fprogn (Fcdr (XCDR (args)));
414 DEFUN ("cond", Fcond, Scond, 0, UNEVALLED, 0,
415 doc: /* Try each clause until one succeeds.
416 Each clause looks like (CONDITION BODY...). CONDITION is evaluated
417 and, if the value is non-nil, this clause succeeds:
418 then the expressions in BODY are evaluated and the last one's
419 value is the value of the cond-form.
420 If a clause has one element, as in (CONDITION), then the cond-form
421 returns CONDITION's value, if that is non-nil.
422 If no clause succeeds, cond returns nil.
423 usage: (cond CLAUSES...) */)
424 (Lisp_Object args)
426 Lisp_Object val = args;
428 while (CONSP (args))
430 Lisp_Object clause = XCAR (args);
431 val = eval_sub (Fcar (clause));
432 if (!NILP (val))
434 if (!NILP (XCDR (clause)))
435 val = Fprogn (XCDR (clause));
436 break;
438 args = XCDR (args);
441 return val;
444 DEFUN ("progn", Fprogn, Sprogn, 0, UNEVALLED, 0,
445 doc: /* Eval BODY forms sequentially and return value of last one.
446 usage: (progn BODY...) */)
447 (Lisp_Object body)
449 Lisp_Object val = Qnil;
451 while (CONSP (body))
453 Lisp_Object form = XCAR (body);
454 body = XCDR (body);
455 val = eval_sub (form);
458 return val;
461 /* Evaluate BODY sequentially, discarding its value. */
463 void
464 prog_ignore (Lisp_Object body)
466 Fprogn (body);
469 DEFUN ("prog1", Fprog1, Sprog1, 1, UNEVALLED, 0,
470 doc: /* Eval FIRST and BODY sequentially; return value from FIRST.
471 The value of FIRST is saved during the evaluation of the remaining args,
472 whose values are discarded.
473 usage: (prog1 FIRST BODY...) */)
474 (Lisp_Object args)
476 Lisp_Object val = eval_sub (XCAR (args));
477 prog_ignore (XCDR (args));
478 return val;
481 DEFUN ("prog2", Fprog2, Sprog2, 2, UNEVALLED, 0,
482 doc: /* Eval FORM1, FORM2 and BODY sequentially; return value from FORM2.
483 The value of FORM2 is saved during the evaluation of the
484 remaining args, whose values are discarded.
485 usage: (prog2 FORM1 FORM2 BODY...) */)
486 (Lisp_Object args)
488 eval_sub (XCAR (args));
489 return Fprog1 (XCDR (args));
492 DEFUN ("setq", Fsetq, Ssetq, 0, UNEVALLED, 0,
493 doc: /* Set each SYM to the value of its VAL.
494 The symbols SYM are variables; they are literal (not evaluated).
495 The values VAL are expressions; they are evaluated.
496 Thus, (setq x (1+ y)) sets `x' to the value of `(1+ y)'.
497 The second VAL is not computed until after the first SYM is set, and so on;
498 each VAL can use the new value of variables set earlier in the `setq'.
499 The return value of the `setq' form is the value of the last VAL.
500 usage: (setq [SYM VAL]...) */)
501 (Lisp_Object args)
503 Lisp_Object val = args, tail = args;
505 for (EMACS_INT nargs = 0; CONSP (tail); nargs += 2)
507 Lisp_Object sym = XCAR (tail), lex_binding;
508 tail = XCDR (tail);
509 if (!CONSP (tail))
510 xsignal2 (Qwrong_number_of_arguments, Qsetq, make_number (nargs + 1));
511 Lisp_Object arg = XCAR (tail);
512 tail = XCDR (tail);
513 val = eval_sub (arg);
514 /* Like for eval_sub, we do not check declared_special here since
515 it's been done when let-binding. */
516 if (!NILP (Vinternal_interpreter_environment) /* Mere optimization! */
517 && SYMBOLP (sym)
518 && !NILP (lex_binding
519 = Fassq (sym, Vinternal_interpreter_environment)))
520 XSETCDR (lex_binding, val); /* SYM is lexically bound. */
521 else
522 Fset (sym, val); /* SYM is dynamically bound. */
525 return val;
528 DEFUN ("quote", Fquote, Squote, 1, UNEVALLED, 0,
529 doc: /* Return the argument, without evaluating it. `(quote x)' yields `x'.
530 Warning: `quote' does not construct its return value, but just returns
531 the value that was pre-constructed by the Lisp reader (see info node
532 `(elisp)Printed Representation').
533 This means that \\='(a . b) is not identical to (cons \\='a \\='b): the former
534 does not cons. Quoting should be reserved for constants that will
535 never be modified by side-effects, unless you like self-modifying code.
536 See the common pitfall in info node `(elisp)Rearrangement' for an example
537 of unexpected results when a quoted object is modified.
538 usage: (quote ARG) */)
539 (Lisp_Object args)
541 if (!NILP (XCDR (args)))
542 xsignal2 (Qwrong_number_of_arguments, Qquote, Flength (args));
543 return XCAR (args);
546 DEFUN ("function", Ffunction, Sfunction, 1, UNEVALLED, 0,
547 doc: /* Like `quote', but preferred for objects which are functions.
548 In byte compilation, `function' causes its argument to be compiled.
549 `quote' cannot do that.
550 usage: (function ARG) */)
551 (Lisp_Object args)
553 Lisp_Object quoted = XCAR (args);
555 if (!NILP (XCDR (args)))
556 xsignal2 (Qwrong_number_of_arguments, Qfunction, Flength (args));
558 if (!NILP (Vinternal_interpreter_environment)
559 && CONSP (quoted)
560 && EQ (XCAR (quoted), Qlambda))
561 { /* This is a lambda expression within a lexical environment;
562 return an interpreted closure instead of a simple lambda. */
563 Lisp_Object cdr = XCDR (quoted);
564 Lisp_Object tmp = cdr;
565 if (CONSP (tmp)
566 && (tmp = XCDR (tmp), CONSP (tmp))
567 && (tmp = XCAR (tmp), CONSP (tmp))
568 && (EQ (QCdocumentation, XCAR (tmp))))
569 { /* Handle the special (:documentation <form>) to build the docstring
570 dynamically. */
571 Lisp_Object docstring = eval_sub (Fcar (XCDR (tmp)));
572 CHECK_STRING (docstring);
573 cdr = Fcons (XCAR (cdr), Fcons (docstring, XCDR (XCDR (cdr))));
575 return Fcons (Qclosure, Fcons (Vinternal_interpreter_environment,
576 cdr));
578 else
579 /* Simply quote the argument. */
580 return quoted;
584 DEFUN ("defvaralias", Fdefvaralias, Sdefvaralias, 2, 3, 0,
585 doc: /* Make NEW-ALIAS a variable alias for symbol BASE-VARIABLE.
586 Aliased variables always have the same value; setting one sets the other.
587 Third arg DOCSTRING, if non-nil, is documentation for NEW-ALIAS. If it is
588 omitted or nil, NEW-ALIAS gets the documentation string of BASE-VARIABLE,
589 or of the variable at the end of the chain of aliases, if BASE-VARIABLE is
590 itself an alias. If NEW-ALIAS is bound, and BASE-VARIABLE is not,
591 then the value of BASE-VARIABLE is set to that of NEW-ALIAS.
592 The return value is BASE-VARIABLE. */)
593 (Lisp_Object new_alias, Lisp_Object base_variable, Lisp_Object docstring)
595 struct Lisp_Symbol *sym;
597 CHECK_SYMBOL (new_alias);
598 CHECK_SYMBOL (base_variable);
600 if (SYMBOL_CONSTANT_P (new_alias))
601 /* Making it an alias effectively changes its value. */
602 error ("Cannot make a constant an alias");
604 sym = XSYMBOL (new_alias);
606 switch (sym->u.s.redirect)
608 case SYMBOL_FORWARDED:
609 error ("Cannot make an internal variable an alias");
610 case SYMBOL_LOCALIZED:
611 error ("Don't know how to make a localized variable an alias");
612 case SYMBOL_PLAINVAL:
613 case SYMBOL_VARALIAS:
614 break;
615 default:
616 emacs_abort ();
619 /* https://lists.gnu.org/r/emacs-devel/2008-04/msg00834.html
620 If n_a is bound, but b_v is not, set the value of b_v to n_a,
621 so that old-code that affects n_a before the aliasing is setup
622 still works. */
623 if (NILP (Fboundp (base_variable)))
624 set_internal (base_variable, find_symbol_value (new_alias),
625 Qnil, SET_INTERNAL_BIND);
627 union specbinding *p;
629 for (p = specpdl_ptr; p > specpdl; )
630 if ((--p)->kind >= SPECPDL_LET
631 && (EQ (new_alias, specpdl_symbol (p))))
632 error ("Don't know how to make a let-bound variable an alias");
635 if (sym->u.s.trapped_write == SYMBOL_TRAPPED_WRITE)
636 notify_variable_watchers (new_alias, base_variable, Qdefvaralias, Qnil);
638 sym->u.s.declared_special = true;
639 XSYMBOL (base_variable)->u.s.declared_special = true;
640 sym->u.s.redirect = SYMBOL_VARALIAS;
641 SET_SYMBOL_ALIAS (sym, XSYMBOL (base_variable));
642 sym->u.s.trapped_write = XSYMBOL (base_variable)->u.s.trapped_write;
643 LOADHIST_ATTACH (new_alias);
644 /* Even if docstring is nil: remove old docstring. */
645 Fput (new_alias, Qvariable_documentation, docstring);
647 return base_variable;
650 static union specbinding *
651 default_toplevel_binding (Lisp_Object symbol)
653 union specbinding *binding = NULL;
654 union specbinding *pdl = specpdl_ptr;
655 while (pdl > specpdl)
657 switch ((--pdl)->kind)
659 case SPECPDL_LET_DEFAULT:
660 case SPECPDL_LET:
661 if (EQ (specpdl_symbol (pdl), symbol))
662 binding = pdl;
663 break;
665 case SPECPDL_UNWIND:
666 case SPECPDL_UNWIND_PTR:
667 case SPECPDL_UNWIND_INT:
668 case SPECPDL_UNWIND_VOID:
669 case SPECPDL_BACKTRACE:
670 case SPECPDL_LET_LOCAL:
671 break;
673 default:
674 emacs_abort ();
677 return binding;
680 DEFUN ("default-toplevel-value", Fdefault_toplevel_value, Sdefault_toplevel_value, 1, 1, 0,
681 doc: /* Return SYMBOL's toplevel default value.
682 "Toplevel" means outside of any let binding. */)
683 (Lisp_Object symbol)
685 union specbinding *binding = default_toplevel_binding (symbol);
686 Lisp_Object value
687 = binding ? specpdl_old_value (binding) : Fdefault_value (symbol);
688 if (!EQ (value, Qunbound))
689 return value;
690 xsignal1 (Qvoid_variable, symbol);
693 DEFUN ("set-default-toplevel-value", Fset_default_toplevel_value,
694 Sset_default_toplevel_value, 2, 2, 0,
695 doc: /* Set SYMBOL's toplevel default value to VALUE.
696 "Toplevel" means outside of any let binding. */)
697 (Lisp_Object symbol, Lisp_Object value)
699 union specbinding *binding = default_toplevel_binding (symbol);
700 if (binding)
701 set_specpdl_old_value (binding, value);
702 else
703 Fset_default (symbol, value);
704 return Qnil;
707 DEFUN ("defvar", Fdefvar, Sdefvar, 1, UNEVALLED, 0,
708 doc: /* Define SYMBOL as a variable, and return SYMBOL.
709 You are not required to define a variable in order to use it, but
710 defining it lets you supply an initial value and documentation, which
711 can be referred to by the Emacs help facilities and other programming
712 tools. The `defvar' form also declares the variable as \"special\",
713 so that it is always dynamically bound even if `lexical-binding' is t.
715 If SYMBOL's value is void and the optional argument INITVALUE is
716 provided, INITVALUE is evaluated and the result used to set SYMBOL's
717 value. If SYMBOL is buffer-local, its default value is what is set;
718 buffer-local values are not affected. If INITVALUE is missing,
719 SYMBOL's value is not set.
721 If SYMBOL has a local binding, then this form affects the local
722 binding. This is usually not what you want. Thus, if you need to
723 load a file defining variables, with this form or with `defconst' or
724 `defcustom', you should always load that file _outside_ any bindings
725 for these variables. (`defconst' and `defcustom' behave similarly in
726 this respect.)
728 The optional argument DOCSTRING is a documentation string for the
729 variable.
731 To define a user option, use `defcustom' instead of `defvar'.
732 usage: (defvar SYMBOL &optional INITVALUE DOCSTRING) */)
733 (Lisp_Object args)
735 Lisp_Object sym, tem, tail;
737 sym = XCAR (args);
738 tail = XCDR (args);
740 if (!NILP (tail))
742 if (!NILP (XCDR (tail)) && !NILP (XCDR (XCDR (tail))))
743 error ("Too many arguments");
745 tem = Fdefault_boundp (sym);
747 /* Do it before evaluating the initial value, for self-references. */
748 XSYMBOL (sym)->u.s.declared_special = true;
750 if (NILP (tem))
751 Fset_default (sym, eval_sub (XCAR (tail)));
752 else
753 { /* Check if there is really a global binding rather than just a let
754 binding that shadows the global unboundness of the var. */
755 union specbinding *binding = default_toplevel_binding (sym);
756 if (binding && EQ (specpdl_old_value (binding), Qunbound))
758 set_specpdl_old_value (binding, eval_sub (XCAR (tail)));
761 tail = XCDR (tail);
762 tem = Fcar (tail);
763 if (!NILP (tem))
765 if (!NILP (Vpurify_flag))
766 tem = Fpurecopy (tem);
767 Fput (sym, Qvariable_documentation, tem);
769 LOADHIST_ATTACH (sym);
771 else if (!NILP (Vinternal_interpreter_environment)
772 && !XSYMBOL (sym)->u.s.declared_special)
773 /* A simple (defvar foo) with lexical scoping does "nothing" except
774 declare that var to be dynamically scoped *locally* (i.e. within
775 the current file or let-block). */
776 Vinternal_interpreter_environment
777 = Fcons (sym, Vinternal_interpreter_environment);
778 else
780 /* Simple (defvar <var>) should not count as a definition at all.
781 It could get in the way of other definitions, and unloading this
782 package could try to make the variable unbound. */
785 return sym;
788 DEFUN ("defconst", Fdefconst, Sdefconst, 2, UNEVALLED, 0,
789 doc: /* Define SYMBOL as a constant variable.
790 This declares that neither programs nor users should ever change the
791 value. This constancy is not actually enforced by Emacs Lisp, but
792 SYMBOL is marked as a special variable so that it is never lexically
793 bound.
795 The `defconst' form always sets the value of SYMBOL to the result of
796 evalling INITVALUE. If SYMBOL is buffer-local, its default value is
797 what is set; buffer-local values are not affected. If SYMBOL has a
798 local binding, then this form sets the local binding's value.
799 However, you should normally not make local bindings for variables
800 defined with this form.
802 The optional DOCSTRING specifies the variable's documentation string.
803 usage: (defconst SYMBOL INITVALUE [DOCSTRING]) */)
804 (Lisp_Object args)
806 Lisp_Object sym, tem;
808 sym = XCAR (args);
809 Lisp_Object docstring = Qnil;
810 if (!NILP (XCDR (XCDR (args))))
812 if (!NILP (XCDR (XCDR (XCDR (args)))))
813 error ("Too many arguments");
814 docstring = XCAR (XCDR (XCDR (args)));
817 tem = eval_sub (XCAR (XCDR (args)));
818 if (!NILP (Vpurify_flag))
819 tem = Fpurecopy (tem);
820 Fset_default (sym, tem);
821 XSYMBOL (sym)->u.s.declared_special = true;
822 if (!NILP (docstring))
824 if (!NILP (Vpurify_flag))
825 docstring = Fpurecopy (docstring);
826 Fput (sym, Qvariable_documentation, docstring);
828 Fput (sym, Qrisky_local_variable, Qt);
829 LOADHIST_ATTACH (sym);
830 return sym;
833 /* Make SYMBOL lexically scoped. */
834 DEFUN ("internal-make-var-non-special", Fmake_var_non_special,
835 Smake_var_non_special, 1, 1, 0,
836 doc: /* Internal function. */)
837 (Lisp_Object symbol)
839 CHECK_SYMBOL (symbol);
840 XSYMBOL (symbol)->u.s.declared_special = false;
841 return Qnil;
845 DEFUN ("let*", FletX, SletX, 1, UNEVALLED, 0,
846 doc: /* Bind variables according to VARLIST then eval BODY.
847 The value of the last form in BODY is returned.
848 Each element of VARLIST is a symbol (which is bound to nil)
849 or a list (SYMBOL VALUEFORM) (which binds SYMBOL to the value of VALUEFORM).
850 Each VALUEFORM can refer to the symbols already bound by this VARLIST.
851 usage: (let* VARLIST BODY...) */)
852 (Lisp_Object args)
854 Lisp_Object var, val, elt, lexenv;
855 ptrdiff_t count = SPECPDL_INDEX ();
857 lexenv = Vinternal_interpreter_environment;
859 Lisp_Object varlist = XCAR (args);
860 while (CONSP (varlist))
862 maybe_quit ();
864 elt = XCAR (varlist);
865 varlist = XCDR (varlist);
866 if (SYMBOLP (elt))
868 var = elt;
869 val = Qnil;
871 else
873 var = Fcar (elt);
874 if (! NILP (Fcdr (XCDR (elt))))
875 signal_error ("`let' bindings can have only one value-form", elt);
876 val = eval_sub (Fcar (XCDR (elt)));
879 if (!NILP (lexenv) && SYMBOLP (var)
880 && !XSYMBOL (var)->u.s.declared_special
881 && NILP (Fmemq (var, Vinternal_interpreter_environment)))
882 /* Lexically bind VAR by adding it to the interpreter's binding
883 alist. */
885 Lisp_Object newenv
886 = Fcons (Fcons (var, val), Vinternal_interpreter_environment);
887 if (EQ (Vinternal_interpreter_environment, lexenv))
888 /* Save the old lexical environment on the specpdl stack,
889 but only for the first lexical binding, since we'll never
890 need to revert to one of the intermediate ones. */
891 specbind (Qinternal_interpreter_environment, newenv);
892 else
893 Vinternal_interpreter_environment = newenv;
895 else
896 specbind (var, val);
898 CHECK_LIST_END (varlist, XCAR (args));
900 val = Fprogn (XCDR (args));
901 return unbind_to (count, val);
904 DEFUN ("let", Flet, Slet, 1, UNEVALLED, 0,
905 doc: /* Bind variables according to VARLIST then eval BODY.
906 The value of the last form in BODY is returned.
907 Each element of VARLIST is a symbol (which is bound to nil)
908 or a list (SYMBOL VALUEFORM) (which binds SYMBOL to the value of VALUEFORM).
909 All the VALUEFORMs are evalled before any symbols are bound.
910 usage: (let VARLIST BODY...) */)
911 (Lisp_Object args)
913 Lisp_Object *temps, tem, lexenv;
914 Lisp_Object elt, varlist;
915 ptrdiff_t count = SPECPDL_INDEX ();
916 ptrdiff_t argnum;
917 USE_SAFE_ALLOCA;
919 varlist = XCAR (args);
920 CHECK_LIST (varlist);
922 /* Make space to hold the values to give the bound variables. */
923 EMACS_INT varlist_len = XFASTINT (Flength (varlist));
924 SAFE_ALLOCA_LISP (temps, varlist_len);
925 ptrdiff_t nvars = varlist_len;
927 /* Compute the values and store them in `temps'. */
929 for (argnum = 0; argnum < nvars && CONSP (varlist); argnum++)
931 maybe_quit ();
932 elt = XCAR (varlist);
933 varlist = XCDR (varlist);
934 if (SYMBOLP (elt))
935 temps[argnum] = Qnil;
936 else if (! NILP (Fcdr (Fcdr (elt))))
937 signal_error ("`let' bindings can have only one value-form", elt);
938 else
939 temps[argnum] = eval_sub (Fcar (Fcdr (elt)));
941 nvars = argnum;
943 lexenv = Vinternal_interpreter_environment;
945 varlist = XCAR (args);
946 for (argnum = 0; argnum < nvars && CONSP (varlist); argnum++)
948 Lisp_Object var;
950 elt = XCAR (varlist);
951 varlist = XCDR (varlist);
952 var = SYMBOLP (elt) ? elt : Fcar (elt);
953 tem = temps[argnum];
955 if (!NILP (lexenv) && SYMBOLP (var)
956 && !XSYMBOL (var)->u.s.declared_special
957 && NILP (Fmemq (var, Vinternal_interpreter_environment)))
958 /* Lexically bind VAR by adding it to the lexenv alist. */
959 lexenv = Fcons (Fcons (var, tem), lexenv);
960 else
961 /* Dynamically bind VAR. */
962 specbind (var, tem);
965 if (!EQ (lexenv, Vinternal_interpreter_environment))
966 /* Instantiate a new lexical environment. */
967 specbind (Qinternal_interpreter_environment, lexenv);
969 elt = Fprogn (XCDR (args));
970 SAFE_FREE ();
971 return unbind_to (count, elt);
974 DEFUN ("while", Fwhile, Swhile, 1, UNEVALLED, 0,
975 doc: /* If TEST yields non-nil, eval BODY... and repeat.
976 The order of execution is thus TEST, BODY, TEST, BODY and so on
977 until TEST returns nil.
978 usage: (while TEST BODY...) */)
979 (Lisp_Object args)
981 Lisp_Object test, body;
983 test = XCAR (args);
984 body = XCDR (args);
985 while (!NILP (eval_sub (test)))
987 maybe_quit ();
988 prog_ignore (body);
991 return Qnil;
994 DEFUN ("macroexpand", Fmacroexpand, Smacroexpand, 1, 2, 0,
995 doc: /* Return result of expanding macros at top level of FORM.
996 If FORM is not a macro call, it is returned unchanged.
997 Otherwise, the macro is expanded and the expansion is considered
998 in place of FORM. When a non-macro-call results, it is returned.
1000 The second optional arg ENVIRONMENT specifies an environment of macro
1001 definitions to shadow the loaded ones for use in file byte-compilation. */)
1002 (Lisp_Object form, Lisp_Object environment)
1004 /* With cleanups from Hallvard Furuseth. */
1005 register Lisp_Object expander, sym, def, tem;
1007 while (1)
1009 /* Come back here each time we expand a macro call,
1010 in case it expands into another macro call. */
1011 if (!CONSP (form))
1012 break;
1013 /* Set SYM, give DEF and TEM right values in case SYM is not a symbol. */
1014 def = sym = XCAR (form);
1015 tem = Qnil;
1016 /* Trace symbols aliases to other symbols
1017 until we get a symbol that is not an alias. */
1018 while (SYMBOLP (def))
1020 maybe_quit ();
1021 sym = def;
1022 tem = Fassq (sym, environment);
1023 if (NILP (tem))
1025 def = XSYMBOL (sym)->u.s.function;
1026 if (!NILP (def))
1027 continue;
1029 break;
1031 /* Right now TEM is the result from SYM in ENVIRONMENT,
1032 and if TEM is nil then DEF is SYM's function definition. */
1033 if (NILP (tem))
1035 /* SYM is not mentioned in ENVIRONMENT.
1036 Look at its function definition. */
1037 def = Fautoload_do_load (def, sym, Qmacro);
1038 if (!CONSP (def))
1039 /* Not defined or definition not suitable. */
1040 break;
1041 if (!EQ (XCAR (def), Qmacro))
1042 break;
1043 else expander = XCDR (def);
1045 else
1047 expander = XCDR (tem);
1048 if (NILP (expander))
1049 break;
1052 Lisp_Object newform = apply1 (expander, XCDR (form));
1053 if (EQ (form, newform))
1054 break;
1055 else
1056 form = newform;
1059 return form;
1062 DEFUN ("catch", Fcatch, Scatch, 1, UNEVALLED, 0,
1063 doc: /* Eval BODY allowing nonlocal exits using `throw'.
1064 TAG is evalled to get the tag to use; it must not be nil.
1066 Then the BODY is executed.
1067 Within BODY, a call to `throw' with the same TAG exits BODY and this `catch'.
1068 If no throw happens, `catch' returns the value of the last BODY form.
1069 If a throw happens, it specifies the value to return from `catch'.
1070 usage: (catch TAG BODY...) */)
1071 (Lisp_Object args)
1073 Lisp_Object tag = eval_sub (XCAR (args));
1074 return internal_catch (tag, Fprogn, XCDR (args));
1077 /* Assert that E is true, but do not evaluate E. Use this instead of
1078 eassert (E) when E contains variables that might be clobbered by a
1079 longjmp. */
1081 #define clobbered_eassert(E) verify (sizeof (E) != 0)
1083 /* Set up a catch, then call C function FUNC on argument ARG.
1084 FUNC should return a Lisp_Object.
1085 This is how catches are done from within C code. */
1087 Lisp_Object
1088 internal_catch (Lisp_Object tag,
1089 Lisp_Object (*func) (Lisp_Object), Lisp_Object arg)
1091 /* This structure is made part of the chain `catchlist'. */
1092 struct handler *c = push_handler (tag, CATCHER);
1094 /* Call FUNC. */
1095 if (! sys_setjmp (c->jmp))
1097 Lisp_Object val = func (arg);
1098 eassert (handlerlist == c);
1099 handlerlist = c->next;
1100 return val;
1102 else
1103 { /* Throw works by a longjmp that comes right here. */
1104 Lisp_Object val = handlerlist->val;
1105 clobbered_eassert (handlerlist == c);
1106 handlerlist = handlerlist->next;
1107 return val;
1111 /* Unwind the specbind, catch, and handler stacks back to CATCH, and
1112 jump to that CATCH, returning VALUE as the value of that catch.
1114 This is the guts of Fthrow and Fsignal; they differ only in the way
1115 they choose the catch tag to throw to. A catch tag for a
1116 condition-case form has a TAG of Qnil.
1118 Before each catch is discarded, unbind all special bindings and
1119 execute all unwind-protect clauses made above that catch. Unwind
1120 the handler stack as we go, so that the proper handlers are in
1121 effect for each unwind-protect clause we run. At the end, restore
1122 some static info saved in CATCH, and longjmp to the location
1123 specified there.
1125 This is used for correct unwinding in Fthrow and Fsignal. */
1127 static _Noreturn void
1128 unwind_to_catch (struct handler *catch, Lisp_Object value)
1130 bool last_time;
1132 eassert (catch->next);
1134 /* Save the value in the tag. */
1135 catch->val = value;
1137 /* Restore certain special C variables. */
1138 set_poll_suppress_count (catch->poll_suppress_count);
1139 unblock_input_to (catch->interrupt_input_blocked);
1143 /* Unwind the specpdl stack, and then restore the proper set of
1144 handlers. */
1145 unbind_to (handlerlist->pdlcount, Qnil);
1146 last_time = handlerlist == catch;
1147 if (! last_time)
1148 handlerlist = handlerlist->next;
1150 while (! last_time);
1152 eassert (handlerlist == catch);
1154 lisp_eval_depth = catch->f_lisp_eval_depth;
1156 sys_longjmp (catch->jmp, 1);
1159 DEFUN ("throw", Fthrow, Sthrow, 2, 2, 0,
1160 doc: /* Throw to the catch for TAG and return VALUE from it.
1161 Both TAG and VALUE are evalled. */
1162 attributes: noreturn)
1163 (register Lisp_Object tag, Lisp_Object value)
1165 struct handler *c;
1167 if (!NILP (tag))
1168 for (c = handlerlist; c; c = c->next)
1170 if (c->type == CATCHER_ALL)
1171 unwind_to_catch (c, Fcons (tag, value));
1172 if (c->type == CATCHER && EQ (c->tag_or_ch, tag))
1173 unwind_to_catch (c, value);
1175 xsignal2 (Qno_catch, tag, value);
1179 DEFUN ("unwind-protect", Funwind_protect, Sunwind_protect, 1, UNEVALLED, 0,
1180 doc: /* Do BODYFORM, protecting with UNWINDFORMS.
1181 If BODYFORM completes normally, its value is returned
1182 after executing the UNWINDFORMS.
1183 If BODYFORM exits nonlocally, the UNWINDFORMS are executed anyway.
1184 usage: (unwind-protect BODYFORM UNWINDFORMS...) */)
1185 (Lisp_Object args)
1187 Lisp_Object val;
1188 ptrdiff_t count = SPECPDL_INDEX ();
1190 record_unwind_protect (prog_ignore, XCDR (args));
1191 val = eval_sub (XCAR (args));
1192 return unbind_to (count, val);
1195 DEFUN ("condition-case", Fcondition_case, Scondition_case, 2, UNEVALLED, 0,
1196 doc: /* Regain control when an error is signaled.
1197 Executes BODYFORM and returns its value if no error happens.
1198 Each element of HANDLERS looks like (CONDITION-NAME BODY...)
1199 where the BODY is made of Lisp expressions.
1201 A handler is applicable to an error
1202 if CONDITION-NAME is one of the error's condition names.
1203 If an error happens, the first applicable handler is run.
1205 The car of a handler may be a list of condition names instead of a
1206 single condition name; then it handles all of them. If the special
1207 condition name `debug' is present in this list, it allows another
1208 condition in the list to run the debugger if `debug-on-error' and the
1209 other usual mechanisms says it should (otherwise, `condition-case'
1210 suppresses the debugger).
1212 When a handler handles an error, control returns to the `condition-case'
1213 and it executes the handler's BODY...
1214 with VAR bound to (ERROR-SYMBOL . SIGNAL-DATA) from the error.
1215 \(If VAR is nil, the handler can't access that information.)
1216 Then the value of the last BODY form is returned from the `condition-case'
1217 expression.
1219 See also the function `signal' for more info.
1220 usage: (condition-case VAR BODYFORM &rest HANDLERS) */)
1221 (Lisp_Object args)
1223 Lisp_Object var = XCAR (args);
1224 Lisp_Object bodyform = XCAR (XCDR (args));
1225 Lisp_Object handlers = XCDR (XCDR (args));
1227 return internal_lisp_condition_case (var, bodyform, handlers);
1230 /* Like Fcondition_case, but the args are separate
1231 rather than passed in a list. Used by Fbyte_code. */
1233 Lisp_Object
1234 internal_lisp_condition_case (Lisp_Object var, Lisp_Object bodyform,
1235 Lisp_Object handlers)
1237 struct handler *oldhandlerlist = handlerlist;
1238 ptrdiff_t CACHEABLE clausenb = 0;
1240 CHECK_SYMBOL (var);
1242 for (Lisp_Object tail = handlers; CONSP (tail); tail = XCDR (tail))
1244 Lisp_Object tem = XCAR (tail);
1245 clausenb++;
1246 if (! (NILP (tem)
1247 || (CONSP (tem)
1248 && (SYMBOLP (XCAR (tem))
1249 || CONSP (XCAR (tem))))))
1250 error ("Invalid condition handler: %s",
1251 SDATA (Fprin1_to_string (tem, Qt)));
1254 /* The first clause is the one that should be checked first, so it
1255 should be added to handlerlist last. So build in CLAUSES a table
1256 that contains HANDLERS but in reverse order. CLAUSES is pointer
1257 to volatile to avoid issues with setjmp and local storage.
1258 SAFE_ALLOCA won't work here due to the setjmp, so impose a
1259 MAX_ALLOCA limit. */
1260 if (MAX_ALLOCA / word_size < clausenb)
1261 memory_full (SIZE_MAX);
1262 Lisp_Object volatile *clauses = alloca (clausenb * sizeof *clauses);
1263 clauses += clausenb;
1264 for (Lisp_Object tail = handlers; CONSP (tail); tail = XCDR (tail))
1265 *--clauses = XCAR (tail);
1266 for (ptrdiff_t i = 0; i < clausenb; i++)
1268 Lisp_Object clause = clauses[i];
1269 Lisp_Object condition = CONSP (clause) ? XCAR (clause) : Qnil;
1270 if (!CONSP (condition))
1271 condition = list1 (condition);
1272 struct handler *c = push_handler (condition, CONDITION_CASE);
1273 if (sys_setjmp (c->jmp))
1275 Lisp_Object val = handlerlist->val;
1276 Lisp_Object volatile *chosen_clause = clauses;
1277 for (struct handler *h = handlerlist->next; h != oldhandlerlist;
1278 h = h->next)
1279 chosen_clause++;
1280 Lisp_Object handler_body = XCDR (*chosen_clause);
1281 handlerlist = oldhandlerlist;
1283 if (NILP (var))
1284 return Fprogn (handler_body);
1286 Lisp_Object handler_var = var;
1287 if (!NILP (Vinternal_interpreter_environment))
1289 val = Fcons (Fcons (var, val),
1290 Vinternal_interpreter_environment);
1291 handler_var = Qinternal_interpreter_environment;
1294 /* Bind HANDLER_VAR to VAL while evaluating HANDLER_BODY.
1295 The unbind_to undoes just this binding; whoever longjumped
1296 to us unwound the stack to C->pdlcount before throwing. */
1297 ptrdiff_t count = SPECPDL_INDEX ();
1298 specbind (handler_var, val);
1299 return unbind_to (count, Fprogn (handler_body));
1303 Lisp_Object result = eval_sub (bodyform);
1304 handlerlist = oldhandlerlist;
1305 return result;
1308 /* Call the function BFUN with no arguments, catching errors within it
1309 according to HANDLERS. If there is an error, call HFUN with
1310 one argument which is the data that describes the error:
1311 (SIGNALNAME . DATA)
1313 HANDLERS can be a list of conditions to catch.
1314 If HANDLERS is Qt, catch all errors.
1315 If HANDLERS is Qerror, catch all errors
1316 but allow the debugger to run if that is enabled. */
1318 Lisp_Object
1319 internal_condition_case (Lisp_Object (*bfun) (void), Lisp_Object handlers,
1320 Lisp_Object (*hfun) (Lisp_Object))
1322 struct handler *c = push_handler (handlers, CONDITION_CASE);
1323 if (sys_setjmp (c->jmp))
1325 Lisp_Object val = handlerlist->val;
1326 clobbered_eassert (handlerlist == c);
1327 handlerlist = handlerlist->next;
1328 return hfun (val);
1330 else
1332 Lisp_Object val = bfun ();
1333 eassert (handlerlist == c);
1334 handlerlist = c->next;
1335 return val;
1339 /* Like internal_condition_case but call BFUN with ARG as its argument. */
1341 Lisp_Object
1342 internal_condition_case_1 (Lisp_Object (*bfun) (Lisp_Object), Lisp_Object arg,
1343 Lisp_Object handlers,
1344 Lisp_Object (*hfun) (Lisp_Object))
1346 struct handler *c = push_handler (handlers, CONDITION_CASE);
1347 if (sys_setjmp (c->jmp))
1349 Lisp_Object val = handlerlist->val;
1350 clobbered_eassert (handlerlist == c);
1351 handlerlist = handlerlist->next;
1352 return hfun (val);
1354 else
1356 Lisp_Object val = bfun (arg);
1357 eassert (handlerlist == c);
1358 handlerlist = c->next;
1359 return val;
1363 /* Like internal_condition_case_1 but call BFUN with ARG1 and ARG2 as
1364 its arguments. */
1366 Lisp_Object
1367 internal_condition_case_2 (Lisp_Object (*bfun) (Lisp_Object, Lisp_Object),
1368 Lisp_Object arg1,
1369 Lisp_Object arg2,
1370 Lisp_Object handlers,
1371 Lisp_Object (*hfun) (Lisp_Object))
1373 struct handler *c = push_handler (handlers, CONDITION_CASE);
1374 if (sys_setjmp (c->jmp))
1376 Lisp_Object val = handlerlist->val;
1377 clobbered_eassert (handlerlist == c);
1378 handlerlist = handlerlist->next;
1379 return hfun (val);
1381 else
1383 Lisp_Object val = bfun (arg1, arg2);
1384 eassert (handlerlist == c);
1385 handlerlist = c->next;
1386 return val;
1390 /* Like internal_condition_case but call BFUN with NARGS as first,
1391 and ARGS as second argument. */
1393 Lisp_Object
1394 internal_condition_case_n (Lisp_Object (*bfun) (ptrdiff_t, Lisp_Object *),
1395 ptrdiff_t nargs,
1396 Lisp_Object *args,
1397 Lisp_Object handlers,
1398 Lisp_Object (*hfun) (Lisp_Object err,
1399 ptrdiff_t nargs,
1400 Lisp_Object *args))
1402 struct handler *c = push_handler (handlers, CONDITION_CASE);
1403 if (sys_setjmp (c->jmp))
1405 Lisp_Object val = handlerlist->val;
1406 clobbered_eassert (handlerlist == c);
1407 handlerlist = handlerlist->next;
1408 return hfun (val, nargs, args);
1410 else
1412 Lisp_Object val = bfun (nargs, args);
1413 eassert (handlerlist == c);
1414 handlerlist = c->next;
1415 return val;
1419 struct handler *
1420 push_handler (Lisp_Object tag_ch_val, enum handlertype handlertype)
1422 struct handler *c = push_handler_nosignal (tag_ch_val, handlertype);
1423 if (!c)
1424 memory_full (sizeof *c);
1425 return c;
1428 struct handler *
1429 push_handler_nosignal (Lisp_Object tag_ch_val, enum handlertype handlertype)
1431 struct handler *CACHEABLE c = handlerlist->nextfree;
1432 if (!c)
1434 c = malloc (sizeof *c);
1435 if (!c)
1436 return c;
1437 if (profiler_memory_running)
1438 malloc_probe (sizeof *c);
1439 c->nextfree = NULL;
1440 handlerlist->nextfree = c;
1442 c->type = handlertype;
1443 c->tag_or_ch = tag_ch_val;
1444 c->val = Qnil;
1445 c->next = handlerlist;
1446 c->f_lisp_eval_depth = lisp_eval_depth;
1447 c->pdlcount = SPECPDL_INDEX ();
1448 c->poll_suppress_count = poll_suppress_count;
1449 c->interrupt_input_blocked = interrupt_input_blocked;
1450 handlerlist = c;
1451 return c;
1455 static Lisp_Object signal_or_quit (Lisp_Object, Lisp_Object, bool);
1456 static Lisp_Object find_handler_clause (Lisp_Object, Lisp_Object);
1457 static bool maybe_call_debugger (Lisp_Object conditions, Lisp_Object sig,
1458 Lisp_Object data);
1460 static void
1461 process_quit_flag (void)
1463 Lisp_Object flag = Vquit_flag;
1464 Vquit_flag = Qnil;
1465 if (EQ (flag, Qkill_emacs))
1466 Fkill_emacs (Qnil);
1467 if (EQ (Vthrow_on_input, flag))
1468 Fthrow (Vthrow_on_input, Qt);
1469 quit ();
1472 /* Check quit-flag and quit if it is non-nil. Typing C-g does not
1473 directly cause a quit; it only sets Vquit_flag. So the program
1474 needs to call maybe_quit at times when it is safe to quit. Every
1475 loop that might run for a long time or might not exit ought to call
1476 maybe_quit at least once, at a safe place. Unless that is
1477 impossible, of course. But it is very desirable to avoid creating
1478 loops where maybe_quit is impossible.
1480 If quit-flag is set to `kill-emacs' the SIGINT handler has received
1481 a request to exit Emacs when it is safe to do.
1483 When not quitting, process any pending signals.
1485 If you change this function, also adapt module_should_quit in
1486 emacs-module.c. */
1488 void
1489 maybe_quit (void)
1491 if (!NILP (Vquit_flag) && NILP (Vinhibit_quit))
1492 process_quit_flag ();
1493 else if (pending_signals)
1494 process_pending_signals ();
1497 DEFUN ("signal", Fsignal, Ssignal, 2, 2, 0,
1498 doc: /* Signal an error. Args are ERROR-SYMBOL and associated DATA.
1499 This function does not return.
1501 An error symbol is a symbol with an `error-conditions' property
1502 that is a list of condition names.
1503 A handler for any of those names will get to handle this signal.
1504 The symbol `error' should normally be one of them.
1506 DATA should be a list. Its elements are printed as part of the error message.
1507 See Info anchor `(elisp)Definition of signal' for some details on how this
1508 error message is constructed.
1509 If the signal is handled, DATA is made available to the handler.
1510 See also the function `condition-case'. */
1511 attributes: noreturn)
1512 (Lisp_Object error_symbol, Lisp_Object data)
1514 signal_or_quit (error_symbol, data, false);
1515 eassume (false);
1518 /* Quit, in response to a keyboard quit request. */
1519 Lisp_Object
1520 quit (void)
1522 return signal_or_quit (Qquit, Qnil, true);
1525 /* Signal an error, or quit. ERROR_SYMBOL and DATA are as with Fsignal.
1526 If KEYBOARD_QUIT, this is a quit; ERROR_SYMBOL should be
1527 Qquit and DATA should be Qnil, and this function may return.
1528 Otherwise this function is like Fsignal and does not return. */
1530 static Lisp_Object
1531 signal_or_quit (Lisp_Object error_symbol, Lisp_Object data, bool keyboard_quit)
1533 /* When memory is full, ERROR-SYMBOL is nil,
1534 and DATA is (REAL-ERROR-SYMBOL . REAL-DATA).
1535 That is a special case--don't do this in other situations. */
1536 Lisp_Object conditions;
1537 Lisp_Object string;
1538 Lisp_Object real_error_symbol
1539 = (NILP (error_symbol) ? Fcar (data) : error_symbol);
1540 Lisp_Object clause = Qnil;
1541 struct handler *h;
1543 if (gc_in_progress || waiting_for_input)
1544 emacs_abort ();
1546 #if 0 /* rms: I don't know why this was here,
1547 but it is surely wrong for an error that is handled. */
1548 #ifdef HAVE_WINDOW_SYSTEM
1549 if (display_hourglass_p)
1550 cancel_hourglass ();
1551 #endif
1552 #endif
1554 /* This hook is used by edebug. */
1555 if (! NILP (Vsignal_hook_function)
1556 && ! NILP (error_symbol)
1557 /* Don't try to call a lisp function if we've already overflowed
1558 the specpdl stack. */
1559 && specpdl_ptr < specpdl + specpdl_size)
1561 /* Edebug takes care of restoring these variables when it exits. */
1562 if (lisp_eval_depth + 20 > max_lisp_eval_depth)
1563 max_lisp_eval_depth = lisp_eval_depth + 20;
1565 if (SPECPDL_INDEX () + 40 > max_specpdl_size)
1566 max_specpdl_size = SPECPDL_INDEX () + 40;
1568 call2 (Vsignal_hook_function, error_symbol, data);
1571 conditions = Fget (real_error_symbol, Qerror_conditions);
1573 /* Remember from where signal was called. Skip over the frame for
1574 `signal' itself. If a frame for `error' follows, skip that,
1575 too. Don't do this when ERROR_SYMBOL is nil, because that
1576 is a memory-full error. */
1577 Vsignaling_function = Qnil;
1578 if (!NILP (error_symbol))
1580 union specbinding *pdl = backtrace_next (backtrace_top ());
1581 if (backtrace_p (pdl) && EQ (backtrace_function (pdl), Qerror))
1582 pdl = backtrace_next (pdl);
1583 if (backtrace_p (pdl))
1584 Vsignaling_function = backtrace_function (pdl);
1587 for (h = handlerlist; h; h = h->next)
1589 if (h->type != CONDITION_CASE)
1590 continue;
1591 clause = find_handler_clause (h->tag_or_ch, conditions);
1592 if (!NILP (clause))
1593 break;
1596 if (/* Don't run the debugger for a memory-full error.
1597 (There is no room in memory to do that!) */
1598 !NILP (error_symbol)
1599 && (!NILP (Vdebug_on_signal)
1600 /* If no handler is present now, try to run the debugger. */
1601 || NILP (clause)
1602 /* A `debug' symbol in the handler list disables the normal
1603 suppression of the debugger. */
1604 || (CONSP (clause) && !NILP (Fmemq (Qdebug, clause)))
1605 /* Special handler that means "print a message and run debugger
1606 if requested". */
1607 || EQ (h->tag_or_ch, Qerror)))
1609 bool debugger_called
1610 = maybe_call_debugger (conditions, error_symbol, data);
1611 /* We can't return values to code which signaled an error, but we
1612 can continue code which has signaled a quit. */
1613 if (keyboard_quit && debugger_called && EQ (real_error_symbol, Qquit))
1614 return Qnil;
1617 if (!NILP (clause))
1619 Lisp_Object unwind_data
1620 = (NILP (error_symbol) ? data : Fcons (error_symbol, data));
1622 unwind_to_catch (h, unwind_data);
1624 else
1626 if (handlerlist != handlerlist_sentinel)
1627 /* FIXME: This will come right back here if there's no `top-level'
1628 catcher. A better solution would be to abort here, and instead
1629 add a catch-all condition handler so we never come here. */
1630 Fthrow (Qtop_level, Qt);
1633 if (! NILP (error_symbol))
1634 data = Fcons (error_symbol, data);
1636 string = Ferror_message_string (data);
1637 fatal ("%s", SDATA (string));
1640 /* Like xsignal, but takes 0, 1, 2, or 3 args instead of a list. */
1642 void
1643 xsignal0 (Lisp_Object error_symbol)
1645 xsignal (error_symbol, Qnil);
1648 void
1649 xsignal1 (Lisp_Object error_symbol, Lisp_Object arg)
1651 xsignal (error_symbol, list1 (arg));
1654 void
1655 xsignal2 (Lisp_Object error_symbol, Lisp_Object arg1, Lisp_Object arg2)
1657 xsignal (error_symbol, list2 (arg1, arg2));
1660 void
1661 xsignal3 (Lisp_Object error_symbol, Lisp_Object arg1, Lisp_Object arg2, Lisp_Object arg3)
1663 xsignal (error_symbol, list3 (arg1, arg2, arg3));
1666 /* Signal `error' with message S, and additional arg ARG.
1667 If ARG is not a genuine list, make it a one-element list. */
1669 void
1670 signal_error (const char *s, Lisp_Object arg)
1672 Lisp_Object tortoise, hare;
1674 hare = tortoise = arg;
1675 while (CONSP (hare))
1677 hare = XCDR (hare);
1678 if (!CONSP (hare))
1679 break;
1681 hare = XCDR (hare);
1682 tortoise = XCDR (tortoise);
1684 if (EQ (hare, tortoise))
1685 break;
1688 if (!NILP (hare))
1689 arg = list1 (arg);
1691 xsignal (Qerror, Fcons (build_string (s), arg));
1695 /* Return true if LIST is a non-nil atom or
1696 a list containing one of CONDITIONS. */
1698 static bool
1699 wants_debugger (Lisp_Object list, Lisp_Object conditions)
1701 if (NILP (list))
1702 return 0;
1703 if (! CONSP (list))
1704 return 1;
1706 while (CONSP (conditions))
1708 Lisp_Object this, tail;
1709 this = XCAR (conditions);
1710 for (tail = list; CONSP (tail); tail = XCDR (tail))
1711 if (EQ (XCAR (tail), this))
1712 return 1;
1713 conditions = XCDR (conditions);
1715 return 0;
1718 /* Return true if an error with condition-symbols CONDITIONS,
1719 and described by SIGNAL-DATA, should skip the debugger
1720 according to debugger-ignored-errors. */
1722 static bool
1723 skip_debugger (Lisp_Object conditions, Lisp_Object data)
1725 Lisp_Object tail;
1726 bool first_string = 1;
1727 Lisp_Object error_message;
1729 error_message = Qnil;
1730 for (tail = Vdebug_ignored_errors; CONSP (tail); tail = XCDR (tail))
1732 if (STRINGP (XCAR (tail)))
1734 if (first_string)
1736 error_message = Ferror_message_string (data);
1737 first_string = 0;
1740 if (fast_string_match (XCAR (tail), error_message) >= 0)
1741 return 1;
1743 else
1745 Lisp_Object contail;
1747 for (contail = conditions; CONSP (contail); contail = XCDR (contail))
1748 if (EQ (XCAR (tail), XCAR (contail)))
1749 return 1;
1753 return 0;
1756 /* Call the debugger if calling it is currently enabled for CONDITIONS.
1757 SIG and DATA describe the signal. There are two ways to pass them:
1758 = SIG is the error symbol, and DATA is the rest of the data.
1759 = SIG is nil, and DATA is (SYMBOL . REST-OF-DATA).
1760 This is for memory-full errors only. */
1761 static bool
1762 maybe_call_debugger (Lisp_Object conditions, Lisp_Object sig, Lisp_Object data)
1764 Lisp_Object combined_data;
1766 combined_data = Fcons (sig, data);
1768 if (
1769 /* Don't try to run the debugger with interrupts blocked.
1770 The editing loop would return anyway. */
1771 ! input_blocked_p ()
1772 && NILP (Vinhibit_debugger)
1773 /* Does user want to enter debugger for this kind of error? */
1774 && (EQ (sig, Qquit)
1775 ? debug_on_quit
1776 : wants_debugger (Vdebug_on_error, conditions))
1777 && ! skip_debugger (conditions, combined_data)
1778 /* RMS: What's this for? */
1779 && when_entered_debugger < num_nonmacro_input_events)
1781 call_debugger (list2 (Qerror, combined_data));
1782 return 1;
1785 return 0;
1788 static Lisp_Object
1789 find_handler_clause (Lisp_Object handlers, Lisp_Object conditions)
1791 register Lisp_Object h;
1793 /* t is used by handlers for all conditions, set up by C code. */
1794 if (EQ (handlers, Qt))
1795 return Qt;
1797 /* error is used similarly, but means print an error message
1798 and run the debugger if that is enabled. */
1799 if (EQ (handlers, Qerror))
1800 return Qt;
1802 for (h = handlers; CONSP (h); h = XCDR (h))
1804 Lisp_Object handler = XCAR (h);
1805 if (!NILP (Fmemq (handler, conditions)))
1806 return handlers;
1809 return Qnil;
1813 /* Format and return a string; called like vprintf. */
1814 Lisp_Object
1815 vformat_string (const char *m, va_list ap)
1817 char buf[4000];
1818 ptrdiff_t size = sizeof buf;
1819 ptrdiff_t size_max = STRING_BYTES_BOUND + 1;
1820 char *buffer = buf;
1821 ptrdiff_t used;
1822 Lisp_Object string;
1824 used = evxprintf (&buffer, &size, buf, size_max, m, ap);
1825 string = make_string (buffer, used);
1826 if (buffer != buf)
1827 xfree (buffer);
1829 return string;
1832 /* Dump an error message; called like vprintf. */
1833 void
1834 verror (const char *m, va_list ap)
1836 xsignal1 (Qerror, vformat_string (m, ap));
1840 /* Dump an error message; called like printf. */
1842 /* VARARGS 1 */
1843 void
1844 error (const char *m, ...)
1846 va_list ap;
1847 va_start (ap, m);
1848 verror (m, ap);
1851 DEFUN ("commandp", Fcommandp, Scommandp, 1, 2, 0,
1852 doc: /* Non-nil if FUNCTION makes provisions for interactive calling.
1853 This means it contains a description for how to read arguments to give it.
1854 The value is nil for an invalid function or a symbol with no function
1855 definition.
1857 Interactively callable functions include strings and vectors (treated
1858 as keyboard macros), lambda-expressions that contain a top-level call
1859 to `interactive', autoload definitions made by `autoload' with non-nil
1860 fourth argument, and some of the built-in functions of Lisp.
1862 Also, a symbol satisfies `commandp' if its function definition does so.
1864 If the optional argument FOR-CALL-INTERACTIVELY is non-nil,
1865 then strings and vectors are not accepted. */)
1866 (Lisp_Object function, Lisp_Object for_call_interactively)
1868 register Lisp_Object fun;
1869 register Lisp_Object funcar;
1870 Lisp_Object if_prop = Qnil;
1872 fun = function;
1874 fun = indirect_function (fun); /* Check cycles. */
1875 if (NILP (fun))
1876 return Qnil;
1878 /* Check an `interactive-form' property if present, analogous to the
1879 function-documentation property. */
1880 fun = function;
1881 while (SYMBOLP (fun))
1883 Lisp_Object tmp = Fget (fun, Qinteractive_form);
1884 if (!NILP (tmp))
1885 if_prop = Qt;
1886 fun = Fsymbol_function (fun);
1889 /* Emacs primitives are interactive if their DEFUN specifies an
1890 interactive spec. */
1891 if (SUBRP (fun))
1892 return XSUBR (fun)->intspec ? Qt : if_prop;
1894 /* Bytecode objects are interactive if they are long enough to
1895 have an element whose index is COMPILED_INTERACTIVE, which is
1896 where the interactive spec is stored. */
1897 else if (COMPILEDP (fun))
1898 return (PVSIZE (fun) > COMPILED_INTERACTIVE ? Qt : if_prop);
1900 /* Strings and vectors are keyboard macros. */
1901 if (STRINGP (fun) || VECTORP (fun))
1902 return (NILP (for_call_interactively) ? Qt : Qnil);
1904 /* Lists may represent commands. */
1905 if (!CONSP (fun))
1906 return Qnil;
1907 funcar = XCAR (fun);
1908 if (EQ (funcar, Qclosure))
1909 return (!NILP (Fassq (Qinteractive, Fcdr (Fcdr (XCDR (fun)))))
1910 ? Qt : if_prop);
1911 else if (EQ (funcar, Qlambda))
1912 return !NILP (Fassq (Qinteractive, Fcdr (XCDR (fun)))) ? Qt : if_prop;
1913 else if (EQ (funcar, Qautoload))
1914 return !NILP (Fcar (Fcdr (Fcdr (XCDR (fun))))) ? Qt : if_prop;
1915 else
1916 return Qnil;
1919 DEFUN ("autoload", Fautoload, Sautoload, 2, 5, 0,
1920 doc: /* Define FUNCTION to autoload from FILE.
1921 FUNCTION is a symbol; FILE is a file name string to pass to `load'.
1922 Third arg DOCSTRING is documentation for the function.
1923 Fourth arg INTERACTIVE if non-nil says function can be called interactively.
1924 Fifth arg TYPE indicates the type of the object:
1925 nil or omitted says FUNCTION is a function,
1926 `keymap' says FUNCTION is really a keymap, and
1927 `macro' or t says FUNCTION is really a macro.
1928 Third through fifth args give info about the real definition.
1929 They default to nil.
1930 If FUNCTION is already defined other than as an autoload,
1931 this does nothing and returns nil. */)
1932 (Lisp_Object function, Lisp_Object file, Lisp_Object docstring, Lisp_Object interactive, Lisp_Object type)
1934 CHECK_SYMBOL (function);
1935 CHECK_STRING (file);
1937 /* If function is defined and not as an autoload, don't override. */
1938 if (!NILP (XSYMBOL (function)->u.s.function)
1939 && !AUTOLOADP (XSYMBOL (function)->u.s.function))
1940 return Qnil;
1942 if (!NILP (Vpurify_flag) && EQ (docstring, make_number (0)))
1943 /* `read1' in lread.c has found the docstring starting with "\
1944 and assumed the docstring will be provided by Snarf-documentation, so it
1945 passed us 0 instead. But that leads to accidental sharing in purecopy's
1946 hash-consing, so we use a (hopefully) unique integer instead. */
1947 docstring = make_number (XHASH (function));
1948 return Fdefalias (function,
1949 list5 (Qautoload, file, docstring, interactive, type),
1950 Qnil);
1953 void
1954 un_autoload (Lisp_Object oldqueue)
1956 Lisp_Object queue, first, second;
1958 /* Queue to unwind is current value of Vautoload_queue.
1959 oldqueue is the shadowed value to leave in Vautoload_queue. */
1960 queue = Vautoload_queue;
1961 Vautoload_queue = oldqueue;
1962 while (CONSP (queue))
1964 first = XCAR (queue);
1965 second = Fcdr (first);
1966 first = Fcar (first);
1967 if (EQ (first, make_number (0)))
1968 Vfeatures = second;
1969 else
1970 Ffset (first, second);
1971 queue = XCDR (queue);
1975 /* Load an autoloaded function.
1976 FUNNAME is the symbol which is the function's name.
1977 FUNDEF is the autoload definition (a list). */
1979 DEFUN ("autoload-do-load", Fautoload_do_load, Sautoload_do_load, 1, 3, 0,
1980 doc: /* Load FUNDEF which should be an autoload.
1981 If non-nil, FUNNAME should be the symbol whose function value is FUNDEF,
1982 in which case the function returns the new autoloaded function value.
1983 If equal to `macro', MACRO-ONLY specifies that FUNDEF should only be loaded if
1984 it defines a macro. */)
1985 (Lisp_Object fundef, Lisp_Object funname, Lisp_Object macro_only)
1987 ptrdiff_t count = SPECPDL_INDEX ();
1989 if (!CONSP (fundef) || !EQ (Qautoload, XCAR (fundef)))
1990 return fundef;
1992 if (EQ (macro_only, Qmacro))
1994 Lisp_Object kind = Fnth (make_number (4), fundef);
1995 if (! (EQ (kind, Qt) || EQ (kind, Qmacro)))
1996 return fundef;
1999 /* This is to make sure that loadup.el gives a clear picture
2000 of what files are preloaded and when. */
2001 if (! NILP (Vpurify_flag))
2002 error ("Attempt to autoload %s while preparing to dump",
2003 SDATA (SYMBOL_NAME (funname)));
2005 CHECK_SYMBOL (funname);
2007 /* Preserve the match data. */
2008 record_unwind_save_match_data ();
2010 /* If autoloading gets an error (which includes the error of failing
2011 to define the function being called), we use Vautoload_queue
2012 to undo function definitions and `provide' calls made by
2013 the function. We do this in the specific case of autoloading
2014 because autoloading is not an explicit request "load this file",
2015 but rather a request to "call this function".
2017 The value saved here is to be restored into Vautoload_queue. */
2018 record_unwind_protect (un_autoload, Vautoload_queue);
2019 Vautoload_queue = Qt;
2020 /* If `macro_only', assume this autoload to be a "best-effort",
2021 so don't signal an error if autoloading fails. */
2022 Fload (Fcar (Fcdr (fundef)), macro_only, Qt, Qnil, Qt);
2024 /* Once loading finishes, don't undo it. */
2025 Vautoload_queue = Qt;
2026 unbind_to (count, Qnil);
2028 if (NILP (funname))
2029 return Qnil;
2030 else
2032 Lisp_Object fun = Findirect_function (funname, Qnil);
2034 if (!NILP (Fequal (fun, fundef)))
2035 error ("Autoloading file %s failed to define function %s",
2036 SDATA (Fcar (Fcar (Vload_history))),
2037 SDATA (SYMBOL_NAME (funname)));
2038 else
2039 return fun;
2044 DEFUN ("eval", Feval, Seval, 1, 2, 0,
2045 doc: /* Evaluate FORM and return its value.
2046 If LEXICAL is t, evaluate using lexical scoping.
2047 LEXICAL can also be an actual lexical environment, in the form of an
2048 alist mapping symbols to their value. */)
2049 (Lisp_Object form, Lisp_Object lexical)
2051 ptrdiff_t count = SPECPDL_INDEX ();
2052 specbind (Qinternal_interpreter_environment,
2053 CONSP (lexical) || NILP (lexical) ? lexical : list1 (Qt));
2054 return unbind_to (count, eval_sub (form));
2057 /* Grow the specpdl stack by one entry.
2058 The caller should have already initialized the entry.
2059 Signal an error on stack overflow.
2061 Make sure that there is always one unused entry past the top of the
2062 stack, so that the just-initialized entry is safely unwound if
2063 memory exhausted and an error is signaled here. Also, allocate a
2064 never-used entry just before the bottom of the stack; sometimes its
2065 address is taken. */
2067 static void
2068 grow_specpdl (void)
2070 specpdl_ptr++;
2072 if (specpdl_ptr == specpdl + specpdl_size)
2074 ptrdiff_t count = SPECPDL_INDEX ();
2075 ptrdiff_t max_size = min (max_specpdl_size, PTRDIFF_MAX - 1000);
2076 union specbinding *pdlvec = specpdl - 1;
2077 ptrdiff_t pdlvecsize = specpdl_size + 1;
2078 if (max_size <= specpdl_size)
2080 if (max_specpdl_size < 400)
2081 max_size = max_specpdl_size = 400;
2082 if (max_size <= specpdl_size)
2083 signal_error ("Variable binding depth exceeds max-specpdl-size",
2084 Qnil);
2086 pdlvec = xpalloc (pdlvec, &pdlvecsize, 1, max_size + 1, sizeof *specpdl);
2087 specpdl = pdlvec + 1;
2088 specpdl_size = pdlvecsize - 1;
2089 specpdl_ptr = specpdl + count;
2093 ptrdiff_t
2094 record_in_backtrace (Lisp_Object function, Lisp_Object *args, ptrdiff_t nargs)
2096 ptrdiff_t count = SPECPDL_INDEX ();
2098 eassert (nargs >= UNEVALLED);
2099 specpdl_ptr->bt.kind = SPECPDL_BACKTRACE;
2100 specpdl_ptr->bt.debug_on_exit = false;
2101 specpdl_ptr->bt.function = function;
2102 current_thread->stack_top = specpdl_ptr->bt.args = args;
2103 specpdl_ptr->bt.nargs = nargs;
2104 grow_specpdl ();
2106 return count;
2109 /* Eval a sub-expression of the current expression (i.e. in the same
2110 lexical scope). */
2111 Lisp_Object
2112 eval_sub (Lisp_Object form)
2114 Lisp_Object fun, val, original_fun, original_args;
2115 Lisp_Object funcar;
2116 ptrdiff_t count;
2118 /* Declare here, as this array may be accessed by call_debugger near
2119 the end of this function. See Bug#21245. */
2120 Lisp_Object argvals[8];
2122 if (SYMBOLP (form))
2124 /* Look up its binding in the lexical environment.
2125 We do not pay attention to the declared_special flag here, since we
2126 already did that when let-binding the variable. */
2127 Lisp_Object lex_binding
2128 = !NILP (Vinternal_interpreter_environment) /* Mere optimization! */
2129 ? Fassq (form, Vinternal_interpreter_environment)
2130 : Qnil;
2131 if (CONSP (lex_binding))
2132 return XCDR (lex_binding);
2133 else
2134 return Fsymbol_value (form);
2137 if (!CONSP (form))
2138 return form;
2140 maybe_quit ();
2142 maybe_gc ();
2144 if (++lisp_eval_depth > max_lisp_eval_depth)
2146 if (max_lisp_eval_depth < 100)
2147 max_lisp_eval_depth = 100;
2148 if (lisp_eval_depth > max_lisp_eval_depth)
2149 error ("Lisp nesting exceeds `max-lisp-eval-depth'");
2152 original_fun = XCAR (form);
2153 original_args = XCDR (form);
2154 CHECK_LIST (original_args);
2156 /* This also protects them from gc. */
2157 count = record_in_backtrace (original_fun, &original_args, UNEVALLED);
2159 if (debug_on_next_call)
2160 do_debug_on_call (Qt, count);
2162 /* At this point, only original_fun and original_args
2163 have values that will be used below. */
2164 retry:
2166 /* Optimize for no indirection. */
2167 fun = original_fun;
2168 if (!SYMBOLP (fun))
2169 fun = Ffunction (Fcons (fun, Qnil));
2170 else if (!NILP (fun) && (fun = XSYMBOL (fun)->u.s.function, SYMBOLP (fun)))
2171 fun = indirect_function (fun);
2173 if (SUBRP (fun))
2175 Lisp_Object args_left = original_args;
2176 Lisp_Object numargs = Flength (args_left);
2178 check_cons_list ();
2180 if (XINT (numargs) < XSUBR (fun)->min_args
2181 || (XSUBR (fun)->max_args >= 0
2182 && XSUBR (fun)->max_args < XINT (numargs)))
2183 xsignal2 (Qwrong_number_of_arguments, original_fun, numargs);
2185 else if (XSUBR (fun)->max_args == UNEVALLED)
2186 val = (XSUBR (fun)->function.aUNEVALLED) (args_left);
2187 else if (XSUBR (fun)->max_args == MANY)
2189 /* Pass a vector of evaluated arguments. */
2190 Lisp_Object *vals;
2191 ptrdiff_t argnum = 0;
2192 USE_SAFE_ALLOCA;
2194 SAFE_ALLOCA_LISP (vals, XINT (numargs));
2196 while (CONSP (args_left) && argnum < XINT (numargs))
2198 Lisp_Object arg = XCAR (args_left);
2199 args_left = XCDR (args_left);
2200 vals[argnum++] = eval_sub (arg);
2203 set_backtrace_args (specpdl + count, vals, argnum);
2205 val = XSUBR (fun)->function.aMANY (argnum, vals);
2207 check_cons_list ();
2208 lisp_eval_depth--;
2209 /* Do the debug-on-exit now, while VALS still exists. */
2210 if (backtrace_debug_on_exit (specpdl + count))
2211 val = call_debugger (list2 (Qexit, val));
2212 SAFE_FREE ();
2213 specpdl_ptr--;
2214 return val;
2216 else
2218 int i, maxargs = XSUBR (fun)->max_args;
2220 for (i = 0; i < maxargs; i++)
2222 argvals[i] = eval_sub (Fcar (args_left));
2223 args_left = Fcdr (args_left);
2226 set_backtrace_args (specpdl + count, argvals, XINT (numargs));
2228 switch (i)
2230 case 0:
2231 val = (XSUBR (fun)->function.a0 ());
2232 break;
2233 case 1:
2234 val = (XSUBR (fun)->function.a1 (argvals[0]));
2235 break;
2236 case 2:
2237 val = (XSUBR (fun)->function.a2 (argvals[0], argvals[1]));
2238 break;
2239 case 3:
2240 val = (XSUBR (fun)->function.a3
2241 (argvals[0], argvals[1], argvals[2]));
2242 break;
2243 case 4:
2244 val = (XSUBR (fun)->function.a4
2245 (argvals[0], argvals[1], argvals[2], argvals[3]));
2246 break;
2247 case 5:
2248 val = (XSUBR (fun)->function.a5
2249 (argvals[0], argvals[1], argvals[2], argvals[3],
2250 argvals[4]));
2251 break;
2252 case 6:
2253 val = (XSUBR (fun)->function.a6
2254 (argvals[0], argvals[1], argvals[2], argvals[3],
2255 argvals[4], argvals[5]));
2256 break;
2257 case 7:
2258 val = (XSUBR (fun)->function.a7
2259 (argvals[0], argvals[1], argvals[2], argvals[3],
2260 argvals[4], argvals[5], argvals[6]));
2261 break;
2263 case 8:
2264 val = (XSUBR (fun)->function.a8
2265 (argvals[0], argvals[1], argvals[2], argvals[3],
2266 argvals[4], argvals[5], argvals[6], argvals[7]));
2267 break;
2269 default:
2270 /* Someone has created a subr that takes more arguments than
2271 is supported by this code. We need to either rewrite the
2272 subr to use a different argument protocol, or add more
2273 cases to this switch. */
2274 emacs_abort ();
2278 else if (COMPILEDP (fun) || MODULE_FUNCTIONP (fun))
2279 return apply_lambda (fun, original_args, count);
2280 else
2282 if (NILP (fun))
2283 xsignal1 (Qvoid_function, original_fun);
2284 if (!CONSP (fun))
2285 xsignal1 (Qinvalid_function, original_fun);
2286 funcar = XCAR (fun);
2287 if (!SYMBOLP (funcar))
2288 xsignal1 (Qinvalid_function, original_fun);
2289 if (EQ (funcar, Qautoload))
2291 Fautoload_do_load (fun, original_fun, Qnil);
2292 goto retry;
2294 if (EQ (funcar, Qmacro))
2296 ptrdiff_t count1 = SPECPDL_INDEX ();
2297 Lisp_Object exp;
2298 /* Bind lexical-binding during expansion of the macro, so the
2299 macro can know reliably if the code it outputs will be
2300 interpreted using lexical-binding or not. */
2301 specbind (Qlexical_binding,
2302 NILP (Vinternal_interpreter_environment) ? Qnil : Qt);
2303 exp = apply1 (Fcdr (fun), original_args);
2304 unbind_to (count1, Qnil);
2305 val = eval_sub (exp);
2307 else if (EQ (funcar, Qlambda)
2308 || EQ (funcar, Qclosure))
2309 return apply_lambda (fun, original_args, count);
2310 else
2311 xsignal1 (Qinvalid_function, original_fun);
2313 check_cons_list ();
2315 lisp_eval_depth--;
2316 if (backtrace_debug_on_exit (specpdl + count))
2317 val = call_debugger (list2 (Qexit, val));
2318 specpdl_ptr--;
2320 return val;
2323 DEFUN ("apply", Fapply, Sapply, 1, MANY, 0,
2324 doc: /* Call FUNCTION with our remaining args, using our last arg as list of args.
2325 Then return the value FUNCTION returns.
2326 Thus, (apply \\='+ 1 2 \\='(3 4)) returns 10.
2327 usage: (apply FUNCTION &rest ARGUMENTS) */)
2328 (ptrdiff_t nargs, Lisp_Object *args)
2330 ptrdiff_t i, numargs, funcall_nargs;
2331 register Lisp_Object *funcall_args = NULL;
2332 register Lisp_Object spread_arg = args[nargs - 1];
2333 Lisp_Object fun = args[0];
2334 Lisp_Object retval;
2335 USE_SAFE_ALLOCA;
2337 CHECK_LIST (spread_arg);
2339 numargs = XINT (Flength (spread_arg));
2341 if (numargs == 0)
2342 return Ffuncall (nargs - 1, args);
2343 else if (numargs == 1)
2345 args [nargs - 1] = XCAR (spread_arg);
2346 return Ffuncall (nargs, args);
2349 numargs += nargs - 2;
2351 /* Optimize for no indirection. */
2352 if (SYMBOLP (fun) && !NILP (fun)
2353 && (fun = XSYMBOL (fun)->u.s.function, SYMBOLP (fun)))
2355 fun = indirect_function (fun);
2356 if (NILP (fun))
2357 /* Let funcall get the error. */
2358 fun = args[0];
2361 if (SUBRP (fun) && XSUBR (fun)->max_args > numargs
2362 /* Don't hide an error by adding missing arguments. */
2363 && numargs >= XSUBR (fun)->min_args)
2365 /* Avoid making funcall cons up a yet another new vector of arguments
2366 by explicitly supplying nil's for optional values. */
2367 SAFE_ALLOCA_LISP (funcall_args, 1 + XSUBR (fun)->max_args);
2368 memclear (funcall_args + numargs + 1,
2369 (XSUBR (fun)->max_args - numargs) * word_size);
2370 funcall_nargs = 1 + XSUBR (fun)->max_args;
2372 else
2373 { /* We add 1 to numargs because funcall_args includes the
2374 function itself as well as its arguments. */
2375 SAFE_ALLOCA_LISP (funcall_args, 1 + numargs);
2376 funcall_nargs = 1 + numargs;
2379 memcpy (funcall_args, args, nargs * word_size);
2380 /* Spread the last arg we got. Its first element goes in
2381 the slot that it used to occupy, hence this value of I. */
2382 i = nargs - 1;
2383 while (!NILP (spread_arg))
2385 funcall_args [i++] = XCAR (spread_arg);
2386 spread_arg = XCDR (spread_arg);
2389 retval = Ffuncall (funcall_nargs, funcall_args);
2391 SAFE_FREE ();
2392 return retval;
2395 /* Run hook variables in various ways. */
2397 static Lisp_Object
2398 funcall_nil (ptrdiff_t nargs, Lisp_Object *args)
2400 Ffuncall (nargs, args);
2401 return Qnil;
2404 DEFUN ("run-hooks", Frun_hooks, Srun_hooks, 0, MANY, 0,
2405 doc: /* Run each hook in HOOKS.
2406 Each argument should be a symbol, a hook variable.
2407 These symbols are processed in the order specified.
2408 If a hook symbol has a non-nil value, that value may be a function
2409 or a list of functions to be called to run the hook.
2410 If the value is a function, it is called with no arguments.
2411 If it is a list, the elements are called, in order, with no arguments.
2413 Major modes should not use this function directly to run their mode
2414 hook; they should use `run-mode-hooks' instead.
2416 Do not use `make-local-variable' to make a hook variable buffer-local.
2417 Instead, use `add-hook' and specify t for the LOCAL argument.
2418 usage: (run-hooks &rest HOOKS) */)
2419 (ptrdiff_t nargs, Lisp_Object *args)
2421 ptrdiff_t i;
2423 for (i = 0; i < nargs; i++)
2424 run_hook (args[i]);
2426 return Qnil;
2429 DEFUN ("run-hook-with-args", Frun_hook_with_args,
2430 Srun_hook_with_args, 1, MANY, 0,
2431 doc: /* Run HOOK with the specified arguments ARGS.
2432 HOOK should be a symbol, a hook variable. The value of HOOK
2433 may be nil, a function, or a list of functions. Call each
2434 function in order with arguments ARGS. The final return value
2435 is unspecified.
2437 Do not use `make-local-variable' to make a hook variable buffer-local.
2438 Instead, use `add-hook' and specify t for the LOCAL argument.
2439 usage: (run-hook-with-args HOOK &rest ARGS) */)
2440 (ptrdiff_t nargs, Lisp_Object *args)
2442 return run_hook_with_args (nargs, args, funcall_nil);
2445 /* NB this one still documents a specific non-nil return value.
2446 (As did run-hook-with-args and run-hook-with-args-until-failure
2447 until they were changed in 24.1.) */
2448 DEFUN ("run-hook-with-args-until-success", Frun_hook_with_args_until_success,
2449 Srun_hook_with_args_until_success, 1, MANY, 0,
2450 doc: /* Run HOOK with the specified arguments ARGS.
2451 HOOK should be a symbol, a hook variable. The value of HOOK
2452 may be nil, a function, or a list of functions. Call each
2453 function in order with arguments ARGS, stopping at the first
2454 one that returns non-nil, and return that value. Otherwise (if
2455 all functions return nil, or if there are no functions to call),
2456 return nil.
2458 Do not use `make-local-variable' to make a hook variable buffer-local.
2459 Instead, use `add-hook' and specify t for the LOCAL argument.
2460 usage: (run-hook-with-args-until-success HOOK &rest ARGS) */)
2461 (ptrdiff_t nargs, Lisp_Object *args)
2463 return run_hook_with_args (nargs, args, Ffuncall);
2466 static Lisp_Object
2467 funcall_not (ptrdiff_t nargs, Lisp_Object *args)
2469 return NILP (Ffuncall (nargs, args)) ? Qt : Qnil;
2472 DEFUN ("run-hook-with-args-until-failure", Frun_hook_with_args_until_failure,
2473 Srun_hook_with_args_until_failure, 1, MANY, 0,
2474 doc: /* Run HOOK with the specified arguments ARGS.
2475 HOOK should be a symbol, a hook variable. The value of HOOK
2476 may be nil, a function, or a list of functions. Call each
2477 function in order with arguments ARGS, stopping at the first
2478 one that returns nil, and return nil. Otherwise (if all functions
2479 return non-nil, or if there are no functions to call), return non-nil
2480 \(do not rely on the precise return value in this case).
2482 Do not use `make-local-variable' to make a hook variable buffer-local.
2483 Instead, use `add-hook' and specify t for the LOCAL argument.
2484 usage: (run-hook-with-args-until-failure HOOK &rest ARGS) */)
2485 (ptrdiff_t nargs, Lisp_Object *args)
2487 return NILP (run_hook_with_args (nargs, args, funcall_not)) ? Qt : Qnil;
2490 static Lisp_Object
2491 run_hook_wrapped_funcall (ptrdiff_t nargs, Lisp_Object *args)
2493 Lisp_Object tmp = args[0], ret;
2494 args[0] = args[1];
2495 args[1] = tmp;
2496 ret = Ffuncall (nargs, args);
2497 args[1] = args[0];
2498 args[0] = tmp;
2499 return ret;
2502 DEFUN ("run-hook-wrapped", Frun_hook_wrapped, Srun_hook_wrapped, 2, MANY, 0,
2503 doc: /* Run HOOK, passing each function through WRAP-FUNCTION.
2504 I.e. instead of calling each function FUN directly with arguments ARGS,
2505 it calls WRAP-FUNCTION with arguments FUN and ARGS.
2506 As soon as a call to WRAP-FUNCTION returns non-nil, `run-hook-wrapped'
2507 aborts and returns that value.
2508 usage: (run-hook-wrapped HOOK WRAP-FUNCTION &rest ARGS) */)
2509 (ptrdiff_t nargs, Lisp_Object *args)
2511 return run_hook_with_args (nargs, args, run_hook_wrapped_funcall);
2514 /* ARGS[0] should be a hook symbol.
2515 Call each of the functions in the hook value, passing each of them
2516 as arguments all the rest of ARGS (all NARGS - 1 elements).
2517 FUNCALL specifies how to call each function on the hook. */
2519 Lisp_Object
2520 run_hook_with_args (ptrdiff_t nargs, Lisp_Object *args,
2521 Lisp_Object (*funcall) (ptrdiff_t nargs, Lisp_Object *args))
2523 Lisp_Object sym, val, ret = Qnil;
2525 /* If we are dying or still initializing,
2526 don't do anything--it would probably crash if we tried. */
2527 if (NILP (Vrun_hooks))
2528 return Qnil;
2530 sym = args[0];
2531 val = find_symbol_value (sym);
2533 if (EQ (val, Qunbound) || NILP (val))
2534 return ret;
2535 else if (!CONSP (val) || FUNCTIONP (val))
2537 args[0] = val;
2538 return funcall (nargs, args);
2540 else
2542 Lisp_Object global_vals = Qnil;
2544 for (;
2545 CONSP (val) && NILP (ret);
2546 val = XCDR (val))
2548 if (EQ (XCAR (val), Qt))
2550 /* t indicates this hook has a local binding;
2551 it means to run the global binding too. */
2552 global_vals = Fdefault_value (sym);
2553 if (NILP (global_vals)) continue;
2555 if (!CONSP (global_vals) || EQ (XCAR (global_vals), Qlambda))
2557 args[0] = global_vals;
2558 ret = funcall (nargs, args);
2560 else
2562 for (;
2563 CONSP (global_vals) && NILP (ret);
2564 global_vals = XCDR (global_vals))
2566 args[0] = XCAR (global_vals);
2567 /* In a global value, t should not occur. If it does, we
2568 must ignore it to avoid an endless loop. */
2569 if (!EQ (args[0], Qt))
2570 ret = funcall (nargs, args);
2574 else
2576 args[0] = XCAR (val);
2577 ret = funcall (nargs, args);
2581 return ret;
2585 /* Run the hook HOOK, giving each function no args. */
2587 void
2588 run_hook (Lisp_Object hook)
2590 Frun_hook_with_args (1, &hook);
2593 /* Run the hook HOOK, giving each function the two args ARG1 and ARG2. */
2595 void
2596 run_hook_with_args_2 (Lisp_Object hook, Lisp_Object arg1, Lisp_Object arg2)
2598 CALLN (Frun_hook_with_args, hook, arg1, arg2);
2601 /* Apply fn to arg. */
2602 Lisp_Object
2603 apply1 (Lisp_Object fn, Lisp_Object arg)
2605 return NILP (arg) ? Ffuncall (1, &fn) : CALLN (Fapply, fn, arg);
2608 /* Call function fn on no arguments. */
2609 Lisp_Object
2610 call0 (Lisp_Object fn)
2612 return Ffuncall (1, &fn);
2615 /* Call function fn with 1 argument arg1. */
2616 /* ARGSUSED */
2617 Lisp_Object
2618 call1 (Lisp_Object fn, Lisp_Object arg1)
2620 return CALLN (Ffuncall, fn, arg1);
2623 /* Call function fn with 2 arguments arg1, arg2. */
2624 /* ARGSUSED */
2625 Lisp_Object
2626 call2 (Lisp_Object fn, Lisp_Object arg1, Lisp_Object arg2)
2628 return CALLN (Ffuncall, fn, arg1, arg2);
2631 /* Call function fn with 3 arguments arg1, arg2, arg3. */
2632 /* ARGSUSED */
2633 Lisp_Object
2634 call3 (Lisp_Object fn, Lisp_Object arg1, Lisp_Object arg2, Lisp_Object arg3)
2636 return CALLN (Ffuncall, fn, arg1, arg2, arg3);
2639 /* Call function fn with 4 arguments arg1, arg2, arg3, arg4. */
2640 /* ARGSUSED */
2641 Lisp_Object
2642 call4 (Lisp_Object fn, Lisp_Object arg1, Lisp_Object arg2, Lisp_Object arg3,
2643 Lisp_Object arg4)
2645 return CALLN (Ffuncall, fn, arg1, arg2, arg3, arg4);
2648 /* Call function fn with 5 arguments arg1, arg2, arg3, arg4, arg5. */
2649 /* ARGSUSED */
2650 Lisp_Object
2651 call5 (Lisp_Object fn, Lisp_Object arg1, Lisp_Object arg2, Lisp_Object arg3,
2652 Lisp_Object arg4, Lisp_Object arg5)
2654 return CALLN (Ffuncall, fn, arg1, arg2, arg3, arg4, arg5);
2657 /* Call function fn with 6 arguments arg1, arg2, arg3, arg4, arg5, arg6. */
2658 /* ARGSUSED */
2659 Lisp_Object
2660 call6 (Lisp_Object fn, Lisp_Object arg1, Lisp_Object arg2, Lisp_Object arg3,
2661 Lisp_Object arg4, Lisp_Object arg5, Lisp_Object arg6)
2663 return CALLN (Ffuncall, fn, arg1, arg2, arg3, arg4, arg5, arg6);
2666 /* Call function fn with 7 arguments arg1, arg2, arg3, arg4, arg5, arg6, arg7. */
2667 /* ARGSUSED */
2668 Lisp_Object
2669 call7 (Lisp_Object fn, Lisp_Object arg1, Lisp_Object arg2, Lisp_Object arg3,
2670 Lisp_Object arg4, Lisp_Object arg5, Lisp_Object arg6, Lisp_Object arg7)
2672 return CALLN (Ffuncall, fn, arg1, arg2, arg3, arg4, arg5, arg6, arg7);
2675 /* Call function fn with 8 arguments arg1, arg2, arg3, arg4, arg5,
2676 arg6, arg7, arg8. */
2677 /* ARGSUSED */
2678 Lisp_Object
2679 call8 (Lisp_Object fn, Lisp_Object arg1, Lisp_Object arg2, Lisp_Object arg3,
2680 Lisp_Object arg4, Lisp_Object arg5, Lisp_Object arg6, Lisp_Object arg7,
2681 Lisp_Object arg8)
2683 return CALLN (Ffuncall, fn, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8);
2686 DEFUN ("functionp", Ffunctionp, Sfunctionp, 1, 1, 0,
2687 doc: /* Return t if OBJECT is a function. */)
2688 (Lisp_Object object)
2690 if (FUNCTIONP (object))
2691 return Qt;
2692 return Qnil;
2695 bool
2696 FUNCTIONP (Lisp_Object object)
2698 if (SYMBOLP (object) && !NILP (Ffboundp (object)))
2700 object = Findirect_function (object, Qt);
2702 if (CONSP (object) && EQ (XCAR (object), Qautoload))
2704 /* Autoloaded symbols are functions, except if they load
2705 macros or keymaps. */
2706 for (int i = 0; i < 4 && CONSP (object); i++)
2707 object = XCDR (object);
2709 return ! (CONSP (object) && !NILP (XCAR (object)));
2713 if (SUBRP (object))
2714 return XSUBR (object)->max_args != UNEVALLED;
2715 else if (COMPILEDP (object) || MODULE_FUNCTIONP (object))
2716 return true;
2717 else if (CONSP (object))
2719 Lisp_Object car = XCAR (object);
2720 return EQ (car, Qlambda) || EQ (car, Qclosure);
2722 else
2723 return false;
2726 DEFUN ("funcall", Ffuncall, Sfuncall, 1, MANY, 0,
2727 doc: /* Call first argument as a function, passing remaining arguments to it.
2728 Return the value that function returns.
2729 Thus, (funcall \\='cons \\='x \\='y) returns (x . y).
2730 usage: (funcall FUNCTION &rest ARGUMENTS) */)
2731 (ptrdiff_t nargs, Lisp_Object *args)
2733 Lisp_Object fun, original_fun;
2734 Lisp_Object funcar;
2735 ptrdiff_t numargs = nargs - 1;
2736 Lisp_Object val;
2737 ptrdiff_t count;
2739 maybe_quit ();
2741 if (++lisp_eval_depth > max_lisp_eval_depth)
2743 if (max_lisp_eval_depth < 100)
2744 max_lisp_eval_depth = 100;
2745 if (lisp_eval_depth > max_lisp_eval_depth)
2746 error ("Lisp nesting exceeds `max-lisp-eval-depth'");
2749 count = record_in_backtrace (args[0], &args[1], nargs - 1);
2751 maybe_gc ();
2753 if (debug_on_next_call)
2754 do_debug_on_call (Qlambda, count);
2756 check_cons_list ();
2758 original_fun = args[0];
2760 retry:
2762 /* Optimize for no indirection. */
2763 fun = original_fun;
2764 if (SYMBOLP (fun) && !NILP (fun)
2765 && (fun = XSYMBOL (fun)->u.s.function, SYMBOLP (fun)))
2766 fun = indirect_function (fun);
2768 if (SUBRP (fun))
2769 val = funcall_subr (XSUBR (fun), numargs, args + 1);
2770 else if (COMPILEDP (fun) || MODULE_FUNCTIONP (fun))
2771 val = funcall_lambda (fun, numargs, args + 1);
2772 else
2774 if (NILP (fun))
2775 xsignal1 (Qvoid_function, original_fun);
2776 if (!CONSP (fun))
2777 xsignal1 (Qinvalid_function, original_fun);
2778 funcar = XCAR (fun);
2779 if (!SYMBOLP (funcar))
2780 xsignal1 (Qinvalid_function, original_fun);
2781 if (EQ (funcar, Qlambda)
2782 || EQ (funcar, Qclosure))
2783 val = funcall_lambda (fun, numargs, args + 1);
2784 else if (EQ (funcar, Qautoload))
2786 Fautoload_do_load (fun, original_fun, Qnil);
2787 check_cons_list ();
2788 goto retry;
2790 else
2791 xsignal1 (Qinvalid_function, original_fun);
2793 check_cons_list ();
2794 lisp_eval_depth--;
2795 if (backtrace_debug_on_exit (specpdl + count))
2796 val = call_debugger (list2 (Qexit, val));
2797 specpdl_ptr--;
2798 return val;
2802 /* Apply a C subroutine SUBR to the NUMARGS evaluated arguments in ARG_VECTOR
2803 and return the result of evaluation. */
2805 Lisp_Object
2806 funcall_subr (struct Lisp_Subr *subr, ptrdiff_t numargs, Lisp_Object *args)
2808 if (numargs < subr->min_args
2809 || (subr->max_args >= 0 && subr->max_args < numargs))
2811 Lisp_Object fun;
2812 XSETSUBR (fun, subr);
2813 xsignal2 (Qwrong_number_of_arguments, fun, make_number (numargs));
2816 else if (subr->max_args == UNEVALLED)
2818 Lisp_Object fun;
2819 XSETSUBR (fun, subr);
2820 xsignal1 (Qinvalid_function, fun);
2823 else if (subr->max_args == MANY)
2824 return (subr->function.aMANY) (numargs, args);
2825 else
2827 Lisp_Object internal_argbuf[8];
2828 Lisp_Object *internal_args;
2829 if (subr->max_args > numargs)
2831 eassert (subr->max_args <= ARRAYELTS (internal_argbuf));
2832 internal_args = internal_argbuf;
2833 memcpy (internal_args, args, numargs * word_size);
2834 memclear (internal_args + numargs,
2835 (subr->max_args - numargs) * word_size);
2837 else
2838 internal_args = args;
2839 switch (subr->max_args)
2841 case 0:
2842 return (subr->function.a0 ());
2843 case 1:
2844 return (subr->function.a1 (internal_args[0]));
2845 case 2:
2846 return (subr->function.a2
2847 (internal_args[0], internal_args[1]));
2848 case 3:
2849 return (subr->function.a3
2850 (internal_args[0], internal_args[1], internal_args[2]));
2851 case 4:
2852 return (subr->function.a4
2853 (internal_args[0], internal_args[1], internal_args[2],
2854 internal_args[3]));
2855 case 5:
2856 return (subr->function.a5
2857 (internal_args[0], internal_args[1], internal_args[2],
2858 internal_args[3], internal_args[4]));
2859 case 6:
2860 return (subr->function.a6
2861 (internal_args[0], internal_args[1], internal_args[2],
2862 internal_args[3], internal_args[4], internal_args[5]));
2863 case 7:
2864 return (subr->function.a7
2865 (internal_args[0], internal_args[1], internal_args[2],
2866 internal_args[3], internal_args[4], internal_args[5],
2867 internal_args[6]));
2868 case 8:
2869 return (subr->function.a8
2870 (internal_args[0], internal_args[1], internal_args[2],
2871 internal_args[3], internal_args[4], internal_args[5],
2872 internal_args[6], internal_args[7]));
2874 default:
2876 /* If a subr takes more than 8 arguments without using MANY
2877 or UNEVALLED, we need to extend this function to support it.
2878 Until this is done, there is no way to call the function. */
2879 emacs_abort ();
2884 static Lisp_Object
2885 apply_lambda (Lisp_Object fun, Lisp_Object args, ptrdiff_t count)
2887 Lisp_Object args_left;
2888 ptrdiff_t i;
2889 EMACS_INT numargs;
2890 Lisp_Object *arg_vector;
2891 Lisp_Object tem;
2892 USE_SAFE_ALLOCA;
2894 numargs = XFASTINT (Flength (args));
2895 SAFE_ALLOCA_LISP (arg_vector, numargs);
2896 args_left = args;
2898 for (i = 0; i < numargs; )
2900 tem = Fcar (args_left), args_left = Fcdr (args_left);
2901 tem = eval_sub (tem);
2902 arg_vector[i++] = tem;
2905 set_backtrace_args (specpdl + count, arg_vector, i);
2906 tem = funcall_lambda (fun, numargs, arg_vector);
2908 check_cons_list ();
2909 lisp_eval_depth--;
2910 /* Do the debug-on-exit now, while arg_vector still exists. */
2911 if (backtrace_debug_on_exit (specpdl + count))
2912 tem = call_debugger (list2 (Qexit, tem));
2913 SAFE_FREE ();
2914 specpdl_ptr--;
2915 return tem;
2918 /* Apply a Lisp function FUN to the NARGS evaluated arguments in ARG_VECTOR
2919 and return the result of evaluation.
2920 FUN must be either a lambda-expression, a compiled-code object,
2921 or a module function. */
2923 static Lisp_Object
2924 funcall_lambda (Lisp_Object fun, ptrdiff_t nargs,
2925 register Lisp_Object *arg_vector)
2927 Lisp_Object val, syms_left, next, lexenv;
2928 ptrdiff_t count = SPECPDL_INDEX ();
2929 ptrdiff_t i;
2930 bool optional, rest;
2932 if (CONSP (fun))
2934 if (EQ (XCAR (fun), Qclosure))
2936 Lisp_Object cdr = XCDR (fun); /* Drop `closure'. */
2937 if (! CONSP (cdr))
2938 xsignal1 (Qinvalid_function, fun);
2939 fun = cdr;
2940 lexenv = XCAR (fun);
2942 else
2943 lexenv = Qnil;
2944 syms_left = XCDR (fun);
2945 if (CONSP (syms_left))
2946 syms_left = XCAR (syms_left);
2947 else
2948 xsignal1 (Qinvalid_function, fun);
2950 else if (COMPILEDP (fun))
2952 ptrdiff_t size = PVSIZE (fun);
2953 if (size <= COMPILED_STACK_DEPTH)
2954 xsignal1 (Qinvalid_function, fun);
2955 syms_left = AREF (fun, COMPILED_ARGLIST);
2956 if (INTEGERP (syms_left))
2957 /* A byte-code object with an integer args template means we
2958 shouldn't bind any arguments, instead just call the byte-code
2959 interpreter directly; it will push arguments as necessary.
2961 Byte-code objects with a nil args template (the default)
2962 have dynamically-bound arguments, and use the
2963 argument-binding code below instead (as do all interpreted
2964 functions, even lexically bound ones). */
2966 /* If we have not actually read the bytecode string
2967 and constants vector yet, fetch them from the file. */
2968 if (CONSP (AREF (fun, COMPILED_BYTECODE)))
2969 Ffetch_bytecode (fun);
2970 return exec_byte_code (AREF (fun, COMPILED_BYTECODE),
2971 AREF (fun, COMPILED_CONSTANTS),
2972 AREF (fun, COMPILED_STACK_DEPTH),
2973 syms_left,
2974 nargs, arg_vector);
2976 lexenv = Qnil;
2978 #ifdef HAVE_MODULES
2979 else if (MODULE_FUNCTIONP (fun))
2980 return funcall_module (fun, nargs, arg_vector);
2981 #endif
2982 else
2983 emacs_abort ();
2985 i = optional = rest = 0;
2986 bool previous_optional_or_rest = false;
2987 for (; CONSP (syms_left); syms_left = XCDR (syms_left))
2989 maybe_quit ();
2991 next = XCAR (syms_left);
2992 if (!SYMBOLP (next))
2993 xsignal1 (Qinvalid_function, fun);
2995 if (EQ (next, Qand_rest))
2997 if (rest || previous_optional_or_rest)
2998 xsignal1 (Qinvalid_function, fun);
2999 rest = 1;
3000 previous_optional_or_rest = true;
3002 else if (EQ (next, Qand_optional))
3004 if (optional || rest || previous_optional_or_rest)
3005 xsignal1 (Qinvalid_function, fun);
3006 optional = 1;
3007 previous_optional_or_rest = true;
3009 else
3011 Lisp_Object arg;
3012 if (rest)
3014 arg = Flist (nargs - i, &arg_vector[i]);
3015 i = nargs;
3017 else if (i < nargs)
3018 arg = arg_vector[i++];
3019 else if (!optional)
3020 xsignal2 (Qwrong_number_of_arguments, fun, make_number (nargs));
3021 else
3022 arg = Qnil;
3024 /* Bind the argument. */
3025 if (!NILP (lexenv) && SYMBOLP (next))
3026 /* Lexically bind NEXT by adding it to the lexenv alist. */
3027 lexenv = Fcons (Fcons (next, arg), lexenv);
3028 else
3029 /* Dynamically bind NEXT. */
3030 specbind (next, arg);
3031 previous_optional_or_rest = false;
3035 if (!NILP (syms_left) || previous_optional_or_rest)
3036 xsignal1 (Qinvalid_function, fun);
3037 else if (i < nargs)
3038 xsignal2 (Qwrong_number_of_arguments, fun, make_number (nargs));
3040 if (!EQ (lexenv, Vinternal_interpreter_environment))
3041 /* Instantiate a new lexical environment. */
3042 specbind (Qinternal_interpreter_environment, lexenv);
3044 if (CONSP (fun))
3045 val = Fprogn (XCDR (XCDR (fun)));
3046 else
3048 /* If we have not actually read the bytecode string
3049 and constants vector yet, fetch them from the file. */
3050 if (CONSP (AREF (fun, COMPILED_BYTECODE)))
3051 Ffetch_bytecode (fun);
3052 val = exec_byte_code (AREF (fun, COMPILED_BYTECODE),
3053 AREF (fun, COMPILED_CONSTANTS),
3054 AREF (fun, COMPILED_STACK_DEPTH),
3055 Qnil, 0, 0);
3058 return unbind_to (count, val);
3061 DEFUN ("func-arity", Ffunc_arity, Sfunc_arity, 1, 1, 0,
3062 doc: /* Return minimum and maximum number of args allowed for FUNCTION.
3063 FUNCTION must be a function of some kind.
3064 The returned value is a cons cell (MIN . MAX). MIN is the minimum number
3065 of args. MAX is the maximum number, or the symbol `many', for a
3066 function with `&rest' args, or `unevalled' for a special form. */)
3067 (Lisp_Object function)
3069 Lisp_Object original;
3070 Lisp_Object funcar;
3071 Lisp_Object result;
3073 original = function;
3075 retry:
3077 /* Optimize for no indirection. */
3078 function = original;
3079 if (SYMBOLP (function) && !NILP (function))
3081 function = XSYMBOL (function)->u.s.function;
3082 if (SYMBOLP (function))
3083 function = indirect_function (function);
3086 if (CONSP (function) && EQ (XCAR (function), Qmacro))
3087 function = XCDR (function);
3089 if (SUBRP (function))
3090 result = Fsubr_arity (function);
3091 else if (COMPILEDP (function))
3092 result = lambda_arity (function);
3093 #ifdef HAVE_MODULES
3094 else if (MODULE_FUNCTIONP (function))
3095 result = module_function_arity (XMODULE_FUNCTION (function));
3096 #endif
3097 else
3099 if (NILP (function))
3100 xsignal1 (Qvoid_function, original);
3101 if (!CONSP (function))
3102 xsignal1 (Qinvalid_function, original);
3103 funcar = XCAR (function);
3104 if (!SYMBOLP (funcar))
3105 xsignal1 (Qinvalid_function, original);
3106 if (EQ (funcar, Qlambda)
3107 || EQ (funcar, Qclosure))
3108 result = lambda_arity (function);
3109 else if (EQ (funcar, Qautoload))
3111 Fautoload_do_load (function, original, Qnil);
3112 goto retry;
3114 else
3115 xsignal1 (Qinvalid_function, original);
3117 return result;
3120 /* FUN must be either a lambda-expression or a compiled-code object. */
3121 static Lisp_Object
3122 lambda_arity (Lisp_Object fun)
3124 Lisp_Object syms_left;
3126 if (CONSP (fun))
3128 if (EQ (XCAR (fun), Qclosure))
3130 fun = XCDR (fun); /* Drop `closure'. */
3131 CHECK_CONS (fun);
3133 syms_left = XCDR (fun);
3134 if (CONSP (syms_left))
3135 syms_left = XCAR (syms_left);
3136 else
3137 xsignal1 (Qinvalid_function, fun);
3139 else if (COMPILEDP (fun))
3141 ptrdiff_t size = PVSIZE (fun);
3142 if (size <= COMPILED_STACK_DEPTH)
3143 xsignal1 (Qinvalid_function, fun);
3144 syms_left = AREF (fun, COMPILED_ARGLIST);
3145 if (INTEGERP (syms_left))
3146 return get_byte_code_arity (syms_left);
3148 else
3149 emacs_abort ();
3151 EMACS_INT minargs = 0, maxargs = 0;
3152 bool optional = false;
3153 for (; CONSP (syms_left); syms_left = XCDR (syms_left))
3155 Lisp_Object next = XCAR (syms_left);
3156 if (!SYMBOLP (next))
3157 xsignal1 (Qinvalid_function, fun);
3159 if (EQ (next, Qand_rest))
3160 return Fcons (make_number (minargs), Qmany);
3161 else if (EQ (next, Qand_optional))
3162 optional = true;
3163 else
3165 if (!optional)
3166 minargs++;
3167 maxargs++;
3171 if (!NILP (syms_left))
3172 xsignal1 (Qinvalid_function, fun);
3174 return Fcons (make_number (minargs), make_number (maxargs));
3177 DEFUN ("fetch-bytecode", Ffetch_bytecode, Sfetch_bytecode,
3178 1, 1, 0,
3179 doc: /* If byte-compiled OBJECT is lazy-loaded, fetch it now. */)
3180 (Lisp_Object object)
3182 Lisp_Object tem;
3184 if (COMPILEDP (object))
3186 ptrdiff_t size = PVSIZE (object);
3187 if (size <= COMPILED_STACK_DEPTH)
3188 xsignal1 (Qinvalid_function, object);
3189 if (CONSP (AREF (object, COMPILED_BYTECODE)))
3191 tem = read_doc_string (AREF (object, COMPILED_BYTECODE));
3192 if (!CONSP (tem))
3194 tem = AREF (object, COMPILED_BYTECODE);
3195 if (CONSP (tem) && STRINGP (XCAR (tem)))
3196 error ("Invalid byte code in %s", SDATA (XCAR (tem)));
3197 else
3198 error ("Invalid byte code");
3200 ASET (object, COMPILED_BYTECODE, XCAR (tem));
3201 ASET (object, COMPILED_CONSTANTS, XCDR (tem));
3204 return object;
3207 /* Return true if SYMBOL currently has a let-binding
3208 which was made in the buffer that is now current. */
3210 bool
3211 let_shadows_buffer_binding_p (struct Lisp_Symbol *symbol)
3213 union specbinding *p;
3214 Lisp_Object buf = Fcurrent_buffer ();
3216 for (p = specpdl_ptr; p > specpdl; )
3217 if ((--p)->kind > SPECPDL_LET)
3219 struct Lisp_Symbol *let_bound_symbol = XSYMBOL (specpdl_symbol (p));
3220 eassert (let_bound_symbol->u.s.redirect != SYMBOL_VARALIAS);
3221 if (symbol == let_bound_symbol
3222 && EQ (specpdl_where (p), buf))
3223 return 1;
3226 return 0;
3229 static void
3230 do_specbind (struct Lisp_Symbol *sym, union specbinding *bind,
3231 Lisp_Object value, enum Set_Internal_Bind bindflag)
3233 switch (sym->u.s.redirect)
3235 case SYMBOL_PLAINVAL:
3236 if (!sym->u.s.trapped_write)
3237 SET_SYMBOL_VAL (sym, value);
3238 else
3239 set_internal (specpdl_symbol (bind), value, Qnil, bindflag);
3240 break;
3242 case SYMBOL_FORWARDED:
3243 if (BUFFER_OBJFWDP (SYMBOL_FWD (sym))
3244 && specpdl_kind (bind) == SPECPDL_LET_DEFAULT)
3246 set_default_internal (specpdl_symbol (bind), value, bindflag);
3247 return;
3249 FALLTHROUGH;
3250 case SYMBOL_LOCALIZED:
3251 set_internal (specpdl_symbol (bind), value, Qnil, bindflag);
3252 break;
3254 default:
3255 emacs_abort ();
3259 /* `specpdl_ptr' describes which variable is
3260 let-bound, so it can be properly undone when we unbind_to.
3261 It can be either a plain SPECPDL_LET or a SPECPDL_LET_LOCAL/DEFAULT.
3262 - SYMBOL is the variable being bound. Note that it should not be
3263 aliased (i.e. when let-binding V1 that's aliased to V2, we want
3264 to record V2 here).
3265 - WHERE tells us in which buffer the binding took place.
3266 This is used for SPECPDL_LET_LOCAL bindings (i.e. bindings to a
3267 buffer-local variable) as well as for SPECPDL_LET_DEFAULT bindings,
3268 i.e. bindings to the default value of a variable which can be
3269 buffer-local. */
3271 void
3272 specbind (Lisp_Object symbol, Lisp_Object value)
3274 struct Lisp_Symbol *sym;
3276 CHECK_SYMBOL (symbol);
3277 sym = XSYMBOL (symbol);
3279 start:
3280 switch (sym->u.s.redirect)
3282 case SYMBOL_VARALIAS:
3283 sym = indirect_variable (sym); XSETSYMBOL (symbol, sym); goto start;
3284 case SYMBOL_PLAINVAL:
3285 /* The most common case is that of a non-constant symbol with a
3286 trivial value. Make that as fast as we can. */
3287 specpdl_ptr->let.kind = SPECPDL_LET;
3288 specpdl_ptr->let.symbol = symbol;
3289 specpdl_ptr->let.old_value = SYMBOL_VAL (sym);
3290 specpdl_ptr->let.saved_value = Qnil;
3291 grow_specpdl ();
3292 do_specbind (sym, specpdl_ptr - 1, value, SET_INTERNAL_BIND);
3293 break;
3294 case SYMBOL_LOCALIZED:
3295 case SYMBOL_FORWARDED:
3297 Lisp_Object ovalue = find_symbol_value (symbol);
3298 specpdl_ptr->let.kind = SPECPDL_LET_LOCAL;
3299 specpdl_ptr->let.symbol = symbol;
3300 specpdl_ptr->let.old_value = ovalue;
3301 specpdl_ptr->let.where = Fcurrent_buffer ();
3302 specpdl_ptr->let.saved_value = Qnil;
3304 eassert (sym->u.s.redirect != SYMBOL_LOCALIZED
3305 || (EQ (SYMBOL_BLV (sym)->where, Fcurrent_buffer ())));
3307 if (sym->u.s.redirect == SYMBOL_LOCALIZED)
3309 if (!blv_found (SYMBOL_BLV (sym)))
3310 specpdl_ptr->let.kind = SPECPDL_LET_DEFAULT;
3312 else if (BUFFER_OBJFWDP (SYMBOL_FWD (sym)))
3314 /* If SYMBOL is a per-buffer variable which doesn't have a
3315 buffer-local value here, make the `let' change the global
3316 value by changing the value of SYMBOL in all buffers not
3317 having their own value. This is consistent with what
3318 happens with other buffer-local variables. */
3319 if (NILP (Flocal_variable_p (symbol, Qnil)))
3321 specpdl_ptr->let.kind = SPECPDL_LET_DEFAULT;
3322 grow_specpdl ();
3323 do_specbind (sym, specpdl_ptr - 1, value, SET_INTERNAL_BIND);
3324 return;
3327 else
3328 specpdl_ptr->let.kind = SPECPDL_LET;
3330 grow_specpdl ();
3331 do_specbind (sym, specpdl_ptr - 1, value, SET_INTERNAL_BIND);
3332 break;
3334 default: emacs_abort ();
3338 /* Push unwind-protect entries of various types. */
3340 void
3341 record_unwind_protect (void (*function) (Lisp_Object), Lisp_Object arg)
3343 specpdl_ptr->unwind.kind = SPECPDL_UNWIND;
3344 specpdl_ptr->unwind.func = function;
3345 specpdl_ptr->unwind.arg = arg;
3346 grow_specpdl ();
3349 void
3350 record_unwind_protect_ptr (void (*function) (void *), void *arg)
3352 specpdl_ptr->unwind_ptr.kind = SPECPDL_UNWIND_PTR;
3353 specpdl_ptr->unwind_ptr.func = function;
3354 specpdl_ptr->unwind_ptr.arg = arg;
3355 grow_specpdl ();
3358 void
3359 record_unwind_protect_int (void (*function) (int), int arg)
3361 specpdl_ptr->unwind_int.kind = SPECPDL_UNWIND_INT;
3362 specpdl_ptr->unwind_int.func = function;
3363 specpdl_ptr->unwind_int.arg = arg;
3364 grow_specpdl ();
3367 void
3368 record_unwind_protect_void (void (*function) (void))
3370 specpdl_ptr->unwind_void.kind = SPECPDL_UNWIND_VOID;
3371 specpdl_ptr->unwind_void.func = function;
3372 grow_specpdl ();
3375 void
3376 rebind_for_thread_switch (void)
3378 union specbinding *bind;
3380 for (bind = specpdl; bind != specpdl_ptr; ++bind)
3382 if (bind->kind >= SPECPDL_LET)
3384 Lisp_Object value = specpdl_saved_value (bind);
3385 Lisp_Object sym = specpdl_symbol (bind);
3386 bind->let.saved_value = Qnil;
3387 do_specbind (XSYMBOL (sym), bind, value,
3388 SET_INTERNAL_THREAD_SWITCH);
3393 static void
3394 do_one_unbind (union specbinding *this_binding, bool unwinding,
3395 enum Set_Internal_Bind bindflag)
3397 eassert (unwinding || this_binding->kind >= SPECPDL_LET);
3398 switch (this_binding->kind)
3400 case SPECPDL_UNWIND:
3401 this_binding->unwind.func (this_binding->unwind.arg);
3402 break;
3403 case SPECPDL_UNWIND_PTR:
3404 this_binding->unwind_ptr.func (this_binding->unwind_ptr.arg);
3405 break;
3406 case SPECPDL_UNWIND_INT:
3407 this_binding->unwind_int.func (this_binding->unwind_int.arg);
3408 break;
3409 case SPECPDL_UNWIND_VOID:
3410 this_binding->unwind_void.func ();
3411 break;
3412 case SPECPDL_BACKTRACE:
3413 break;
3414 case SPECPDL_LET:
3415 { /* If variable has a trivial value (no forwarding), and isn't
3416 trapped, we can just set it. */
3417 Lisp_Object sym = specpdl_symbol (this_binding);
3418 if (SYMBOLP (sym) && XSYMBOL (sym)->u.s.redirect == SYMBOL_PLAINVAL)
3420 if (XSYMBOL (sym)->u.s.trapped_write == SYMBOL_UNTRAPPED_WRITE)
3421 SET_SYMBOL_VAL (XSYMBOL (sym), specpdl_old_value (this_binding));
3422 else
3423 set_internal (sym, specpdl_old_value (this_binding),
3424 Qnil, bindflag);
3425 break;
3428 /* Come here only if make_local_foo was used for the first time
3429 on this var within this let. */
3430 FALLTHROUGH;
3431 case SPECPDL_LET_DEFAULT:
3432 set_default_internal (specpdl_symbol (this_binding),
3433 specpdl_old_value (this_binding),
3434 bindflag);
3435 break;
3436 case SPECPDL_LET_LOCAL:
3438 Lisp_Object symbol = specpdl_symbol (this_binding);
3439 Lisp_Object where = specpdl_where (this_binding);
3440 Lisp_Object old_value = specpdl_old_value (this_binding);
3441 eassert (BUFFERP (where));
3443 /* If this was a local binding, reset the value in the appropriate
3444 buffer, but only if that buffer's binding still exists. */
3445 if (!NILP (Flocal_variable_p (symbol, where)))
3446 set_internal (symbol, old_value, where, bindflag);
3448 break;
3452 static void
3453 do_nothing (void)
3456 /* Push an unwind-protect entry that does nothing, so that
3457 set_unwind_protect_ptr can overwrite it later. */
3459 void
3460 record_unwind_protect_nothing (void)
3462 record_unwind_protect_void (do_nothing);
3465 /* Clear the unwind-protect entry COUNT, so that it does nothing.
3466 It need not be at the top of the stack. */
3468 void
3469 clear_unwind_protect (ptrdiff_t count)
3471 union specbinding *p = specpdl + count;
3472 p->unwind_void.kind = SPECPDL_UNWIND_VOID;
3473 p->unwind_void.func = do_nothing;
3476 /* Set the unwind-protect entry COUNT so that it invokes FUNC (ARG).
3477 It need not be at the top of the stack. Discard the entry's
3478 previous value without invoking it. */
3480 void
3481 set_unwind_protect (ptrdiff_t count, void (*func) (Lisp_Object),
3482 Lisp_Object arg)
3484 union specbinding *p = specpdl + count;
3485 p->unwind.kind = SPECPDL_UNWIND;
3486 p->unwind.func = func;
3487 p->unwind.arg = arg;
3490 void
3491 set_unwind_protect_ptr (ptrdiff_t count, void (*func) (void *), void *arg)
3493 union specbinding *p = specpdl + count;
3494 p->unwind_ptr.kind = SPECPDL_UNWIND_PTR;
3495 p->unwind_ptr.func = func;
3496 p->unwind_ptr.arg = arg;
3499 /* Pop and execute entries from the unwind-protect stack until the
3500 depth COUNT is reached. Return VALUE. */
3502 Lisp_Object
3503 unbind_to (ptrdiff_t count, Lisp_Object value)
3505 Lisp_Object quitf = Vquit_flag;
3507 Vquit_flag = Qnil;
3509 while (specpdl_ptr != specpdl + count)
3511 /* Copy the binding, and decrement specpdl_ptr, before we do
3512 the work to unbind it. We decrement first
3513 so that an error in unbinding won't try to unbind
3514 the same entry again, and we copy the binding first
3515 in case more bindings are made during some of the code we run. */
3517 union specbinding this_binding;
3518 this_binding = *--specpdl_ptr;
3520 do_one_unbind (&this_binding, true, SET_INTERNAL_UNBIND);
3523 if (NILP (Vquit_flag) && !NILP (quitf))
3524 Vquit_flag = quitf;
3526 return value;
3529 void
3530 unbind_for_thread_switch (struct thread_state *thr)
3532 union specbinding *bind;
3534 for (bind = thr->m_specpdl_ptr; bind > thr->m_specpdl;)
3536 if ((--bind)->kind >= SPECPDL_LET)
3538 Lisp_Object sym = specpdl_symbol (bind);
3539 bind->let.saved_value = find_symbol_value (sym);
3540 do_one_unbind (bind, false, SET_INTERNAL_THREAD_SWITCH);
3545 DEFUN ("special-variable-p", Fspecial_variable_p, Sspecial_variable_p, 1, 1, 0,
3546 doc: /* Return non-nil if SYMBOL's global binding has been declared special.
3547 A special variable is one that will be bound dynamically, even in a
3548 context where binding is lexical by default. */)
3549 (Lisp_Object symbol)
3551 CHECK_SYMBOL (symbol);
3552 return XSYMBOL (symbol)->u.s.declared_special ? Qt : Qnil;
3556 static union specbinding *
3557 get_backtrace_starting_at (Lisp_Object base)
3559 union specbinding *pdl = backtrace_top ();
3561 if (!NILP (base))
3562 { /* Skip up to `base'. */
3563 base = Findirect_function (base, Qt);
3564 while (backtrace_p (pdl)
3565 && !EQ (base, Findirect_function (backtrace_function (pdl), Qt)))
3566 pdl = backtrace_next (pdl);
3569 return pdl;
3572 static union specbinding *
3573 get_backtrace_frame (Lisp_Object nframes, Lisp_Object base)
3575 register EMACS_INT i;
3577 CHECK_NATNUM (nframes);
3578 union specbinding *pdl = get_backtrace_starting_at (base);
3580 /* Find the frame requested. */
3581 for (i = XFASTINT (nframes); i > 0 && backtrace_p (pdl); i--)
3582 pdl = backtrace_next (pdl);
3584 return pdl;
3587 static Lisp_Object
3588 backtrace_frame_apply (Lisp_Object function, union specbinding *pdl)
3590 if (!backtrace_p (pdl))
3591 return Qnil;
3593 Lisp_Object flags = Qnil;
3594 if (backtrace_debug_on_exit (pdl))
3595 flags = Fcons (QCdebug_on_exit, Fcons (Qt, Qnil));
3597 if (backtrace_nargs (pdl) == UNEVALLED)
3598 return call4 (function, Qnil, backtrace_function (pdl), *backtrace_args (pdl), flags);
3599 else
3601 Lisp_Object tem = Flist (backtrace_nargs (pdl), backtrace_args (pdl));
3602 return call4 (function, Qt, backtrace_function (pdl), tem, flags);
3606 DEFUN ("backtrace-debug", Fbacktrace_debug, Sbacktrace_debug, 2, 2, 0,
3607 doc: /* Set the debug-on-exit flag of eval frame LEVEL levels down to FLAG.
3608 The debugger is entered when that frame exits, if the flag is non-nil. */)
3609 (Lisp_Object level, Lisp_Object flag)
3611 CHECK_NUMBER (level);
3612 union specbinding *pdl = get_backtrace_frame(level, Qnil);
3614 if (backtrace_p (pdl))
3615 set_backtrace_debug_on_exit (pdl, !NILP (flag));
3617 return flag;
3620 DEFUN ("mapbacktrace", Fmapbacktrace, Smapbacktrace, 1, 2, 0,
3621 doc: /* Call FUNCTION for each frame in backtrace.
3622 If BASE is non-nil, it should be a function and iteration will start
3623 from its nearest activation frame.
3624 FUNCTION is called with 4 arguments: EVALD, FUNC, ARGS, and FLAGS. If
3625 a frame has not evaluated its arguments yet or is a special form,
3626 EVALD is nil and ARGS is a list of forms. If a frame has evaluated
3627 its arguments and called its function already, EVALD is t and ARGS is
3628 a list of values.
3629 FLAGS is a plist of properties of the current frame: currently, the
3630 only supported property is :debug-on-exit. `mapbacktrace' always
3631 returns nil. */)
3632 (Lisp_Object function, Lisp_Object base)
3634 union specbinding *pdl = get_backtrace_starting_at (base);
3636 while (backtrace_p (pdl))
3638 ptrdiff_t i = pdl - specpdl;
3639 backtrace_frame_apply (function, pdl);
3640 /* Beware! PDL is no longer valid here because FUNCTION might
3641 have caused grow_specpdl to reallocate pdlvec. We must use
3642 the saved index, cf. Bug#27258. */
3643 pdl = backtrace_next (&specpdl[i]);
3646 return Qnil;
3649 DEFUN ("backtrace-frame--internal", Fbacktrace_frame_internal,
3650 Sbacktrace_frame_internal, 3, 3, NULL,
3651 doc: /* Call FUNCTION on stack frame NFRAMES away from BASE.
3652 Return the result of FUNCTION, or nil if no matching frame could be found. */)
3653 (Lisp_Object function, Lisp_Object nframes, Lisp_Object base)
3655 return backtrace_frame_apply (function, get_backtrace_frame (nframes, base));
3658 /* For backtrace-eval, we want to temporarily unwind the last few elements of
3659 the specpdl stack, and then rewind them. We store the pre-unwind values
3660 directly in the pre-existing specpdl elements (i.e. we swap the current
3661 value and the old value stored in the specpdl), kind of like the inplace
3662 pointer-reversal trick. As it turns out, the rewind does the same as the
3663 unwind, except it starts from the other end of the specpdl stack, so we use
3664 the same function for both unwind and rewind. */
3665 static void
3666 backtrace_eval_unrewind (int distance)
3668 union specbinding *tmp = specpdl_ptr;
3669 int step = -1;
3670 if (distance < 0)
3671 { /* It's a rewind rather than unwind. */
3672 tmp += distance - 1;
3673 step = 1;
3674 distance = -distance;
3677 for (; distance > 0; distance--)
3679 tmp += step;
3680 switch (tmp->kind)
3682 /* FIXME: Ideally we'd like to "temporarily unwind" (some of) those
3683 unwind_protect, but the problem is that we don't know how to
3684 rewind them afterwards. */
3685 case SPECPDL_UNWIND:
3687 Lisp_Object oldarg = tmp->unwind.arg;
3688 if (tmp->unwind.func == set_buffer_if_live)
3689 tmp->unwind.arg = Fcurrent_buffer ();
3690 else if (tmp->unwind.func == save_excursion_restore)
3691 tmp->unwind.arg = save_excursion_save ();
3692 else
3693 break;
3694 tmp->unwind.func (oldarg);
3695 break;
3698 case SPECPDL_UNWIND_PTR:
3699 case SPECPDL_UNWIND_INT:
3700 case SPECPDL_UNWIND_VOID:
3701 case SPECPDL_BACKTRACE:
3702 break;
3703 case SPECPDL_LET:
3704 { /* If variable has a trivial value (no forwarding), we can
3705 just set it. No need to check for constant symbols here,
3706 since that was already done by specbind. */
3707 Lisp_Object sym = specpdl_symbol (tmp);
3708 if (SYMBOLP (sym)
3709 && XSYMBOL (sym)->u.s.redirect == SYMBOL_PLAINVAL)
3711 Lisp_Object old_value = specpdl_old_value (tmp);
3712 set_specpdl_old_value (tmp, SYMBOL_VAL (XSYMBOL (sym)));
3713 SET_SYMBOL_VAL (XSYMBOL (sym), old_value);
3714 break;
3717 /* Come here only if make_local_foo was used for the first
3718 time on this var within this let. */
3719 FALLTHROUGH;
3720 case SPECPDL_LET_DEFAULT:
3722 Lisp_Object sym = specpdl_symbol (tmp);
3723 Lisp_Object old_value = specpdl_old_value (tmp);
3724 set_specpdl_old_value (tmp, Fdefault_value (sym));
3725 Fset_default (sym, old_value);
3727 break;
3728 case SPECPDL_LET_LOCAL:
3730 Lisp_Object symbol = specpdl_symbol (tmp);
3731 Lisp_Object where = specpdl_where (tmp);
3732 Lisp_Object old_value = specpdl_old_value (tmp);
3733 eassert (BUFFERP (where));
3735 /* If this was a local binding, reset the value in the appropriate
3736 buffer, but only if that buffer's binding still exists. */
3737 if (!NILP (Flocal_variable_p (symbol, where)))
3739 set_specpdl_old_value
3740 (tmp, Fbuffer_local_value (symbol, where));
3741 set_internal (symbol, old_value, where, SET_INTERNAL_UNBIND);
3744 break;
3749 DEFUN ("backtrace-eval", Fbacktrace_eval, Sbacktrace_eval, 2, 3, NULL,
3750 doc: /* Evaluate EXP in the context of some activation frame.
3751 NFRAMES and BASE specify the activation frame to use, as in `backtrace-frame'. */)
3752 (Lisp_Object exp, Lisp_Object nframes, Lisp_Object base)
3754 union specbinding *pdl = get_backtrace_frame (nframes, base);
3755 ptrdiff_t count = SPECPDL_INDEX ();
3756 ptrdiff_t distance = specpdl_ptr - pdl;
3757 eassert (distance >= 0);
3759 if (!backtrace_p (pdl))
3760 error ("Activation frame not found!");
3762 backtrace_eval_unrewind (distance);
3763 record_unwind_protect_int (backtrace_eval_unrewind, -distance);
3765 /* Use eval_sub rather than Feval since the main motivation behind
3766 backtrace-eval is to be able to get/set the value of lexical variables
3767 from the debugger. */
3768 return unbind_to (count, eval_sub (exp));
3771 DEFUN ("backtrace--locals", Fbacktrace__locals, Sbacktrace__locals, 1, 2, NULL,
3772 doc: /* Return names and values of local variables of a stack frame.
3773 NFRAMES and BASE specify the activation frame to use, as in `backtrace-frame'. */)
3774 (Lisp_Object nframes, Lisp_Object base)
3776 union specbinding *frame = get_backtrace_frame (nframes, base);
3777 union specbinding *prevframe
3778 = get_backtrace_frame (make_number (XFASTINT (nframes) - 1), base);
3779 ptrdiff_t distance = specpdl_ptr - frame;
3780 Lisp_Object result = Qnil;
3781 eassert (distance >= 0);
3783 if (!backtrace_p (prevframe))
3784 error ("Activation frame not found!");
3785 if (!backtrace_p (frame))
3786 error ("Activation frame not found!");
3788 /* The specpdl entries normally contain the symbol being bound along with its
3789 `old_value', so it can be restored. The new value to which it is bound is
3790 available in one of two places: either in the current value of the
3791 variable (if it hasn't been rebound yet) or in the `old_value' slot of the
3792 next specpdl entry for it.
3793 `backtrace_eval_unrewind' happens to swap the role of `old_value'
3794 and "new value", so we abuse it here, to fetch the new value.
3795 It's ugly (we'd rather not modify global data) and a bit inefficient,
3796 but it does the job for now. */
3797 backtrace_eval_unrewind (distance);
3799 /* Grab values. */
3801 union specbinding *tmp = prevframe;
3802 for (; tmp > frame; tmp--)
3804 switch (tmp->kind)
3806 case SPECPDL_LET:
3807 case SPECPDL_LET_DEFAULT:
3808 case SPECPDL_LET_LOCAL:
3810 Lisp_Object sym = specpdl_symbol (tmp);
3811 Lisp_Object val = specpdl_old_value (tmp);
3812 if (EQ (sym, Qinternal_interpreter_environment))
3814 Lisp_Object env = val;
3815 for (; CONSP (env); env = XCDR (env))
3817 Lisp_Object binding = XCAR (env);
3818 if (CONSP (binding))
3819 result = Fcons (Fcons (XCAR (binding),
3820 XCDR (binding)),
3821 result);
3824 else
3825 result = Fcons (Fcons (sym, val), result);
3827 break;
3829 case SPECPDL_UNWIND:
3830 case SPECPDL_UNWIND_PTR:
3831 case SPECPDL_UNWIND_INT:
3832 case SPECPDL_UNWIND_VOID:
3833 case SPECPDL_BACKTRACE:
3834 break;
3836 default:
3837 emacs_abort ();
3842 /* Restore values from specpdl to original place. */
3843 backtrace_eval_unrewind (-distance);
3845 return result;
3849 void
3850 mark_specpdl (union specbinding *first, union specbinding *ptr)
3852 union specbinding *pdl;
3853 for (pdl = first; pdl != ptr; pdl++)
3855 switch (pdl->kind)
3857 case SPECPDL_UNWIND:
3858 mark_object (specpdl_arg (pdl));
3859 break;
3861 case SPECPDL_BACKTRACE:
3863 ptrdiff_t nargs = backtrace_nargs (pdl);
3864 mark_object (backtrace_function (pdl));
3865 if (nargs == UNEVALLED)
3866 nargs = 1;
3867 while (nargs--)
3868 mark_object (backtrace_args (pdl)[nargs]);
3870 break;
3872 case SPECPDL_LET_DEFAULT:
3873 case SPECPDL_LET_LOCAL:
3874 mark_object (specpdl_where (pdl));
3875 FALLTHROUGH;
3876 case SPECPDL_LET:
3877 mark_object (specpdl_symbol (pdl));
3878 mark_object (specpdl_old_value (pdl));
3879 mark_object (specpdl_saved_value (pdl));
3880 break;
3882 case SPECPDL_UNWIND_PTR:
3883 case SPECPDL_UNWIND_INT:
3884 case SPECPDL_UNWIND_VOID:
3885 break;
3887 default:
3888 emacs_abort ();
3893 void
3894 get_backtrace (Lisp_Object array)
3896 union specbinding *pdl = backtrace_next (backtrace_top ());
3897 ptrdiff_t i = 0, asize = ASIZE (array);
3899 /* Copy the backtrace contents into working memory. */
3900 for (; i < asize; i++)
3902 if (backtrace_p (pdl))
3904 ASET (array, i, backtrace_function (pdl));
3905 pdl = backtrace_next (pdl);
3907 else
3908 ASET (array, i, Qnil);
3912 Lisp_Object backtrace_top_function (void)
3914 union specbinding *pdl = backtrace_top ();
3915 return (backtrace_p (pdl) ? backtrace_function (pdl) : Qnil);
3918 void
3919 syms_of_eval (void)
3921 DEFVAR_INT ("max-specpdl-size", max_specpdl_size,
3922 doc: /* Limit on number of Lisp variable bindings and `unwind-protect's.
3923 If Lisp code tries to increase the total number past this amount,
3924 an error is signaled.
3925 You can safely use a value considerably larger than the default value,
3926 if that proves inconveniently small. However, if you increase it too far,
3927 Emacs could run out of memory trying to make the stack bigger.
3928 Note that this limit may be silently increased by the debugger
3929 if `debug-on-error' or `debug-on-quit' is set. */);
3931 DEFVAR_INT ("max-lisp-eval-depth", max_lisp_eval_depth,
3932 doc: /* Limit on depth in `eval', `apply' and `funcall' before error.
3934 This limit serves to catch infinite recursions for you before they cause
3935 actual stack overflow in C, which would be fatal for Emacs.
3936 You can safely make it considerably larger than its default value,
3937 if that proves inconveniently small. However, if you increase it too far,
3938 Emacs could overflow the real C stack, and crash. */);
3940 DEFVAR_LISP ("quit-flag", Vquit_flag,
3941 doc: /* Non-nil causes `eval' to abort, unless `inhibit-quit' is non-nil.
3942 If the value is t, that means do an ordinary quit.
3943 If the value equals `throw-on-input', that means quit by throwing
3944 to the tag specified in `throw-on-input'; it's for handling `while-no-input'.
3945 Typing C-g sets `quit-flag' to t, regardless of `inhibit-quit',
3946 but `inhibit-quit' non-nil prevents anything from taking notice of that. */);
3947 Vquit_flag = Qnil;
3949 DEFVAR_LISP ("inhibit-quit", Vinhibit_quit,
3950 doc: /* Non-nil inhibits C-g quitting from happening immediately.
3951 Note that `quit-flag' will still be set by typing C-g,
3952 so a quit will be signaled as soon as `inhibit-quit' is nil.
3953 To prevent this happening, set `quit-flag' to nil
3954 before making `inhibit-quit' nil. */);
3955 Vinhibit_quit = Qnil;
3957 DEFSYM (Qsetq, "setq");
3958 DEFSYM (Qinhibit_quit, "inhibit-quit");
3959 DEFSYM (Qautoload, "autoload");
3960 DEFSYM (Qinhibit_debugger, "inhibit-debugger");
3961 DEFSYM (Qmacro, "macro");
3963 /* Note that the process handling also uses Qexit, but we don't want
3964 to staticpro it twice, so we just do it here. */
3965 DEFSYM (Qexit, "exit");
3967 DEFSYM (Qinteractive, "interactive");
3968 DEFSYM (Qcommandp, "commandp");
3969 DEFSYM (Qand_rest, "&rest");
3970 DEFSYM (Qand_optional, "&optional");
3971 DEFSYM (Qclosure, "closure");
3972 DEFSYM (QCdocumentation, ":documentation");
3973 DEFSYM (Qdebug, "debug");
3975 DEFVAR_LISP ("inhibit-debugger", Vinhibit_debugger,
3976 doc: /* Non-nil means never enter the debugger.
3977 Normally set while the debugger is already active, to avoid recursive
3978 invocations. */);
3979 Vinhibit_debugger = Qnil;
3981 DEFVAR_LISP ("debug-on-error", Vdebug_on_error,
3982 doc: /* Non-nil means enter debugger if an error is signaled.
3983 Does not apply to errors handled by `condition-case' or those
3984 matched by `debug-ignored-errors'.
3985 If the value is a list, an error only means to enter the debugger
3986 if one of its condition symbols appears in the list.
3987 When you evaluate an expression interactively, this variable
3988 is temporarily non-nil if `eval-expression-debug-on-error' is non-nil.
3989 The command `toggle-debug-on-error' toggles this.
3990 See also the variable `debug-on-quit' and `inhibit-debugger'. */);
3991 Vdebug_on_error = Qnil;
3993 DEFVAR_LISP ("debug-ignored-errors", Vdebug_ignored_errors,
3994 doc: /* List of errors for which the debugger should not be called.
3995 Each element may be a condition-name or a regexp that matches error messages.
3996 If any element applies to a given error, that error skips the debugger
3997 and just returns to top level.
3998 This overrides the variable `debug-on-error'.
3999 It does not apply to errors handled by `condition-case'. */);
4000 Vdebug_ignored_errors = Qnil;
4002 DEFVAR_BOOL ("debug-on-quit", debug_on_quit,
4003 doc: /* Non-nil means enter debugger if quit is signaled (C-g, for example).
4004 Does not apply if quit is handled by a `condition-case'. */);
4005 debug_on_quit = 0;
4007 DEFVAR_BOOL ("debug-on-next-call", debug_on_next_call,
4008 doc: /* Non-nil means enter debugger before next `eval', `apply' or `funcall'. */);
4010 DEFVAR_BOOL ("debugger-may-continue", debugger_may_continue,
4011 doc: /* Non-nil means debugger may continue execution.
4012 This is nil when the debugger is called under circumstances where it
4013 might not be safe to continue. */);
4014 debugger_may_continue = 1;
4016 DEFVAR_BOOL ("debugger-stack-frame-as-list", debugger_stack_frame_as_list,
4017 doc: /* Non-nil means display call stack frames as lists. */);
4018 debugger_stack_frame_as_list = 0;
4020 DEFVAR_LISP ("debugger", Vdebugger,
4021 doc: /* Function to call to invoke debugger.
4022 If due to frame exit, args are `exit' and the value being returned;
4023 this function's value will be returned instead of that.
4024 If due to error, args are `error' and a list of the args to `signal'.
4025 If due to `apply' or `funcall' entry, one arg, `lambda'.
4026 If due to `eval' entry, one arg, t. */);
4027 Vdebugger = Qnil;
4029 DEFVAR_LISP ("signal-hook-function", Vsignal_hook_function,
4030 doc: /* If non-nil, this is a function for `signal' to call.
4031 It receives the same arguments that `signal' was given.
4032 The Edebug package uses this to regain control. */);
4033 Vsignal_hook_function = Qnil;
4035 DEFVAR_LISP ("debug-on-signal", Vdebug_on_signal,
4036 doc: /* Non-nil means call the debugger regardless of condition handlers.
4037 Note that `debug-on-error', `debug-on-quit' and friends
4038 still determine whether to handle the particular condition. */);
4039 Vdebug_on_signal = Qnil;
4041 /* When lexical binding is being used,
4042 Vinternal_interpreter_environment is non-nil, and contains an alist
4043 of lexically-bound variable, or (t), indicating an empty
4044 environment. The lisp name of this variable would be
4045 `internal-interpreter-environment' if it weren't hidden.
4046 Every element of this list can be either a cons (VAR . VAL)
4047 specifying a lexical binding, or a single symbol VAR indicating
4048 that this variable should use dynamic scoping. */
4049 DEFSYM (Qinternal_interpreter_environment,
4050 "internal-interpreter-environment");
4051 DEFVAR_LISP ("internal-interpreter-environment",
4052 Vinternal_interpreter_environment,
4053 doc: /* If non-nil, the current lexical environment of the lisp interpreter.
4054 When lexical binding is not being used, this variable is nil.
4055 A value of `(t)' indicates an empty environment, otherwise it is an
4056 alist of active lexical bindings. */);
4057 Vinternal_interpreter_environment = Qnil;
4058 /* Don't export this variable to Elisp, so no one can mess with it
4059 (Just imagine if someone makes it buffer-local). */
4060 Funintern (Qinternal_interpreter_environment, Qnil);
4062 Vrun_hooks = intern_c_string ("run-hooks");
4063 staticpro (&Vrun_hooks);
4065 staticpro (&Vautoload_queue);
4066 Vautoload_queue = Qnil;
4067 staticpro (&Vsignaling_function);
4068 Vsignaling_function = Qnil;
4070 inhibit_lisp_code = Qnil;
4072 defsubr (&Sor);
4073 defsubr (&Sand);
4074 defsubr (&Sif);
4075 defsubr (&Scond);
4076 defsubr (&Sprogn);
4077 defsubr (&Sprog1);
4078 defsubr (&Sprog2);
4079 defsubr (&Ssetq);
4080 defsubr (&Squote);
4081 defsubr (&Sfunction);
4082 defsubr (&Sdefault_toplevel_value);
4083 defsubr (&Sset_default_toplevel_value);
4084 defsubr (&Sdefvar);
4085 defsubr (&Sdefvaralias);
4086 DEFSYM (Qdefvaralias, "defvaralias");
4087 defsubr (&Sdefconst);
4088 defsubr (&Smake_var_non_special);
4089 defsubr (&Slet);
4090 defsubr (&SletX);
4091 defsubr (&Swhile);
4092 defsubr (&Smacroexpand);
4093 defsubr (&Scatch);
4094 defsubr (&Sthrow);
4095 defsubr (&Sunwind_protect);
4096 defsubr (&Scondition_case);
4097 defsubr (&Ssignal);
4098 defsubr (&Scommandp);
4099 defsubr (&Sautoload);
4100 defsubr (&Sautoload_do_load);
4101 defsubr (&Seval);
4102 defsubr (&Sapply);
4103 defsubr (&Sfuncall);
4104 defsubr (&Sfunc_arity);
4105 defsubr (&Srun_hooks);
4106 defsubr (&Srun_hook_with_args);
4107 defsubr (&Srun_hook_with_args_until_success);
4108 defsubr (&Srun_hook_with_args_until_failure);
4109 defsubr (&Srun_hook_wrapped);
4110 defsubr (&Sfetch_bytecode);
4111 defsubr (&Sbacktrace_debug);
4112 DEFSYM (QCdebug_on_exit, ":debug-on-exit");
4113 defsubr (&Smapbacktrace);
4114 defsubr (&Sbacktrace_frame_internal);
4115 defsubr (&Sbacktrace_eval);
4116 defsubr (&Sbacktrace__locals);
4117 defsubr (&Sspecial_variable_p);
4118 defsubr (&Sfunctionp);