1 /* Evaluator for GNU Emacs Lisp interpreter.
3 Copyright (C) 1985-1987, 1993-1995, 1999-2014 Free Software Foundation,
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
11 (at your option) any later version.
13 GNU Emacs is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
26 #include "blockinput.h"
29 #include "dispextern.h"
30 #include "frame.h" /* For XFRAME. */
36 /* Chain of condition and catch handlers currently in effect. */
38 struct handler
*handlerlist
;
41 /* Count levels of GCPRO to detect failure to UNGCPRO. */
45 Lisp_Object Qautoload
, Qmacro
, Qexit
, Qinteractive
, Qcommandp
;
46 Lisp_Object Qinhibit_quit
;
47 Lisp_Object Qand_rest
;
48 static Lisp_Object Qand_optional
;
49 static Lisp_Object Qinhibit_debugger
;
50 static Lisp_Object Qdeclare
;
51 Lisp_Object Qinternal_interpreter_environment
, Qclosure
;
53 static Lisp_Object Qdebug
;
55 /* This holds either the symbol `run-hooks' or nil.
56 It is nil at an early stage of startup, and when Emacs
59 Lisp_Object Vrun_hooks
;
61 /* Non-nil means record all fset's and provide's, to be undone
62 if the file being autoloaded is not fully loaded.
63 They are recorded by being consed onto the front of Vautoload_queue:
64 (FUN . ODEF) for a defun, (0 . OFEATURES) for a provide. */
66 Lisp_Object Vautoload_queue
;
68 /* Current number of specbindings allocated in specpdl, not counting
69 the dummy entry specpdl[-1]. */
71 ptrdiff_t specpdl_size
;
73 /* Pointer to beginning of specpdl. A dummy entry specpdl[-1] exists
74 only so that its address can be taken. */
76 union specbinding
*specpdl
;
78 /* Pointer to first unused element in specpdl. */
80 union specbinding
*specpdl_ptr
;
82 /* Depth in Lisp evaluations and function calls. */
84 EMACS_INT lisp_eval_depth
;
86 /* The value of num_nonmacro_input_events as of the last time we
87 started to enter the debugger. If we decide to enter the debugger
88 again when this is still equal to num_nonmacro_input_events, then we
89 know that the debugger itself has an error, and we should just
90 signal the error instead of entering an infinite loop of debugger
93 static EMACS_INT when_entered_debugger
;
95 /* The function from which the last `signal' was called. Set in
97 /* FIXME: We should probably get rid of this! */
98 Lisp_Object Vsignaling_function
;
100 /* If non-nil, Lisp code must not be run since some part of Emacs is
101 in an inconsistent state. Currently, x-create-frame uses this to
102 avoid triggering window-configuration-change-hook while the new
103 frame is half-initialized. */
104 Lisp_Object inhibit_lisp_code
;
106 /* These would ordinarily be static, but they need to be visible to GDB. */
107 bool backtrace_p (union specbinding
*) EXTERNALLY_VISIBLE
;
108 Lisp_Object
*backtrace_args (union specbinding
*) EXTERNALLY_VISIBLE
;
109 Lisp_Object
backtrace_function (union specbinding
*) EXTERNALLY_VISIBLE
;
110 union specbinding
*backtrace_next (union specbinding
*) EXTERNALLY_VISIBLE
;
111 union specbinding
*backtrace_top (void) EXTERNALLY_VISIBLE
;
113 static Lisp_Object
funcall_lambda (Lisp_Object
, ptrdiff_t, Lisp_Object
*);
114 static Lisp_Object
apply_lambda (Lisp_Object
, Lisp_Object
, ptrdiff_t);
117 specpdl_symbol (union specbinding
*pdl
)
119 eassert (pdl
->kind
>= SPECPDL_LET
);
120 return pdl
->let
.symbol
;
124 specpdl_old_value (union specbinding
*pdl
)
126 eassert (pdl
->kind
>= SPECPDL_LET
);
127 return pdl
->let
.old_value
;
131 set_specpdl_old_value (union specbinding
*pdl
, Lisp_Object val
)
133 eassert (pdl
->kind
>= SPECPDL_LET
);
134 pdl
->let
.old_value
= val
;
138 specpdl_where (union specbinding
*pdl
)
140 eassert (pdl
->kind
> SPECPDL_LET
);
141 return pdl
->let
.where
;
145 specpdl_arg (union specbinding
*pdl
)
147 eassert (pdl
->kind
== SPECPDL_UNWIND
);
148 return pdl
->unwind
.arg
;
152 backtrace_function (union specbinding
*pdl
)
154 eassert (pdl
->kind
== SPECPDL_BACKTRACE
);
155 return pdl
->bt
.function
;
159 backtrace_nargs (union specbinding
*pdl
)
161 eassert (pdl
->kind
== SPECPDL_BACKTRACE
);
162 return pdl
->bt
.nargs
;
166 backtrace_args (union specbinding
*pdl
)
168 eassert (pdl
->kind
== SPECPDL_BACKTRACE
);
173 backtrace_debug_on_exit (union specbinding
*pdl
)
175 eassert (pdl
->kind
== SPECPDL_BACKTRACE
);
176 return pdl
->bt
.debug_on_exit
;
179 /* Functions to modify slots of backtrace records. */
182 set_backtrace_args (union specbinding
*pdl
, Lisp_Object
*args
, ptrdiff_t nargs
)
184 eassert (pdl
->kind
== SPECPDL_BACKTRACE
);
186 pdl
->bt
.nargs
= nargs
;
190 set_backtrace_debug_on_exit (union specbinding
*pdl
, bool doe
)
192 eassert (pdl
->kind
== SPECPDL_BACKTRACE
);
193 pdl
->bt
.debug_on_exit
= doe
;
196 /* Helper functions to scan the backtrace. */
199 backtrace_p (union specbinding
*pdl
)
200 { return pdl
>= specpdl
; }
205 union specbinding
*pdl
= specpdl_ptr
- 1;
206 while (backtrace_p (pdl
) && pdl
->kind
!= SPECPDL_BACKTRACE
)
212 backtrace_next (union specbinding
*pdl
)
215 while (backtrace_p (pdl
) && pdl
->kind
!= SPECPDL_BACKTRACE
)
222 init_eval_once (void)
225 union specbinding
*pdlvec
= xmalloc ((size
+ 1) * sizeof *specpdl
);
227 specpdl
= specpdl_ptr
= pdlvec
+ 1;
228 /* Don't forget to update docs (lispref node "Local Variables"). */
229 max_specpdl_size
= 1300; /* 1000 is not enough for CEDET's c-by.el. */
230 max_lisp_eval_depth
= 600;
235 static struct handler handlerlist_sentinel
;
240 specpdl_ptr
= specpdl
;
241 { /* Put a dummy catcher at top-level so that handlerlist is never NULL.
242 This is important since handlerlist->nextfree holds the freelist
243 which would otherwise leak every time we unwind back to top-level. */
245 handlerlist
= handlerlist_sentinel
.nextfree
= &handlerlist_sentinel
;
246 PUSH_HANDLER (c
, Qunbound
, CATCHER
);
247 eassert (c
== &handlerlist_sentinel
);
248 handlerlist_sentinel
.nextfree
= NULL
;
249 handlerlist_sentinel
.next
= NULL
;
252 debug_on_next_call
= 0;
257 /* This is less than the initial value of num_nonmacro_input_events. */
258 when_entered_debugger
= -1;
261 /* Unwind-protect function used by call_debugger. */
264 restore_stack_limits (Lisp_Object data
)
266 max_specpdl_size
= XINT (XCAR (data
));
267 max_lisp_eval_depth
= XINT (XCDR (data
));
270 static void grow_specpdl (void);
272 /* Call the Lisp debugger, giving it argument ARG. */
275 call_debugger (Lisp_Object arg
)
277 bool debug_while_redisplaying
;
278 ptrdiff_t count
= SPECPDL_INDEX ();
280 EMACS_INT old_depth
= max_lisp_eval_depth
;
281 /* Do not allow max_specpdl_size less than actual depth (Bug#16603). */
282 EMACS_INT old_max
= max (max_specpdl_size
, count
);
284 if (lisp_eval_depth
+ 40 > max_lisp_eval_depth
)
285 max_lisp_eval_depth
= lisp_eval_depth
+ 40;
287 /* While debugging Bug#16603, previous value of 100 was found
288 too small to avoid specpdl overflow in the debugger itself. */
289 if (max_specpdl_size
- 200 < count
)
290 max_specpdl_size
= count
+ 200;
292 if (old_max
== count
)
294 /* We can enter the debugger due to specpdl overflow (Bug#16603). */
299 /* Restore limits after leaving the debugger. */
300 record_unwind_protect (restore_stack_limits
,
301 Fcons (make_number (old_max
),
302 make_number (old_depth
)));
304 #ifdef HAVE_WINDOW_SYSTEM
305 if (display_hourglass_p
)
309 debug_on_next_call
= 0;
310 when_entered_debugger
= num_nonmacro_input_events
;
312 /* Resetting redisplaying_p to 0 makes sure that debug output is
313 displayed if the debugger is invoked during redisplay. */
314 debug_while_redisplaying
= redisplaying_p
;
316 specbind (intern ("debugger-may-continue"),
317 debug_while_redisplaying
? Qnil
: Qt
);
318 specbind (Qinhibit_redisplay
, Qnil
);
319 specbind (Qinhibit_debugger
, Qt
);
321 #if 0 /* Binding this prevents execution of Lisp code during
322 redisplay, which necessarily leads to display problems. */
323 specbind (Qinhibit_eval_during_redisplay
, Qt
);
326 val
= apply1 (Vdebugger
, arg
);
328 /* Interrupting redisplay and resuming it later is not safe under
329 all circumstances. So, when the debugger returns, abort the
330 interrupted redisplay by going back to the top-level. */
331 if (debug_while_redisplaying
)
334 return unbind_to (count
, val
);
338 do_debug_on_call (Lisp_Object code
, ptrdiff_t count
)
340 debug_on_next_call
= 0;
341 set_backtrace_debug_on_exit (specpdl
+ count
, true);
342 call_debugger (list1 (code
));
345 /* NOTE!!! Every function that can call EVAL must protect its args
346 and temporaries from garbage collection while it needs them.
347 The definition of `For' shows what you have to do. */
349 DEFUN ("or", For
, Sor
, 0, UNEVALLED
, 0,
350 doc
: /* Eval args until one of them yields non-nil, then return that value.
351 The remaining args are not evalled at all.
352 If all args return nil, return nil.
353 usage: (or CONDITIONS...) */)
356 register Lisp_Object val
= Qnil
;
363 val
= eval_sub (XCAR (args
));
373 DEFUN ("and", Fand
, Sand
, 0, UNEVALLED
, 0,
374 doc
: /* Eval args until one of them yields nil, then return nil.
375 The remaining args are not evalled at all.
376 If no arg yields nil, return the last arg's value.
377 usage: (and CONDITIONS...) */)
380 register Lisp_Object val
= Qt
;
387 val
= eval_sub (XCAR (args
));
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...) */)
409 cond
= eval_sub (XCAR (args
));
413 return eval_sub (Fcar (XCDR (args
)));
414 return Fprogn (XCDR (XCDR (args
)));
417 DEFUN ("cond", Fcond
, Scond
, 0, UNEVALLED
, 0,
418 doc
: /* Try each clause until one succeeds.
419 Each clause looks like (CONDITION BODY...). CONDITION is evaluated
420 and, if the value is non-nil, this clause succeeds:
421 then the expressions in BODY are evaluated and the last one's
422 value is the value of the cond-form.
423 If a clause has one element, as in (CONDITION), then the cond-form
424 returns CONDITION's value, if that is non-nil.
425 If no clause succeeds, cond returns nil.
426 usage: (cond CLAUSES...) */)
429 Lisp_Object val
= args
;
435 Lisp_Object clause
= XCAR (args
);
436 val
= eval_sub (Fcar (clause
));
439 if (!NILP (XCDR (clause
)))
440 val
= Fprogn (XCDR (clause
));
450 DEFUN ("progn", Fprogn
, Sprogn
, 0, UNEVALLED
, 0,
451 doc
: /* Eval BODY forms sequentially and return value of last one.
452 usage: (progn BODY...) */)
455 Lisp_Object val
= Qnil
;
462 val
= eval_sub (XCAR (body
));
470 /* Evaluate BODY sequentially, discarding its value. Suitable for
471 record_unwind_protect. */
474 unwind_body (Lisp_Object body
)
479 DEFUN ("prog1", Fprog1
, Sprog1
, 1, UNEVALLED
, 0,
480 doc
: /* Eval FIRST and BODY sequentially; return value from FIRST.
481 The value of FIRST is saved during the evaluation of the remaining args,
482 whose values are discarded.
483 usage: (prog1 FIRST BODY...) */)
487 Lisp_Object args_left
;
488 struct gcpro gcpro1
, gcpro2
;
494 val
= eval_sub (XCAR (args_left
));
495 while (CONSP (args_left
= XCDR (args_left
)))
496 eval_sub (XCAR (args_left
));
502 DEFUN ("prog2", Fprog2
, Sprog2
, 2, UNEVALLED
, 0,
503 doc
: /* Eval FORM1, FORM2 and BODY sequentially; return value from FORM2.
504 The value of FORM2 is saved during the evaluation of the
505 remaining args, whose values are discarded.
506 usage: (prog2 FORM1 FORM2 BODY...) */)
512 eval_sub (XCAR (args
));
514 return Fprog1 (XCDR (args
));
517 DEFUN ("setq", Fsetq
, Ssetq
, 0, UNEVALLED
, 0,
518 doc
: /* Set each SYM to the value of its VAL.
519 The symbols SYM are variables; they are literal (not evaluated).
520 The values VAL are expressions; they are evaluated.
521 Thus, (setq x (1+ y)) sets `x' to the value of `(1+ y)'.
522 The second VAL is not computed until after the first SYM is set, and so on;
523 each VAL can use the new value of variables set earlier in the `setq'.
524 The return value of the `setq' form is the value of the last VAL.
525 usage: (setq [SYM VAL]...) */)
528 Lisp_Object val
, sym
, lex_binding
;
533 Lisp_Object args_left
= args
;
539 val
= eval_sub (Fcar (XCDR (args_left
)));
540 sym
= XCAR (args_left
);
542 /* Like for eval_sub, we do not check declared_special here since
543 it's been done when let-binding. */
544 if (!NILP (Vinternal_interpreter_environment
) /* Mere optimization! */
546 && !NILP (lex_binding
547 = Fassq (sym
, Vinternal_interpreter_environment
)))
548 XSETCDR (lex_binding
, val
); /* SYM is lexically bound. */
550 Fset (sym
, val
); /* SYM is dynamically bound. */
552 args_left
= Fcdr (XCDR (args_left
));
554 while (CONSP (args_left
));
562 DEFUN ("quote", Fquote
, Squote
, 1, UNEVALLED
, 0,
563 doc
: /* Return the argument, without evaluating it. `(quote x)' yields `x'.
564 Warning: `quote' does not construct its return value, but just returns
565 the value that was pre-constructed by the Lisp reader (see info node
566 `(elisp)Printed Representation').
567 This means that '(a . b) is not identical to (cons 'a 'b): the former
568 does not cons. Quoting should be reserved for constants that will
569 never be modified by side-effects, unless you like self-modifying code.
570 See the common pitfall in info node `(elisp)Rearrangement' for an example
571 of unexpected results when a quoted object is modified.
572 usage: (quote ARG) */)
575 if (CONSP (XCDR (args
)))
576 xsignal2 (Qwrong_number_of_arguments
, Qquote
, Flength (args
));
580 DEFUN ("function", Ffunction
, Sfunction
, 1, UNEVALLED
, 0,
581 doc
: /* Like `quote', but preferred for objects which are functions.
582 In byte compilation, `function' causes its argument to be compiled.
583 `quote' cannot do that.
584 usage: (function ARG) */)
587 Lisp_Object quoted
= XCAR (args
);
589 if (CONSP (XCDR (args
)))
590 xsignal2 (Qwrong_number_of_arguments
, Qfunction
, Flength (args
));
592 if (!NILP (Vinternal_interpreter_environment
)
594 && EQ (XCAR (quoted
), Qlambda
))
595 /* This is a lambda expression within a lexical environment;
596 return an interpreted closure instead of a simple lambda. */
597 return Fcons (Qclosure
, Fcons (Vinternal_interpreter_environment
,
600 /* Simply quote the argument. */
605 DEFUN ("defvaralias", Fdefvaralias
, Sdefvaralias
, 2, 3, 0,
606 doc
: /* Make NEW-ALIAS a variable alias for symbol BASE-VARIABLE.
607 Aliased variables always have the same value; setting one sets the other.
608 Third arg DOCSTRING, if non-nil, is documentation for NEW-ALIAS. If it is
609 omitted or nil, NEW-ALIAS gets the documentation string of BASE-VARIABLE,
610 or of the variable at the end of the chain of aliases, if BASE-VARIABLE is
611 itself an alias. If NEW-ALIAS is bound, and BASE-VARIABLE is not,
612 then the value of BASE-VARIABLE is set to that of NEW-ALIAS.
613 The return value is BASE-VARIABLE. */)
614 (Lisp_Object new_alias
, Lisp_Object base_variable
, Lisp_Object docstring
)
616 struct Lisp_Symbol
*sym
;
618 CHECK_SYMBOL (new_alias
);
619 CHECK_SYMBOL (base_variable
);
621 sym
= XSYMBOL (new_alias
);
624 /* Not sure why, but why not? */
625 error ("Cannot make a constant an alias");
627 switch (sym
->redirect
)
629 case SYMBOL_FORWARDED
:
630 error ("Cannot make an internal variable an alias");
631 case SYMBOL_LOCALIZED
:
632 error ("Don't know how to make a localized variable an alias");
635 /* http://lists.gnu.org/archive/html/emacs-devel/2008-04/msg00834.html
636 If n_a is bound, but b_v is not, set the value of b_v to n_a,
637 so that old-code that affects n_a before the aliasing is setup
639 if (NILP (Fboundp (base_variable
)))
640 set_internal (base_variable
, find_symbol_value (new_alias
), Qnil
, 1);
643 union specbinding
*p
;
645 for (p
= specpdl_ptr
; p
> specpdl
; )
646 if ((--p
)->kind
>= SPECPDL_LET
647 && (EQ (new_alias
, specpdl_symbol (p
))))
648 error ("Don't know how to make a let-bound variable an alias");
651 sym
->declared_special
= 1;
652 XSYMBOL (base_variable
)->declared_special
= 1;
653 sym
->redirect
= SYMBOL_VARALIAS
;
654 SET_SYMBOL_ALIAS (sym
, XSYMBOL (base_variable
));
655 sym
->constant
= SYMBOL_CONSTANT_P (base_variable
);
656 LOADHIST_ATTACH (new_alias
);
657 /* Even if docstring is nil: remove old docstring. */
658 Fput (new_alias
, Qvariable_documentation
, docstring
);
660 return base_variable
;
663 static union specbinding
*
664 default_toplevel_binding (Lisp_Object symbol
)
666 union specbinding
*binding
= NULL
;
667 union specbinding
*pdl
= specpdl_ptr
;
668 while (pdl
> specpdl
)
670 switch ((--pdl
)->kind
)
672 case SPECPDL_LET_DEFAULT
:
674 if (EQ (specpdl_symbol (pdl
), symbol
))
682 DEFUN ("default-toplevel-value", Fdefault_toplevel_value
, Sdefault_toplevel_value
, 1, 1, 0,
683 doc
: /* Return SYMBOL's toplevel default value.
684 "Toplevel" means outside of any let binding. */)
687 union specbinding
*binding
= default_toplevel_binding (symbol
);
689 = binding
? specpdl_old_value (binding
) : Fdefault_value (symbol
);
690 if (!EQ (value
, Qunbound
))
692 xsignal1 (Qvoid_variable
, symbol
);
695 DEFUN ("set-default-toplevel-value", Fset_default_toplevel_value
,
696 Sset_default_toplevel_value
, 2, 2, 0,
697 doc
: /* Set SYMBOL's toplevel default value to VALUE.
698 "Toplevel" means outside of any let binding. */)
699 (Lisp_Object symbol
, Lisp_Object value
)
701 union specbinding
*binding
= default_toplevel_binding (symbol
);
703 set_specpdl_old_value (binding
, value
);
705 Fset_default (symbol
, value
);
709 DEFUN ("defvar", Fdefvar
, Sdefvar
, 1, UNEVALLED
, 0,
710 doc
: /* Define SYMBOL as a variable, and return SYMBOL.
711 You are not required to define a variable in order to use it, but
712 defining it lets you supply an initial value and documentation, which
713 can be referred to by the Emacs help facilities and other programming
714 tools. The `defvar' form also declares the variable as \"special\",
715 so that it is always dynamically bound even if `lexical-binding' is t.
717 The optional argument INITVALUE is evaluated, and used to set SYMBOL,
718 only if SYMBOL's value is void. If SYMBOL is buffer-local, its
719 default value is what is set; buffer-local values are not affected.
720 If INITVALUE is missing, SYMBOL's value is not set.
722 If SYMBOL has a local binding, then this form affects the local
723 binding. This is usually not what you want. Thus, if you need to
724 load a file defining variables, with this form or with `defconst' or
725 `defcustom', you should always load that file _outside_ any bindings
726 for these variables. \(`defconst' and `defcustom' behave similarly in
729 The optional argument DOCSTRING is a documentation string for the
732 To define a user option, use `defcustom' instead of `defvar'.
733 usage: (defvar SYMBOL &optional INITVALUE DOCSTRING) */)
736 Lisp_Object sym
, tem
, tail
;
743 if (CONSP (XCDR (tail
)) && CONSP (XCDR (XCDR (tail
))))
744 error ("Too many arguments");
746 tem
= Fdefault_boundp (sym
);
748 /* Do it before evaluating the initial value, for self-references. */
749 XSYMBOL (sym
)->declared_special
= 1;
752 Fset_default (sym
, eval_sub (XCAR (tail
)));
754 { /* Check if there is really a global binding rather than just a let
755 binding that shadows the global unboundness of the var. */
756 union specbinding
*binding
= default_toplevel_binding (sym
);
757 if (binding
&& EQ (specpdl_old_value (binding
), Qunbound
))
759 set_specpdl_old_value (binding
, eval_sub (XCAR (tail
)));
766 if (!NILP (Vpurify_flag
))
767 tem
= Fpurecopy (tem
);
768 Fput (sym
, Qvariable_documentation
, tem
);
770 LOADHIST_ATTACH (sym
);
772 else if (!NILP (Vinternal_interpreter_environment
)
773 && !XSYMBOL (sym
)->declared_special
)
774 /* A simple (defvar foo) with lexical scoping does "nothing" except
775 declare that var to be dynamically scoped *locally* (i.e. within
776 the current file or let-block). */
777 Vinternal_interpreter_environment
778 = Fcons (sym
, Vinternal_interpreter_environment
);
781 /* Simple (defvar <var>) should not count as a definition at all.
782 It could get in the way of other definitions, and unloading this
783 package could try to make the variable unbound. */
789 DEFUN ("defconst", Fdefconst
, Sdefconst
, 2, UNEVALLED
, 0,
790 doc
: /* Define SYMBOL as a constant variable.
791 This declares that neither programs nor users should ever change the
792 value. This constancy is not actually enforced by Emacs Lisp, but
793 SYMBOL is marked as a special variable so that it is never lexically
796 The `defconst' form always sets the value of SYMBOL to the result of
797 evalling INITVALUE. If SYMBOL is buffer-local, its default value is
798 what is set; buffer-local values are not affected. If SYMBOL has a
799 local binding, then this form sets the local binding's value.
800 However, you should normally not make local bindings for variables
801 defined with this form.
803 The optional DOCSTRING specifies the variable's documentation string.
804 usage: (defconst SYMBOL INITVALUE [DOCSTRING]) */)
807 Lisp_Object sym
, tem
;
810 if (CONSP (Fcdr (XCDR (XCDR (args
)))))
811 error ("Too many arguments");
813 tem
= eval_sub (Fcar (XCDR (args
)));
814 if (!NILP (Vpurify_flag
))
815 tem
= Fpurecopy (tem
);
816 Fset_default (sym
, tem
);
817 XSYMBOL (sym
)->declared_special
= 1;
818 tem
= Fcar (XCDR (XCDR (args
)));
821 if (!NILP (Vpurify_flag
))
822 tem
= Fpurecopy (tem
);
823 Fput (sym
, Qvariable_documentation
, tem
);
825 Fput (sym
, Qrisky_local_variable
, Qt
);
826 LOADHIST_ATTACH (sym
);
830 /* Make SYMBOL lexically scoped. */
831 DEFUN ("internal-make-var-non-special", Fmake_var_non_special
,
832 Smake_var_non_special
, 1, 1, 0,
833 doc
: /* Internal function. */)
836 CHECK_SYMBOL (symbol
);
837 XSYMBOL (symbol
)->declared_special
= 0;
842 DEFUN ("let*", FletX
, SletX
, 1, UNEVALLED
, 0,
843 doc
: /* Bind variables according to VARLIST then eval BODY.
844 The value of the last form in BODY is returned.
845 Each element of VARLIST is a symbol (which is bound to nil)
846 or a list (SYMBOL VALUEFORM) (which binds SYMBOL to the value of VALUEFORM).
847 Each VALUEFORM can refer to the symbols already bound by this VARLIST.
848 usage: (let* VARLIST BODY...) */)
851 Lisp_Object varlist
, var
, val
, elt
, lexenv
;
852 ptrdiff_t count
= SPECPDL_INDEX ();
853 struct gcpro gcpro1
, gcpro2
, gcpro3
;
855 GCPRO3 (args
, elt
, varlist
);
857 lexenv
= Vinternal_interpreter_environment
;
859 varlist
= XCAR (args
);
860 while (CONSP (varlist
))
864 elt
= XCAR (varlist
);
870 else if (! NILP (Fcdr (Fcdr (elt
))))
871 signal_error ("`let' bindings can have only one value-form", elt
);
875 val
= eval_sub (Fcar (Fcdr (elt
)));
878 if (!NILP (lexenv
) && SYMBOLP (var
)
879 && !XSYMBOL (var
)->declared_special
880 && NILP (Fmemq (var
, Vinternal_interpreter_environment
)))
881 /* Lexically bind VAR by adding it to the interpreter's binding
885 = Fcons (Fcons (var
, val
), Vinternal_interpreter_environment
);
886 if (EQ (Vinternal_interpreter_environment
, lexenv
))
887 /* Save the old lexical environment on the specpdl stack,
888 but only for the first lexical binding, since we'll never
889 need to revert to one of the intermediate ones. */
890 specbind (Qinternal_interpreter_environment
, newenv
);
892 Vinternal_interpreter_environment
= newenv
;
897 varlist
= XCDR (varlist
);
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...) */)
913 Lisp_Object
*temps
, tem
, lexenv
;
914 register Lisp_Object elt
, varlist
;
915 ptrdiff_t count
= SPECPDL_INDEX ();
917 struct gcpro gcpro1
, gcpro2
;
920 varlist
= XCAR (args
);
922 /* Make space to hold the values to give the bound variables. */
923 elt
= Flength (varlist
);
924 SAFE_ALLOCA_LISP (temps
, XFASTINT (elt
));
926 /* Compute the values and store them in `temps'. */
928 GCPRO2 (args
, *temps
);
931 for (argnum
= 0; CONSP (varlist
); varlist
= XCDR (varlist
))
934 elt
= XCAR (varlist
);
936 temps
[argnum
++] = Qnil
;
937 else if (! NILP (Fcdr (Fcdr (elt
))))
938 signal_error ("`let' bindings can have only one value-form", elt
);
940 temps
[argnum
++] = eval_sub (Fcar (Fcdr (elt
)));
941 gcpro2
.nvars
= argnum
;
945 lexenv
= Vinternal_interpreter_environment
;
947 varlist
= XCAR (args
);
948 for (argnum
= 0; CONSP (varlist
); varlist
= XCDR (varlist
))
952 elt
= XCAR (varlist
);
953 var
= SYMBOLP (elt
) ? elt
: Fcar (elt
);
954 tem
= temps
[argnum
++];
956 if (!NILP (lexenv
) && SYMBOLP (var
)
957 && !XSYMBOL (var
)->declared_special
958 && NILP (Fmemq (var
, Vinternal_interpreter_environment
)))
959 /* Lexically bind VAR by adding it to the lexenv alist. */
960 lexenv
= Fcons (Fcons (var
, tem
), lexenv
);
962 /* Dynamically bind VAR. */
966 if (!EQ (lexenv
, Vinternal_interpreter_environment
))
967 /* Instantiate a new lexical environment. */
968 specbind (Qinternal_interpreter_environment
, lexenv
);
970 elt
= Fprogn (XCDR (args
));
972 return unbind_to (count
, elt
);
975 DEFUN ("while", Fwhile
, Swhile
, 1, UNEVALLED
, 0,
976 doc
: /* If TEST yields non-nil, eval BODY... and repeat.
977 The order of execution is thus TEST, BODY, TEST, BODY and so on
978 until TEST returns nil.
979 usage: (while TEST BODY...) */)
982 Lisp_Object test
, body
;
983 struct gcpro gcpro1
, gcpro2
;
989 while (!NILP (eval_sub (test
)))
999 DEFUN ("macroexpand", Fmacroexpand
, Smacroexpand
, 1, 2, 0,
1000 doc
: /* Return result of expanding macros at top level of FORM.
1001 If FORM is not a macro call, it is returned unchanged.
1002 Otherwise, the macro is expanded and the expansion is considered
1003 in place of FORM. When a non-macro-call results, it is returned.
1005 The second optional arg ENVIRONMENT specifies an environment of macro
1006 definitions to shadow the loaded ones for use in file byte-compilation. */)
1007 (Lisp_Object form
, Lisp_Object environment
)
1009 /* With cleanups from Hallvard Furuseth. */
1010 register Lisp_Object expander
, sym
, def
, tem
;
1014 /* Come back here each time we expand a macro call,
1015 in case it expands into another macro call. */
1018 /* Set SYM, give DEF and TEM right values in case SYM is not a symbol. */
1019 def
= sym
= XCAR (form
);
1021 /* Trace symbols aliases to other symbols
1022 until we get a symbol that is not an alias. */
1023 while (SYMBOLP (def
))
1027 tem
= Fassq (sym
, environment
);
1030 def
= XSYMBOL (sym
)->function
;
1036 /* Right now TEM is the result from SYM in ENVIRONMENT,
1037 and if TEM is nil then DEF is SYM's function definition. */
1040 /* SYM is not mentioned in ENVIRONMENT.
1041 Look at its function definition. */
1042 struct gcpro gcpro1
;
1044 def
= Fautoload_do_load (def
, sym
, Qmacro
);
1047 /* Not defined or definition not suitable. */
1049 if (!EQ (XCAR (def
), Qmacro
))
1051 else expander
= XCDR (def
);
1055 expander
= XCDR (tem
);
1056 if (NILP (expander
))
1060 Lisp_Object newform
= apply1 (expander
, XCDR (form
));
1061 if (EQ (form
, newform
))
1070 DEFUN ("catch", Fcatch
, Scatch
, 1, UNEVALLED
, 0,
1071 doc
: /* Eval BODY allowing nonlocal exits using `throw'.
1072 TAG is evalled to get the tag to use; it must not be nil.
1074 Then the BODY is executed.
1075 Within BODY, a call to `throw' with the same TAG exits BODY and this `catch'.
1076 If no throw happens, `catch' returns the value of the last BODY form.
1077 If a throw happens, it specifies the value to return from `catch'.
1078 usage: (catch TAG BODY...) */)
1081 register Lisp_Object tag
;
1082 struct gcpro gcpro1
;
1085 tag
= eval_sub (XCAR (args
));
1087 return internal_catch (tag
, Fprogn
, XCDR (args
));
1090 /* Assert that E is true, as a comment only. Use this instead of
1091 eassert (E) when E contains variables that might be clobbered by a
1094 #define clobbered_eassert(E) ((void) 0)
1096 /* Set up a catch, then call C function FUNC on argument ARG.
1097 FUNC should return a Lisp_Object.
1098 This is how catches are done from within C code. */
1101 internal_catch (Lisp_Object tag
, Lisp_Object (*func
) (Lisp_Object
), Lisp_Object arg
)
1103 /* This structure is made part of the chain `catchlist'. */
1106 /* Fill in the components of c, and put it on the list. */
1107 PUSH_HANDLER (c
, tag
, CATCHER
);
1110 if (! sys_setjmp (c
->jmp
))
1112 Lisp_Object val
= (*func
) (arg
);
1113 clobbered_eassert (handlerlist
== c
);
1114 handlerlist
= handlerlist
->next
;
1118 { /* Throw works by a longjmp that comes right here. */
1119 Lisp_Object val
= handlerlist
->val
;
1120 clobbered_eassert (handlerlist
== c
);
1121 handlerlist
= handlerlist
->next
;
1126 /* Unwind the specbind, catch, and handler stacks back to CATCH, and
1127 jump to that CATCH, returning VALUE as the value of that catch.
1129 This is the guts of Fthrow and Fsignal; they differ only in the way
1130 they choose the catch tag to throw to. A catch tag for a
1131 condition-case form has a TAG of Qnil.
1133 Before each catch is discarded, unbind all special bindings and
1134 execute all unwind-protect clauses made above that catch. Unwind
1135 the handler stack as we go, so that the proper handlers are in
1136 effect for each unwind-protect clause we run. At the end, restore
1137 some static info saved in CATCH, and longjmp to the location
1140 This is used for correct unwinding in Fthrow and Fsignal. */
1142 static _Noreturn
void
1143 unwind_to_catch (struct handler
*catch, Lisp_Object value
)
1147 eassert (catch->next
);
1149 /* Save the value in the tag. */
1152 /* Restore certain special C variables. */
1153 set_poll_suppress_count (catch->poll_suppress_count
);
1154 unblock_input_to (catch->interrupt_input_blocked
);
1159 /* Unwind the specpdl stack, and then restore the proper set of
1161 unbind_to (handlerlist
->pdlcount
, Qnil
);
1162 last_time
= handlerlist
== catch;
1164 handlerlist
= handlerlist
->next
;
1166 while (! last_time
);
1168 eassert (handlerlist
== catch);
1170 byte_stack_list
= catch->byte_stack
;
1171 gcprolist
= catch->gcpro
;
1173 gcpro_level
= gcprolist
? gcprolist
->level
+ 1 : 0;
1175 lisp_eval_depth
= catch->lisp_eval_depth
;
1177 sys_longjmp (catch->jmp
, 1);
1180 DEFUN ("throw", Fthrow
, Sthrow
, 2, 2, 0,
1181 doc
: /* Throw to the catch for TAG and return VALUE from it.
1182 Both TAG and VALUE are evalled. */)
1183 (register Lisp_Object tag
, Lisp_Object value
)
1188 for (c
= handlerlist
; c
; c
= c
->next
)
1190 if (c
->type
== CATCHER
&& EQ (c
->tag_or_ch
, tag
))
1191 unwind_to_catch (c
, value
);
1193 xsignal2 (Qno_catch
, tag
, value
);
1197 DEFUN ("unwind-protect", Funwind_protect
, Sunwind_protect
, 1, UNEVALLED
, 0,
1198 doc
: /* Do BODYFORM, protecting with UNWINDFORMS.
1199 If BODYFORM completes normally, its value is returned
1200 after executing the UNWINDFORMS.
1201 If BODYFORM exits nonlocally, the UNWINDFORMS are executed anyway.
1202 usage: (unwind-protect BODYFORM UNWINDFORMS...) */)
1206 ptrdiff_t count
= SPECPDL_INDEX ();
1208 record_unwind_protect (unwind_body
, XCDR (args
));
1209 val
= eval_sub (XCAR (args
));
1210 return unbind_to (count
, val
);
1213 DEFUN ("condition-case", Fcondition_case
, Scondition_case
, 2, UNEVALLED
, 0,
1214 doc
: /* Regain control when an error is signaled.
1215 Executes BODYFORM and returns its value if no error happens.
1216 Each element of HANDLERS looks like (CONDITION-NAME BODY...)
1217 where the BODY is made of Lisp expressions.
1219 A handler is applicable to an error
1220 if CONDITION-NAME is one of the error's condition names.
1221 If an error happens, the first applicable handler is run.
1223 The car of a handler may be a list of condition names instead of a
1224 single condition name; then it handles all of them. If the special
1225 condition name `debug' is present in this list, it allows another
1226 condition in the list to run the debugger if `debug-on-error' and the
1227 other usual mechanisms says it should (otherwise, `condition-case'
1228 suppresses the debugger).
1230 When a handler handles an error, control returns to the `condition-case'
1231 and it executes the handler's BODY...
1232 with VAR bound to (ERROR-SYMBOL . SIGNAL-DATA) from the error.
1233 \(If VAR is nil, the handler can't access that information.)
1234 Then the value of the last BODY form is returned from the `condition-case'
1237 See also the function `signal' for more info.
1238 usage: (condition-case VAR BODYFORM &rest HANDLERS) */)
1241 Lisp_Object var
= XCAR (args
);
1242 Lisp_Object bodyform
= XCAR (XCDR (args
));
1243 Lisp_Object handlers
= XCDR (XCDR (args
));
1245 return internal_lisp_condition_case (var
, bodyform
, handlers
);
1248 /* Like Fcondition_case, but the args are separate
1249 rather than passed in a list. Used by Fbyte_code. */
1252 internal_lisp_condition_case (volatile Lisp_Object var
, Lisp_Object bodyform
,
1253 Lisp_Object handlers
)
1257 struct handler
*oldhandlerlist
= handlerlist
;
1262 for (val
= handlers
; CONSP (val
); val
= XCDR (val
))
1264 Lisp_Object tem
= XCAR (val
);
1268 && (SYMBOLP (XCAR (tem
))
1269 || CONSP (XCAR (tem
))))))
1270 error ("Invalid condition handler: %s",
1271 SDATA (Fprin1_to_string (tem
, Qt
)));
1274 { /* The first clause is the one that should be checked first, so it should
1275 be added to handlerlist last. So we build in `clauses' a table that
1276 contains `handlers' but in reverse order. */
1277 Lisp_Object
*clauses
= alloca (clausenb
* sizeof *clauses
);
1278 Lisp_Object
*volatile clauses_volatile
= clauses
;
1280 for (val
= handlers
; CONSP (val
); val
= XCDR (val
))
1281 clauses
[--i
] = XCAR (val
);
1282 for (i
= 0; i
< clausenb
; i
++)
1284 Lisp_Object clause
= clauses
[i
];
1285 Lisp_Object condition
= XCAR (clause
);
1286 if (!CONSP (condition
))
1287 condition
= Fcons (condition
, Qnil
);
1288 PUSH_HANDLER (c
, condition
, CONDITION_CASE
);
1289 if (sys_setjmp (c
->jmp
))
1291 ptrdiff_t count
= SPECPDL_INDEX ();
1292 Lisp_Object val
= handlerlist
->val
;
1293 Lisp_Object
*chosen_clause
= clauses_volatile
;
1294 for (c
= handlerlist
->next
; c
!= oldhandlerlist
; c
= c
->next
)
1296 handlerlist
= oldhandlerlist
;
1299 if (!NILP (Vinternal_interpreter_environment
))
1300 specbind (Qinternal_interpreter_environment
,
1301 Fcons (Fcons (var
, val
),
1302 Vinternal_interpreter_environment
));
1304 specbind (var
, val
);
1306 val
= Fprogn (XCDR (*chosen_clause
));
1307 /* Note that this just undoes the binding of var; whoever
1308 longjumped to us unwound the stack to c.pdlcount before
1311 unbind_to (count
, Qnil
);
1317 val
= eval_sub (bodyform
);
1318 handlerlist
= oldhandlerlist
;
1322 /* Call the function BFUN with no arguments, catching errors within it
1323 according to HANDLERS. If there is an error, call HFUN with
1324 one argument which is the data that describes the error:
1327 HANDLERS can be a list of conditions to catch.
1328 If HANDLERS is Qt, catch all errors.
1329 If HANDLERS is Qerror, catch all errors
1330 but allow the debugger to run if that is enabled. */
1333 internal_condition_case (Lisp_Object (*bfun
) (void), Lisp_Object handlers
,
1334 Lisp_Object (*hfun
) (Lisp_Object
))
1339 PUSH_HANDLER (c
, handlers
, CONDITION_CASE
);
1340 if (sys_setjmp (c
->jmp
))
1342 Lisp_Object val
= handlerlist
->val
;
1343 clobbered_eassert (handlerlist
== c
);
1344 handlerlist
= handlerlist
->next
;
1345 return (*hfun
) (val
);
1349 clobbered_eassert (handlerlist
== c
);
1350 handlerlist
= handlerlist
->next
;
1354 /* Like internal_condition_case but call BFUN with ARG as its argument. */
1357 internal_condition_case_1 (Lisp_Object (*bfun
) (Lisp_Object
), Lisp_Object arg
,
1358 Lisp_Object handlers
, Lisp_Object (*hfun
) (Lisp_Object
))
1363 PUSH_HANDLER (c
, handlers
, CONDITION_CASE
);
1364 if (sys_setjmp (c
->jmp
))
1366 Lisp_Object val
= handlerlist
->val
;
1367 clobbered_eassert (handlerlist
== c
);
1368 handlerlist
= handlerlist
->next
;
1369 return (*hfun
) (val
);
1372 val
= (*bfun
) (arg
);
1373 clobbered_eassert (handlerlist
== c
);
1374 handlerlist
= handlerlist
->next
;
1378 /* Like internal_condition_case_1 but call BFUN with ARG1 and ARG2 as
1382 internal_condition_case_2 (Lisp_Object (*bfun
) (Lisp_Object
, Lisp_Object
),
1385 Lisp_Object handlers
,
1386 Lisp_Object (*hfun
) (Lisp_Object
))
1391 PUSH_HANDLER (c
, handlers
, CONDITION_CASE
);
1392 if (sys_setjmp (c
->jmp
))
1394 Lisp_Object val
= handlerlist
->val
;
1395 clobbered_eassert (handlerlist
== c
);
1396 handlerlist
= handlerlist
->next
;
1397 return (*hfun
) (val
);
1400 val
= (*bfun
) (arg1
, arg2
);
1401 clobbered_eassert (handlerlist
== c
);
1402 handlerlist
= handlerlist
->next
;
1406 /* Like internal_condition_case but call BFUN with NARGS as first,
1407 and ARGS as second argument. */
1410 internal_condition_case_n (Lisp_Object (*bfun
) (ptrdiff_t, Lisp_Object
*),
1413 Lisp_Object handlers
,
1414 Lisp_Object (*hfun
) (Lisp_Object err
,
1421 PUSH_HANDLER (c
, handlers
, CONDITION_CASE
);
1422 if (sys_setjmp (c
->jmp
))
1424 Lisp_Object val
= handlerlist
->val
;
1425 clobbered_eassert (handlerlist
== c
);
1426 handlerlist
= handlerlist
->next
;
1427 return (*hfun
) (val
, nargs
, args
);
1430 val
= (*bfun
) (nargs
, args
);
1431 clobbered_eassert (handlerlist
== c
);
1432 handlerlist
= handlerlist
->next
;
1437 static Lisp_Object
find_handler_clause (Lisp_Object
, Lisp_Object
);
1438 static bool maybe_call_debugger (Lisp_Object conditions
, Lisp_Object sig
,
1442 process_quit_flag (void)
1444 Lisp_Object flag
= Vquit_flag
;
1446 if (EQ (flag
, Qkill_emacs
))
1448 if (EQ (Vthrow_on_input
, flag
))
1449 Fthrow (Vthrow_on_input
, Qt
);
1450 Fsignal (Qquit
, Qnil
);
1453 DEFUN ("signal", Fsignal
, Ssignal
, 2, 2, 0,
1454 doc
: /* Signal an error. Args are ERROR-SYMBOL and associated DATA.
1455 This function does not return.
1457 An error symbol is a symbol with an `error-conditions' property
1458 that is a list of condition names.
1459 A handler for any of those names will get to handle this signal.
1460 The symbol `error' should normally be one of them.
1462 DATA should be a list. Its elements are printed as part of the error message.
1463 See Info anchor `(elisp)Definition of signal' for some details on how this
1464 error message is constructed.
1465 If the signal is handled, DATA is made available to the handler.
1466 See also the function `condition-case'. */)
1467 (Lisp_Object error_symbol
, Lisp_Object data
)
1469 /* When memory is full, ERROR-SYMBOL is nil,
1470 and DATA is (REAL-ERROR-SYMBOL . REAL-DATA).
1471 That is a special case--don't do this in other situations. */
1472 Lisp_Object conditions
;
1474 Lisp_Object real_error_symbol
1475 = (NILP (error_symbol
) ? Fcar (data
) : error_symbol
);
1476 register Lisp_Object clause
= Qnil
;
1481 if (gc_in_progress
|| waiting_for_input
)
1484 #if 0 /* rms: I don't know why this was here,
1485 but it is surely wrong for an error that is handled. */
1486 #ifdef HAVE_WINDOW_SYSTEM
1487 if (display_hourglass_p
)
1488 cancel_hourglass ();
1492 /* This hook is used by edebug. */
1493 if (! NILP (Vsignal_hook_function
)
1494 && ! NILP (error_symbol
))
1496 /* Edebug takes care of restoring these variables when it exits. */
1497 if (lisp_eval_depth
+ 20 > max_lisp_eval_depth
)
1498 max_lisp_eval_depth
= lisp_eval_depth
+ 20;
1500 if (SPECPDL_INDEX () + 40 > max_specpdl_size
)
1501 max_specpdl_size
= SPECPDL_INDEX () + 40;
1503 call2 (Vsignal_hook_function
, error_symbol
, data
);
1506 conditions
= Fget (real_error_symbol
, Qerror_conditions
);
1508 /* Remember from where signal was called. Skip over the frame for
1509 `signal' itself. If a frame for `error' follows, skip that,
1510 too. Don't do this when ERROR_SYMBOL is nil, because that
1511 is a memory-full error. */
1512 Vsignaling_function
= Qnil
;
1513 if (!NILP (error_symbol
))
1515 union specbinding
*pdl
= backtrace_next (backtrace_top ());
1516 if (backtrace_p (pdl
) && EQ (backtrace_function (pdl
), Qerror
))
1517 pdl
= backtrace_next (pdl
);
1518 if (backtrace_p (pdl
))
1519 Vsignaling_function
= backtrace_function (pdl
);
1522 for (h
= handlerlist
; h
; h
= h
->next
)
1524 if (h
->type
!= CONDITION_CASE
)
1526 clause
= find_handler_clause (h
->tag_or_ch
, conditions
);
1531 if (/* Don't run the debugger for a memory-full error.
1532 (There is no room in memory to do that!) */
1533 !NILP (error_symbol
)
1534 && (!NILP (Vdebug_on_signal
)
1535 /* If no handler is present now, try to run the debugger. */
1537 /* A `debug' symbol in the handler list disables the normal
1538 suppression of the debugger. */
1539 || (CONSP (clause
) && !NILP (Fmemq (Qdebug
, clause
)))
1540 /* Special handler that means "print a message and run debugger
1542 || EQ (h
->tag_or_ch
, Qerror
)))
1544 bool debugger_called
1545 = maybe_call_debugger (conditions
, error_symbol
, data
);
1546 /* We can't return values to code which signaled an error, but we
1547 can continue code which has signaled a quit. */
1548 if (debugger_called
&& EQ (real_error_symbol
, Qquit
))
1554 Lisp_Object unwind_data
1555 = (NILP (error_symbol
) ? data
: Fcons (error_symbol
, data
));
1557 unwind_to_catch (h
, unwind_data
);
1561 if (handlerlist
!= &handlerlist_sentinel
)
1562 /* FIXME: This will come right back here if there's no `top-level'
1563 catcher. A better solution would be to abort here, and instead
1564 add a catch-all condition handler so we never come here. */
1565 Fthrow (Qtop_level
, Qt
);
1568 if (! NILP (error_symbol
))
1569 data
= Fcons (error_symbol
, data
);
1571 string
= Ferror_message_string (data
);
1572 fatal ("%s", SDATA (string
));
1575 /* Internal version of Fsignal that never returns.
1576 Used for anything but Qquit (which can return from Fsignal). */
1579 xsignal (Lisp_Object error_symbol
, Lisp_Object data
)
1581 Fsignal (error_symbol
, data
);
1585 /* Like xsignal, but takes 0, 1, 2, or 3 args instead of a list. */
1588 xsignal0 (Lisp_Object error_symbol
)
1590 xsignal (error_symbol
, Qnil
);
1594 xsignal1 (Lisp_Object error_symbol
, Lisp_Object arg
)
1596 xsignal (error_symbol
, list1 (arg
));
1600 xsignal2 (Lisp_Object error_symbol
, Lisp_Object arg1
, Lisp_Object arg2
)
1602 xsignal (error_symbol
, list2 (arg1
, arg2
));
1606 xsignal3 (Lisp_Object error_symbol
, Lisp_Object arg1
, Lisp_Object arg2
, Lisp_Object arg3
)
1608 xsignal (error_symbol
, list3 (arg1
, arg2
, arg3
));
1611 /* Signal `error' with message S, and additional arg ARG.
1612 If ARG is not a genuine list, make it a one-element list. */
1615 signal_error (const char *s
, Lisp_Object arg
)
1617 Lisp_Object tortoise
, hare
;
1619 hare
= tortoise
= arg
;
1620 while (CONSP (hare
))
1627 tortoise
= XCDR (tortoise
);
1629 if (EQ (hare
, tortoise
))
1636 xsignal (Qerror
, Fcons (build_string (s
), arg
));
1640 /* Return true if LIST is a non-nil atom or
1641 a list containing one of CONDITIONS. */
1644 wants_debugger (Lisp_Object list
, Lisp_Object conditions
)
1651 while (CONSP (conditions
))
1653 Lisp_Object
this, tail
;
1654 this = XCAR (conditions
);
1655 for (tail
= list
; CONSP (tail
); tail
= XCDR (tail
))
1656 if (EQ (XCAR (tail
), this))
1658 conditions
= XCDR (conditions
);
1663 /* Return true if an error with condition-symbols CONDITIONS,
1664 and described by SIGNAL-DATA, should skip the debugger
1665 according to debugger-ignored-errors. */
1668 skip_debugger (Lisp_Object conditions
, Lisp_Object data
)
1671 bool first_string
= 1;
1672 Lisp_Object error_message
;
1674 error_message
= Qnil
;
1675 for (tail
= Vdebug_ignored_errors
; CONSP (tail
); tail
= XCDR (tail
))
1677 if (STRINGP (XCAR (tail
)))
1681 error_message
= Ferror_message_string (data
);
1685 if (fast_string_match (XCAR (tail
), error_message
) >= 0)
1690 Lisp_Object contail
;
1692 for (contail
= conditions
; CONSP (contail
); contail
= XCDR (contail
))
1693 if (EQ (XCAR (tail
), XCAR (contail
)))
1701 /* Call the debugger if calling it is currently enabled for CONDITIONS.
1702 SIG and DATA describe the signal. There are two ways to pass them:
1703 = SIG is the error symbol, and DATA is the rest of the data.
1704 = SIG is nil, and DATA is (SYMBOL . REST-OF-DATA).
1705 This is for memory-full errors only. */
1707 maybe_call_debugger (Lisp_Object conditions
, Lisp_Object sig
, Lisp_Object data
)
1709 Lisp_Object combined_data
;
1711 combined_data
= Fcons (sig
, data
);
1714 /* Don't try to run the debugger with interrupts blocked.
1715 The editing loop would return anyway. */
1716 ! input_blocked_p ()
1717 && NILP (Vinhibit_debugger
)
1718 /* Does user want to enter debugger for this kind of error? */
1721 : wants_debugger (Vdebug_on_error
, conditions
))
1722 && ! skip_debugger (conditions
, combined_data
)
1723 /* RMS: What's this for? */
1724 && when_entered_debugger
< num_nonmacro_input_events
)
1726 call_debugger (list2 (Qerror
, combined_data
));
1734 find_handler_clause (Lisp_Object handlers
, Lisp_Object conditions
)
1736 register Lisp_Object h
;
1738 /* t is used by handlers for all conditions, set up by C code. */
1739 if (EQ (handlers
, Qt
))
1742 /* error is used similarly, but means print an error message
1743 and run the debugger if that is enabled. */
1744 if (EQ (handlers
, Qerror
))
1747 for (h
= handlers
; CONSP (h
); h
= XCDR (h
))
1749 Lisp_Object handler
= XCAR (h
);
1750 if (!NILP (Fmemq (handler
, conditions
)))
1758 /* Dump an error message; called like vprintf. */
1760 verror (const char *m
, va_list ap
)
1763 ptrdiff_t size
= sizeof buf
;
1764 ptrdiff_t size_max
= STRING_BYTES_BOUND
+ 1;
1769 used
= evxprintf (&buffer
, &size
, buf
, size_max
, m
, ap
);
1770 string
= make_string (buffer
, used
);
1774 xsignal1 (Qerror
, string
);
1778 /* Dump an error message; called like printf. */
1782 error (const char *m
, ...)
1789 DEFUN ("commandp", Fcommandp
, Scommandp
, 1, 2, 0,
1790 doc
: /* Non-nil if FUNCTION makes provisions for interactive calling.
1791 This means it contains a description for how to read arguments to give it.
1792 The value is nil for an invalid function or a symbol with no function
1795 Interactively callable functions include strings and vectors (treated
1796 as keyboard macros), lambda-expressions that contain a top-level call
1797 to `interactive', autoload definitions made by `autoload' with non-nil
1798 fourth argument, and some of the built-in functions of Lisp.
1800 Also, a symbol satisfies `commandp' if its function definition does so.
1802 If the optional argument FOR-CALL-INTERACTIVELY is non-nil,
1803 then strings and vectors are not accepted. */)
1804 (Lisp_Object function
, Lisp_Object for_call_interactively
)
1806 register Lisp_Object fun
;
1807 register Lisp_Object funcar
;
1808 Lisp_Object if_prop
= Qnil
;
1812 fun
= indirect_function (fun
); /* Check cycles. */
1816 /* Check an `interactive-form' property if present, analogous to the
1817 function-documentation property. */
1819 while (SYMBOLP (fun
))
1821 Lisp_Object tmp
= Fget (fun
, Qinteractive_form
);
1824 fun
= Fsymbol_function (fun
);
1827 /* Emacs primitives are interactive if their DEFUN specifies an
1828 interactive spec. */
1830 return XSUBR (fun
)->intspec
? Qt
: if_prop
;
1832 /* Bytecode objects are interactive if they are long enough to
1833 have an element whose index is COMPILED_INTERACTIVE, which is
1834 where the interactive spec is stored. */
1835 else if (COMPILEDP (fun
))
1836 return ((ASIZE (fun
) & PSEUDOVECTOR_SIZE_MASK
) > COMPILED_INTERACTIVE
1839 /* Strings and vectors are keyboard macros. */
1840 if (STRINGP (fun
) || VECTORP (fun
))
1841 return (NILP (for_call_interactively
) ? Qt
: Qnil
);
1843 /* Lists may represent commands. */
1846 funcar
= XCAR (fun
);
1847 if (EQ (funcar
, Qclosure
))
1848 return (!NILP (Fassq (Qinteractive
, Fcdr (Fcdr (XCDR (fun
)))))
1850 else if (EQ (funcar
, Qlambda
))
1851 return !NILP (Fassq (Qinteractive
, Fcdr (XCDR (fun
)))) ? Qt
: if_prop
;
1852 else if (EQ (funcar
, Qautoload
))
1853 return !NILP (Fcar (Fcdr (Fcdr (XCDR (fun
))))) ? Qt
: if_prop
;
1858 DEFUN ("autoload", Fautoload
, Sautoload
, 2, 5, 0,
1859 doc
: /* Define FUNCTION to autoload from FILE.
1860 FUNCTION is a symbol; FILE is a file name string to pass to `load'.
1861 Third arg DOCSTRING is documentation for the function.
1862 Fourth arg INTERACTIVE if non-nil says function can be called interactively.
1863 Fifth arg TYPE indicates the type of the object:
1864 nil or omitted says FUNCTION is a function,
1865 `keymap' says FUNCTION is really a keymap, and
1866 `macro' or t says FUNCTION is really a macro.
1867 Third through fifth args give info about the real definition.
1868 They default to nil.
1869 If FUNCTION is already defined other than as an autoload,
1870 this does nothing and returns nil. */)
1871 (Lisp_Object function
, Lisp_Object file
, Lisp_Object docstring
, Lisp_Object interactive
, Lisp_Object type
)
1873 CHECK_SYMBOL (function
);
1874 CHECK_STRING (file
);
1876 /* If function is defined and not as an autoload, don't override. */
1877 if (!NILP (XSYMBOL (function
)->function
)
1878 && !AUTOLOADP (XSYMBOL (function
)->function
))
1881 if (!NILP (Vpurify_flag
) && EQ (docstring
, make_number (0)))
1882 /* `read1' in lread.c has found the docstring starting with "\
1883 and assumed the docstring will be provided by Snarf-documentation, so it
1884 passed us 0 instead. But that leads to accidental sharing in purecopy's
1885 hash-consing, so we use a (hopefully) unique integer instead. */
1886 docstring
= make_number (XHASH (function
));
1887 return Fdefalias (function
,
1888 list5 (Qautoload
, file
, docstring
, interactive
, type
),
1893 un_autoload (Lisp_Object oldqueue
)
1895 Lisp_Object queue
, first
, second
;
1897 /* Queue to unwind is current value of Vautoload_queue.
1898 oldqueue is the shadowed value to leave in Vautoload_queue. */
1899 queue
= Vautoload_queue
;
1900 Vautoload_queue
= oldqueue
;
1901 while (CONSP (queue
))
1903 first
= XCAR (queue
);
1904 second
= Fcdr (first
);
1905 first
= Fcar (first
);
1906 if (EQ (first
, make_number (0)))
1909 Ffset (first
, second
);
1910 queue
= XCDR (queue
);
1914 /* Load an autoloaded function.
1915 FUNNAME is the symbol which is the function's name.
1916 FUNDEF is the autoload definition (a list). */
1918 DEFUN ("autoload-do-load", Fautoload_do_load
, Sautoload_do_load
, 1, 3, 0,
1919 doc
: /* Load FUNDEF which should be an autoload.
1920 If non-nil, FUNNAME should be the symbol whose function value is FUNDEF,
1921 in which case the function returns the new autoloaded function value.
1922 If equal to `macro', MACRO-ONLY specifies that FUNDEF should only be loaded if
1923 it defines a macro. */)
1924 (Lisp_Object fundef
, Lisp_Object funname
, Lisp_Object macro_only
)
1926 ptrdiff_t count
= SPECPDL_INDEX ();
1927 struct gcpro gcpro1
, gcpro2
, gcpro3
;
1929 if (!CONSP (fundef
) || !EQ (Qautoload
, XCAR (fundef
)))
1932 if (EQ (macro_only
, Qmacro
))
1934 Lisp_Object kind
= Fnth (make_number (4), fundef
);
1935 if (! (EQ (kind
, Qt
) || EQ (kind
, Qmacro
)))
1939 /* This is to make sure that loadup.el gives a clear picture
1940 of what files are preloaded and when. */
1941 if (! NILP (Vpurify_flag
))
1942 error ("Attempt to autoload %s while preparing to dump",
1943 SDATA (SYMBOL_NAME (funname
)));
1945 CHECK_SYMBOL (funname
);
1946 GCPRO3 (funname
, fundef
, macro_only
);
1948 /* Preserve the match data. */
1949 record_unwind_save_match_data ();
1951 /* If autoloading gets an error (which includes the error of failing
1952 to define the function being called), we use Vautoload_queue
1953 to undo function definitions and `provide' calls made by
1954 the function. We do this in the specific case of autoloading
1955 because autoloading is not an explicit request "load this file",
1956 but rather a request to "call this function".
1958 The value saved here is to be restored into Vautoload_queue. */
1959 record_unwind_protect (un_autoload
, Vautoload_queue
);
1960 Vautoload_queue
= Qt
;
1961 /* If `macro_only', assume this autoload to be a "best-effort",
1962 so don't signal an error if autoloading fails. */
1963 Fload (Fcar (Fcdr (fundef
)), macro_only
, Qt
, Qnil
, Qt
);
1965 /* Once loading finishes, don't undo it. */
1966 Vautoload_queue
= Qt
;
1967 unbind_to (count
, Qnil
);
1975 Lisp_Object fun
= Findirect_function (funname
, Qnil
);
1977 if (!NILP (Fequal (fun
, fundef
)))
1978 error ("Autoloading failed to define function %s",
1979 SDATA (SYMBOL_NAME (funname
)));
1986 DEFUN ("eval", Feval
, Seval
, 1, 2, 0,
1987 doc
: /* Evaluate FORM and return its value.
1988 If LEXICAL is t, evaluate using lexical scoping.
1989 LEXICAL can also be an actual lexical environment, in the form of an
1990 alist mapping symbols to their value. */)
1991 (Lisp_Object form
, Lisp_Object lexical
)
1993 ptrdiff_t count
= SPECPDL_INDEX ();
1994 specbind (Qinternal_interpreter_environment
,
1995 CONSP (lexical
) || NILP (lexical
) ? lexical
: list1 (Qt
));
1996 return unbind_to (count
, eval_sub (form
));
1999 /* Grow the specpdl stack by one entry.
2000 The caller should have already initialized the entry.
2001 Signal an error on stack overflow.
2003 Make sure that there is always one unused entry past the top of the
2004 stack, so that the just-initialized entry is safely unwound if
2005 memory exhausted and an error is signaled here. Also, allocate a
2006 never-used entry just before the bottom of the stack; sometimes its
2007 address is taken. */
2014 if (specpdl_ptr
== specpdl
+ specpdl_size
)
2016 ptrdiff_t count
= SPECPDL_INDEX ();
2017 ptrdiff_t max_size
= min (max_specpdl_size
, PTRDIFF_MAX
- 1000);
2018 union specbinding
*pdlvec
= specpdl
- 1;
2019 ptrdiff_t pdlvecsize
= specpdl_size
+ 1;
2020 if (max_size
<= specpdl_size
)
2022 if (max_specpdl_size
< 400)
2023 max_size
= max_specpdl_size
= 400;
2024 if (max_size
<= specpdl_size
)
2025 signal_error ("Variable binding depth exceeds max-specpdl-size",
2028 pdlvec
= xpalloc (pdlvec
, &pdlvecsize
, 1, max_size
+ 1, sizeof *specpdl
);
2029 specpdl
= pdlvec
+ 1;
2030 specpdl_size
= pdlvecsize
- 1;
2031 specpdl_ptr
= specpdl
+ count
;
2036 record_in_backtrace (Lisp_Object function
, Lisp_Object
*args
, ptrdiff_t nargs
)
2038 ptrdiff_t count
= SPECPDL_INDEX ();
2040 eassert (nargs
>= UNEVALLED
);
2041 specpdl_ptr
->bt
.kind
= SPECPDL_BACKTRACE
;
2042 specpdl_ptr
->bt
.debug_on_exit
= false;
2043 specpdl_ptr
->bt
.function
= function
;
2044 specpdl_ptr
->bt
.args
= args
;
2045 specpdl_ptr
->bt
.nargs
= nargs
;
2051 /* Eval a sub-expression of the current expression (i.e. in the same
2054 eval_sub (Lisp_Object form
)
2056 Lisp_Object fun
, val
, original_fun
, original_args
;
2058 struct gcpro gcpro1
, gcpro2
, gcpro3
;
2063 /* Look up its binding in the lexical environment.
2064 We do not pay attention to the declared_special flag here, since we
2065 already did that when let-binding the variable. */
2066 Lisp_Object lex_binding
2067 = !NILP (Vinternal_interpreter_environment
) /* Mere optimization! */
2068 ? Fassq (form
, Vinternal_interpreter_environment
)
2070 if (CONSP (lex_binding
))
2071 return XCDR (lex_binding
);
2073 return Fsymbol_value (form
);
2085 if (++lisp_eval_depth
> max_lisp_eval_depth
)
2087 if (max_lisp_eval_depth
< 100)
2088 max_lisp_eval_depth
= 100;
2089 if (lisp_eval_depth
> max_lisp_eval_depth
)
2090 error ("Lisp nesting exceeds `max-lisp-eval-depth'");
2093 original_fun
= XCAR (form
);
2094 original_args
= XCDR (form
);
2096 /* This also protects them from gc. */
2097 count
= record_in_backtrace (original_fun
, &original_args
, UNEVALLED
);
2099 if (debug_on_next_call
)
2100 do_debug_on_call (Qt
, count
);
2102 /* At this point, only original_fun and original_args
2103 have values that will be used below. */
2106 /* Optimize for no indirection. */
2109 fun
= Ffunction (Fcons (fun
, Qnil
));
2110 else if (!NILP (fun
) && (fun
= XSYMBOL (fun
)->function
, SYMBOLP (fun
)))
2111 fun
= indirect_function (fun
);
2115 Lisp_Object numargs
;
2116 Lisp_Object argvals
[8];
2117 Lisp_Object args_left
;
2118 register int i
, maxargs
;
2120 args_left
= original_args
;
2121 numargs
= Flength (args_left
);
2125 if (XINT (numargs
) < XSUBR (fun
)->min_args
2126 || (XSUBR (fun
)->max_args
>= 0
2127 && XSUBR (fun
)->max_args
< XINT (numargs
)))
2128 xsignal2 (Qwrong_number_of_arguments
, original_fun
, numargs
);
2130 else if (XSUBR (fun
)->max_args
== UNEVALLED
)
2131 val
= (XSUBR (fun
)->function
.aUNEVALLED
) (args_left
);
2132 else if (XSUBR (fun
)->max_args
== MANY
)
2134 /* Pass a vector of evaluated arguments. */
2136 ptrdiff_t argnum
= 0;
2139 SAFE_ALLOCA_LISP (vals
, XINT (numargs
));
2141 GCPRO3 (args_left
, fun
, fun
);
2145 while (!NILP (args_left
))
2147 vals
[argnum
++] = eval_sub (Fcar (args_left
));
2148 args_left
= Fcdr (args_left
);
2149 gcpro3
.nvars
= argnum
;
2152 set_backtrace_args (specpdl
+ count
, vals
, XINT (numargs
));
2154 val
= (XSUBR (fun
)->function
.aMANY
) (XINT (numargs
), vals
);
2160 GCPRO3 (args_left
, fun
, fun
);
2161 gcpro3
.var
= argvals
;
2164 maxargs
= XSUBR (fun
)->max_args
;
2165 for (i
= 0; i
< maxargs
; args_left
= Fcdr (args_left
))
2167 argvals
[i
] = eval_sub (Fcar (args_left
));
2173 set_backtrace_args (specpdl
+ count
, argvals
, XINT (numargs
));
2178 val
= (XSUBR (fun
)->function
.a0 ());
2181 val
= (XSUBR (fun
)->function
.a1 (argvals
[0]));
2184 val
= (XSUBR (fun
)->function
.a2 (argvals
[0], argvals
[1]));
2187 val
= (XSUBR (fun
)->function
.a3
2188 (argvals
[0], argvals
[1], argvals
[2]));
2191 val
= (XSUBR (fun
)->function
.a4
2192 (argvals
[0], argvals
[1], argvals
[2], argvals
[3]));
2195 val
= (XSUBR (fun
)->function
.a5
2196 (argvals
[0], argvals
[1], argvals
[2], argvals
[3],
2200 val
= (XSUBR (fun
)->function
.a6
2201 (argvals
[0], argvals
[1], argvals
[2], argvals
[3],
2202 argvals
[4], argvals
[5]));
2205 val
= (XSUBR (fun
)->function
.a7
2206 (argvals
[0], argvals
[1], argvals
[2], argvals
[3],
2207 argvals
[4], argvals
[5], argvals
[6]));
2211 val
= (XSUBR (fun
)->function
.a8
2212 (argvals
[0], argvals
[1], argvals
[2], argvals
[3],
2213 argvals
[4], argvals
[5], argvals
[6], argvals
[7]));
2217 /* Someone has created a subr that takes more arguments than
2218 is supported by this code. We need to either rewrite the
2219 subr to use a different argument protocol, or add more
2220 cases to this switch. */
2225 else if (COMPILEDP (fun
))
2226 val
= apply_lambda (fun
, original_args
, count
);
2230 xsignal1 (Qvoid_function
, original_fun
);
2232 xsignal1 (Qinvalid_function
, original_fun
);
2233 funcar
= XCAR (fun
);
2234 if (!SYMBOLP (funcar
))
2235 xsignal1 (Qinvalid_function
, original_fun
);
2236 if (EQ (funcar
, Qautoload
))
2238 Fautoload_do_load (fun
, original_fun
, Qnil
);
2241 if (EQ (funcar
, Qmacro
))
2243 ptrdiff_t count1
= SPECPDL_INDEX ();
2245 /* Bind lexical-binding during expansion of the macro, so the
2246 macro can know reliably if the code it outputs will be
2247 interpreted using lexical-binding or not. */
2248 specbind (Qlexical_binding
,
2249 NILP (Vinternal_interpreter_environment
) ? Qnil
: Qt
);
2250 exp
= apply1 (Fcdr (fun
), original_args
);
2251 unbind_to (count1
, Qnil
);
2252 val
= eval_sub (exp
);
2254 else if (EQ (funcar
, Qlambda
)
2255 || EQ (funcar
, Qclosure
))
2256 val
= apply_lambda (fun
, original_args
, count
);
2258 xsignal1 (Qinvalid_function
, original_fun
);
2263 if (backtrace_debug_on_exit (specpdl
+ count
))
2264 val
= call_debugger (list2 (Qexit
, val
));
2270 DEFUN ("apply", Fapply
, Sapply
, 1, MANY
, 0,
2271 doc
: /* Call FUNCTION with our remaining args, using our last arg as list of args.
2272 Then return the value FUNCTION returns.
2273 Thus, (apply '+ 1 2 '(3 4)) returns 10.
2274 usage: (apply FUNCTION &rest ARGUMENTS) */)
2275 (ptrdiff_t nargs
, Lisp_Object
*args
)
2279 register Lisp_Object spread_arg
;
2280 register Lisp_Object
*funcall_args
;
2281 Lisp_Object fun
, retval
;
2282 struct gcpro gcpro1
;
2287 spread_arg
= args
[nargs
- 1];
2288 CHECK_LIST (spread_arg
);
2290 numargs
= XINT (Flength (spread_arg
));
2293 return Ffuncall (nargs
- 1, args
);
2294 else if (numargs
== 1)
2296 args
[nargs
- 1] = XCAR (spread_arg
);
2297 return Ffuncall (nargs
, args
);
2300 numargs
+= nargs
- 2;
2302 /* Optimize for no indirection. */
2303 if (SYMBOLP (fun
) && !NILP (fun
)
2304 && (fun
= XSYMBOL (fun
)->function
, SYMBOLP (fun
)))
2305 fun
= indirect_function (fun
);
2308 /* Let funcall get the error. */
2315 if (numargs
< XSUBR (fun
)->min_args
2316 || (XSUBR (fun
)->max_args
>= 0 && XSUBR (fun
)->max_args
< numargs
))
2317 goto funcall
; /* Let funcall get the error. */
2318 else if (XSUBR (fun
)->max_args
>= 0 && XSUBR (fun
)->max_args
> numargs
)
2320 /* Avoid making funcall cons up a yet another new vector of arguments
2321 by explicitly supplying nil's for optional values. */
2322 SAFE_ALLOCA_LISP (funcall_args
, 1 + XSUBR (fun
)->max_args
);
2323 for (i
= numargs
; i
< XSUBR (fun
)->max_args
;)
2324 funcall_args
[++i
] = Qnil
;
2325 GCPRO1 (*funcall_args
);
2326 gcpro1
.nvars
= 1 + XSUBR (fun
)->max_args
;
2330 /* We add 1 to numargs because funcall_args includes the
2331 function itself as well as its arguments. */
2334 SAFE_ALLOCA_LISP (funcall_args
, 1 + numargs
);
2335 GCPRO1 (*funcall_args
);
2336 gcpro1
.nvars
= 1 + numargs
;
2339 memcpy (funcall_args
, args
, nargs
* word_size
);
2340 /* Spread the last arg we got. Its first element goes in
2341 the slot that it used to occupy, hence this value of I. */
2343 while (!NILP (spread_arg
))
2345 funcall_args
[i
++] = XCAR (spread_arg
);
2346 spread_arg
= XCDR (spread_arg
);
2349 /* By convention, the caller needs to gcpro Ffuncall's args. */
2350 retval
= Ffuncall (gcpro1
.nvars
, funcall_args
);
2357 /* Run hook variables in various ways. */
2360 funcall_nil (ptrdiff_t nargs
, Lisp_Object
*args
)
2362 Ffuncall (nargs
, args
);
2366 DEFUN ("run-hooks", Frun_hooks
, Srun_hooks
, 0, MANY
, 0,
2367 doc
: /* Run each hook in HOOKS.
2368 Each argument should be a symbol, a hook variable.
2369 These symbols are processed in the order specified.
2370 If a hook symbol has a non-nil value, that value may be a function
2371 or a list of functions to be called to run the hook.
2372 If the value is a function, it is called with no arguments.
2373 If it is a list, the elements are called, in order, with no arguments.
2375 Major modes should not use this function directly to run their mode
2376 hook; they should use `run-mode-hooks' instead.
2378 Do not use `make-local-variable' to make a hook variable buffer-local.
2379 Instead, use `add-hook' and specify t for the LOCAL argument.
2380 usage: (run-hooks &rest HOOKS) */)
2381 (ptrdiff_t nargs
, Lisp_Object
*args
)
2383 Lisp_Object hook
[1];
2386 for (i
= 0; i
< nargs
; i
++)
2389 run_hook_with_args (1, hook
, funcall_nil
);
2395 DEFUN ("run-hook-with-args", Frun_hook_with_args
,
2396 Srun_hook_with_args
, 1, MANY
, 0,
2397 doc
: /* Run HOOK with the specified arguments ARGS.
2398 HOOK should be a symbol, a hook variable. The value of HOOK
2399 may be nil, a function, or a list of functions. Call each
2400 function in order with arguments ARGS. The final return value
2403 Do not use `make-local-variable' to make a hook variable buffer-local.
2404 Instead, use `add-hook' and specify t for the LOCAL argument.
2405 usage: (run-hook-with-args HOOK &rest ARGS) */)
2406 (ptrdiff_t nargs
, Lisp_Object
*args
)
2408 return run_hook_with_args (nargs
, args
, funcall_nil
);
2411 /* NB this one still documents a specific non-nil return value.
2412 (As did run-hook-with-args and run-hook-with-args-until-failure
2413 until they were changed in 24.1.) */
2414 DEFUN ("run-hook-with-args-until-success", Frun_hook_with_args_until_success
,
2415 Srun_hook_with_args_until_success
, 1, MANY
, 0,
2416 doc
: /* Run HOOK with the specified arguments ARGS.
2417 HOOK should be a symbol, a hook variable. The value of HOOK
2418 may be nil, a function, or a list of functions. Call each
2419 function in order with arguments ARGS, stopping at the first
2420 one that returns non-nil, and return that value. Otherwise (if
2421 all functions return nil, or if there are no functions to call),
2424 Do not use `make-local-variable' to make a hook variable buffer-local.
2425 Instead, use `add-hook' and specify t for the LOCAL argument.
2426 usage: (run-hook-with-args-until-success HOOK &rest ARGS) */)
2427 (ptrdiff_t nargs
, Lisp_Object
*args
)
2429 return run_hook_with_args (nargs
, args
, Ffuncall
);
2433 funcall_not (ptrdiff_t nargs
, Lisp_Object
*args
)
2435 return NILP (Ffuncall (nargs
, args
)) ? Qt
: Qnil
;
2438 DEFUN ("run-hook-with-args-until-failure", Frun_hook_with_args_until_failure
,
2439 Srun_hook_with_args_until_failure
, 1, MANY
, 0,
2440 doc
: /* Run HOOK with the specified arguments ARGS.
2441 HOOK should be a symbol, a hook variable. The value of HOOK
2442 may be nil, a function, or a list of functions. Call each
2443 function in order with arguments ARGS, stopping at the first
2444 one that returns nil, and return nil. Otherwise (if all functions
2445 return non-nil, or if there are no functions to call), return non-nil
2446 \(do not rely on the precise return value in this case).
2448 Do not use `make-local-variable' to make a hook variable buffer-local.
2449 Instead, use `add-hook' and specify t for the LOCAL argument.
2450 usage: (run-hook-with-args-until-failure HOOK &rest ARGS) */)
2451 (ptrdiff_t nargs
, Lisp_Object
*args
)
2453 return NILP (run_hook_with_args (nargs
, args
, funcall_not
)) ? Qt
: Qnil
;
2457 run_hook_wrapped_funcall (ptrdiff_t nargs
, Lisp_Object
*args
)
2459 Lisp_Object tmp
= args
[0], ret
;
2462 ret
= Ffuncall (nargs
, args
);
2468 DEFUN ("run-hook-wrapped", Frun_hook_wrapped
, Srun_hook_wrapped
, 2, MANY
, 0,
2469 doc
: /* Run HOOK, passing each function through WRAP-FUNCTION.
2470 I.e. instead of calling each function FUN directly with arguments ARGS,
2471 it calls WRAP-FUNCTION with arguments FUN and ARGS.
2472 As soon as a call to WRAP-FUNCTION returns non-nil, `run-hook-wrapped'
2473 aborts and returns that value.
2474 usage: (run-hook-wrapped HOOK WRAP-FUNCTION &rest ARGS) */)
2475 (ptrdiff_t nargs
, Lisp_Object
*args
)
2477 return run_hook_with_args (nargs
, args
, run_hook_wrapped_funcall
);
2480 /* ARGS[0] should be a hook symbol.
2481 Call each of the functions in the hook value, passing each of them
2482 as arguments all the rest of ARGS (all NARGS - 1 elements).
2483 FUNCALL specifies how to call each function on the hook.
2484 The caller (or its caller, etc) must gcpro all of ARGS,
2485 except that it isn't necessary to gcpro ARGS[0]. */
2488 run_hook_with_args (ptrdiff_t nargs
, Lisp_Object
*args
,
2489 Lisp_Object (*funcall
) (ptrdiff_t nargs
, Lisp_Object
*args
))
2491 Lisp_Object sym
, val
, ret
= Qnil
;
2492 struct gcpro gcpro1
, gcpro2
, gcpro3
;
2494 /* If we are dying or still initializing,
2495 don't do anything--it would probably crash if we tried. */
2496 if (NILP (Vrun_hooks
))
2500 val
= find_symbol_value (sym
);
2502 if (EQ (val
, Qunbound
) || NILP (val
))
2504 else if (!CONSP (val
) || FUNCTIONP (val
))
2507 return funcall (nargs
, args
);
2511 Lisp_Object global_vals
= Qnil
;
2512 GCPRO3 (sym
, val
, global_vals
);
2515 CONSP (val
) && NILP (ret
);
2518 if (EQ (XCAR (val
), Qt
))
2520 /* t indicates this hook has a local binding;
2521 it means to run the global binding too. */
2522 global_vals
= Fdefault_value (sym
);
2523 if (NILP (global_vals
)) continue;
2525 if (!CONSP (global_vals
) || EQ (XCAR (global_vals
), Qlambda
))
2527 args
[0] = global_vals
;
2528 ret
= funcall (nargs
, args
);
2533 CONSP (global_vals
) && NILP (ret
);
2534 global_vals
= XCDR (global_vals
))
2536 args
[0] = XCAR (global_vals
);
2537 /* In a global value, t should not occur. If it does, we
2538 must ignore it to avoid an endless loop. */
2539 if (!EQ (args
[0], Qt
))
2540 ret
= funcall (nargs
, args
);
2546 args
[0] = XCAR (val
);
2547 ret
= funcall (nargs
, args
);
2556 /* Run the hook HOOK, giving each function the two args ARG1 and ARG2. */
2559 run_hook_with_args_2 (Lisp_Object hook
, Lisp_Object arg1
, Lisp_Object arg2
)
2561 Lisp_Object temp
[3];
2566 Frun_hook_with_args (3, temp
);
2569 /* Apply fn to arg. */
2571 apply1 (Lisp_Object fn
, Lisp_Object arg
)
2573 struct gcpro gcpro1
;
2577 RETURN_UNGCPRO (Ffuncall (1, &fn
));
2580 Lisp_Object args
[2];
2584 RETURN_UNGCPRO (Fapply (2, args
));
2588 /* Call function fn on no arguments. */
2590 call0 (Lisp_Object fn
)
2592 struct gcpro gcpro1
;
2595 RETURN_UNGCPRO (Ffuncall (1, &fn
));
2598 /* Call function fn with 1 argument arg1. */
2601 call1 (Lisp_Object fn
, Lisp_Object arg1
)
2603 struct gcpro gcpro1
;
2604 Lisp_Object args
[2];
2610 RETURN_UNGCPRO (Ffuncall (2, args
));
2613 /* Call function fn with 2 arguments arg1, arg2. */
2616 call2 (Lisp_Object fn
, Lisp_Object arg1
, Lisp_Object arg2
)
2618 struct gcpro gcpro1
;
2619 Lisp_Object args
[3];
2625 RETURN_UNGCPRO (Ffuncall (3, args
));
2628 /* Call function fn with 3 arguments arg1, arg2, arg3. */
2631 call3 (Lisp_Object fn
, Lisp_Object arg1
, Lisp_Object arg2
, Lisp_Object arg3
)
2633 struct gcpro gcpro1
;
2634 Lisp_Object args
[4];
2641 RETURN_UNGCPRO (Ffuncall (4, args
));
2644 /* Call function fn with 4 arguments arg1, arg2, arg3, arg4. */
2647 call4 (Lisp_Object fn
, Lisp_Object arg1
, Lisp_Object arg2
, Lisp_Object arg3
,
2650 struct gcpro gcpro1
;
2651 Lisp_Object args
[5];
2659 RETURN_UNGCPRO (Ffuncall (5, args
));
2662 /* Call function fn with 5 arguments arg1, arg2, arg3, arg4, arg5. */
2665 call5 (Lisp_Object fn
, Lisp_Object arg1
, Lisp_Object arg2
, Lisp_Object arg3
,
2666 Lisp_Object arg4
, Lisp_Object arg5
)
2668 struct gcpro gcpro1
;
2669 Lisp_Object args
[6];
2678 RETURN_UNGCPRO (Ffuncall (6, args
));
2681 /* Call function fn with 6 arguments arg1, arg2, arg3, arg4, arg5, arg6. */
2684 call6 (Lisp_Object fn
, Lisp_Object arg1
, Lisp_Object arg2
, Lisp_Object arg3
,
2685 Lisp_Object arg4
, Lisp_Object arg5
, Lisp_Object arg6
)
2687 struct gcpro gcpro1
;
2688 Lisp_Object args
[7];
2698 RETURN_UNGCPRO (Ffuncall (7, args
));
2701 /* Call function fn with 7 arguments arg1, arg2, arg3, arg4, arg5, arg6, arg7. */
2704 call7 (Lisp_Object fn
, Lisp_Object arg1
, Lisp_Object arg2
, Lisp_Object arg3
,
2705 Lisp_Object arg4
, Lisp_Object arg5
, Lisp_Object arg6
, Lisp_Object arg7
)
2707 struct gcpro gcpro1
;
2708 Lisp_Object args
[8];
2719 RETURN_UNGCPRO (Ffuncall (8, args
));
2722 /* The caller should GCPRO all the elements of ARGS. */
2724 DEFUN ("functionp", Ffunctionp
, Sfunctionp
, 1, 1, 0,
2725 doc
: /* Non-nil if OBJECT is a function. */)
2726 (Lisp_Object object
)
2728 if (FUNCTIONP (object
))
2733 DEFUN ("funcall", Ffuncall
, Sfuncall
, 1, MANY
, 0,
2734 doc
: /* Call first argument as a function, passing remaining arguments to it.
2735 Return the value that function returns.
2736 Thus, (funcall 'cons 'x 'y) returns (x . y).
2737 usage: (funcall FUNCTION &rest ARGUMENTS) */)
2738 (ptrdiff_t nargs
, Lisp_Object
*args
)
2740 Lisp_Object fun
, original_fun
;
2742 ptrdiff_t numargs
= nargs
- 1;
2743 Lisp_Object lisp_numargs
;
2745 register Lisp_Object
*internal_args
;
2750 if (++lisp_eval_depth
> max_lisp_eval_depth
)
2752 if (max_lisp_eval_depth
< 100)
2753 max_lisp_eval_depth
= 100;
2754 if (lisp_eval_depth
> max_lisp_eval_depth
)
2755 error ("Lisp nesting exceeds `max-lisp-eval-depth'");
2758 /* This also GCPROs them. */
2759 count
= record_in_backtrace (args
[0], &args
[1], nargs
- 1);
2761 /* Call GC after setting up the backtrace, so the latter GCPROs the args. */
2764 if (debug_on_next_call
)
2765 do_debug_on_call (Qlambda
, count
);
2769 original_fun
= args
[0];
2773 /* Optimize for no indirection. */
2775 if (SYMBOLP (fun
) && !NILP (fun
)
2776 && (fun
= XSYMBOL (fun
)->function
, SYMBOLP (fun
)))
2777 fun
= indirect_function (fun
);
2781 if (numargs
< XSUBR (fun
)->min_args
2782 || (XSUBR (fun
)->max_args
>= 0 && XSUBR (fun
)->max_args
< numargs
))
2784 XSETFASTINT (lisp_numargs
, numargs
);
2785 xsignal2 (Qwrong_number_of_arguments
, original_fun
, lisp_numargs
);
2788 else if (XSUBR (fun
)->max_args
== UNEVALLED
)
2789 xsignal1 (Qinvalid_function
, original_fun
);
2791 else if (XSUBR (fun
)->max_args
== MANY
)
2792 val
= (XSUBR (fun
)->function
.aMANY
) (numargs
, args
+ 1);
2795 if (XSUBR (fun
)->max_args
> numargs
)
2797 internal_args
= alloca (XSUBR (fun
)->max_args
2798 * sizeof *internal_args
);
2799 memcpy (internal_args
, args
+ 1, numargs
* word_size
);
2800 for (i
= numargs
; i
< XSUBR (fun
)->max_args
; i
++)
2801 internal_args
[i
] = Qnil
;
2804 internal_args
= args
+ 1;
2805 switch (XSUBR (fun
)->max_args
)
2808 val
= (XSUBR (fun
)->function
.a0 ());
2811 val
= (XSUBR (fun
)->function
.a1 (internal_args
[0]));
2814 val
= (XSUBR (fun
)->function
.a2
2815 (internal_args
[0], internal_args
[1]));
2818 val
= (XSUBR (fun
)->function
.a3
2819 (internal_args
[0], internal_args
[1], internal_args
[2]));
2822 val
= (XSUBR (fun
)->function
.a4
2823 (internal_args
[0], internal_args
[1], internal_args
[2],
2827 val
= (XSUBR (fun
)->function
.a5
2828 (internal_args
[0], internal_args
[1], internal_args
[2],
2829 internal_args
[3], internal_args
[4]));
2832 val
= (XSUBR (fun
)->function
.a6
2833 (internal_args
[0], internal_args
[1], internal_args
[2],
2834 internal_args
[3], internal_args
[4], internal_args
[5]));
2837 val
= (XSUBR (fun
)->function
.a7
2838 (internal_args
[0], internal_args
[1], internal_args
[2],
2839 internal_args
[3], internal_args
[4], internal_args
[5],
2844 val
= (XSUBR (fun
)->function
.a8
2845 (internal_args
[0], internal_args
[1], internal_args
[2],
2846 internal_args
[3], internal_args
[4], internal_args
[5],
2847 internal_args
[6], internal_args
[7]));
2852 /* If a subr takes more than 8 arguments without using MANY
2853 or UNEVALLED, we need to extend this function to support it.
2854 Until this is done, there is no way to call the function. */
2859 else if (COMPILEDP (fun
))
2860 val
= funcall_lambda (fun
, numargs
, args
+ 1);
2864 xsignal1 (Qvoid_function
, original_fun
);
2866 xsignal1 (Qinvalid_function
, original_fun
);
2867 funcar
= XCAR (fun
);
2868 if (!SYMBOLP (funcar
))
2869 xsignal1 (Qinvalid_function
, original_fun
);
2870 if (EQ (funcar
, Qlambda
)
2871 || EQ (funcar
, Qclosure
))
2872 val
= funcall_lambda (fun
, numargs
, args
+ 1);
2873 else if (EQ (funcar
, Qautoload
))
2875 Fautoload_do_load (fun
, original_fun
, Qnil
);
2880 xsignal1 (Qinvalid_function
, original_fun
);
2884 if (backtrace_debug_on_exit (specpdl
+ count
))
2885 val
= call_debugger (list2 (Qexit
, val
));
2891 apply_lambda (Lisp_Object fun
, Lisp_Object args
, ptrdiff_t count
)
2893 Lisp_Object args_left
;
2896 register Lisp_Object
*arg_vector
;
2897 struct gcpro gcpro1
, gcpro2
, gcpro3
;
2898 register Lisp_Object tem
;
2901 numargs
= XFASTINT (Flength (args
));
2902 SAFE_ALLOCA_LISP (arg_vector
, numargs
);
2905 GCPRO3 (*arg_vector
, args_left
, fun
);
2908 for (i
= 0; i
< numargs
; )
2910 tem
= Fcar (args_left
), args_left
= Fcdr (args_left
);
2911 tem
= eval_sub (tem
);
2912 arg_vector
[i
++] = tem
;
2918 set_backtrace_args (specpdl
+ count
, arg_vector
, i
);
2919 tem
= funcall_lambda (fun
, numargs
, arg_vector
);
2921 /* Do the debug-on-exit now, while arg_vector still exists. */
2922 if (backtrace_debug_on_exit (specpdl
+ count
))
2924 /* Don't do it again when we return to eval. */
2925 set_backtrace_debug_on_exit (specpdl
+ count
, false);
2926 tem
= call_debugger (list2 (Qexit
, tem
));
2932 /* Apply a Lisp function FUN to the NARGS evaluated arguments in ARG_VECTOR
2933 and return the result of evaluation.
2934 FUN must be either a lambda-expression or a compiled-code object. */
2937 funcall_lambda (Lisp_Object fun
, ptrdiff_t nargs
,
2938 register Lisp_Object
*arg_vector
)
2940 Lisp_Object val
, syms_left
, next
, lexenv
;
2941 ptrdiff_t count
= SPECPDL_INDEX ();
2943 bool optional
, rest
;
2947 if (EQ (XCAR (fun
), Qclosure
))
2949 fun
= XCDR (fun
); /* Drop `closure'. */
2950 lexenv
= XCAR (fun
);
2951 CHECK_LIST_CONS (fun
, fun
);
2955 syms_left
= XCDR (fun
);
2956 if (CONSP (syms_left
))
2957 syms_left
= XCAR (syms_left
);
2959 xsignal1 (Qinvalid_function
, fun
);
2961 else if (COMPILEDP (fun
))
2963 syms_left
= AREF (fun
, COMPILED_ARGLIST
);
2964 if (INTEGERP (syms_left
))
2965 /* A byte-code object with a non-nil `push args' slot means we
2966 shouldn't bind any arguments, instead just call the byte-code
2967 interpreter directly; it will push arguments as necessary.
2969 Byte-code objects with either a non-existent, or a nil value for
2970 the `push args' slot (the default), have dynamically-bound
2971 arguments, and use the argument-binding code below instead (as do
2972 all interpreted functions, even lexically bound ones). */
2974 /* If we have not actually read the bytecode string
2975 and constants vector yet, fetch them from the file. */
2976 if (CONSP (AREF (fun
, COMPILED_BYTECODE
)))
2977 Ffetch_bytecode (fun
);
2978 return exec_byte_code (AREF (fun
, COMPILED_BYTECODE
),
2979 AREF (fun
, COMPILED_CONSTANTS
),
2980 AREF (fun
, COMPILED_STACK_DEPTH
),
2989 i
= optional
= rest
= 0;
2990 for (; CONSP (syms_left
); syms_left
= XCDR (syms_left
))
2994 next
= XCAR (syms_left
);
2995 if (!SYMBOLP (next
))
2996 xsignal1 (Qinvalid_function
, fun
);
2998 if (EQ (next
, Qand_rest
))
3000 else if (EQ (next
, Qand_optional
))
3007 arg
= Flist (nargs
- i
, &arg_vector
[i
]);
3011 arg
= arg_vector
[i
++];
3013 xsignal2 (Qwrong_number_of_arguments
, fun
, make_number (nargs
));
3017 /* Bind the argument. */
3018 if (!NILP (lexenv
) && SYMBOLP (next
))
3019 /* Lexically bind NEXT by adding it to the lexenv alist. */
3020 lexenv
= Fcons (Fcons (next
, arg
), lexenv
);
3022 /* Dynamically bind NEXT. */
3023 specbind (next
, arg
);
3027 if (!NILP (syms_left
))
3028 xsignal1 (Qinvalid_function
, fun
);
3030 xsignal2 (Qwrong_number_of_arguments
, fun
, make_number (nargs
));
3032 if (!EQ (lexenv
, Vinternal_interpreter_environment
))
3033 /* Instantiate a new lexical environment. */
3034 specbind (Qinternal_interpreter_environment
, lexenv
);
3037 val
= Fprogn (XCDR (XCDR (fun
)));
3040 /* If we have not actually read the bytecode string
3041 and constants vector yet, fetch them from the file. */
3042 if (CONSP (AREF (fun
, COMPILED_BYTECODE
)))
3043 Ffetch_bytecode (fun
);
3044 val
= exec_byte_code (AREF (fun
, COMPILED_BYTECODE
),
3045 AREF (fun
, COMPILED_CONSTANTS
),
3046 AREF (fun
, COMPILED_STACK_DEPTH
),
3050 return unbind_to (count
, val
);
3053 DEFUN ("fetch-bytecode", Ffetch_bytecode
, Sfetch_bytecode
,
3055 doc
: /* If byte-compiled OBJECT is lazy-loaded, fetch it now. */)
3056 (Lisp_Object object
)
3060 if (COMPILEDP (object
) && CONSP (AREF (object
, COMPILED_BYTECODE
)))
3062 tem
= read_doc_string (AREF (object
, COMPILED_BYTECODE
));
3065 tem
= AREF (object
, COMPILED_BYTECODE
);
3066 if (CONSP (tem
) && STRINGP (XCAR (tem
)))
3067 error ("Invalid byte code in %s", SDATA (XCAR (tem
)));
3069 error ("Invalid byte code");
3071 ASET (object
, COMPILED_BYTECODE
, XCAR (tem
));
3072 ASET (object
, COMPILED_CONSTANTS
, XCDR (tem
));
3077 /* Return true if SYMBOL currently has a let-binding
3078 which was made in the buffer that is now current. */
3081 let_shadows_buffer_binding_p (struct Lisp_Symbol
*symbol
)
3083 union specbinding
*p
;
3084 Lisp_Object buf
= Fcurrent_buffer ();
3086 for (p
= specpdl_ptr
; p
> specpdl
; )
3087 if ((--p
)->kind
> SPECPDL_LET
)
3089 struct Lisp_Symbol
*let_bound_symbol
= XSYMBOL (specpdl_symbol (p
));
3090 eassert (let_bound_symbol
->redirect
!= SYMBOL_VARALIAS
);
3091 if (symbol
== let_bound_symbol
3092 && EQ (specpdl_where (p
), buf
))
3100 let_shadows_global_binding_p (Lisp_Object symbol
)
3102 union specbinding
*p
;
3104 for (p
= specpdl_ptr
; p
> specpdl
; )
3105 if ((--p
)->kind
>= SPECPDL_LET
&& EQ (specpdl_symbol (p
), symbol
))
3111 /* `specpdl_ptr' describes which variable is
3112 let-bound, so it can be properly undone when we unbind_to.
3113 It can be either a plain SPECPDL_LET or a SPECPDL_LET_LOCAL/DEFAULT.
3114 - SYMBOL is the variable being bound. Note that it should not be
3115 aliased (i.e. when let-binding V1 that's aliased to V2, we want
3117 - WHERE tells us in which buffer the binding took place.
3118 This is used for SPECPDL_LET_LOCAL bindings (i.e. bindings to a
3119 buffer-local variable) as well as for SPECPDL_LET_DEFAULT bindings,
3120 i.e. bindings to the default value of a variable which can be
3124 specbind (Lisp_Object symbol
, Lisp_Object value
)
3126 struct Lisp_Symbol
*sym
;
3128 CHECK_SYMBOL (symbol
);
3129 sym
= XSYMBOL (symbol
);
3132 switch (sym
->redirect
)
3134 case SYMBOL_VARALIAS
:
3135 sym
= indirect_variable (sym
); XSETSYMBOL (symbol
, sym
); goto start
;
3136 case SYMBOL_PLAINVAL
:
3137 /* The most common case is that of a non-constant symbol with a
3138 trivial value. Make that as fast as we can. */
3139 specpdl_ptr
->let
.kind
= SPECPDL_LET
;
3140 specpdl_ptr
->let
.symbol
= symbol
;
3141 specpdl_ptr
->let
.old_value
= SYMBOL_VAL (sym
);
3144 SET_SYMBOL_VAL (sym
, value
);
3146 set_internal (symbol
, value
, Qnil
, 1);
3148 case SYMBOL_LOCALIZED
:
3149 if (SYMBOL_BLV (sym
)->frame_local
)
3150 error ("Frame-local vars cannot be let-bound");
3151 case SYMBOL_FORWARDED
:
3153 Lisp_Object ovalue
= find_symbol_value (symbol
);
3154 specpdl_ptr
->let
.kind
= SPECPDL_LET_LOCAL
;
3155 specpdl_ptr
->let
.symbol
= symbol
;
3156 specpdl_ptr
->let
.old_value
= ovalue
;
3157 specpdl_ptr
->let
.where
= Fcurrent_buffer ();
3159 eassert (sym
->redirect
!= SYMBOL_LOCALIZED
3160 || (EQ (SYMBOL_BLV (sym
)->where
, Fcurrent_buffer ())));
3162 if (sym
->redirect
== SYMBOL_LOCALIZED
)
3164 if (!blv_found (SYMBOL_BLV (sym
)))
3165 specpdl_ptr
->let
.kind
= SPECPDL_LET_DEFAULT
;
3167 else if (BUFFER_OBJFWDP (SYMBOL_FWD (sym
)))
3169 /* If SYMBOL is a per-buffer variable which doesn't have a
3170 buffer-local value here, make the `let' change the global
3171 value by changing the value of SYMBOL in all buffers not
3172 having their own value. This is consistent with what
3173 happens with other buffer-local variables. */
3174 if (NILP (Flocal_variable_p (symbol
, Qnil
)))
3176 specpdl_ptr
->let
.kind
= SPECPDL_LET_DEFAULT
;
3178 Fset_default (symbol
, value
);
3183 specpdl_ptr
->let
.kind
= SPECPDL_LET
;
3186 set_internal (symbol
, value
, Qnil
, 1);
3189 default: emacs_abort ();
3193 /* Push unwind-protect entries of various types. */
3196 record_unwind_protect (void (*function
) (Lisp_Object
), Lisp_Object arg
)
3198 specpdl_ptr
->unwind
.kind
= SPECPDL_UNWIND
;
3199 specpdl_ptr
->unwind
.func
= function
;
3200 specpdl_ptr
->unwind
.arg
= arg
;
3205 record_unwind_protect_ptr (void (*function
) (void *), void *arg
)
3207 specpdl_ptr
->unwind_ptr
.kind
= SPECPDL_UNWIND_PTR
;
3208 specpdl_ptr
->unwind_ptr
.func
= function
;
3209 specpdl_ptr
->unwind_ptr
.arg
= arg
;
3214 record_unwind_protect_int (void (*function
) (int), int arg
)
3216 specpdl_ptr
->unwind_int
.kind
= SPECPDL_UNWIND_INT
;
3217 specpdl_ptr
->unwind_int
.func
= function
;
3218 specpdl_ptr
->unwind_int
.arg
= arg
;
3223 record_unwind_protect_void (void (*function
) (void))
3225 specpdl_ptr
->unwind_void
.kind
= SPECPDL_UNWIND_VOID
;
3226 specpdl_ptr
->unwind_void
.func
= function
;
3234 /* Push an unwind-protect entry that does nothing, so that
3235 set_unwind_protect_ptr can overwrite it later. */
3238 record_unwind_protect_nothing (void)
3240 record_unwind_protect_void (do_nothing
);
3243 /* Clear the unwind-protect entry COUNT, so that it does nothing.
3244 It need not be at the top of the stack. */
3247 clear_unwind_protect (ptrdiff_t count
)
3249 union specbinding
*p
= specpdl
+ count
;
3250 p
->unwind_void
.kind
= SPECPDL_UNWIND_VOID
;
3251 p
->unwind_void
.func
= do_nothing
;
3254 /* Set the unwind-protect entry COUNT so that it invokes FUNC (ARG).
3255 It need not be at the top of the stack. Discard the entry's
3256 previous value without invoking it. */
3259 set_unwind_protect (ptrdiff_t count
, void (*func
) (Lisp_Object
),
3262 union specbinding
*p
= specpdl
+ count
;
3263 p
->unwind
.kind
= SPECPDL_UNWIND
;
3264 p
->unwind
.func
= func
;
3265 p
->unwind
.arg
= arg
;
3269 set_unwind_protect_ptr (ptrdiff_t count
, void (*func
) (void *), void *arg
)
3271 union specbinding
*p
= specpdl
+ count
;
3272 p
->unwind_ptr
.kind
= SPECPDL_UNWIND_PTR
;
3273 p
->unwind_ptr
.func
= func
;
3274 p
->unwind_ptr
.arg
= arg
;
3277 /* Pop and execute entries from the unwind-protect stack until the
3278 depth COUNT is reached. Return VALUE. */
3281 unbind_to (ptrdiff_t count
, Lisp_Object value
)
3283 Lisp_Object quitf
= Vquit_flag
;
3284 struct gcpro gcpro1
, gcpro2
;
3286 GCPRO2 (value
, quitf
);
3289 while (specpdl_ptr
!= specpdl
+ count
)
3291 /* Decrement specpdl_ptr before we do the work to unbind it, so
3292 that an error in unbinding won't try to unbind the same entry
3293 again. Take care to copy any parts of the binding needed
3294 before invoking any code that can make more bindings. */
3298 switch (specpdl_ptr
->kind
)
3300 case SPECPDL_UNWIND
:
3301 specpdl_ptr
->unwind
.func (specpdl_ptr
->unwind
.arg
);
3303 case SPECPDL_UNWIND_PTR
:
3304 specpdl_ptr
->unwind_ptr
.func (specpdl_ptr
->unwind_ptr
.arg
);
3306 case SPECPDL_UNWIND_INT
:
3307 specpdl_ptr
->unwind_int
.func (specpdl_ptr
->unwind_int
.arg
);
3309 case SPECPDL_UNWIND_VOID
:
3310 specpdl_ptr
->unwind_void
.func ();
3312 case SPECPDL_BACKTRACE
:
3315 { /* If variable has a trivial value (no forwarding), we can
3316 just set it. No need to check for constant symbols here,
3317 since that was already done by specbind. */
3318 struct Lisp_Symbol
*sym
= XSYMBOL (specpdl_symbol (specpdl_ptr
));
3319 if (sym
->redirect
== SYMBOL_PLAINVAL
)
3321 SET_SYMBOL_VAL (sym
, specpdl_old_value (specpdl_ptr
));
3326 NOTE: we only ever come here if make_local_foo was used for
3327 the first time on this var within this let. */
3330 case SPECPDL_LET_DEFAULT
:
3331 Fset_default (specpdl_symbol (specpdl_ptr
),
3332 specpdl_old_value (specpdl_ptr
));
3334 case SPECPDL_LET_LOCAL
:
3336 Lisp_Object symbol
= specpdl_symbol (specpdl_ptr
);
3337 Lisp_Object where
= specpdl_where (specpdl_ptr
);
3338 Lisp_Object old_value
= specpdl_old_value (specpdl_ptr
);
3339 eassert (BUFFERP (where
));
3341 /* If this was a local binding, reset the value in the appropriate
3342 buffer, but only if that buffer's binding still exists. */
3343 if (!NILP (Flocal_variable_p (symbol
, where
)))
3344 set_internal (symbol
, old_value
, where
, 1);
3350 if (NILP (Vquit_flag
) && !NILP (quitf
))
3357 DEFUN ("special-variable-p", Fspecial_variable_p
, Sspecial_variable_p
, 1, 1, 0,
3358 doc
: /* Return non-nil if SYMBOL's global binding has been declared special.
3359 A special variable is one that will be bound dynamically, even in a
3360 context where binding is lexical by default. */)
3361 (Lisp_Object symbol
)
3363 CHECK_SYMBOL (symbol
);
3364 return XSYMBOL (symbol
)->declared_special
? Qt
: Qnil
;
3368 DEFUN ("backtrace-debug", Fbacktrace_debug
, Sbacktrace_debug
, 2, 2, 0,
3369 doc
: /* Set the debug-on-exit flag of eval frame LEVEL levels down to FLAG.
3370 The debugger is entered when that frame exits, if the flag is non-nil. */)
3371 (Lisp_Object level
, Lisp_Object flag
)
3373 union specbinding
*pdl
= backtrace_top ();
3374 register EMACS_INT i
;
3376 CHECK_NUMBER (level
);
3378 for (i
= 0; backtrace_p (pdl
) && i
< XINT (level
); i
++)
3379 pdl
= backtrace_next (pdl
);
3381 if (backtrace_p (pdl
))
3382 set_backtrace_debug_on_exit (pdl
, !NILP (flag
));
3387 DEFUN ("backtrace", Fbacktrace
, Sbacktrace
, 0, 0, "",
3388 doc
: /* Print a trace of Lisp function calls currently active.
3389 Output stream used is value of `standard-output'. */)
3392 union specbinding
*pdl
= backtrace_top ();
3394 Lisp_Object old_print_level
= Vprint_level
;
3396 if (NILP (Vprint_level
))
3397 XSETFASTINT (Vprint_level
, 8);
3399 while (backtrace_p (pdl
))
3401 write_string (backtrace_debug_on_exit (pdl
) ? "* " : " ", 2);
3402 if (backtrace_nargs (pdl
) == UNEVALLED
)
3404 Fprin1 (Fcons (backtrace_function (pdl
), *backtrace_args (pdl
)),
3406 write_string ("\n", -1);
3410 tem
= backtrace_function (pdl
);
3411 Fprin1 (tem
, Qnil
); /* This can QUIT. */
3412 write_string ("(", -1);
3415 for (i
= 0; i
< backtrace_nargs (pdl
); i
++)
3417 if (i
) write_string (" ", -1);
3418 Fprin1 (backtrace_args (pdl
)[i
], Qnil
);
3421 write_string (")\n", -1);
3423 pdl
= backtrace_next (pdl
);
3426 Vprint_level
= old_print_level
;
3430 static union specbinding
*
3431 get_backtrace_frame (Lisp_Object nframes
, Lisp_Object base
)
3433 union specbinding
*pdl
= backtrace_top ();
3434 register EMACS_INT i
;
3436 CHECK_NATNUM (nframes
);
3439 { /* Skip up to `base'. */
3440 base
= Findirect_function (base
, Qt
);
3441 while (backtrace_p (pdl
)
3442 && !EQ (base
, Findirect_function (backtrace_function (pdl
), Qt
)))
3443 pdl
= backtrace_next (pdl
);
3446 /* Find the frame requested. */
3447 for (i
= XFASTINT (nframes
); i
> 0 && backtrace_p (pdl
); i
--)
3448 pdl
= backtrace_next (pdl
);
3453 DEFUN ("backtrace-frame", Fbacktrace_frame
, Sbacktrace_frame
, 1, 2, NULL
,
3454 doc
: /* Return the function and arguments NFRAMES up from current execution point.
3455 If that frame has not evaluated the arguments yet (or is a special form),
3456 the value is (nil FUNCTION ARG-FORMS...).
3457 If that frame has evaluated its arguments and called its function already,
3458 the value is (t FUNCTION ARG-VALUES...).
3459 A &rest arg is represented as the tail of the list ARG-VALUES.
3460 FUNCTION is whatever was supplied as car of evaluated list,
3461 or a lambda expression for macro calls.
3462 If NFRAMES is more than the number of frames, the value is nil.
3463 If BASE is non-nil, it should be a function and NFRAMES counts from its
3464 nearest activation frame. */)
3465 (Lisp_Object nframes
, Lisp_Object base
)
3467 union specbinding
*pdl
= get_backtrace_frame (nframes
, base
);
3469 if (!backtrace_p (pdl
))
3471 if (backtrace_nargs (pdl
) == UNEVALLED
)
3473 Fcons (backtrace_function (pdl
), *backtrace_args (pdl
)));
3476 Lisp_Object tem
= Flist (backtrace_nargs (pdl
), backtrace_args (pdl
));
3478 return Fcons (Qt
, Fcons (backtrace_function (pdl
), tem
));
3482 /* For backtrace-eval, we want to temporarily unwind the last few elements of
3483 the specpdl stack, and then rewind them. We store the pre-unwind values
3484 directly in the pre-existing specpdl elements (i.e. we swap the current
3485 value and the old value stored in the specpdl), kind of like the inplace
3486 pointer-reversal trick. As it turns out, the rewind does the same as the
3487 unwind, except it starts from the other end of the specpdl stack, so we use
3488 the same function for both unwind and rewind. */
3490 backtrace_eval_unrewind (int distance
)
3492 union specbinding
*tmp
= specpdl_ptr
;
3495 { /* It's a rewind rather than unwind. */
3496 tmp
+= distance
- 1;
3498 distance
= -distance
;
3501 for (; distance
> 0; distance
--)
3506 /* FIXME: Ideally we'd like to "temporarily unwind" (some of) those
3507 unwind_protect, but the problem is that we don't know how to
3508 rewind them afterwards. */
3509 case SPECPDL_UNWIND
:
3510 case SPECPDL_UNWIND_PTR
:
3511 case SPECPDL_UNWIND_INT
:
3512 case SPECPDL_UNWIND_VOID
:
3513 case SPECPDL_BACKTRACE
:
3516 { /* If variable has a trivial value (no forwarding), we can
3517 just set it. No need to check for constant symbols here,
3518 since that was already done by specbind. */
3519 struct Lisp_Symbol
*sym
= XSYMBOL (specpdl_symbol (tmp
));
3520 if (sym
->redirect
== SYMBOL_PLAINVAL
)
3522 Lisp_Object old_value
= specpdl_old_value (tmp
);
3523 set_specpdl_old_value (tmp
, SYMBOL_VAL (sym
));
3524 SET_SYMBOL_VAL (sym
, old_value
);
3529 NOTE: we only ever come here if make_local_foo was used for
3530 the first time on this var within this let. */
3533 case SPECPDL_LET_DEFAULT
:
3535 Lisp_Object sym
= specpdl_symbol (tmp
);
3536 Lisp_Object old_value
= specpdl_old_value (tmp
);
3537 set_specpdl_old_value (tmp
, Fdefault_value (sym
));
3538 Fset_default (sym
, old_value
);
3541 case SPECPDL_LET_LOCAL
:
3543 Lisp_Object symbol
= specpdl_symbol (tmp
);
3544 Lisp_Object where
= specpdl_where (tmp
);
3545 Lisp_Object old_value
= specpdl_old_value (tmp
);
3546 eassert (BUFFERP (where
));
3548 /* If this was a local binding, reset the value in the appropriate
3549 buffer, but only if that buffer's binding still exists. */
3550 if (!NILP (Flocal_variable_p (symbol
, where
)))
3552 set_specpdl_old_value
3553 (tmp
, Fbuffer_local_value (symbol
, where
));
3554 set_internal (symbol
, old_value
, where
, 1);
3562 DEFUN ("backtrace-eval", Fbacktrace_eval
, Sbacktrace_eval
, 2, 3, NULL
,
3563 doc
: /* Evaluate EXP in the context of some activation frame.
3564 NFRAMES and BASE specify the activation frame to use, as in `backtrace-frame'. */)
3565 (Lisp_Object exp
, Lisp_Object nframes
, Lisp_Object base
)
3567 union specbinding
*pdl
= get_backtrace_frame (nframes
, base
);
3568 ptrdiff_t count
= SPECPDL_INDEX ();
3569 ptrdiff_t distance
= specpdl_ptr
- pdl
;
3570 eassert (distance
>= 0);
3572 if (!backtrace_p (pdl
))
3573 error ("Activation frame not found!");
3575 backtrace_eval_unrewind (distance
);
3576 record_unwind_protect_int (backtrace_eval_unrewind
, -distance
);
3578 /* Use eval_sub rather than Feval since the main motivation behind
3579 backtrace-eval is to be able to get/set the value of lexical variables
3580 from the debugger. */
3581 return unbind_to (count
, eval_sub (exp
));
3584 DEFUN ("backtrace--locals", Fbacktrace__locals
, Sbacktrace__locals
, 1, 2, NULL
,
3585 doc
: /* Return names and values of local variables of a stack frame.
3586 NFRAMES and BASE specify the activation frame to use, as in `backtrace-frame'. */)
3587 (Lisp_Object nframes
, Lisp_Object base
)
3589 union specbinding
*frame
= get_backtrace_frame (nframes
, base
);
3590 union specbinding
*prevframe
3591 = get_backtrace_frame (make_number (XFASTINT (nframes
) - 1), base
);
3592 ptrdiff_t distance
= specpdl_ptr
- frame
;
3593 Lisp_Object result
= Qnil
;
3594 eassert (distance
>= 0);
3596 if (!backtrace_p (prevframe
))
3597 error ("Activation frame not found!");
3598 if (!backtrace_p (frame
))
3599 error ("Activation frame not found!");
3601 /* The specpdl entries normally contain the symbol being bound along with its
3602 `old_value', so it can be restored. The new value to which it is bound is
3603 available in one of two places: either in the current value of the
3604 variable (if it hasn't been rebound yet) or in the `old_value' slot of the
3605 next specpdl entry for it.
3606 `backtrace_eval_unrewind' happens to swap the role of `old_value'
3607 and "new value", so we abuse it here, to fetch the new value.
3608 It's ugly (we'd rather not modify global data) and a bit inefficient,
3609 but it does the job for now. */
3610 backtrace_eval_unrewind (distance
);
3614 union specbinding
*tmp
= prevframe
;
3615 for (; tmp
> frame
; tmp
--)
3620 case SPECPDL_LET_DEFAULT
:
3621 case SPECPDL_LET_LOCAL
:
3623 Lisp_Object sym
= specpdl_symbol (tmp
);
3624 Lisp_Object val
= specpdl_old_value (tmp
);
3625 if (EQ (sym
, Qinternal_interpreter_environment
))
3627 Lisp_Object env
= val
;
3628 for (; CONSP (env
); env
= XCDR (env
))
3630 Lisp_Object binding
= XCAR (env
);
3631 if (CONSP (binding
))
3632 result
= Fcons (Fcons (XCAR (binding
),
3638 result
= Fcons (Fcons (sym
, val
), result
);
3644 /* Restore values from specpdl to original place. */
3645 backtrace_eval_unrewind (-distance
);
3654 union specbinding
*pdl
;
3655 for (pdl
= specpdl
; pdl
!= specpdl_ptr
; pdl
++)
3659 case SPECPDL_UNWIND
:
3660 mark_object (specpdl_arg (pdl
));
3663 case SPECPDL_BACKTRACE
:
3665 ptrdiff_t nargs
= backtrace_nargs (pdl
);
3666 mark_object (backtrace_function (pdl
));
3667 if (nargs
== UNEVALLED
)
3670 mark_object (backtrace_args (pdl
)[nargs
]);
3674 case SPECPDL_LET_DEFAULT
:
3675 case SPECPDL_LET_LOCAL
:
3676 mark_object (specpdl_where (pdl
));
3679 mark_object (specpdl_symbol (pdl
));
3680 mark_object (specpdl_old_value (pdl
));
3687 get_backtrace (Lisp_Object array
)
3689 union specbinding
*pdl
= backtrace_next (backtrace_top ());
3690 ptrdiff_t i
= 0, asize
= ASIZE (array
);
3692 /* Copy the backtrace contents into working memory. */
3693 for (; i
< asize
; i
++)
3695 if (backtrace_p (pdl
))
3697 ASET (array
, i
, backtrace_function (pdl
));
3698 pdl
= backtrace_next (pdl
);
3701 ASET (array
, i
, Qnil
);
3705 Lisp_Object
backtrace_top_function (void)
3707 union specbinding
*pdl
= backtrace_top ();
3708 return (backtrace_p (pdl
) ? backtrace_function (pdl
) : Qnil
);
3714 DEFVAR_INT ("max-specpdl-size", max_specpdl_size
,
3715 doc
: /* Limit on number of Lisp variable bindings and `unwind-protect's.
3716 If Lisp code tries to increase the total number past this amount,
3717 an error is signaled.
3718 You can safely use a value considerably larger than the default value,
3719 if that proves inconveniently small. However, if you increase it too far,
3720 Emacs could run out of memory trying to make the stack bigger.
3721 Note that this limit may be silently increased by the debugger
3722 if `debug-on-error' or `debug-on-quit' is set. */);
3724 DEFVAR_INT ("max-lisp-eval-depth", max_lisp_eval_depth
,
3725 doc
: /* Limit on depth in `eval', `apply' and `funcall' before error.
3727 This limit serves to catch infinite recursions for you before they cause
3728 actual stack overflow in C, which would be fatal for Emacs.
3729 You can safely make it considerably larger than its default value,
3730 if that proves inconveniently small. However, if you increase it too far,
3731 Emacs could overflow the real C stack, and crash. */);
3733 DEFVAR_LISP ("quit-flag", Vquit_flag
,
3734 doc
: /* Non-nil causes `eval' to abort, unless `inhibit-quit' is non-nil.
3735 If the value is t, that means do an ordinary quit.
3736 If the value equals `throw-on-input', that means quit by throwing
3737 to the tag specified in `throw-on-input'; it's for handling `while-no-input'.
3738 Typing C-g sets `quit-flag' to t, regardless of `inhibit-quit',
3739 but `inhibit-quit' non-nil prevents anything from taking notice of that. */);
3742 DEFVAR_LISP ("inhibit-quit", Vinhibit_quit
,
3743 doc
: /* Non-nil inhibits C-g quitting from happening immediately.
3744 Note that `quit-flag' will still be set by typing C-g,
3745 so a quit will be signaled as soon as `inhibit-quit' is nil.
3746 To prevent this happening, set `quit-flag' to nil
3747 before making `inhibit-quit' nil. */);
3748 Vinhibit_quit
= Qnil
;
3750 DEFSYM (Qinhibit_quit
, "inhibit-quit");
3751 DEFSYM (Qautoload
, "autoload");
3752 DEFSYM (Qinhibit_debugger
, "inhibit-debugger");
3753 DEFSYM (Qmacro
, "macro");
3754 DEFSYM (Qdeclare
, "declare");
3756 /* Note that the process handling also uses Qexit, but we don't want
3757 to staticpro it twice, so we just do it here. */
3758 DEFSYM (Qexit
, "exit");
3760 DEFSYM (Qinteractive
, "interactive");
3761 DEFSYM (Qcommandp
, "commandp");
3762 DEFSYM (Qand_rest
, "&rest");
3763 DEFSYM (Qand_optional
, "&optional");
3764 DEFSYM (Qclosure
, "closure");
3765 DEFSYM (Qdebug
, "debug");
3767 DEFVAR_LISP ("inhibit-debugger", Vinhibit_debugger
,
3768 doc
: /* Non-nil means never enter the debugger.
3769 Normally set while the debugger is already active, to avoid recursive
3771 Vinhibit_debugger
= Qnil
;
3773 DEFVAR_LISP ("debug-on-error", Vdebug_on_error
,
3774 doc
: /* Non-nil means enter debugger if an error is signaled.
3775 Does not apply to errors handled by `condition-case' or those
3776 matched by `debug-ignored-errors'.
3777 If the value is a list, an error only means to enter the debugger
3778 if one of its condition symbols appears in the list.
3779 When you evaluate an expression interactively, this variable
3780 is temporarily non-nil if `eval-expression-debug-on-error' is non-nil.
3781 The command `toggle-debug-on-error' toggles this.
3782 See also the variable `debug-on-quit' and `inhibit-debugger'. */);
3783 Vdebug_on_error
= Qnil
;
3785 DEFVAR_LISP ("debug-ignored-errors", Vdebug_ignored_errors
,
3786 doc
: /* List of errors for which the debugger should not be called.
3787 Each element may be a condition-name or a regexp that matches error messages.
3788 If any element applies to a given error, that error skips the debugger
3789 and just returns to top level.
3790 This overrides the variable `debug-on-error'.
3791 It does not apply to errors handled by `condition-case'. */);
3792 Vdebug_ignored_errors
= Qnil
;
3794 DEFVAR_BOOL ("debug-on-quit", debug_on_quit
,
3795 doc
: /* Non-nil means enter debugger if quit is signaled (C-g, for example).
3796 Does not apply if quit is handled by a `condition-case'. */);
3799 DEFVAR_BOOL ("debug-on-next-call", debug_on_next_call
,
3800 doc
: /* Non-nil means enter debugger before next `eval', `apply' or `funcall'. */);
3802 DEFVAR_BOOL ("debugger-may-continue", debugger_may_continue
,
3803 doc
: /* Non-nil means debugger may continue execution.
3804 This is nil when the debugger is called under circumstances where it
3805 might not be safe to continue. */);
3806 debugger_may_continue
= 1;
3808 DEFVAR_LISP ("debugger", Vdebugger
,
3809 doc
: /* Function to call to invoke debugger.
3810 If due to frame exit, args are `exit' and the value being returned;
3811 this function's value will be returned instead of that.
3812 If due to error, args are `error' and a list of the args to `signal'.
3813 If due to `apply' or `funcall' entry, one arg, `lambda'.
3814 If due to `eval' entry, one arg, t. */);
3817 DEFVAR_LISP ("signal-hook-function", Vsignal_hook_function
,
3818 doc
: /* If non-nil, this is a function for `signal' to call.
3819 It receives the same arguments that `signal' was given.
3820 The Edebug package uses this to regain control. */);
3821 Vsignal_hook_function
= Qnil
;
3823 DEFVAR_LISP ("debug-on-signal", Vdebug_on_signal
,
3824 doc
: /* Non-nil means call the debugger regardless of condition handlers.
3825 Note that `debug-on-error', `debug-on-quit' and friends
3826 still determine whether to handle the particular condition. */);
3827 Vdebug_on_signal
= Qnil
;
3829 /* When lexical binding is being used,
3830 Vinternal_interpreter_environment is non-nil, and contains an alist
3831 of lexically-bound variable, or (t), indicating an empty
3832 environment. The lisp name of this variable would be
3833 `internal-interpreter-environment' if it weren't hidden.
3834 Every element of this list can be either a cons (VAR . VAL)
3835 specifying a lexical binding, or a single symbol VAR indicating
3836 that this variable should use dynamic scoping. */
3837 DEFSYM (Qinternal_interpreter_environment
,
3838 "internal-interpreter-environment");
3839 DEFVAR_LISP ("internal-interpreter-environment",
3840 Vinternal_interpreter_environment
,
3841 doc
: /* If non-nil, the current lexical environment of the lisp interpreter.
3842 When lexical binding is not being used, this variable is nil.
3843 A value of `(t)' indicates an empty environment, otherwise it is an
3844 alist of active lexical bindings. */);
3845 Vinternal_interpreter_environment
= Qnil
;
3846 /* Don't export this variable to Elisp, so no one can mess with it
3847 (Just imagine if someone makes it buffer-local). */
3848 Funintern (Qinternal_interpreter_environment
, Qnil
);
3850 DEFSYM (Vrun_hooks
, "run-hooks");
3852 staticpro (&Vautoload_queue
);
3853 Vautoload_queue
= Qnil
;
3854 staticpro (&Vsignaling_function
);
3855 Vsignaling_function
= Qnil
;
3857 inhibit_lisp_code
= Qnil
;
3868 defsubr (&Sfunction
);
3869 defsubr (&Sdefault_toplevel_value
);
3870 defsubr (&Sset_default_toplevel_value
);
3872 defsubr (&Sdefvaralias
);
3873 defsubr (&Sdefconst
);
3874 defsubr (&Smake_var_non_special
);
3878 defsubr (&Smacroexpand
);
3881 defsubr (&Sunwind_protect
);
3882 defsubr (&Scondition_case
);
3884 defsubr (&Scommandp
);
3885 defsubr (&Sautoload
);
3886 defsubr (&Sautoload_do_load
);
3889 defsubr (&Sfuncall
);
3890 defsubr (&Srun_hooks
);
3891 defsubr (&Srun_hook_with_args
);
3892 defsubr (&Srun_hook_with_args_until_success
);
3893 defsubr (&Srun_hook_with_args_until_failure
);
3894 defsubr (&Srun_hook_wrapped
);
3895 defsubr (&Sfetch_bytecode
);
3896 defsubr (&Sbacktrace_debug
);
3897 defsubr (&Sbacktrace
);
3898 defsubr (&Sbacktrace_frame
);
3899 defsubr (&Sbacktrace_eval
);
3900 defsubr (&Sbacktrace__locals
);
3901 defsubr (&Sspecial_variable_p
);
3902 defsubr (&Sfunctionp
);