* eval.c (struct backtrace): Simplify and port the data structure.
[bpt/emacs.git] / src / eval.c
CommitLineData
db9f0278 1/* Evaluator for GNU Emacs Lisp interpreter.
73b0cd50 2 Copyright (C) 1985-1987, 1993-1995, 1999-2011 Free Software Foundation, Inc.
db9f0278
JB
3
4This file is part of GNU Emacs.
5
9ec0b715 6GNU Emacs is free software: you can redistribute it and/or modify
db9f0278 7it under the terms of the GNU General Public License as published by
9ec0b715
GM
8the Free Software Foundation, either version 3 of the License, or
9(at your option) any later version.
db9f0278
JB
10
11GNU Emacs is distributed in the hope that it will be useful,
12but WITHOUT ANY WARRANTY; without even the implied warranty of
13MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14GNU General Public License for more details.
15
16You should have received a copy of the GNU General Public License
9ec0b715 17along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
db9f0278
JB
18
19
18160b98 20#include <config.h>
eb3f1cc8 21#include <limits.h>
d7306fe6 22#include <setjmp.h>
4e2fe2e6 23#include <stdio.h>
db9f0278 24#include "lisp.h"
9ac0d9e0 25#include "blockinput.h"
db9f0278 26#include "commands.h"
1f98fa48 27#include "keyboard.h"
3648c842 28#include "dispextern.h"
94b612ad 29#include "frame.h" /* For XFRAME. */
db9f0278 30
b70e1a2b
SM
31#if HAVE_X_WINDOWS
32#include "xterm.h"
33#endif
34
db9f0278 35struct backtrace
4c576a83
GM
36{
37 struct backtrace *next;
38 Lisp_Object *function;
f6d62986 39 Lisp_Object *args; /* Points to vector of args. */
bbc6b304 40 ptrdiff_t nargs; /* Length of vector. */
f6d62986 41 /* Nonzero means call value of debugger when done with this operation. */
bbc6b304 42 unsigned int debug_on_exit : 1;
4c576a83 43};
db9f0278 44
57a96f5c 45static struct backtrace *backtrace_list;
244ed907
PE
46
47#if !BYTE_MARK_STACK
48static
49#endif
db9f0278
JB
50struct catchtag *catchlist;
51
244ed907
PE
52/* Chain of condition handlers currently in effect.
53 The elements of this chain are contained in the stack frames
54 of Fcondition_case and internal_condition_case.
55 When an error is signaled (by calling Fsignal, below),
56 this chain is searched for an element that applies. */
57
58#if !BYTE_MARK_STACK
59static
60#endif
61struct handler *handlerlist;
62
15934ffa
RS
63#ifdef DEBUG_GCPRO
64/* Count levels of GCPRO to detect failure to UNGCPRO. */
65int gcpro_level;
66#endif
67
6fd797f5 68Lisp_Object Qautoload, Qmacro, Qexit, Qinteractive, Qcommandp, Qdefun;
29208e82 69Lisp_Object Qinhibit_quit;
955cbe7b
PE
70Lisp_Object Qand_rest;
71static Lisp_Object Qand_optional;
72static Lisp_Object Qdebug_on_error;
73static Lisp_Object Qdeclare;
b9598260
SM
74Lisp_Object Qinternal_interpreter_environment, Qclosure;
75
ed008a6d 76static Lisp_Object Qdebug;
db9f0278 77
6e6e9f08
RS
78/* This holds either the symbol `run-hooks' or nil.
79 It is nil at an early stage of startup, and when Emacs
80 is shutting down. */
4c576a83 81
db9f0278
JB
82Lisp_Object Vrun_hooks;
83
84/* Non-nil means record all fset's and provide's, to be undone
85 if the file being autoloaded is not fully loaded.
86 They are recorded by being consed onto the front of Vautoload_queue:
47b82df9 87 (FUN . ODEF) for a defun, (0 . OFEATURES) for a provide. */
db9f0278
JB
88
89Lisp_Object Vautoload_queue;
90
91/* Current number of specbindings allocated in specpdl. */
4c576a83 92
5816888b 93EMACS_INT specpdl_size;
db9f0278
JB
94
95/* Pointer to beginning of specpdl. */
4c576a83 96
db9f0278
JB
97struct specbinding *specpdl;
98
99/* Pointer to first unused element in specpdl. */
4c576a83 100
ab837828 101struct specbinding *specpdl_ptr;
db9f0278 102
db9f0278 103/* Depth in Lisp evaluations and function calls. */
4c576a83 104
57a96f5c 105static EMACS_INT lisp_eval_depth;
db9f0278 106
be857679 107/* The value of num_nonmacro_input_events as of the last time we
82da7701 108 started to enter the debugger. If we decide to enter the debugger
be857679 109 again when this is still equal to num_nonmacro_input_events, then we
82da7701
JB
110 know that the debugger itself has an error, and we should just
111 signal the error instead of entering an infinite loop of debugger
112 invocations. */
4c576a83 113
57a96f5c 114static int when_entered_debugger;
db9f0278 115
a2ff3819
GM
116/* The function from which the last `signal' was called. Set in
117 Fsignal. */
118
119Lisp_Object Vsignaling_function;
120
4c576a83
GM
121/* Set to non-zero while processing X events. Checked in Feval to
122 make sure the Lisp interpreter isn't called from a signal handler,
123 which is unsafe because the interpreter isn't reentrant. */
124
125int handling_signal;
126
f66c7cf8 127static Lisp_Object funcall_lambda (Lisp_Object, ptrdiff_t, Lisp_Object *);
f57e2426 128static void unwind_to_catch (struct catchtag *, Lisp_Object) NO_RETURN;
2f7c71a1 129static int interactive_p (int);
7200d79c 130static Lisp_Object apply_lambda (Lisp_Object fun, Lisp_Object args);
cd64ea1d 131static Lisp_Object Ffetch_bytecode (Lisp_Object);
873759d5 132\f
dfcf069d 133void
d3da34e0 134init_eval_once (void)
db9f0278
JB
135{
136 specpdl_size = 50;
716acfce 137 specpdl = (struct specbinding *) xmalloc (specpdl_size * sizeof (struct specbinding));
270e8074 138 specpdl_ptr = specpdl;
6588243d 139 /* Don't forget to update docs (lispref node "Local Variables"). */
c530e1c2 140 max_specpdl_size = 1300; /* 1000 is not enough for CEDET's c-by.el. */
d46f6bbb 141 max_lisp_eval_depth = 600;
34d470ba
RS
142
143 Vrun_hooks = Qnil;
db9f0278
JB
144}
145
dfcf069d 146void
d3da34e0 147init_eval (void)
db9f0278
JB
148{
149 specpdl_ptr = specpdl;
150 catchlist = 0;
151 handlerlist = 0;
152 backtrace_list = 0;
153 Vquit_flag = Qnil;
154 debug_on_next_call = 0;
155 lisp_eval_depth = 0;
87e21fbd 156#ifdef DEBUG_GCPRO
15934ffa 157 gcpro_level = 0;
87e21fbd 158#endif
be857679 159 /* This is less than the initial value of num_nonmacro_input_events. */
b5b911f9 160 when_entered_debugger = -1;
db9f0278
JB
161}
162
f6d62986 163/* Unwind-protect function used by call_debugger. */
9f5903bb
RS
164
165static Lisp_Object
d3da34e0 166restore_stack_limits (Lisp_Object data)
9f5903bb
RS
167{
168 max_specpdl_size = XINT (XCAR (data));
169 max_lisp_eval_depth = XINT (XCDR (data));
538f78c3 170 return Qnil;
9f5903bb
RS
171}
172
173/* Call the Lisp debugger, giving it argument ARG. */
174
475545b5 175static Lisp_Object
d3da34e0 176call_debugger (Lisp_Object arg)
db9f0278 177{
3648c842 178 int debug_while_redisplaying;
aed13378 179 int count = SPECPDL_INDEX ();
3648c842 180 Lisp_Object val;
5816888b 181 EMACS_INT old_max = max_specpdl_size;
177c0ea7 182
9f5903bb
RS
183 /* Temporarily bump up the stack limits,
184 so the debugger won't run out of stack. */
177c0ea7 185
9f5903bb
RS
186 max_specpdl_size += 1;
187 record_unwind_protect (restore_stack_limits,
188 Fcons (make_number (old_max),
189 make_number (max_lisp_eval_depth)));
190 max_specpdl_size = old_max;
191
192 if (lisp_eval_depth + 40 > max_lisp_eval_depth)
193 max_lisp_eval_depth = lisp_eval_depth + 40;
194
195 if (SPECPDL_INDEX () + 100 > max_specpdl_size)
196 max_specpdl_size = SPECPDL_INDEX () + 100;
177c0ea7 197
d148e14d 198#ifdef HAVE_WINDOW_SYSTEM
df6c90d8
GM
199 if (display_hourglass_p)
200 cancel_hourglass ();
237c23b0
GM
201#endif
202
db9f0278 203 debug_on_next_call = 0;
be857679 204 when_entered_debugger = num_nonmacro_input_events;
3648c842
GM
205
206 /* Resetting redisplaying_p to 0 makes sure that debug output is
207 displayed if the debugger is invoked during redisplay. */
208 debug_while_redisplaying = redisplaying_p;
209 redisplaying_p = 0;
556d7314
GM
210 specbind (intern ("debugger-may-continue"),
211 debug_while_redisplaying ? Qnil : Qt);
8efb6cc7 212 specbind (Qinhibit_redisplay, Qnil);
9f5903bb 213 specbind (Qdebug_on_error, Qnil);
9db6f6b4
GM
214
215#if 0 /* Binding this prevents execution of Lisp code during
216 redisplay, which necessarily leads to display problems. */
8efb6cc7 217 specbind (Qinhibit_eval_during_redisplay, Qt);
9db6f6b4 218#endif
177c0ea7 219
3648c842
GM
220 val = apply1 (Vdebugger, arg);
221
222 /* Interrupting redisplay and resuming it later is not safe under
223 all circumstances. So, when the debugger returns, abort the
1b1acc13 224 interrupted redisplay by going back to the top-level. */
3648c842
GM
225 if (debug_while_redisplaying)
226 Ftop_level ();
227
556d7314 228 return unbind_to (count, val);
db9f0278
JB
229}
230
475545b5 231static void
d3da34e0 232do_debug_on_call (Lisp_Object code)
db9f0278
JB
233{
234 debug_on_next_call = 0;
235 backtrace_list->debug_on_exit = 1;
236 call_debugger (Fcons (code, Qnil));
237}
238\f
239/* NOTE!!! Every function that can call EVAL must protect its args
240 and temporaries from garbage collection while it needs them.
241 The definition of `For' shows what you have to do. */
242
243DEFUN ("or", For, Sor, 0, UNEVALLED, 0,
9dbc9081
PJ
244 doc: /* Eval args until one of them yields non-nil, then return that value.
245The remaining args are not evalled at all.
246If all args return nil, return nil.
533eb34b 247usage: (or CONDITIONS...) */)
5842a27b 248 (Lisp_Object args)
db9f0278 249{
e509f168 250 register Lisp_Object val = Qnil;
db9f0278
JB
251 struct gcpro gcpro1;
252
e509f168 253 GCPRO1 (args);
db9f0278 254
e509f168 255 while (CONSP (args))
db9f0278 256 {
defb1411 257 val = eval_sub (XCAR (args));
265a9e55 258 if (!NILP (val))
db9f0278 259 break;
e509f168 260 args = XCDR (args);
db9f0278 261 }
db9f0278
JB
262
263 UNGCPRO;
264 return val;
265}
266
267DEFUN ("and", Fand, Sand, 0, UNEVALLED, 0,
b8de5714 268 doc: /* Eval args until one of them yields nil, then return nil.
9dbc9081
PJ
269The remaining args are not evalled at all.
270If no arg yields nil, return the last arg's value.
533eb34b 271usage: (and CONDITIONS...) */)
5842a27b 272 (Lisp_Object args)
db9f0278 273{
e509f168 274 register Lisp_Object val = Qt;
db9f0278
JB
275 struct gcpro gcpro1;
276
e509f168 277 GCPRO1 (args);
db9f0278 278
e509f168 279 while (CONSP (args))
db9f0278 280 {
defb1411 281 val = eval_sub (XCAR (args));
265a9e55 282 if (NILP (val))
db9f0278 283 break;
e509f168 284 args = XCDR (args);
db9f0278 285 }
db9f0278
JB
286
287 UNGCPRO;
288 return val;
289}
290
291DEFUN ("if", Fif, Sif, 2, UNEVALLED, 0,
b8de5714 292 doc: /* If COND yields non-nil, do THEN, else do ELSE...
9dbc9081
PJ
293Returns the value of THEN or the value of the last of the ELSE's.
294THEN must be one expression, but ELSE... can be zero or more expressions.
295If COND yields nil, and there are no ELSE's, the value is nil.
7a25dc6d 296usage: (if COND THEN ELSE...) */)
5842a27b 297 (Lisp_Object args)
db9f0278
JB
298{
299 register Lisp_Object cond;
300 struct gcpro gcpro1;
301
302 GCPRO1 (args);
defb1411 303 cond = eval_sub (Fcar (args));
db9f0278
JB
304 UNGCPRO;
305
265a9e55 306 if (!NILP (cond))
defb1411 307 return eval_sub (Fcar (Fcdr (args)));
db9f0278
JB
308 return Fprogn (Fcdr (Fcdr (args)));
309}
310
311DEFUN ("cond", Fcond, Scond, 0, UNEVALLED, 0,
9dbc9081
PJ
312 doc: /* Try each clause until one succeeds.
313Each clause looks like (CONDITION BODY...). CONDITION is evaluated
314and, if the value is non-nil, this clause succeeds:
315then the expressions in BODY are evaluated and the last one's
316value is the value of the cond-form.
317If no clause succeeds, cond returns nil.
318If a clause has one element, as in (CONDITION),
319CONDITION's value if non-nil is returned from the cond-form.
7a25dc6d 320usage: (cond CLAUSES...) */)
5842a27b 321 (Lisp_Object args)
db9f0278
JB
322{
323 register Lisp_Object clause, val;
324 struct gcpro gcpro1;
325
326 val = Qnil;
327 GCPRO1 (args);
265a9e55 328 while (!NILP (args))
db9f0278
JB
329 {
330 clause = Fcar (args);
defb1411 331 val = eval_sub (Fcar (clause));
265a9e55 332 if (!NILP (val))
db9f0278 333 {
03699b14
KR
334 if (!EQ (XCDR (clause), Qnil))
335 val = Fprogn (XCDR (clause));
db9f0278
JB
336 break;
337 }
03699b14 338 args = XCDR (args);
db9f0278
JB
339 }
340 UNGCPRO;
341
342 return val;
343}
344
a7ca3326 345DEFUN ("progn", Fprogn, Sprogn, 0, UNEVALLED, 0,
9dbc9081 346 doc: /* Eval BODY forms sequentially and return value of last one.
5b4a1f50 347usage: (progn BODY...) */)
5842a27b 348 (Lisp_Object args)
db9f0278 349{
e509f168 350 register Lisp_Object val = Qnil;
db9f0278
JB
351 struct gcpro gcpro1;
352
e509f168 353 GCPRO1 (args);
db9f0278 354
e509f168 355 while (CONSP (args))
db9f0278 356 {
defb1411 357 val = eval_sub (XCAR (args));
e509f168 358 args = XCDR (args);
db9f0278 359 }
db9f0278
JB
360
361 UNGCPRO;
362 return val;
363}
364
365DEFUN ("prog1", Fprog1, Sprog1, 1, UNEVALLED, 0,
bdee2ef3 366 doc: /* Eval FIRST and BODY sequentially; return value from FIRST.
9dbc9081
PJ
367The value of FIRST is saved during the evaluation of the remaining args,
368whose values are discarded.
7a25dc6d 369usage: (prog1 FIRST BODY...) */)
5842a27b 370 (Lisp_Object args)
db9f0278
JB
371{
372 Lisp_Object val;
373 register Lisp_Object args_left;
374 struct gcpro gcpro1, gcpro2;
375 register int argnum = 0;
376
9ac66b45 377 if (NILP (args))
db9f0278
JB
378 return Qnil;
379
380 args_left = args;
381 val = Qnil;
382 GCPRO2 (args, val);
383
384 do
385 {
ba83908c 386 Lisp_Object tem = eval_sub (XCAR (args_left));
db9f0278 387 if (!(argnum++))
ba83908c
SM
388 val = tem;
389 args_left = XCDR (args_left);
db9f0278 390 }
ba83908c 391 while (CONSP (args_left));
db9f0278
JB
392
393 UNGCPRO;
394 return val;
395}
396
397DEFUN ("prog2", Fprog2, Sprog2, 2, UNEVALLED, 0,
bdee2ef3 398 doc: /* Eval FORM1, FORM2 and BODY sequentially; return value from FORM2.
82fc29a1
JB
399The value of FORM2 is saved during the evaluation of the
400remaining args, whose values are discarded.
401usage: (prog2 FORM1 FORM2 BODY...) */)
5842a27b 402 (Lisp_Object args)
db9f0278
JB
403{
404 Lisp_Object val;
405 register Lisp_Object args_left;
406 struct gcpro gcpro1, gcpro2;
407 register int argnum = -1;
408
409 val = Qnil;
410
87d238ba 411 if (NILP (args))
db9f0278
JB
412 return Qnil;
413
414 args_left = args;
415 val = Qnil;
416 GCPRO2 (args, val);
417
418 do
419 {
ba83908c 420 Lisp_Object tem = eval_sub (XCAR (args_left));
db9f0278 421 if (!(argnum++))
ba83908c
SM
422 val = tem;
423 args_left = XCDR (args_left);
db9f0278 424 }
ba83908c 425 while (CONSP (args_left));
db9f0278
JB
426
427 UNGCPRO;
428 return val;
429}
430
431DEFUN ("setq", Fsetq, Ssetq, 0, UNEVALLED, 0,
9dbc9081
PJ
432 doc: /* Set each SYM to the value of its VAL.
433The symbols SYM are variables; they are literal (not evaluated).
434The values VAL are expressions; they are evaluated.
435Thus, (setq x (1+ y)) sets `x' to the value of `(1+ y)'.
436The second VAL is not computed until after the first SYM is set, and so on;
437each VAL can use the new value of variables set earlier in the `setq'.
438The return value of the `setq' form is the value of the last VAL.
819586b2 439usage: (setq [SYM VAL]...) */)
5842a27b 440 (Lisp_Object args)
db9f0278
JB
441{
442 register Lisp_Object args_left;
b9598260 443 register Lisp_Object val, sym, lex_binding;
db9f0278
JB
444 struct gcpro gcpro1;
445
1283140e 446 if (NILP (args))
db9f0278
JB
447 return Qnil;
448
449 args_left = args;
450 GCPRO1 (args);
451
452 do
453 {
defb1411 454 val = eval_sub (Fcar (Fcdr (args_left)));
db9f0278 455 sym = Fcar (args_left);
b9598260 456
defb1411 457 /* Like for eval_sub, we do not check declared_special here since
f07a954e
SM
458 it's been done when let-binding. */
459 if (!NILP (Vinternal_interpreter_environment) /* Mere optimization! */
b9598260 460 && SYMBOLP (sym)
f07a954e
SM
461 && !NILP (lex_binding
462 = Fassq (sym, Vinternal_interpreter_environment)))
b9598260
SM
463 XSETCDR (lex_binding, val); /* SYM is lexically bound. */
464 else
465 Fset (sym, val); /* SYM is dynamically bound. */
466
db9f0278
JB
467 args_left = Fcdr (Fcdr (args_left));
468 }
265a9e55 469 while (!NILP(args_left));
db9f0278
JB
470
471 UNGCPRO;
472 return val;
473}
177c0ea7 474
db9f0278 475DEFUN ("quote", Fquote, Squote, 1, UNEVALLED, 0,
9dbc9081
PJ
476 doc: /* Return the argument, without evaluating it. `(quote x)' yields `x'.
477usage: (quote ARG) */)
5842a27b 478 (Lisp_Object args)
db9f0278 479{
1283140e
RS
480 if (!NILP (Fcdr (args)))
481 xsignal2 (Qwrong_number_of_arguments, Qquote, Flength (args));
db9f0278
JB
482 return Fcar (args);
483}
177c0ea7 484
db9f0278 485DEFUN ("function", Ffunction, Sfunction, 1, UNEVALLED, 0,
9dbc9081
PJ
486 doc: /* Like `quote', but preferred for objects which are functions.
487In byte compilation, `function' causes its argument to be compiled.
488`quote' cannot do that.
489usage: (function ARG) */)
5842a27b 490 (Lisp_Object args)
db9f0278 491{
b9598260
SM
492 Lisp_Object quoted = XCAR (args);
493
1283140e
RS
494 if (!NILP (Fcdr (args)))
495 xsignal2 (Qwrong_number_of_arguments, Qfunction, Flength (args));
b9598260
SM
496
497 if (!NILP (Vinternal_interpreter_environment)
498 && CONSP (quoted)
499 && EQ (XCAR (quoted), Qlambda))
500 /* This is a lambda expression within a lexical environment;
501 return an interpreted closure instead of a simple lambda. */
23aba0ea
SM
502 return Fcons (Qclosure, Fcons (Vinternal_interpreter_environment,
503 XCDR (quoted)));
b9598260
SM
504 else
505 /* Simply quote the argument. */
506 return quoted;
db9f0278
JB
507}
508
e0f331ab 509
a7ca3326 510DEFUN ("interactive-p", Finteractive_p, Sinteractive_p, 0, 0, 0,
84b17ab0 511 doc: /* Return t if the containing function was run directly by user input.
82fc29a1
JB
512This means that the function was called with `call-interactively'
513\(which includes being called as the binding of a key)
84b17ab0 514and input is currently coming from the keyboard (not a keyboard macro),
c63df42b
RS
515and Emacs is not running in batch mode (`noninteractive' is nil).
516
517The only known proper use of `interactive-p' is in deciding whether to
518display a helpful message, or how to display it. If you're thinking
519of using it for any other purpose, it is quite likely that you're
520making a mistake. Think: what do you want to do when the command is
521called from a keyboard macro?
522
84b17ab0
CY
523To test whether your function was called with `call-interactively',
524either (i) add an extra optional argument and give it an `interactive'
525spec that specifies non-nil unconditionally (such as \"p\"); or (ii)
526use `called-interactively-p'. */)
5842a27b 527 (void)
db9f0278 528{
b9598260 529 return interactive_p (1) ? Qt : Qnil;
e0f331ab
GM
530}
531
532
9d28c33e 533DEFUN ("called-interactively-p", Fcalled_interactively_p, Scalled_interactively_p, 0, 1, 0,
84b17ab0 534 doc: /* Return t if the containing function was called by `call-interactively'.
9d28c33e
SM
535If KIND is `interactive', then only return t if the call was made
536interactively by the user, i.e. not in `noninteractive' mode nor
537when `executing-kbd-macro'.
538If KIND is `any', on the other hand, it will return t for any kind of
539interactive call, including being called as the binding of a key, or
540from a keyboard macro, or in `noninteractive' mode.
541
542The only known proper use of `interactive' for KIND is in deciding
543whether to display a helpful message, or how to display it. If you're
544thinking of using it for any other purpose, it is quite likely that
545you're making a mistake. Think: what do you want to do when the
546command is called from a keyboard macro?
84b17ab0
CY
547
548This function is meant for implementing advice and other
549function-modifying features. Instead of using this, it is sometimes
550cleaner to give your function an extra optional argument whose
551`interactive' spec specifies non-nil unconditionally (\"p\" is a good
9d28c33e 552way to do this), or via (not (or executing-kbd-macro noninteractive)). */)
5842a27b 553 (Lisp_Object kind)
c63df42b 554{
9d28c33e
SM
555 return ((INTERACTIVE || !EQ (kind, intern ("interactive")))
556 && interactive_p (1)) ? Qt : Qnil;
c63df42b
RS
557}
558
559
560/* Return 1 if function in which this appears was called using
561 call-interactively.
e0f331ab
GM
562
563 EXCLUDE_SUBRS_P non-zero means always return 0 if the function
564 called is a built-in. */
565
2f7c71a1 566static int
d3da34e0 567interactive_p (int exclude_subrs_p)
e0f331ab
GM
568{
569 struct backtrace *btp;
570 Lisp_Object fun;
db9f0278 571
db9f0278 572 btp = backtrace_list;
daa37602
JB
573
574 /* If this isn't a byte-compiled function, there may be a frame at
e0f331ab 575 the top for Finteractive_p. If so, skip it. */
a7f96a35 576 fun = Findirect_function (*btp->function, Qnil);
0b31741c
RS
577 if (SUBRP (fun) && (XSUBR (fun) == &Sinteractive_p
578 || XSUBR (fun) == &Scalled_interactively_p))
db9f0278 579 btp = btp->next;
daa37602
JB
580
581 /* If we're running an Emacs 18-style byte-compiled function, there
4402a9ed
RS
582 may be a frame for Fbytecode at the top level. In any version of
583 Emacs there can be Fbytecode frames for subexpressions evaluated
584 inside catch and condition-case. Skip past them.
daa37602 585
4402a9ed 586 If this isn't a byte-compiled function, then we may now be
daa37602 587 looking at several frames for special forms. Skip past them. */
4402a9ed
RS
588 while (btp
589 && (EQ (*btp->function, Qbytecode)
44f230aa 590 || btp->nargs == UNEVALLED))
a6e3fa71
JB
591 btp = btp->next;
592
f6d62986 593 /* `btp' now points at the frame of the innermost function that isn't
daa37602
JB
594 a special form, ignoring frames for Finteractive_p and/or
595 Fbytecode at the top. If this frame is for a built-in function
596 (such as load or eval-region) return nil. */
a7f96a35 597 fun = Findirect_function (*btp->function, Qnil);
e0f331ab
GM
598 if (exclude_subrs_p && SUBRP (fun))
599 return 0;
177c0ea7 600
f6d62986 601 /* `btp' points to the frame of a Lisp function that called interactive-p.
db9f0278
JB
602 Return t if that function was called interactively. */
603 if (btp && btp->next && EQ (*btp->next->function, Qcall_interactively))
e0f331ab
GM
604 return 1;
605 return 0;
db9f0278
JB
606}
607
e0f331ab 608
db9f0278 609DEFUN ("defun", Fdefun, Sdefun, 2, UNEVALLED, 0,
9dbc9081
PJ
610 doc: /* Define NAME as a function.
611The definition is (lambda ARGLIST [DOCSTRING] BODY...).
612See also the function `interactive'.
7a25dc6d 613usage: (defun NAME ARGLIST [DOCSTRING] BODY...) */)
5842a27b 614 (Lisp_Object args)
db9f0278
JB
615{
616 register Lisp_Object fn_name;
617 register Lisp_Object defn;
618
619 fn_name = Fcar (args);
6992a868 620 CHECK_SYMBOL (fn_name);
db9f0278 621 defn = Fcons (Qlambda, Fcdr (args));
f07a954e
SM
622 if (!NILP (Vinternal_interpreter_environment)) /* Mere optimization! */
623 defn = Ffunction (Fcons (defn, Qnil));
265a9e55 624 if (!NILP (Vpurify_flag))
db9f0278 625 defn = Fpurecopy (defn);
f58e9f8c
RS
626 if (CONSP (XSYMBOL (fn_name)->function)
627 && EQ (XCAR (XSYMBOL (fn_name)->function), Qautoload))
628 LOADHIST_ATTACH (Fcons (Qt, fn_name));
db9f0278 629 Ffset (fn_name, defn);
6fd797f5 630 LOADHIST_ATTACH (Fcons (Qdefun, fn_name));
db9f0278
JB
631 return fn_name;
632}
633
634DEFUN ("defmacro", Fdefmacro, Sdefmacro, 2, UNEVALLED, 0,
9dbc9081 635 doc: /* Define NAME as a macro.
0654d6e3
RS
636The actual definition looks like
637 (macro lambda ARGLIST [DOCSTRING] [DECL] BODY...).
9dbc9081
PJ
638When the macro is called, as in (NAME ARGS...),
639the function (lambda ARGLIST BODY...) is applied to
640the list ARGS... as it appears in the expression,
641and the result should be a form to be evaluated instead of the original.
0654d6e3
RS
642
643DECL is a declaration, optional, which can specify how to indent
4ba50634
JPW
644calls to this macro, how Edebug should handle it, and which argument
645should be treated as documentation. It looks like this:
0654d6e3
RS
646 (declare SPECS...)
647The elements can look like this:
648 (indent INDENT)
649 Set NAME's `lisp-indent-function' property to INDENT.
650
e509f168 651 (debug DEBUG)
0654d6e3 652 Set NAME's `edebug-form-spec' property to DEBUG. (This is
7d5c86e5 653 equivalent to writing a `def-edebug-spec' for the macro.)
4ba50634
JPW
654
655 (doc-string ELT)
656 Set NAME's `doc-string-elt' property to ELT.
657
0654d6e3 658usage: (defmacro NAME ARGLIST [DOCSTRING] [DECL] BODY...) */)
5842a27b 659 (Lisp_Object args)
db9f0278
JB
660{
661 register Lisp_Object fn_name;
662 register Lisp_Object defn;
d6edd563 663 Lisp_Object lambda_list, doc, tail;
db9f0278
JB
664
665 fn_name = Fcar (args);
8e975df9 666 CHECK_SYMBOL (fn_name);
d6edd563
GM
667 lambda_list = Fcar (Fcdr (args));
668 tail = Fcdr (Fcdr (args));
669
670 doc = Qnil;
671 if (STRINGP (Fcar (tail)))
672 {
e509f168
SM
673 doc = XCAR (tail);
674 tail = XCDR (tail);
d6edd563
GM
675 }
676
0193499f
SM
677 if (CONSP (Fcar (tail))
678 && EQ (Fcar (Fcar (tail)), Qdeclare))
d6edd563
GM
679 {
680 if (!NILP (Vmacro_declaration_function))
681 {
682 struct gcpro gcpro1;
683 GCPRO1 (args);
684 call2 (Vmacro_declaration_function, fn_name, Fcar (tail));
685 UNGCPRO;
686 }
177c0ea7 687
d6edd563
GM
688 tail = Fcdr (tail);
689 }
690
691 if (NILP (doc))
692 tail = Fcons (lambda_list, tail);
693 else
694 tail = Fcons (lambda_list, Fcons (doc, tail));
7200d79c 695
b9598260 696 defn = Fcons (Qlambda, tail);
f07a954e
SM
697 if (!NILP (Vinternal_interpreter_environment)) /* Mere optimization! */
698 defn = Ffunction (Fcons (defn, Qnil));
b9598260 699 defn = Fcons (Qmacro, defn);
177c0ea7 700
265a9e55 701 if (!NILP (Vpurify_flag))
db9f0278 702 defn = Fpurecopy (defn);
f58e9f8c
RS
703 if (CONSP (XSYMBOL (fn_name)->function)
704 && EQ (XCAR (XSYMBOL (fn_name)->function), Qautoload))
705 LOADHIST_ATTACH (Fcons (Qt, fn_name));
db9f0278 706 Ffset (fn_name, defn);
6fd797f5 707 LOADHIST_ATTACH (Fcons (Qdefun, fn_name));
db9f0278
JB
708 return fn_name;
709}
710
19cebf5a 711
1848d15d 712DEFUN ("defvaralias", Fdefvaralias, Sdefvaralias, 2, 3, 0,
4a9308b8 713 doc: /* Make NEW-ALIAS a variable alias for symbol BASE-VARIABLE.
e102f0d8 714Aliased variables always have the same value; setting one sets the other.
4a9308b8 715Third arg DOCSTRING, if non-nil, is documentation for NEW-ALIAS. If it is
dd60787c
GM
716omitted or nil, NEW-ALIAS gets the documentation string of BASE-VARIABLE,
717or of the variable at the end of the chain of aliases, if BASE-VARIABLE is
718itself an alias. If NEW-ALIAS is bound, and BASE-VARIABLE is not,
719then the value of BASE-VARIABLE is set to that of NEW-ALIAS.
4a9308b8 720The return value is BASE-VARIABLE. */)
5842a27b 721 (Lisp_Object new_alias, Lisp_Object base_variable, Lisp_Object docstring)
19cebf5a
GM
722{
723 struct Lisp_Symbol *sym;
1848d15d 724
4a9308b8
JB
725 CHECK_SYMBOL (new_alias);
726 CHECK_SYMBOL (base_variable);
19cebf5a 727
4a9308b8 728 sym = XSYMBOL (new_alias);
ce5b453a
SM
729
730 if (sym->constant)
178f2507
SM
731 /* Not sure why, but why not? */
732 error ("Cannot make a constant an alias");
ce5b453a
SM
733
734 switch (sym->redirect)
735 {
736 case SYMBOL_FORWARDED:
737 error ("Cannot make an internal variable an alias");
738 case SYMBOL_LOCALIZED:
739 error ("Don't know how to make a localized variable an alias");
740 }
741
dd60787c 742 /* http://lists.gnu.org/archive/html/emacs-devel/2008-04/msg00834.html
ce5b453a
SM
743 If n_a is bound, but b_v is not, set the value of b_v to n_a,
744 so that old-code that affects n_a before the aliasing is setup
745 still works. */
746 if (NILP (Fboundp (base_variable)))
94b612ad 747 set_internal (base_variable, find_symbol_value (new_alias), Qnil, 1);
ce5b453a
SM
748
749 {
750 struct specbinding *p;
751
752 for (p = specpdl_ptr - 1; p >= specpdl; p--)
753 if (p->func == NULL
754 && (EQ (new_alias,
755 CONSP (p->symbol) ? XCAR (p->symbol) : p->symbol)))
756 error ("Don't know how to make a let-bound variable an alias");
757 }
758
b9598260 759 sym->declared_special = 1;
0ac30604 760 XSYMBOL (base_variable)->declared_special = 1;
ce5b453a
SM
761 sym->redirect = SYMBOL_VARALIAS;
762 SET_SYMBOL_ALIAS (sym, XSYMBOL (base_variable));
4a9308b8
JB
763 sym->constant = SYMBOL_CONSTANT_P (base_variable);
764 LOADHIST_ATTACH (new_alias);
ce5b453a
SM
765 /* Even if docstring is nil: remove old docstring. */
766 Fput (new_alias, Qvariable_documentation, docstring);
1848d15d 767
4a9308b8 768 return base_variable;
19cebf5a
GM
769}
770
771
db9f0278 772DEFUN ("defvar", Fdefvar, Sdefvar, 1, UNEVALLED, 0,
29357847 773 doc: /* Define SYMBOL as a variable, and return SYMBOL.
9dbc9081
PJ
774You are not required to define a variable in order to use it,
775but the definition can supply documentation and an initial value
776in a way that tags can recognize.
777
778INITVALUE is evaluated, and used to set SYMBOL, only if SYMBOL's value is void.
779If SYMBOL is buffer-local, its default value is what is set;
780 buffer-local values are not affected.
781INITVALUE and DOCSTRING are optional.
782If DOCSTRING starts with *, this variable is identified as a user option.
783 This means that M-x set-variable recognizes it.
784 See also `user-variable-p'.
785If INITVALUE is missing, SYMBOL's value is not set.
733f68b6
LT
786
787If SYMBOL has a local binding, then this form affects the local
788binding. This is usually not what you want. Thus, if you need to
789load a file defining variables, with this form or with `defconst' or
790`defcustom', you should always load that file _outside_ any bindings
791for these variables. \(`defconst' and `defcustom' behave similarly in
792this respect.)
2df5238c 793usage: (defvar SYMBOL &optional INITVALUE DOCSTRING) */)
5842a27b 794 (Lisp_Object args)
db9f0278 795{
a42ba017 796 register Lisp_Object sym, tem, tail;
db9f0278
JB
797
798 sym = Fcar (args);
a42ba017
RS
799 tail = Fcdr (args);
800 if (!NILP (Fcdr (Fcdr (tail))))
921baa95 801 error ("Too many arguments");
a42ba017 802
33568849 803 tem = Fdefault_boundp (sym);
a42ba017 804 if (!NILP (tail))
db9f0278 805 {
ba83908c
SM
806 /* Do it before evaluating the initial value, for self-references. */
807 XSYMBOL (sym)->declared_special = 1;
590130fb 808
1c9916a1
SM
809 if (SYMBOL_CONSTANT_P (sym))
810 {
811 /* For upward compatibility, allow (defvar :foo (quote :foo)). */
1faed8ae
PE
812 Lisp_Object tem1 = Fcar (tail);
813 if (! (CONSP (tem1)
814 && EQ (XCAR (tem1), Qquote)
815 && CONSP (XCDR (tem1))
816 && EQ (XCAR (XCDR (tem1)), sym)))
1c9916a1
SM
817 error ("Constant symbol `%s' specified in defvar",
818 SDATA (SYMBOL_NAME (sym)));
819 }
820
265a9e55 821 if (NILP (tem))
defb1411 822 Fset_default (sym, eval_sub (Fcar (tail)));
d0bce91e
SM
823 else
824 { /* Check if there is really a global binding rather than just a let
825 binding that shadows the global unboundness of the var. */
b28d0d9a 826 volatile struct specbinding *pdl = specpdl_ptr;
d0bce91e
SM
827 while (--pdl >= specpdl)
828 {
829 if (EQ (pdl->symbol, sym) && !pdl->func
830 && EQ (pdl->old_value, Qunbound))
831 {
832 message_with_string ("Warning: defvar ignored because %s is let-bound",
833 SYMBOL_NAME (sym), 1);
834 break;
835 }
836 }
837 }
33568849 838 tail = Fcdr (tail);
e509f168
SM
839 tem = Fcar (tail);
840 if (!NILP (tem))
33568849 841 {
33568849
SM
842 if (!NILP (Vpurify_flag))
843 tem = Fpurecopy (tem);
844 Fput (sym, Qvariable_documentation, tem);
845 }
6fd797f5 846 LOADHIST_ATTACH (sym);
db9f0278 847 }
f07a954e
SM
848 else if (!NILP (Vinternal_interpreter_environment)
849 && !XSYMBOL (sym)->declared_special)
850 /* A simple (defvar foo) with lexical scoping does "nothing" except
851 declare that var to be dynamically scoped *locally* (i.e. within
852 the current file or let-block). */
853 Vinternal_interpreter_environment =
854 Fcons (sym, Vinternal_interpreter_environment);
33568849 855 else
d28a2170
PE
856 {
857 /* Simple (defvar <var>) should not count as a definition at all.
858 It could get in the way of other definitions, and unloading this
859 package could try to make the variable unbound. */
860 }
addf35fd 861
db9f0278
JB
862 return sym;
863}
864
865DEFUN ("defconst", Fdefconst, Sdefconst, 2, UNEVALLED, 0,
9dbc9081
PJ
866 doc: /* Define SYMBOL as a constant variable.
867The intent is that neither programs nor users should ever change this value.
868Always sets the value of SYMBOL to the result of evalling INITVALUE.
869If SYMBOL is buffer-local, its default value is what is set;
870 buffer-local values are not affected.
871DOCSTRING is optional.
733f68b6
LT
872
873If SYMBOL has a local binding, then this form sets the local binding's
874value. However, you should normally not make local bindings for
875variables defined with this form.
7a25dc6d 876usage: (defconst SYMBOL INITVALUE [DOCSTRING]) */)
5842a27b 877 (Lisp_Object args)
db9f0278
JB
878{
879 register Lisp_Object sym, tem;
880
881 sym = Fcar (args);
a42ba017 882 if (!NILP (Fcdr (Fcdr (Fcdr (args)))))
921baa95 883 error ("Too many arguments");
a42ba017 884
defb1411 885 tem = eval_sub (Fcar (Fcdr (args)));
1182a7cb
DL
886 if (!NILP (Vpurify_flag))
887 tem = Fpurecopy (tem);
888 Fset_default (sym, tem);
b9598260 889 XSYMBOL (sym)->declared_special = 1;
db9f0278 890 tem = Fcar (Fcdr (Fcdr (args)));
265a9e55 891 if (!NILP (tem))
db9f0278 892 {
265a9e55 893 if (!NILP (Vpurify_flag))
db9f0278
JB
894 tem = Fpurecopy (tem);
895 Fput (sym, Qvariable_documentation, tem);
896 }
873759d5 897 Fput (sym, Qrisky_local_variable, Qt);
6fd797f5 898 LOADHIST_ATTACH (sym);
db9f0278
JB
899 return sym;
900}
901
606cdb89
JB
902/* Error handler used in Fuser_variable_p. */
903static Lisp_Object
d3da34e0 904user_variable_p_eh (Lisp_Object ignore)
606cdb89
JB
905{
906 return Qnil;
907}
908
40a69fac
SM
909static Lisp_Object
910lisp_indirect_variable (Lisp_Object sym)
911{
cfcbfb1a
PE
912 struct Lisp_Symbol *s = indirect_variable (XSYMBOL (sym));
913 XSETSYMBOL (sym, s);
40a69fac
SM
914 return sym;
915}
916
db9f0278 917DEFUN ("user-variable-p", Fuser_variable_p, Suser_variable_p, 1, 1, 0,
606cdb89 918 doc: /* Return t if VARIABLE is intended to be set and modified by users.
9dbc9081 919\(The alternative is a variable used internally in a Lisp program.)
606cdb89
JB
920A variable is a user variable if
921\(1) the first character of its documentation is `*', or
922\(2) it is customizable (its property list contains a non-nil value
923 of `standard-value' or `custom-autoload'), or
924\(3) it is an alias for another user variable.
925Return nil if VARIABLE is an alias and there is a loop in the
926chain of symbols. */)
5842a27b 927 (Lisp_Object variable)
db9f0278
JB
928{
929 Lisp_Object documentation;
177c0ea7 930
5e78e475
RS
931 if (!SYMBOLP (variable))
932 return Qnil;
933
606cdb89 934 /* If indirect and there's an alias loop, don't check anything else. */
ce5b453a 935 if (XSYMBOL (variable)->redirect == SYMBOL_VARALIAS
40a69fac 936 && NILP (internal_condition_case_1 (lisp_indirect_variable, variable,
bb8e180f 937 Qt, user_variable_p_eh)))
606cdb89
JB
938 return Qnil;
939
940 while (1)
941 {
942 documentation = Fget (variable, Qvariable_documentation);
943 if (INTEGERP (documentation) && XINT (documentation) < 0)
bb8e180f 944 return Qt;
606cdb89 945 if (STRINGP (documentation)
bb8e180f
AS
946 && ((unsigned char) SREF (documentation, 0) == '*'))
947 return Qt;
606cdb89
JB
948 /* If it is (STRING . INTEGER), a negative integer means a user variable. */
949 if (CONSP (documentation)
bb8e180f
AS
950 && STRINGP (XCAR (documentation))
951 && INTEGERP (XCDR (documentation))
952 && XINT (XCDR (documentation)) < 0)
953 return Qt;
606cdb89
JB
954 /* Customizable? See `custom-variable-p'. */
955 if ((!NILP (Fget (variable, intern ("standard-value"))))
bb8e180f
AS
956 || (!NILP (Fget (variable, intern ("custom-autoload")))))
957 return Qt;
606cdb89 958
ce5b453a 959 if (!(XSYMBOL (variable)->redirect == SYMBOL_VARALIAS))
bb8e180f 960 return Qnil;
606cdb89
JB
961
962 /* An indirect variable? Let's follow the chain. */
ce5b453a 963 XSETSYMBOL (variable, SYMBOL_ALIAS (XSYMBOL (variable)));
606cdb89 964 }
177c0ea7 965}
db9f0278
JB
966\f
967DEFUN ("let*", FletX, SletX, 1, UNEVALLED, 0,
9dbc9081
PJ
968 doc: /* Bind variables according to VARLIST then eval BODY.
969The value of the last form in BODY is returned.
970Each element of VARLIST is a symbol (which is bound to nil)
971or a list (SYMBOL VALUEFORM) (which binds SYMBOL to the value of VALUEFORM).
972Each VALUEFORM can refer to the symbols already bound by this VARLIST.
7a25dc6d 973usage: (let* VARLIST BODY...) */)
5842a27b 974 (Lisp_Object args)
db9f0278 975{
b9598260 976 Lisp_Object varlist, var, val, elt, lexenv;
aed13378 977 int count = SPECPDL_INDEX ();
db9f0278
JB
978 struct gcpro gcpro1, gcpro2, gcpro3;
979
980 GCPRO3 (args, elt, varlist);
981
b9598260
SM
982 lexenv = Vinternal_interpreter_environment;
983
db9f0278 984 varlist = Fcar (args);
b9598260 985 while (CONSP (varlist))
db9f0278
JB
986 {
987 QUIT;
b9598260
SM
988
989 elt = XCAR (varlist);
90165123 990 if (SYMBOLP (elt))
b9598260
SM
991 {
992 var = elt;
993 val = Qnil;
994 }
08564963 995 else if (! NILP (Fcdr (Fcdr (elt))))
734d55a2 996 signal_error ("`let' bindings can have only one value-form", elt);
db9f0278
JB
997 else
998 {
b9598260 999 var = Fcar (elt);
defb1411 1000 val = eval_sub (Fcar (Fcdr (elt)));
db9f0278 1001 }
b9598260 1002
f07a954e
SM
1003 if (!NILP (lexenv) && SYMBOLP (var)
1004 && !XSYMBOL (var)->declared_special
1005 && NILP (Fmemq (var, Vinternal_interpreter_environment)))
b9598260
SM
1006 /* Lexically bind VAR by adding it to the interpreter's binding
1007 alist. */
1008 {
f07a954e
SM
1009 Lisp_Object newenv
1010 = Fcons (Fcons (var, val), Vinternal_interpreter_environment);
1011 if (EQ (Vinternal_interpreter_environment, lexenv))
1012 /* Save the old lexical environment on the specpdl stack,
1013 but only for the first lexical binding, since we'll never
1014 need to revert to one of the intermediate ones. */
1015 specbind (Qinternal_interpreter_environment, newenv);
1016 else
1017 Vinternal_interpreter_environment = newenv;
db9f0278 1018 }
b9598260
SM
1019 else
1020 specbind (var, val);
1021
1022 varlist = XCDR (varlist);
db9f0278
JB
1023 }
1024 UNGCPRO;
1025 val = Fprogn (Fcdr (args));
1026 return unbind_to (count, val);
1027}
1028
1029DEFUN ("let", Flet, Slet, 1, UNEVALLED, 0,
9dbc9081
PJ
1030 doc: /* Bind variables according to VARLIST then eval BODY.
1031The value of the last form in BODY is returned.
1032Each element of VARLIST is a symbol (which is bound to nil)
1033or a list (SYMBOL VALUEFORM) (which binds SYMBOL to the value of VALUEFORM).
1034All the VALUEFORMs are evalled before any symbols are bound.
7a25dc6d 1035usage: (let VARLIST BODY...) */)
5842a27b 1036 (Lisp_Object args)
db9f0278 1037{
b9598260 1038 Lisp_Object *temps, tem, lexenv;
db9f0278 1039 register Lisp_Object elt, varlist;
aed13378 1040 int count = SPECPDL_INDEX ();
f66c7cf8 1041 ptrdiff_t argnum;
db9f0278 1042 struct gcpro gcpro1, gcpro2;
3a7a9129 1043 USE_SAFE_ALLOCA;
db9f0278
JB
1044
1045 varlist = Fcar (args);
1046
f6d62986 1047 /* Make space to hold the values to give the bound variables. */
db9f0278 1048 elt = Flength (varlist);
b72e0717 1049 SAFE_ALLOCA_LISP (temps, XFASTINT (elt));
db9f0278 1050
f6d62986 1051 /* Compute the values and store them in `temps'. */
db9f0278
JB
1052
1053 GCPRO2 (args, *temps);
1054 gcpro2.nvars = 0;
1055
67ee9f6e 1056 for (argnum = 0; CONSP (varlist); varlist = XCDR (varlist))
db9f0278
JB
1057 {
1058 QUIT;
67ee9f6e 1059 elt = XCAR (varlist);
90165123 1060 if (SYMBOLP (elt))
db9f0278 1061 temps [argnum++] = Qnil;
08564963 1062 else if (! NILP (Fcdr (Fcdr (elt))))
734d55a2 1063 signal_error ("`let' bindings can have only one value-form", elt);
db9f0278 1064 else
defb1411 1065 temps [argnum++] = eval_sub (Fcar (Fcdr (elt)));
db9f0278
JB
1066 gcpro2.nvars = argnum;
1067 }
1068 UNGCPRO;
1069
b9598260
SM
1070 lexenv = Vinternal_interpreter_environment;
1071
db9f0278 1072 varlist = Fcar (args);
67ee9f6e 1073 for (argnum = 0; CONSP (varlist); varlist = XCDR (varlist))
db9f0278 1074 {
b9598260
SM
1075 Lisp_Object var;
1076
67ee9f6e 1077 elt = XCAR (varlist);
b9598260 1078 var = SYMBOLP (elt) ? elt : Fcar (elt);
db9f0278 1079 tem = temps[argnum++];
b9598260 1080
f07a954e
SM
1081 if (!NILP (lexenv) && SYMBOLP (var)
1082 && !XSYMBOL (var)->declared_special
1083 && NILP (Fmemq (var, Vinternal_interpreter_environment)))
b9598260
SM
1084 /* Lexically bind VAR by adding it to the lexenv alist. */
1085 lexenv = Fcons (Fcons (var, tem), lexenv);
db9f0278 1086 else
b9598260
SM
1087 /* Dynamically bind VAR. */
1088 specbind (var, tem);
db9f0278
JB
1089 }
1090
b9598260
SM
1091 if (!EQ (lexenv, Vinternal_interpreter_environment))
1092 /* Instantiate a new lexical environment. */
1093 specbind (Qinternal_interpreter_environment, lexenv);
1094
db9f0278 1095 elt = Fprogn (Fcdr (args));
3a7a9129 1096 SAFE_FREE ();
db9f0278
JB
1097 return unbind_to (count, elt);
1098}
1099
1100DEFUN ("while", Fwhile, Swhile, 1, UNEVALLED, 0,
9dbc9081
PJ
1101 doc: /* If TEST yields non-nil, eval BODY... and repeat.
1102The order of execution is thus TEST, BODY, TEST, BODY and so on
1103until TEST returns nil.
7a25dc6d 1104usage: (while TEST BODY...) */)
5842a27b 1105 (Lisp_Object args)
db9f0278 1106{
2b9bde76 1107 Lisp_Object test, body;
db9f0278
JB
1108 struct gcpro gcpro1, gcpro2;
1109
1110 GCPRO2 (test, body);
1111
1112 test = Fcar (args);
1113 body = Fcdr (args);
defb1411 1114 while (!NILP (eval_sub (test)))
db9f0278
JB
1115 {
1116 QUIT;
1117 Fprogn (body);
1118 }
1119
1120 UNGCPRO;
1121 return Qnil;
1122}
1123
1124DEFUN ("macroexpand", Fmacroexpand, Smacroexpand, 1, 2, 0,
9dbc9081
PJ
1125 doc: /* Return result of expanding macros at top level of FORM.
1126If FORM is not a macro call, it is returned unchanged.
1127Otherwise, the macro is expanded and the expansion is considered
1128in place of FORM. When a non-macro-call results, it is returned.
1129
1130The second optional arg ENVIRONMENT specifies an environment of macro
1131definitions to shadow the loaded ones for use in file byte-compilation. */)
5842a27b 1132 (Lisp_Object form, Lisp_Object environment)
db9f0278 1133{
23d6b5a6 1134 /* With cleanups from Hallvard Furuseth. */
db9f0278
JB
1135 register Lisp_Object expander, sym, def, tem;
1136
1137 while (1)
1138 {
1139 /* Come back here each time we expand a macro call,
1140 in case it expands into another macro call. */
90165123 1141 if (!CONSP (form))
db9f0278 1142 break;
23d6b5a6 1143 /* Set SYM, give DEF and TEM right values in case SYM is not a symbol. */
03699b14 1144 def = sym = XCAR (form);
23d6b5a6 1145 tem = Qnil;
db9f0278
JB
1146 /* Trace symbols aliases to other symbols
1147 until we get a symbol that is not an alias. */
90165123 1148 while (SYMBOLP (def))
db9f0278
JB
1149 {
1150 QUIT;
23d6b5a6 1151 sym = def;
79e8bfbf 1152 tem = Fassq (sym, environment);
265a9e55 1153 if (NILP (tem))
db9f0278
JB
1154 {
1155 def = XSYMBOL (sym)->function;
23d6b5a6
JB
1156 if (!EQ (def, Qunbound))
1157 continue;
db9f0278 1158 }
23d6b5a6 1159 break;
db9f0278 1160 }
79e8bfbf 1161 /* Right now TEM is the result from SYM in ENVIRONMENT,
db9f0278 1162 and if TEM is nil then DEF is SYM's function definition. */
265a9e55 1163 if (NILP (tem))
db9f0278 1164 {
79e8bfbf 1165 /* SYM is not mentioned in ENVIRONMENT.
db9f0278 1166 Look at its function definition. */
90165123 1167 if (EQ (def, Qunbound) || !CONSP (def))
f6d62986 1168 /* Not defined or definition not suitable. */
db9f0278 1169 break;
03699b14 1170 if (EQ (XCAR (def), Qautoload))
db9f0278
JB
1171 {
1172 /* Autoloading function: will it be a macro when loaded? */
ee9ee63c 1173 tem = Fnth (make_number (4), def);
47ccd8b6 1174 if (EQ (tem, Qt) || EQ (tem, Qmacro))
ee9ee63c
JB
1175 /* Yes, load it and try again. */
1176 {
ca20916b
RS
1177 struct gcpro gcpro1;
1178 GCPRO1 (form);
ee9ee63c 1179 do_autoload (def, sym);
ca20916b 1180 UNGCPRO;
ee9ee63c
JB
1181 continue;
1182 }
1183 else
db9f0278 1184 break;
db9f0278 1185 }
03699b14 1186 else if (!EQ (XCAR (def), Qmacro))
db9f0278 1187 break;
03699b14 1188 else expander = XCDR (def);
db9f0278
JB
1189 }
1190 else
1191 {
03699b14 1192 expander = XCDR (tem);
265a9e55 1193 if (NILP (expander))
db9f0278
JB
1194 break;
1195 }
03699b14 1196 form = apply1 (expander, XCDR (form));
db9f0278
JB
1197 }
1198 return form;
1199}
1200\f
1201DEFUN ("catch", Fcatch, Scatch, 1, UNEVALLED, 0,
9dbc9081
PJ
1202 doc: /* Eval BODY allowing nonlocal exits using `throw'.
1203TAG is evalled to get the tag to use; it must not be nil.
1204
1205Then the BODY is executed.
1d632ccf 1206Within BODY, a call to `throw' with the same TAG exits BODY and this `catch'.
9dbc9081
PJ
1207If no throw happens, `catch' returns the value of the last BODY form.
1208If a throw happens, it specifies the value to return from `catch'.
7a25dc6d 1209usage: (catch TAG BODY...) */)
5842a27b 1210 (Lisp_Object args)
db9f0278
JB
1211{
1212 register Lisp_Object tag;
1213 struct gcpro gcpro1;
1214
1215 GCPRO1 (args);
defb1411 1216 tag = eval_sub (Fcar (args));
db9f0278
JB
1217 UNGCPRO;
1218 return internal_catch (tag, Fprogn, Fcdr (args));
1219}
1220
1221/* Set up a catch, then call C function FUNC on argument ARG.
1222 FUNC should return a Lisp_Object.
1223 This is how catches are done from within C code. */
1224
1225Lisp_Object
d3da34e0 1226internal_catch (Lisp_Object tag, Lisp_Object (*func) (Lisp_Object), Lisp_Object arg)
db9f0278
JB
1227{
1228 /* This structure is made part of the chain `catchlist'. */
1229 struct catchtag c;
1230
1231 /* Fill in the components of c, and put it on the list. */
1232 c.next = catchlist;
1233 c.tag = tag;
1234 c.val = Qnil;
1235 c.backlist = backtrace_list;
1236 c.handlerlist = handlerlist;
1237 c.lisp_eval_depth = lisp_eval_depth;
aed13378 1238 c.pdlcount = SPECPDL_INDEX ();
db9f0278 1239 c.poll_suppress_count = poll_suppress_count;
2659a09f 1240 c.interrupt_input_blocked = interrupt_input_blocked;
db9f0278 1241 c.gcpro = gcprolist;
bcf28080 1242 c.byte_stack = byte_stack_list;
db9f0278
JB
1243 catchlist = &c;
1244
1245 /* Call FUNC. */
1246 if (! _setjmp (c.jmp))
1247 c.val = (*func) (arg);
1248
1249 /* Throw works by a longjmp that comes right here. */
1250 catchlist = c.next;
1251 return c.val;
1252}
1253
ba410f40
JB
1254/* Unwind the specbind, catch, and handler stacks back to CATCH, and
1255 jump to that CATCH, returning VALUE as the value of that catch.
db9f0278 1256
ba410f40
JB
1257 This is the guts Fthrow and Fsignal; they differ only in the way
1258 they choose the catch tag to throw to. A catch tag for a
1259 condition-case form has a TAG of Qnil.
db9f0278 1260
ba410f40
JB
1261 Before each catch is discarded, unbind all special bindings and
1262 execute all unwind-protect clauses made above that catch. Unwind
1263 the handler stack as we go, so that the proper handlers are in
1264 effect for each unwind-protect clause we run. At the end, restore
1265 some static info saved in CATCH, and longjmp to the location
1266 specified in the
1267
1268 This is used for correct unwinding in Fthrow and Fsignal. */
db9f0278
JB
1269
1270static void
d3da34e0 1271unwind_to_catch (struct catchtag *catch, Lisp_Object value)
db9f0278
JB
1272{
1273 register int last_time;
1274
ba410f40
JB
1275 /* Save the value in the tag. */
1276 catch->val = value;
1277
0b31741c 1278 /* Restore certain special C variables. */
1cdc3155 1279 set_poll_suppress_count (catch->poll_suppress_count);
c1788fbc 1280 UNBLOCK_INPUT_TO (catch->interrupt_input_blocked);
0b31741c 1281 handling_signal = 0;
69bbd6bd 1282 immediate_quit = 0;
82da7701 1283
db9f0278
JB
1284 do
1285 {
1286 last_time = catchlist == catch;
82da7701
JB
1287
1288 /* Unwind the specpdl stack, and then restore the proper set of
bb8e180f 1289 handlers. */
db9f0278
JB
1290 unbind_to (catchlist->pdlcount, Qnil);
1291 handlerlist = catchlist->handlerlist;
1292 catchlist = catchlist->next;
1293 }
1294 while (! last_time);
1295
a2a103bb 1296#if HAVE_X_WINDOWS
88019a63
RS
1297 /* If x_catch_errors was done, turn it off now.
1298 (First we give unbind_to a chance to do that.) */
e6aee454 1299#if 0 /* This would disable x_catch_errors after x_connection_closed.
bb8e180f
AS
1300 The catch must remain in effect during that delicate
1301 state. --lorentey */
88019a63 1302 x_fully_uncatch_errors ();
e6aee454 1303#endif
a2a103bb 1304#endif
88019a63 1305
bcf28080 1306 byte_stack_list = catch->byte_stack;
db9f0278 1307 gcprolist = catch->gcpro;
15934ffa 1308#ifdef DEBUG_GCPRO
d8e2b5ba 1309 gcpro_level = gcprolist ? gcprolist->level + 1 : 0;
15934ffa 1310#endif
db9f0278
JB
1311 backtrace_list = catch->backlist;
1312 lisp_eval_depth = catch->lisp_eval_depth;
177c0ea7 1313
ba410f40 1314 _longjmp (catch->jmp, 1);
db9f0278
JB
1315}
1316
a7ca3326 1317DEFUN ("throw", Fthrow, Sthrow, 2, 2, 0,
9dbc9081
PJ
1318 doc: /* Throw to the catch for TAG and return VALUE from it.
1319Both TAG and VALUE are evalled. */)
5842a27b 1320 (register Lisp_Object tag, Lisp_Object value)
db9f0278
JB
1321{
1322 register struct catchtag *c;
1323
8788120f
KS
1324 if (!NILP (tag))
1325 for (c = catchlist; c; c = c->next)
1326 {
1327 if (EQ (c->tag, tag))
1328 unwind_to_catch (c, value);
1329 }
734d55a2 1330 xsignal2 (Qno_catch, tag, value);
db9f0278
JB
1331}
1332
1333
1334DEFUN ("unwind-protect", Funwind_protect, Sunwind_protect, 1, UNEVALLED, 0,
9dbc9081
PJ
1335 doc: /* Do BODYFORM, protecting with UNWINDFORMS.
1336If BODYFORM completes normally, its value is returned
1337after executing the UNWINDFORMS.
1338If BODYFORM exits nonlocally, the UNWINDFORMS are executed anyway.
7a25dc6d 1339usage: (unwind-protect BODYFORM UNWINDFORMS...) */)
5842a27b 1340 (Lisp_Object args)
db9f0278
JB
1341{
1342 Lisp_Object val;
aed13378 1343 int count = SPECPDL_INDEX ();
db9f0278 1344
04b28167 1345 record_unwind_protect (Fprogn, Fcdr (args));
defb1411 1346 val = eval_sub (Fcar (args));
177c0ea7 1347 return unbind_to (count, val);
db9f0278
JB
1348}
1349\f
db9f0278 1350DEFUN ("condition-case", Fcondition_case, Scondition_case, 2, UNEVALLED, 0,
9dbc9081 1351 doc: /* Regain control when an error is signaled.
1b1acc13 1352Executes BODYFORM and returns its value if no error happens.
9dbc9081
PJ
1353Each element of HANDLERS looks like (CONDITION-NAME BODY...)
1354where the BODY is made of Lisp expressions.
1355
1356A handler is applicable to an error
1357if CONDITION-NAME is one of the error's condition names.
1358If an error happens, the first applicable handler is run.
1359
1360The car of a handler may be a list of condition names
c997bb25 1361instead of a single condition name. Then it handles all of them.
9dbc9081 1362
c997bb25
RS
1363When a handler handles an error, control returns to the `condition-case'
1364and it executes the handler's BODY...
d0acbbaf 1365with VAR bound to (ERROR-SYMBOL . SIGNAL-DATA) from the error.
bb8e180f 1366\(If VAR is nil, the handler can't access that information.)
c997bb25
RS
1367Then the value of the last BODY form is returned from the `condition-case'
1368expression.
9dbc9081 1369
9dbc9081 1370See also the function `signal' for more info.
2b47b74d 1371usage: (condition-case VAR BODYFORM &rest HANDLERS) */)
bb8e180f 1372 (Lisp_Object args)
db9f0278 1373{
17401c97
GM
1374 register Lisp_Object bodyform, handlers;
1375 volatile Lisp_Object var;
db9f0278 1376
82da7701
JB
1377 var = Fcar (args);
1378 bodyform = Fcar (Fcdr (args));
1379 handlers = Fcdr (Fcdr (args));
ee830945
RS
1380
1381 return internal_lisp_condition_case (var, bodyform, handlers);
1382}
1383
1384/* Like Fcondition_case, but the args are separate
1385 rather than passed in a list. Used by Fbyte_code. */
1386
1387Lisp_Object
d3da34e0
JB
1388internal_lisp_condition_case (volatile Lisp_Object var, Lisp_Object bodyform,
1389 Lisp_Object handlers)
ee830945
RS
1390{
1391 Lisp_Object val;
1392 struct catchtag c;
1393 struct handler h;
1394
b7826503 1395 CHECK_SYMBOL (var);
82da7701 1396
2b47b74d 1397 for (val = handlers; CONSP (val); val = XCDR (val))
82da7701
JB
1398 {
1399 Lisp_Object tem;
2b47b74d 1400 tem = XCAR (val);
5f96776a
RS
1401 if (! (NILP (tem)
1402 || (CONSP (tem)
03699b14
KR
1403 && (SYMBOLP (XCAR (tem))
1404 || CONSP (XCAR (tem))))))
e6c3da20
EZ
1405 error ("Invalid condition handler: %s",
1406 SDATA (Fprin1_to_string (tem, Qt)));
82da7701 1407 }
db9f0278
JB
1408
1409 c.tag = Qnil;
1410 c.val = Qnil;
1411 c.backlist = backtrace_list;
1412 c.handlerlist = handlerlist;
1413 c.lisp_eval_depth = lisp_eval_depth;
aed13378 1414 c.pdlcount = SPECPDL_INDEX ();
db9f0278 1415 c.poll_suppress_count = poll_suppress_count;
2659a09f 1416 c.interrupt_input_blocked = interrupt_input_blocked;
db9f0278 1417 c.gcpro = gcprolist;
bcf28080 1418 c.byte_stack = byte_stack_list;
db9f0278
JB
1419 if (_setjmp (c.jmp))
1420 {
265a9e55 1421 if (!NILP (h.var))
bb8e180f 1422 specbind (h.var, c.val);
9d58218c 1423 val = Fprogn (Fcdr (h.chosen_clause));
82da7701
JB
1424
1425 /* Note that this just undoes the binding of h.var; whoever
1426 longjumped to us unwound the stack to c.pdlcount before
1427 throwing. */
db9f0278
JB
1428 unbind_to (c.pdlcount, Qnil);
1429 return val;
1430 }
1431 c.next = catchlist;
1432 catchlist = &c;
177c0ea7 1433
82da7701
JB
1434 h.var = var;
1435 h.handler = handlers;
db9f0278 1436 h.next = handlerlist;
db9f0278
JB
1437 h.tag = &c;
1438 handlerlist = &h;
1439
defb1411 1440 val = eval_sub (bodyform);
db9f0278
JB
1441 catchlist = c.next;
1442 handlerlist = h.next;
1443 return val;
1444}
1445
f029ca5f
RS
1446/* Call the function BFUN with no arguments, catching errors within it
1447 according to HANDLERS. If there is an error, call HFUN with
1448 one argument which is the data that describes the error:
1449 (SIGNALNAME . DATA)
1450
1451 HANDLERS can be a list of conditions to catch.
1452 If HANDLERS is Qt, catch all errors.
1453 If HANDLERS is Qerror, catch all errors
1454 but allow the debugger to run if that is enabled. */
1455
db9f0278 1456Lisp_Object
d3da34e0
JB
1457internal_condition_case (Lisp_Object (*bfun) (void), Lisp_Object handlers,
1458 Lisp_Object (*hfun) (Lisp_Object))
db9f0278
JB
1459{
1460 Lisp_Object val;
1461 struct catchtag c;
1462 struct handler h;
1463
88019a63
RS
1464 /* Since Fsignal will close off all calls to x_catch_errors,
1465 we will get the wrong results if some are not closed now. */
a2a103bb 1466#if HAVE_X_WINDOWS
88019a63 1467 if (x_catching_errors ())
01591d17 1468 abort ();
a2a103bb 1469#endif
01591d17 1470
db9f0278
JB
1471 c.tag = Qnil;
1472 c.val = Qnil;
1473 c.backlist = backtrace_list;
1474 c.handlerlist = handlerlist;
1475 c.lisp_eval_depth = lisp_eval_depth;
aed13378 1476 c.pdlcount = SPECPDL_INDEX ();
db9f0278 1477 c.poll_suppress_count = poll_suppress_count;
2659a09f 1478 c.interrupt_input_blocked = interrupt_input_blocked;
db9f0278 1479 c.gcpro = gcprolist;
bcf28080 1480 c.byte_stack = byte_stack_list;
db9f0278
JB
1481 if (_setjmp (c.jmp))
1482 {
9d58218c 1483 return (*hfun) (c.val);
db9f0278
JB
1484 }
1485 c.next = catchlist;
1486 catchlist = &c;
1487 h.handler = handlers;
1488 h.var = Qnil;
db9f0278
JB
1489 h.next = handlerlist;
1490 h.tag = &c;
1491 handlerlist = &h;
1492
1493 val = (*bfun) ();
1494 catchlist = c.next;
1495 handlerlist = h.next;
1496 return val;
1497}
1498
2659a09f 1499/* Like internal_condition_case but call BFUN with ARG as its argument. */
f029ca5f 1500
d227775c 1501Lisp_Object
d3da34e0
JB
1502internal_condition_case_1 (Lisp_Object (*bfun) (Lisp_Object), Lisp_Object arg,
1503 Lisp_Object handlers, Lisp_Object (*hfun) (Lisp_Object))
d227775c
RS
1504{
1505 Lisp_Object val;
1506 struct catchtag c;
1507 struct handler h;
1508
88019a63
RS
1509 /* Since Fsignal will close off all calls to x_catch_errors,
1510 we will get the wrong results if some are not closed now. */
a2a103bb 1511#if HAVE_X_WINDOWS
88019a63
RS
1512 if (x_catching_errors ())
1513 abort ();
a2a103bb 1514#endif
88019a63 1515
d227775c
RS
1516 c.tag = Qnil;
1517 c.val = Qnil;
1518 c.backlist = backtrace_list;
1519 c.handlerlist = handlerlist;
1520 c.lisp_eval_depth = lisp_eval_depth;
aed13378 1521 c.pdlcount = SPECPDL_INDEX ();
d227775c 1522 c.poll_suppress_count = poll_suppress_count;
2659a09f 1523 c.interrupt_input_blocked = interrupt_input_blocked;
d227775c 1524 c.gcpro = gcprolist;
bcf28080 1525 c.byte_stack = byte_stack_list;
d227775c
RS
1526 if (_setjmp (c.jmp))
1527 {
9d58218c 1528 return (*hfun) (c.val);
d227775c
RS
1529 }
1530 c.next = catchlist;
1531 catchlist = &c;
1532 h.handler = handlers;
1533 h.var = Qnil;
1534 h.next = handlerlist;
1535 h.tag = &c;
1536 handlerlist = &h;
1537
1538 val = (*bfun) (arg);
1539 catchlist = c.next;
1540 handlerlist = h.next;
1541 return val;
1542}
10b29d41 1543
53967e09
CY
1544/* Like internal_condition_case_1 but call BFUN with ARG1 and ARG2 as
1545 its arguments. */
1546
1547Lisp_Object
178f2507
SM
1548internal_condition_case_2 (Lisp_Object (*bfun) (Lisp_Object, Lisp_Object),
1549 Lisp_Object arg1,
1550 Lisp_Object arg2,
1551 Lisp_Object handlers,
1552 Lisp_Object (*hfun) (Lisp_Object))
53967e09
CY
1553{
1554 Lisp_Object val;
1555 struct catchtag c;
1556 struct handler h;
1557
1558 /* Since Fsignal will close off all calls to x_catch_errors,
1559 we will get the wrong results if some are not closed now. */
1560#if HAVE_X_WINDOWS
1561 if (x_catching_errors ())
1562 abort ();
1563#endif
1564
1565 c.tag = Qnil;
1566 c.val = Qnil;
1567 c.backlist = backtrace_list;
1568 c.handlerlist = handlerlist;
1569 c.lisp_eval_depth = lisp_eval_depth;
1570 c.pdlcount = SPECPDL_INDEX ();
1571 c.poll_suppress_count = poll_suppress_count;
1572 c.interrupt_input_blocked = interrupt_input_blocked;
1573 c.gcpro = gcprolist;
1574 c.byte_stack = byte_stack_list;
1575 if (_setjmp (c.jmp))
1576 {
1577 return (*hfun) (c.val);
1578 }
1579 c.next = catchlist;
1580 catchlist = &c;
1581 h.handler = handlers;
1582 h.var = Qnil;
1583 h.next = handlerlist;
1584 h.tag = &c;
1585 handlerlist = &h;
1586
1587 val = (*bfun) (arg1, arg2);
1588 catchlist = c.next;
1589 handlerlist = h.next;
1590 return val;
1591}
10b29d41 1592
2659a09f 1593/* Like internal_condition_case but call BFUN with NARGS as first,
10b29d41
GM
1594 and ARGS as second argument. */
1595
1596Lisp_Object
f66c7cf8
PE
1597internal_condition_case_n (Lisp_Object (*bfun) (ptrdiff_t, Lisp_Object *),
1598 ptrdiff_t nargs,
178f2507
SM
1599 Lisp_Object *args,
1600 Lisp_Object handlers,
1601 Lisp_Object (*hfun) (Lisp_Object))
10b29d41
GM
1602{
1603 Lisp_Object val;
1604 struct catchtag c;
1605 struct handler h;
1606
88019a63
RS
1607 /* Since Fsignal will close off all calls to x_catch_errors,
1608 we will get the wrong results if some are not closed now. */
a2a103bb 1609#if HAVE_X_WINDOWS
88019a63
RS
1610 if (x_catching_errors ())
1611 abort ();
a2a103bb 1612#endif
88019a63 1613
10b29d41
GM
1614 c.tag = Qnil;
1615 c.val = Qnil;
1616 c.backlist = backtrace_list;
1617 c.handlerlist = handlerlist;
1618 c.lisp_eval_depth = lisp_eval_depth;
aed13378 1619 c.pdlcount = SPECPDL_INDEX ();
10b29d41 1620 c.poll_suppress_count = poll_suppress_count;
2659a09f 1621 c.interrupt_input_blocked = interrupt_input_blocked;
10b29d41
GM
1622 c.gcpro = gcprolist;
1623 c.byte_stack = byte_stack_list;
1624 if (_setjmp (c.jmp))
1625 {
1626 return (*hfun) (c.val);
1627 }
1628 c.next = catchlist;
1629 catchlist = &c;
1630 h.handler = handlers;
1631 h.var = Qnil;
1632 h.next = handlerlist;
1633 h.tag = &c;
1634 handlerlist = &h;
1635
1636 val = (*bfun) (nargs, args);
1637 catchlist = c.next;
1638 handlerlist = h.next;
1639 return val;
1640}
1641
d227775c 1642\f
f57e2426 1643static Lisp_Object find_handler_clause (Lisp_Object, Lisp_Object,
bb8e180f 1644 Lisp_Object, Lisp_Object);
e7f7fbaa
SM
1645static int maybe_call_debugger (Lisp_Object conditions, Lisp_Object sig,
1646 Lisp_Object data);
db9f0278 1647
a7ca3326 1648DEFUN ("signal", Fsignal, Ssignal, 2, 2, 0,
9dbc9081
PJ
1649 doc: /* Signal an error. Args are ERROR-SYMBOL and associated DATA.
1650This function does not return.
1651
1652An error symbol is a symbol with an `error-conditions' property
1653that is a list of condition names.
1654A handler for any of those names will get to handle this signal.
1655The symbol `error' should normally be one of them.
1656
1657DATA should be a list. Its elements are printed as part of the error message.
3297ec22
LT
1658See Info anchor `(elisp)Definition of signal' for some details on how this
1659error message is constructed.
9dbc9081
PJ
1660If the signal is handled, DATA is made available to the handler.
1661See also the function `condition-case'. */)
5842a27b 1662 (Lisp_Object error_symbol, Lisp_Object data)
db9f0278 1663{
bfa8ca43 1664 /* When memory is full, ERROR-SYMBOL is nil,
26631f2b
RS
1665 and DATA is (REAL-ERROR-SYMBOL . REAL-DATA).
1666 That is a special case--don't do this in other situations. */
db9f0278 1667 Lisp_Object conditions;
c11d3d17 1668 Lisp_Object string;
e7f7fbaa
SM
1669 Lisp_Object real_error_symbol
1670 = (NILP (error_symbol) ? Fcar (data) : error_symbol);
1671 register Lisp_Object clause = Qnil;
1672 struct handler *h;
a2ff3819 1673 struct backtrace *bp;
db9f0278 1674
346598f1 1675 immediate_quit = handling_signal = 0;
d063129f 1676 abort_on_gc = 0;
db9f0278
JB
1677 if (gc_in_progress || waiting_for_input)
1678 abort ();
1679
26631f2b
RS
1680#if 0 /* rms: I don't know why this was here,
1681 but it is surely wrong for an error that is handled. */
d148e14d 1682#ifdef HAVE_WINDOW_SYSTEM
df6c90d8
GM
1683 if (display_hourglass_p)
1684 cancel_hourglass ();
48f8dfa3 1685#endif
177c0ea7 1686#endif
48f8dfa3 1687
61ede770 1688 /* This hook is used by edebug. */
26631f2b
RS
1689 if (! NILP (Vsignal_hook_function)
1690 && ! NILP (error_symbol))
9f5903bb
RS
1691 {
1692 /* Edebug takes care of restoring these variables when it exits. */
1693 if (lisp_eval_depth + 20 > max_lisp_eval_depth)
1694 max_lisp_eval_depth = lisp_eval_depth + 20;
1695
1696 if (SPECPDL_INDEX () + 40 > max_specpdl_size)
1697 max_specpdl_size = SPECPDL_INDEX () + 40;
1698
1699 call2 (Vsignal_hook_function, error_symbol, data);
1700 }
61ede770 1701
1ea9dec4 1702 conditions = Fget (real_error_symbol, Qerror_conditions);
db9f0278 1703
a2ff3819
GM
1704 /* Remember from where signal was called. Skip over the frame for
1705 `signal' itself. If a frame for `error' follows, skip that,
26631f2b
RS
1706 too. Don't do this when ERROR_SYMBOL is nil, because that
1707 is a memory-full error. */
090a072f 1708 Vsignaling_function = Qnil;
26631f2b 1709 if (backtrace_list && !NILP (error_symbol))
090a072f
GM
1710 {
1711 bp = backtrace_list->next;
1712 if (bp && bp->function && EQ (*bp->function, Qerror))
1713 bp = bp->next;
1714 if (bp && bp->function)
1715 Vsignaling_function = *bp->function;
1716 }
a2ff3819 1717
e7f7fbaa 1718 for (h = handlerlist; h; h = h->next)
db9f0278 1719 {
e7f7fbaa 1720 clause = find_handler_clause (h->handler, conditions,
f01cbfdd 1721 error_symbol, data);
265a9e55 1722 if (!NILP (clause))
e7f7fbaa 1723 break;
db9f0278 1724 }
475545b5 1725
e7f7fbaa
SM
1726 if (/* Don't run the debugger for a memory-full error.
1727 (There is no room in memory to do that!) */
1728 !NILP (error_symbol)
1729 && (!NILP (Vdebug_on_signal)
1730 /* If no handler is present now, try to run the debugger. */
1731 || NILP (clause)
1732 /* Special handler that means "print a message and run debugger
1733 if requested". */
1734 || EQ (h->handler, Qerror)))
1735 {
1736 int debugger_called
1737 = maybe_call_debugger (conditions, error_symbol, data);
1738 /* We can't return values to code which signaled an error, but we
1739 can continue code which has signaled a quit. */
1740 if (debugger_called && EQ (real_error_symbol, Qquit))
1741 return Qnil;
475545b5 1742 }
db9f0278 1743
e7f7fbaa
SM
1744 if (!NILP (clause))
1745 {
1746 Lisp_Object unwind_data
1747 = (NILP (error_symbol) ? data : Fcons (error_symbol, data));
475545b5 1748
e7f7fbaa
SM
1749 h->chosen_clause = clause;
1750 unwind_to_catch (h->tag, unwind_data);
1751 }
1752 else
1753 {
1754 if (catchlist != 0)
1755 Fthrow (Qtop_level, Qt);
1756 }
c11d3d17 1757
1ea9dec4 1758 if (! NILP (error_symbol))
c11d3d17 1759 data = Fcons (error_symbol, data);
475545b5 1760
c11d3d17 1761 string = Ferror_message_string (data);
583f48b9 1762 fatal ("%s", SDATA (string));
db9f0278
JB
1763}
1764
734d55a2
KS
1765/* Internal version of Fsignal that never returns.
1766 Used for anything but Qquit (which can return from Fsignal). */
1767
1768void
d3da34e0 1769xsignal (Lisp_Object error_symbol, Lisp_Object data)
734d55a2
KS
1770{
1771 Fsignal (error_symbol, data);
1772 abort ();
1773}
1774
1775/* Like xsignal, but takes 0, 1, 2, or 3 args instead of a list. */
1776
1777void
d3da34e0 1778xsignal0 (Lisp_Object error_symbol)
734d55a2
KS
1779{
1780 xsignal (error_symbol, Qnil);
1781}
1782
1783void
d3da34e0 1784xsignal1 (Lisp_Object error_symbol, Lisp_Object arg)
734d55a2
KS
1785{
1786 xsignal (error_symbol, list1 (arg));
1787}
1788
1789void
d3da34e0 1790xsignal2 (Lisp_Object error_symbol, Lisp_Object arg1, Lisp_Object arg2)
734d55a2
KS
1791{
1792 xsignal (error_symbol, list2 (arg1, arg2));
1793}
1794
1795void
d3da34e0 1796xsignal3 (Lisp_Object error_symbol, Lisp_Object arg1, Lisp_Object arg2, Lisp_Object arg3)
734d55a2
KS
1797{
1798 xsignal (error_symbol, list3 (arg1, arg2, arg3));
1799}
1800
1801/* Signal `error' with message S, and additional arg ARG.
1802 If ARG is not a genuine list, make it a one-element list. */
1803
1804void
a8fe7202 1805signal_error (const char *s, Lisp_Object arg)
734d55a2
KS
1806{
1807 Lisp_Object tortoise, hare;
1808
1809 hare = tortoise = arg;
1810 while (CONSP (hare))
1811 {
1812 hare = XCDR (hare);
1813 if (!CONSP (hare))
1814 break;
1815
1816 hare = XCDR (hare);
1817 tortoise = XCDR (tortoise);
1818
1819 if (EQ (hare, tortoise))
1820 break;
1821 }
1822
1823 if (!NILP (hare))
1824 arg = Fcons (arg, Qnil); /* Make it a list. */
1825
1826 xsignal (Qerror, Fcons (build_string (s), arg));
1827}
1828
1829
e0f24100 1830/* Return nonzero if LIST is a non-nil atom or
128c0f66
RM
1831 a list containing one of CONDITIONS. */
1832
1833static int
d3da34e0 1834wants_debugger (Lisp_Object list, Lisp_Object conditions)
128c0f66 1835{
4de86b16 1836 if (NILP (list))
128c0f66
RM
1837 return 0;
1838 if (! CONSP (list))
1839 return 1;
1840
ab67260b 1841 while (CONSP (conditions))
128c0f66 1842 {
ab67260b 1843 Lisp_Object this, tail;
03699b14
KR
1844 this = XCAR (conditions);
1845 for (tail = list; CONSP (tail); tail = XCDR (tail))
1846 if (EQ (XCAR (tail), this))
128c0f66 1847 return 1;
03699b14 1848 conditions = XCDR (conditions);
128c0f66 1849 }
ab67260b 1850 return 0;
128c0f66
RM
1851}
1852
fc950e09
KH
1853/* Return 1 if an error with condition-symbols CONDITIONS,
1854 and described by SIGNAL-DATA, should skip the debugger
1b1acc13 1855 according to debugger-ignored-errors. */
fc950e09
KH
1856
1857static int
d3da34e0 1858skip_debugger (Lisp_Object conditions, Lisp_Object data)
fc950e09
KH
1859{
1860 Lisp_Object tail;
1861 int first_string = 1;
1862 Lisp_Object error_message;
1863
17401c97
GM
1864 error_message = Qnil;
1865 for (tail = Vdebug_ignored_errors; CONSP (tail); tail = XCDR (tail))
fc950e09 1866 {
03699b14 1867 if (STRINGP (XCAR (tail)))
fc950e09
KH
1868 {
1869 if (first_string)
1870 {
1871 error_message = Ferror_message_string (data);
1872 first_string = 0;
1873 }
177c0ea7 1874
03699b14 1875 if (fast_string_match (XCAR (tail), error_message) >= 0)
fc950e09
KH
1876 return 1;
1877 }
1878 else
1879 {
1880 Lisp_Object contail;
1881
17401c97 1882 for (contail = conditions; CONSP (contail); contail = XCDR (contail))
03699b14 1883 if (EQ (XCAR (tail), XCAR (contail)))
fc950e09
KH
1884 return 1;
1885 }
1886 }
1887
1888 return 0;
1889}
1890
ddaa36e1
AS
1891/* Call the debugger if calling it is currently enabled for CONDITIONS.
1892 SIG and DATA describe the signal, as in find_handler_clause. */
1893
1894static int
d3da34e0 1895maybe_call_debugger (Lisp_Object conditions, Lisp_Object sig, Lisp_Object data)
ddaa36e1
AS
1896{
1897 Lisp_Object combined_data;
1898
1899 combined_data = Fcons (sig, data);
1900
1901 if (
1902 /* Don't try to run the debugger with interrupts blocked.
1903 The editing loop would return anyway. */
1904 ! INPUT_BLOCKED_P
1905 /* Does user want to enter debugger for this kind of error? */
1906 && (EQ (sig, Qquit)
1907 ? debug_on_quit
1908 : wants_debugger (Vdebug_on_error, conditions))
1909 && ! skip_debugger (conditions, combined_data)
f6d62986 1910 /* RMS: What's this for? */
ddaa36e1
AS
1911 && when_entered_debugger < num_nonmacro_input_events)
1912 {
1913 call_debugger (Fcons (Qerror, Fcons (combined_data, Qnil)));
1914 return 1;
1915 }
1916
1917 return 0;
1918}
1919
128c0f66 1920/* Value of Qlambda means we have called debugger and user has continued.
1ea9dec4 1921 There are two ways to pass SIG and DATA:
9b942ebd 1922 = SIG is the error symbol, and DATA is the rest of the data.
1ea9dec4 1923 = SIG is nil, and DATA is (SYMBOL . REST-OF-DATA).
9b942ebd 1924 This is for memory-full errors only.
1ea9dec4 1925
9f5903bb
RS
1926 We need to increase max_specpdl_size temporarily around
1927 anything we do that can push on the specpdl, so as not to get
1928 a second error here in case we're handling specpdl overflow. */
db9f0278
JB
1929
1930static Lisp_Object
d3da34e0
JB
1931find_handler_clause (Lisp_Object handlers, Lisp_Object conditions,
1932 Lisp_Object sig, Lisp_Object data)
db9f0278
JB
1933{
1934 register Lisp_Object h;
db9f0278 1935
f01cbfdd
RS
1936 /* t is used by handlers for all conditions, set up by C code. */
1937 if (EQ (handlers, Qt))
db9f0278 1938 return Qt;
f01cbfdd 1939
61ede770
RS
1940 /* error is used similarly, but means print an error message
1941 and run the debugger if that is enabled. */
e7f7fbaa
SM
1942 if (EQ (handlers, Qerror))
1943 return Qt;
f01cbfdd 1944
e7f7fbaa 1945 for (h = handlers; CONSP (h); h = XCDR (h))
db9f0278 1946 {
e7f7fbaa
SM
1947 Lisp_Object handler = XCAR (h);
1948 Lisp_Object condit, tem;
5f96776a 1949
5f96776a 1950 if (!CONSP (handler))
db9f0278 1951 continue;
e7f7fbaa 1952 condit = XCAR (handler);
5f96776a
RS
1953 /* Handle a single condition name in handler HANDLER. */
1954 if (SYMBOLP (condit))
1955 {
1956 tem = Fmemq (Fcar (handler), conditions);
1957 if (!NILP (tem))
1958 return handler;
1959 }
1960 /* Handle a list of condition names in handler HANDLER. */
1961 else if (CONSP (condit))
1962 {
f01cbfdd
RS
1963 Lisp_Object tail;
1964 for (tail = condit; CONSP (tail); tail = XCDR (tail))
5f96776a 1965 {
e7f7fbaa 1966 tem = Fmemq (XCAR (tail), conditions);
5f96776a 1967 if (!NILP (tem))
e7f7fbaa 1968 return handler;
5f96776a
RS
1969 }
1970 }
db9f0278 1971 }
f01cbfdd 1972
db9f0278
JB
1973 return Qnil;
1974}
1975
db9f0278 1976
f6d62986 1977/* Dump an error message; called like vprintf. */
db9f0278 1978void
b3ffc17c 1979verror (const char *m, va_list ap)
db9f0278 1980{
70476b54 1981 char buf[4000];
5fdb398c 1982 size_t size = sizeof buf;
c9d624c6 1983 size_t size_max = STRING_BYTES_BOUND + 1;
e6c3da20 1984 size_t mlen = strlen (m);
9125da08 1985 char *buffer = buf;
e6c3da20 1986 size_t used;
9125da08
RS
1987 Lisp_Object string;
1988
db9f0278 1989 while (1)
9125da08 1990 {
c378da0b
PE
1991 va_list ap_copy;
1992 va_copy (ap_copy, ap);
1993 used = doprnt (buffer, size, m, m + mlen, ap_copy);
1994 va_end (ap_copy);
eb3f1cc8 1995
e6c3da20
EZ
1996 /* Note: the -1 below is because `doprnt' returns the number of bytes
1997 excluding the terminating null byte, and it always terminates with a
1998 null byte, even when producing a truncated message. */
1999 if (used < size - 1)
eb3f1cc8 2000 break;
e6c3da20
EZ
2001 if (size <= size_max / 2)
2002 size *= 2;
825cd63c
EZ
2003 else if (size < size_max)
2004 size = size_max;
e6c3da20
EZ
2005 else
2006 break; /* and leave the message truncated */
eb3f1cc8 2007
825cd63c
EZ
2008 if (buffer != buf)
2009 xfree (buffer);
2010 buffer = (char *) xmalloc (size);
9125da08
RS
2011 }
2012
5fdb398c 2013 string = make_string (buffer, used);
eb3f1cc8 2014 if (buffer != buf)
9ae6734f 2015 xfree (buffer);
9125da08 2016
734d55a2 2017 xsignal1 (Qerror, string);
db9f0278 2018}
b3ffc17c
DN
2019
2020
f6d62986 2021/* Dump an error message; called like printf. */
b3ffc17c
DN
2022
2023/* VARARGS 1 */
2024void
2025error (const char *m, ...)
2026{
2027 va_list ap;
2028 va_start (ap, m);
2029 verror (m, ap);
2030 va_end (ap);
2031}
db9f0278 2032\f
a7ca3326 2033DEFUN ("commandp", Fcommandp, Scommandp, 1, 2, 0,
9dbc9081
PJ
2034 doc: /* Non-nil if FUNCTION makes provisions for interactive calling.
2035This means it contains a description for how to read arguments to give it.
2036The value is nil for an invalid function or a symbol with no function
2037definition.
2038
2039Interactively callable functions include strings and vectors (treated
2040as keyboard macros), lambda-expressions that contain a top-level call
2041to `interactive', autoload definitions made by `autoload' with non-nil
2042fourth argument, and some of the built-in functions of Lisp.
2043
e72706be
RS
2044Also, a symbol satisfies `commandp' if its function definition does so.
2045
2046If the optional argument FOR-CALL-INTERACTIVELY is non-nil,
769b4fb2 2047then strings and vectors are not accepted. */)
5842a27b 2048 (Lisp_Object function, Lisp_Object for_call_interactively)
db9f0278
JB
2049{
2050 register Lisp_Object fun;
2051 register Lisp_Object funcar;
52b71f49 2052 Lisp_Object if_prop = Qnil;
db9f0278
JB
2053
2054 fun = function;
2055
52b71f49
SM
2056 fun = indirect_function (fun); /* Check cycles. */
2057 if (NILP (fun) || EQ (fun, Qunbound))
ffd56f97 2058 return Qnil;
db9f0278 2059
52b71f49
SM
2060 /* Check an `interactive-form' property if present, analogous to the
2061 function-documentation property. */
2062 fun = function;
2063 while (SYMBOLP (fun))
2064 {
2b9aa051 2065 Lisp_Object tmp = Fget (fun, Qinteractive_form);
52b71f49
SM
2066 if (!NILP (tmp))
2067 if_prop = Qt;
2068 fun = Fsymbol_function (fun);
2069 }
2070
db9f0278
JB
2071 /* Emacs primitives are interactive if their DEFUN specifies an
2072 interactive spec. */
90165123 2073 if (SUBRP (fun))
04724b69 2074 return XSUBR (fun)->intspec ? Qt : if_prop;
db9f0278
JB
2075
2076 /* Bytecode objects are interactive if they are long enough to
2077 have an element whose index is COMPILED_INTERACTIVE, which is
2078 where the interactive spec is stored. */
90165123 2079 else if (COMPILEDP (fun))
845975f5 2080 return ((ASIZE (fun) & PSEUDOVECTOR_SIZE_MASK) > COMPILED_INTERACTIVE
52b71f49 2081 ? Qt : if_prop);
db9f0278
JB
2082
2083 /* Strings and vectors are keyboard macros. */
52b71f49 2084 if (STRINGP (fun) || VECTORP (fun))
6e33efc4 2085 return (NILP (for_call_interactively) ? Qt : Qnil);
db9f0278
JB
2086
2087 /* Lists may represent commands. */
2088 if (!CONSP (fun))
2089 return Qnil;
ed16fb98 2090 funcar = XCAR (fun);
b38b1ec0 2091 if (EQ (funcar, Qclosure))
7200d79c
SM
2092 return (!NILP (Fassq (Qinteractive, Fcdr (Fcdr (XCDR (fun)))))
2093 ? Qt : if_prop);
23aba0ea 2094 else if (EQ (funcar, Qlambda))
52b71f49 2095 return !NILP (Fassq (Qinteractive, Fcdr (XCDR (fun)))) ? Qt : if_prop;
b38b1ec0 2096 else if (EQ (funcar, Qautoload))
52b71f49 2097 return !NILP (Fcar (Fcdr (Fcdr (XCDR (fun))))) ? Qt : if_prop;
db9f0278
JB
2098 else
2099 return Qnil;
2100}
2101
db9f0278 2102DEFUN ("autoload", Fautoload, Sautoload, 2, 5, 0,
9dbc9081
PJ
2103 doc: /* Define FUNCTION to autoload from FILE.
2104FUNCTION is a symbol; FILE is a file name string to pass to `load'.
2105Third arg DOCSTRING is documentation for the function.
2106Fourth arg INTERACTIVE if non-nil says function can be called interactively.
2107Fifth arg TYPE indicates the type of the object:
2108 nil or omitted says FUNCTION is a function,
2109 `keymap' says FUNCTION is really a keymap, and
2110 `macro' or t says FUNCTION is really a macro.
2111Third through fifth args give info about the real definition.
2112They default to nil.
2113If FUNCTION is already defined other than as an autoload,
2114this does nothing and returns nil. */)
5842a27b 2115 (Lisp_Object function, Lisp_Object file, Lisp_Object docstring, Lisp_Object interactive, Lisp_Object type)
db9f0278 2116{
b7826503
PJ
2117 CHECK_SYMBOL (function);
2118 CHECK_STRING (file);
db9f0278 2119
f6d62986 2120 /* If function is defined and not as an autoload, don't override. */
db9f0278 2121 if (!EQ (XSYMBOL (function)->function, Qunbound)
90165123 2122 && !(CONSP (XSYMBOL (function)->function)
03699b14 2123 && EQ (XCAR (XSYMBOL (function)->function), Qautoload)))
db9f0278
JB
2124 return Qnil;
2125
7973e637
SM
2126 if (NILP (Vpurify_flag))
2127 /* Only add entries after dumping, because the ones before are
2128 not useful and else we get loads of them from the loaddefs.el. */
2129 LOADHIST_ATTACH (Fcons (Qautoload, function));
905a9ed3 2130 else
a56eaaef 2131 /* We don't want the docstring in purespace (instead,
d6d23852
SM
2132 Snarf-documentation should (hopefully) overwrite it).
2133 We used to use 0 here, but that leads to accidental sharing in
2134 purecopy's hash-consing, so we use a (hopefully) unique integer
2135 instead. */
51639eac 2136 docstring = make_number (XPNTR (function));
a56eaaef
DN
2137 return Ffset (function,
2138 Fpurecopy (list5 (Qautoload, file, docstring,
2139 interactive, type)));
db9f0278
JB
2140}
2141
2142Lisp_Object
d3da34e0 2143un_autoload (Lisp_Object oldqueue)
db9f0278
JB
2144{
2145 register Lisp_Object queue, first, second;
2146
2147 /* Queue to unwind is current value of Vautoload_queue.
2148 oldqueue is the shadowed value to leave in Vautoload_queue. */
2149 queue = Vautoload_queue;
2150 Vautoload_queue = oldqueue;
2151 while (CONSP (queue))
2152 {
e509f168 2153 first = XCAR (queue);
db9f0278
JB
2154 second = Fcdr (first);
2155 first = Fcar (first);
47b82df9
RS
2156 if (EQ (first, make_number (0)))
2157 Vfeatures = second;
db9f0278
JB
2158 else
2159 Ffset (first, second);
e509f168 2160 queue = XCDR (queue);
db9f0278
JB
2161 }
2162 return Qnil;
2163}
2164
ca20916b
RS
2165/* Load an autoloaded function.
2166 FUNNAME is the symbol which is the function's name.
2167 FUNDEF is the autoload definition (a list). */
2168
045ba794 2169void
d3da34e0 2170do_autoload (Lisp_Object fundef, Lisp_Object funname)
db9f0278 2171{
aed13378 2172 int count = SPECPDL_INDEX ();
d945992e 2173 Lisp_Object fun;
ca20916b 2174 struct gcpro gcpro1, gcpro2, gcpro3;
db9f0278 2175
aea6173f
RS
2176 /* This is to make sure that loadup.el gives a clear picture
2177 of what files are preloaded and when. */
ab4db096
RS
2178 if (! NILP (Vpurify_flag))
2179 error ("Attempt to autoload %s while preparing to dump",
d5db4077 2180 SDATA (SYMBOL_NAME (funname)));
ab4db096 2181
db9f0278 2182 fun = funname;
b7826503 2183 CHECK_SYMBOL (funname);
ca20916b 2184 GCPRO3 (fun, funname, fundef);
db9f0278 2185
f87740dc 2186 /* Preserve the match data. */
89f2614d 2187 record_unwind_save_match_data ();
177c0ea7 2188
a04ee161
RS
2189 /* If autoloading gets an error (which includes the error of failing
2190 to define the function being called), we use Vautoload_queue
2191 to undo function definitions and `provide' calls made by
2192 the function. We do this in the specific case of autoloading
2193 because autoloading is not an explicit request "load this file",
2194 but rather a request to "call this function".
d3da34e0 2195
a04ee161 2196 The value saved here is to be restored into Vautoload_queue. */
db9f0278
JB
2197 record_unwind_protect (un_autoload, Vautoload_queue);
2198 Vautoload_queue = Qt;
7351b242 2199 Fload (Fcar (Fcdr (fundef)), Qnil, Qt, Qnil, Qt);
2a49b6e5 2200
db9f0278
JB
2201 /* Once loading finishes, don't undo it. */
2202 Vautoload_queue = Qt;
2203 unbind_to (count, Qnil);
2204
a7f96a35 2205 fun = Findirect_function (fun, Qnil);
ffd56f97 2206
76c2b0cc 2207 if (!NILP (Fequal (fun, fundef)))
db9f0278 2208 error ("Autoloading failed to define function %s",
d5db4077 2209 SDATA (SYMBOL_NAME (funname)));
ca20916b 2210 UNGCPRO;
db9f0278 2211}
4c576a83 2212
db9f0278 2213\f
a7ca3326 2214DEFUN ("eval", Feval, Seval, 1, 2, 0,
a0ee6f27
SM
2215 doc: /* Evaluate FORM and return its value.
2216If LEXICAL is t, evaluate using lexical scoping. */)
2217 (Lisp_Object form, Lisp_Object lexical)
defb1411
SM
2218{
2219 int count = SPECPDL_INDEX ();
a0ee6f27
SM
2220 specbind (Qinternal_interpreter_environment,
2221 NILP (lexical) ? Qnil : Fcons (Qt, Qnil));
defb1411
SM
2222 return unbind_to (count, eval_sub (form));
2223}
2224
2225/* Eval a sub-expression of the current expression (i.e. in the same
2226 lexical scope). */
2227Lisp_Object
2228eval_sub (Lisp_Object form)
db9f0278
JB
2229{
2230 Lisp_Object fun, val, original_fun, original_args;
2231 Lisp_Object funcar;
2232 struct backtrace backtrace;
2233 struct gcpro gcpro1, gcpro2, gcpro3;
2234
df470e3b 2235 if (handling_signal)
48f8dfa3 2236 abort ();
177c0ea7 2237
90165123 2238 if (SYMBOLP (form))
b9598260 2239 {
f07a954e
SM
2240 /* Look up its binding in the lexical environment.
2241 We do not pay attention to the declared_special flag here, since we
2242 already did that when let-binding the variable. */
2243 Lisp_Object lex_binding
2244 = !NILP (Vinternal_interpreter_environment) /* Mere optimization! */
2245 ? Fassq (form, Vinternal_interpreter_environment)
2246 : Qnil;
2247 if (CONSP (lex_binding))
2248 return XCDR (lex_binding);
2249 else
2250 return Fsymbol_value (form);
b9598260
SM
2251 }
2252
db9f0278
JB
2253 if (!CONSP (form))
2254 return form;
2255
2256 QUIT;
ee830945
RS
2257 if ((consing_since_gc > gc_cons_threshold
2258 && consing_since_gc > gc_relative_threshold)
2259 ||
2260 (!NILP (Vmemory_full) && consing_since_gc > memory_full_cons_threshold))
db9f0278
JB
2261 {
2262 GCPRO1 (form);
2263 Fgarbage_collect ();
2264 UNGCPRO;
2265 }
2266
2267 if (++lisp_eval_depth > max_lisp_eval_depth)
2268 {
2269 if (max_lisp_eval_depth < 100)
2270 max_lisp_eval_depth = 100;
2271 if (lisp_eval_depth > max_lisp_eval_depth)
921baa95 2272 error ("Lisp nesting exceeds `max-lisp-eval-depth'");
db9f0278
JB
2273 }
2274
2275 original_fun = Fcar (form);
2276 original_args = Fcdr (form);
2277
2278 backtrace.next = backtrace_list;
2279 backtrace_list = &backtrace;
f6d62986 2280 backtrace.function = &original_fun; /* This also protects them from gc. */
db9f0278
JB
2281 backtrace.args = &original_args;
2282 backtrace.nargs = UNEVALLED;
db9f0278
JB
2283 backtrace.debug_on_exit = 0;
2284
2285 if (debug_on_next_call)
2286 do_debug_on_call (Qt);
2287
2288 /* At this point, only original_fun and original_args
f6d62986 2289 have values that will be used below. */
db9f0278 2290 retry:
8788120f
KS
2291
2292 /* Optimize for no indirection. */
2293 fun = original_fun;
2294 if (SYMBOLP (fun) && !EQ (fun, Qunbound)
2295 && (fun = XSYMBOL (fun)->function, SYMBOLP (fun)))
2296 fun = indirect_function (fun);
db9f0278 2297
90165123 2298 if (SUBRP (fun))
db9f0278
JB
2299 {
2300 Lisp_Object numargs;
166c822d 2301 Lisp_Object argvals[8];
db9f0278
JB
2302 Lisp_Object args_left;
2303 register int i, maxargs;
2304
2305 args_left = original_args;
2306 numargs = Flength (args_left);
2307
c1788fbc
RS
2308 CHECK_CONS_LIST ();
2309
f6d62986
SM
2310 if (XINT (numargs) < XSUBR (fun)->min_args
2311 || (XSUBR (fun)->max_args >= 0
2312 && XSUBR (fun)->max_args < XINT (numargs)))
734d55a2 2313 xsignal2 (Qwrong_number_of_arguments, original_fun, numargs);
db9f0278 2314
ef1b0ba7 2315 else if (XSUBR (fun)->max_args == UNEVALLED)
bbc6b304 2316 val = (XSUBR (fun)->function.aUNEVALLED) (args_left);
ef1b0ba7 2317 else if (XSUBR (fun)->max_args == MANY)
db9f0278 2318 {
f6d62986 2319 /* Pass a vector of evaluated arguments. */
db9f0278 2320 Lisp_Object *vals;
f66c7cf8 2321 ptrdiff_t argnum = 0;
3a7a9129 2322 USE_SAFE_ALLOCA;
db9f0278 2323
b72e0717 2324 SAFE_ALLOCA_LISP (vals, XINT (numargs));
db9f0278
JB
2325
2326 GCPRO3 (args_left, fun, fun);
2327 gcpro3.var = vals;
2328 gcpro3.nvars = 0;
2329
265a9e55 2330 while (!NILP (args_left))
db9f0278 2331 {
defb1411 2332 vals[argnum++] = eval_sub (Fcar (args_left));
db9f0278
JB
2333 args_left = Fcdr (args_left);
2334 gcpro3.nvars = argnum;
2335 }
db9f0278
JB
2336
2337 backtrace.args = vals;
2338 backtrace.nargs = XINT (numargs);
2339
d5273788 2340 val = (XSUBR (fun)->function.aMANY) (XINT (numargs), vals);
a6e3fa71 2341 UNGCPRO;
3a7a9129 2342 SAFE_FREE ();
db9f0278 2343 }
ef1b0ba7 2344 else
db9f0278 2345 {
ef1b0ba7
SM
2346 GCPRO3 (args_left, fun, fun);
2347 gcpro3.var = argvals;
2348 gcpro3.nvars = 0;
db9f0278 2349
ef1b0ba7
SM
2350 maxargs = XSUBR (fun)->max_args;
2351 for (i = 0; i < maxargs; args_left = Fcdr (args_left))
2352 {
a0ee6f27 2353 argvals[i] = eval_sub (Fcar (args_left));
ef1b0ba7
SM
2354 gcpro3.nvars = ++i;
2355 }
db9f0278 2356
ef1b0ba7 2357 UNGCPRO;
db9f0278 2358
ef1b0ba7
SM
2359 backtrace.args = argvals;
2360 backtrace.nargs = XINT (numargs);
2361
2362 switch (i)
2363 {
2364 case 0:
2365 val = (XSUBR (fun)->function.a0 ());
2366 break;
2367 case 1:
2368 val = (XSUBR (fun)->function.a1 (argvals[0]));
2369 break;
2370 case 2:
2371 val = (XSUBR (fun)->function.a2 (argvals[0], argvals[1]));
2372 break;
2373 case 3:
2374 val = (XSUBR (fun)->function.a3
2375 (argvals[0], argvals[1], argvals[2]));
2376 break;
2377 case 4:
2378 val = (XSUBR (fun)->function.a4
2379 (argvals[0], argvals[1], argvals[2], argvals[3]));
2380 break;
2381 case 5:
2382 val = (XSUBR (fun)->function.a5
2383 (argvals[0], argvals[1], argvals[2], argvals[3],
2384 argvals[4]));
2385 break;
2386 case 6:
2387 val = (XSUBR (fun)->function.a6
2388 (argvals[0], argvals[1], argvals[2], argvals[3],
2389 argvals[4], argvals[5]));
2390 break;
2391 case 7:
2392 val = (XSUBR (fun)->function.a7
2393 (argvals[0], argvals[1], argvals[2], argvals[3],
2394 argvals[4], argvals[5], argvals[6]));
2395 break;
2396
2397 case 8:
2398 val = (XSUBR (fun)->function.a8
2399 (argvals[0], argvals[1], argvals[2], argvals[3],
2400 argvals[4], argvals[5], argvals[6], argvals[7]));
2401 break;
2402
2403 default:
2404 /* Someone has created a subr that takes more arguments than
2405 is supported by this code. We need to either rewrite the
2406 subr to use a different argument protocol, or add more
2407 cases to this switch. */
2408 abort ();
2409 }
db9f0278
JB
2410 }
2411 }
ef1b0ba7 2412 else if (COMPILEDP (fun))
defb1411 2413 val = apply_lambda (fun, original_args);
db9f0278
JB
2414 else
2415 {
8788120f 2416 if (EQ (fun, Qunbound))
734d55a2 2417 xsignal1 (Qvoid_function, original_fun);
db9f0278 2418 if (!CONSP (fun))
734d55a2
KS
2419 xsignal1 (Qinvalid_function, original_fun);
2420 funcar = XCAR (fun);
90165123 2421 if (!SYMBOLP (funcar))
734d55a2 2422 xsignal1 (Qinvalid_function, original_fun);
db9f0278
JB
2423 if (EQ (funcar, Qautoload))
2424 {
2425 do_autoload (fun, original_fun);
2426 goto retry;
2427 }
2428 if (EQ (funcar, Qmacro))
defb1411
SM
2429 val = eval_sub (apply1 (Fcdr (fun), original_args));
2430 else if (EQ (funcar, Qlambda)
2431 || EQ (funcar, Qclosure))
2432 val = apply_lambda (fun, original_args);
db9f0278 2433 else
734d55a2 2434 xsignal1 (Qinvalid_function, original_fun);
db9f0278 2435 }
c1788fbc
RS
2436 CHECK_CONS_LIST ();
2437
db9f0278
JB
2438 lisp_eval_depth--;
2439 if (backtrace.debug_on_exit)
2440 val = call_debugger (Fcons (Qexit, Fcons (val, Qnil)));
2441 backtrace_list = backtrace.next;
824eb35e 2442
db9f0278
JB
2443 return val;
2444}
2445\f
a7ca3326 2446DEFUN ("apply", Fapply, Sapply, 2, MANY, 0,
9dbc9081
PJ
2447 doc: /* Call FUNCTION with our remaining args, using our last arg as list of args.
2448Then return the value FUNCTION returns.
2449Thus, (apply '+ 1 2 '(3 4)) returns 10.
2450usage: (apply FUNCTION &rest ARGUMENTS) */)
f66c7cf8 2451 (ptrdiff_t nargs, Lisp_Object *args)
db9f0278 2452{
f66c7cf8 2453 ptrdiff_t i, numargs;
db9f0278
JB
2454 register Lisp_Object spread_arg;
2455 register Lisp_Object *funcall_args;
3a7a9129 2456 Lisp_Object fun, retval;
96d44c64 2457 struct gcpro gcpro1;
3a7a9129 2458 USE_SAFE_ALLOCA;
db9f0278
JB
2459
2460 fun = args [0];
2461 funcall_args = 0;
2462 spread_arg = args [nargs - 1];
b7826503 2463 CHECK_LIST (spread_arg);
177c0ea7 2464
db9f0278
JB
2465 numargs = XINT (Flength (spread_arg));
2466
2467 if (numargs == 0)
2468 return Ffuncall (nargs - 1, args);
2469 else if (numargs == 1)
2470 {
03699b14 2471 args [nargs - 1] = XCAR (spread_arg);
db9f0278
JB
2472 return Ffuncall (nargs, args);
2473 }
2474
a6e3fa71 2475 numargs += nargs - 2;
db9f0278 2476
8788120f
KS
2477 /* Optimize for no indirection. */
2478 if (SYMBOLP (fun) && !EQ (fun, Qunbound)
2479 && (fun = XSYMBOL (fun)->function, SYMBOLP (fun)))
2480 fun = indirect_function (fun);
ffd56f97 2481 if (EQ (fun, Qunbound))
db9f0278 2482 {
f6d62986 2483 /* Let funcall get the error. */
ffd56f97
JB
2484 fun = args[0];
2485 goto funcall;
db9f0278
JB
2486 }
2487
90165123 2488 if (SUBRP (fun))
db9f0278
JB
2489 {
2490 if (numargs < XSUBR (fun)->min_args
2491 || (XSUBR (fun)->max_args >= 0 && XSUBR (fun)->max_args < numargs))
f6d62986 2492 goto funcall; /* Let funcall get the error. */
c5101a77 2493 else if (XSUBR (fun)->max_args >= 0 && XSUBR (fun)->max_args > numargs)
db9f0278
JB
2494 {
2495 /* Avoid making funcall cons up a yet another new vector of arguments
f6d62986 2496 by explicitly supplying nil's for optional values. */
b72e0717 2497 SAFE_ALLOCA_LISP (funcall_args, 1 + XSUBR (fun)->max_args);
db9f0278
JB
2498 for (i = numargs; i < XSUBR (fun)->max_args;)
2499 funcall_args[++i] = Qnil;
96d44c64
SM
2500 GCPRO1 (*funcall_args);
2501 gcpro1.nvars = 1 + XSUBR (fun)->max_args;
db9f0278
JB
2502 }
2503 }
2504 funcall:
2505 /* We add 1 to numargs because funcall_args includes the
2506 function itself as well as its arguments. */
2507 if (!funcall_args)
a6e3fa71 2508 {
b72e0717 2509 SAFE_ALLOCA_LISP (funcall_args, 1 + numargs);
96d44c64
SM
2510 GCPRO1 (*funcall_args);
2511 gcpro1.nvars = 1 + numargs;
a6e3fa71
JB
2512 }
2513
72af86bd 2514 memcpy (funcall_args, args, nargs * sizeof (Lisp_Object));
db9f0278
JB
2515 /* Spread the last arg we got. Its first element goes in
2516 the slot that it used to occupy, hence this value of I. */
2517 i = nargs - 1;
265a9e55 2518 while (!NILP (spread_arg))
db9f0278 2519 {
03699b14
KR
2520 funcall_args [i++] = XCAR (spread_arg);
2521 spread_arg = XCDR (spread_arg);
db9f0278 2522 }
a6e3fa71 2523
96d44c64 2524 /* By convention, the caller needs to gcpro Ffuncall's args. */
3a7a9129
CY
2525 retval = Ffuncall (gcpro1.nvars, funcall_args);
2526 UNGCPRO;
2527 SAFE_FREE ();
2528
2529 return retval;
db9f0278
JB
2530}
2531\f
ff936e53
SM
2532/* Run hook variables in various ways. */
2533
f6d62986 2534static Lisp_Object
f66c7cf8 2535funcall_nil (ptrdiff_t nargs, Lisp_Object *args)
f6d62986
SM
2536{
2537 Ffuncall (nargs, args);
2538 return Qnil;
2539}
ff936e53 2540
a7ca3326 2541DEFUN ("run-hooks", Frun_hooks, Srun_hooks, 0, MANY, 0,
9f685258 2542 doc: /* Run each hook in HOOKS.
9dbc9081
PJ
2543Each argument should be a symbol, a hook variable.
2544These symbols are processed in the order specified.
2545If a hook symbol has a non-nil value, that value may be a function
2546or a list of functions to be called to run the hook.
2547If the value is a function, it is called with no arguments.
2548If it is a list, the elements are called, in order, with no arguments.
2549
9f685258
LK
2550Major modes should not use this function directly to run their mode
2551hook; they should use `run-mode-hooks' instead.
2552
72e85d5d
RS
2553Do not use `make-local-variable' to make a hook variable buffer-local.
2554Instead, use `add-hook' and specify t for the LOCAL argument.
9dbc9081 2555usage: (run-hooks &rest HOOKS) */)
f66c7cf8 2556 (ptrdiff_t nargs, Lisp_Object *args)
ff936e53
SM
2557{
2558 Lisp_Object hook[1];
f66c7cf8 2559 ptrdiff_t i;
ff936e53
SM
2560
2561 for (i = 0; i < nargs; i++)
2562 {
2563 hook[0] = args[i];
f6d62986 2564 run_hook_with_args (1, hook, funcall_nil);
ff936e53
SM
2565 }
2566
2567 return Qnil;
2568}
177c0ea7 2569
a7ca3326 2570DEFUN ("run-hook-with-args", Frun_hook_with_args,
9dbc9081
PJ
2571 Srun_hook_with_args, 1, MANY, 0,
2572 doc: /* Run HOOK with the specified arguments ARGS.
2573HOOK should be a symbol, a hook variable. If HOOK has a non-nil
2574value, that value may be a function or a list of functions to be
2575called to run the hook. If the value is a function, it is called with
2576the given arguments and its return value is returned. If it is a list
2577of functions, those functions are called, in order,
2578with the given arguments ARGS.
d5e2c90c 2579It is best not to depend on the value returned by `run-hook-with-args',
9dbc9081
PJ
2580as that may change.
2581
72e85d5d
RS
2582Do not use `make-local-variable' to make a hook variable buffer-local.
2583Instead, use `add-hook' and specify t for the LOCAL argument.
9dbc9081 2584usage: (run-hook-with-args HOOK &rest ARGS) */)
f66c7cf8 2585 (ptrdiff_t nargs, Lisp_Object *args)
ff936e53 2586{
f6d62986 2587 return run_hook_with_args (nargs, args, funcall_nil);
ff936e53
SM
2588}
2589
a0d76c27 2590DEFUN ("run-hook-with-args-until-success", Frun_hook_with_args_until_success,
9dbc9081
PJ
2591 Srun_hook_with_args_until_success, 1, MANY, 0,
2592 doc: /* Run HOOK with the specified arguments ARGS.
d5e2c90c
RS
2593HOOK should be a symbol, a hook variable. If HOOK has a non-nil
2594value, that value may be a function or a list of functions to be
2595called to run the hook. If the value is a function, it is called with
2596the given arguments and its return value is returned.
2597If it is a list of functions, those functions are called, in order,
2598with the given arguments ARGS, until one of them
9dbc9081 2599returns a non-nil value. Then we return that value.
d5e2c90c 2600However, if they all return nil, we return nil.
9dbc9081 2601
72e85d5d
RS
2602Do not use `make-local-variable' to make a hook variable buffer-local.
2603Instead, use `add-hook' and specify t for the LOCAL argument.
9dbc9081 2604usage: (run-hook-with-args-until-success HOOK &rest ARGS) */)
f66c7cf8 2605 (ptrdiff_t nargs, Lisp_Object *args)
b0b667cb 2606{
f6d62986
SM
2607 return run_hook_with_args (nargs, args, Ffuncall);
2608}
2609
2610static Lisp_Object
f66c7cf8 2611funcall_not (ptrdiff_t nargs, Lisp_Object *args)
f6d62986
SM
2612{
2613 return NILP (Ffuncall (nargs, args)) ? Qt : Qnil;
ff936e53
SM
2614}
2615
a7ca3326 2616DEFUN ("run-hook-with-args-until-failure", Frun_hook_with_args_until_failure,
9dbc9081
PJ
2617 Srun_hook_with_args_until_failure, 1, MANY, 0,
2618 doc: /* Run HOOK with the specified arguments ARGS.
d5e2c90c
RS
2619HOOK should be a symbol, a hook variable. If HOOK has a non-nil
2620value, that value may be a function or a list of functions to be
2621called to run the hook. If the value is a function, it is called with
2622the given arguments and its return value is returned.
2623If it is a list of functions, those functions are called, in order,
2624with the given arguments ARGS, until one of them returns nil.
2625Then we return nil. However, if they all return non-nil, we return non-nil.
9dbc9081 2626
72e85d5d
RS
2627Do not use `make-local-variable' to make a hook variable buffer-local.
2628Instead, use `add-hook' and specify t for the LOCAL argument.
9dbc9081 2629usage: (run-hook-with-args-until-failure HOOK &rest ARGS) */)
f66c7cf8 2630 (ptrdiff_t nargs, Lisp_Object *args)
ff936e53 2631{
f6d62986 2632 return NILP (run_hook_with_args (nargs, args, funcall_not)) ? Qt : Qnil;
ff936e53
SM
2633}
2634
f6d62986 2635static Lisp_Object
f66c7cf8 2636run_hook_wrapped_funcall (ptrdiff_t nargs, Lisp_Object *args)
f6d62986
SM
2637{
2638 Lisp_Object tmp = args[0], ret;
2639 args[0] = args[1];
2640 args[1] = tmp;
2641 ret = Ffuncall (nargs, args);
2642 args[1] = args[0];
2643 args[0] = tmp;
2644 return ret;
2645}
2646
2647DEFUN ("run-hook-wrapped", Frun_hook_wrapped, Srun_hook_wrapped, 2, MANY, 0,
2648 doc: /* Run HOOK, passing each function through WRAP-FUNCTION.
2649I.e. instead of calling each function FUN directly with arguments ARGS,
2650it calls WRAP-FUNCTION with arguments FUN and ARGS.
2651As soon as a call to WRAP-FUNCTION returns non-nil, `run-hook-wrapped'
2652aborts and returns that value.
2653usage: (run-hook-wrapped HOOK WRAP-FUNCTION &rest ARGS) */)
f66c7cf8 2654 (ptrdiff_t nargs, Lisp_Object *args)
f6d62986
SM
2655{
2656 return run_hook_with_args (nargs, args, run_hook_wrapped_funcall);
2657}
ff936e53 2658
c933ea05
RS
2659/* ARGS[0] should be a hook symbol.
2660 Call each of the functions in the hook value, passing each of them
2661 as arguments all the rest of ARGS (all NARGS - 1 elements).
f6d62986 2662 FUNCALL specifies how to call each function on the hook.
c933ea05
RS
2663 The caller (or its caller, etc) must gcpro all of ARGS,
2664 except that it isn't necessary to gcpro ARGS[0]. */
2665
f6d62986 2666Lisp_Object
f66c7cf8
PE
2667run_hook_with_args (ptrdiff_t nargs, Lisp_Object *args,
2668 Lisp_Object (*funcall) (ptrdiff_t nargs, Lisp_Object *args))
ff936e53 2669{
f6d62986 2670 Lisp_Object sym, val, ret = Qnil;
fada05d6 2671 struct gcpro gcpro1, gcpro2, gcpro3;
b0b667cb 2672
f029ca5f
RS
2673 /* If we are dying or still initializing,
2674 don't do anything--it would probably crash if we tried. */
2675 if (NILP (Vrun_hooks))
caff32a7 2676 return Qnil;
f029ca5f 2677
b0b667cb 2678 sym = args[0];
aa681b51 2679 val = find_symbol_value (sym);
ff936e53 2680
b0b667cb 2681 if (EQ (val, Qunbound) || NILP (val))
ff936e53 2682 return ret;
03699b14 2683 else if (!CONSP (val) || EQ (XCAR (val), Qlambda))
b0b667cb
KH
2684 {
2685 args[0] = val;
f6d62986 2686 return funcall (nargs, args);
b0b667cb
KH
2687 }
2688 else
2689 {
1faed8ae
PE
2690 Lisp_Object global_vals = Qnil;
2691 GCPRO3 (sym, val, global_vals);
cb9d21f8 2692
ff936e53 2693 for (;
f6d62986 2694 CONSP (val) && NILP (ret);
03699b14 2695 val = XCDR (val))
b0b667cb 2696 {
03699b14 2697 if (EQ (XCAR (val), Qt))
b0b667cb
KH
2698 {
2699 /* t indicates this hook has a local binding;
2700 it means to run the global binding too. */
1faed8ae
PE
2701 global_vals = Fdefault_value (sym);
2702 if (NILP (global_vals)) continue;
b0b667cb 2703
1faed8ae 2704 if (!CONSP (global_vals) || EQ (XCAR (global_vals), Qlambda))
b0b667cb 2705 {
1faed8ae 2706 args[0] = global_vals;
f6d62986 2707 ret = funcall (nargs, args);
8932b1c2
CY
2708 }
2709 else
2710 {
2711 for (;
f6d62986 2712 CONSP (global_vals) && NILP (ret);
1faed8ae 2713 global_vals = XCDR (global_vals))
8932b1c2 2714 {
1faed8ae 2715 args[0] = XCAR (global_vals);
8932b1c2
CY
2716 /* In a global value, t should not occur. If it does, we
2717 must ignore it to avoid an endless loop. */
2718 if (!EQ (args[0], Qt))
f6d62986 2719 ret = funcall (nargs, args);
8932b1c2 2720 }
b0b667cb
KH
2721 }
2722 }
2723 else
2724 {
03699b14 2725 args[0] = XCAR (val);
f6d62986 2726 ret = funcall (nargs, args);
b0b667cb
KH
2727 }
2728 }
cb9d21f8
RS
2729
2730 UNGCPRO;
ff936e53 2731 return ret;
b0b667cb
KH
2732 }
2733}
c933ea05 2734
7d48558f
RS
2735/* Run the hook HOOK, giving each function the two args ARG1 and ARG2. */
2736
2737void
d3da34e0 2738run_hook_with_args_2 (Lisp_Object hook, Lisp_Object arg1, Lisp_Object arg2)
7d48558f
RS
2739{
2740 Lisp_Object temp[3];
2741 temp[0] = hook;
2742 temp[1] = arg1;
2743 temp[2] = arg2;
2744
2745 Frun_hook_with_args (3, temp);
2746}
ff936e53 2747\f
f6d62986 2748/* Apply fn to arg. */
db9f0278 2749Lisp_Object
d3da34e0 2750apply1 (Lisp_Object fn, Lisp_Object arg)
db9f0278 2751{
a6e3fa71
JB
2752 struct gcpro gcpro1;
2753
2754 GCPRO1 (fn);
265a9e55 2755 if (NILP (arg))
a6e3fa71
JB
2756 RETURN_UNGCPRO (Ffuncall (1, &fn));
2757 gcpro1.nvars = 2;
db9f0278
JB
2758 {
2759 Lisp_Object args[2];
2760 args[0] = fn;
2761 args[1] = arg;
a6e3fa71
JB
2762 gcpro1.var = args;
2763 RETURN_UNGCPRO (Fapply (2, args));
db9f0278 2764 }
db9f0278
JB
2765}
2766
f6d62986 2767/* Call function fn on no arguments. */
db9f0278 2768Lisp_Object
d3da34e0 2769call0 (Lisp_Object fn)
db9f0278 2770{
a6e3fa71
JB
2771 struct gcpro gcpro1;
2772
2773 GCPRO1 (fn);
2774 RETURN_UNGCPRO (Ffuncall (1, &fn));
db9f0278
JB
2775}
2776
f6d62986 2777/* Call function fn with 1 argument arg1. */
db9f0278
JB
2778/* ARGSUSED */
2779Lisp_Object
d3da34e0 2780call1 (Lisp_Object fn, Lisp_Object arg1)
db9f0278 2781{
a6e3fa71 2782 struct gcpro gcpro1;
177c0ea7 2783 Lisp_Object args[2];
a6e3fa71 2784
db9f0278 2785 args[0] = fn;
15285f9f 2786 args[1] = arg1;
a6e3fa71
JB
2787 GCPRO1 (args[0]);
2788 gcpro1.nvars = 2;
2789 RETURN_UNGCPRO (Ffuncall (2, args));
db9f0278
JB
2790}
2791
f6d62986 2792/* Call function fn with 2 arguments arg1, arg2. */
db9f0278
JB
2793/* ARGSUSED */
2794Lisp_Object
d3da34e0 2795call2 (Lisp_Object fn, Lisp_Object arg1, Lisp_Object arg2)
db9f0278 2796{
a6e3fa71 2797 struct gcpro gcpro1;
db9f0278
JB
2798 Lisp_Object args[3];
2799 args[0] = fn;
15285f9f
RS
2800 args[1] = arg1;
2801 args[2] = arg2;
a6e3fa71
JB
2802 GCPRO1 (args[0]);
2803 gcpro1.nvars = 3;
2804 RETURN_UNGCPRO (Ffuncall (3, args));
db9f0278
JB
2805}
2806
f6d62986 2807/* Call function fn with 3 arguments arg1, arg2, arg3. */
db9f0278
JB
2808/* ARGSUSED */
2809Lisp_Object
d3da34e0 2810call3 (Lisp_Object fn, Lisp_Object arg1, Lisp_Object arg2, Lisp_Object arg3)
db9f0278 2811{
a6e3fa71 2812 struct gcpro gcpro1;
db9f0278
JB
2813 Lisp_Object args[4];
2814 args[0] = fn;
15285f9f
RS
2815 args[1] = arg1;
2816 args[2] = arg2;
2817 args[3] = arg3;
a6e3fa71
JB
2818 GCPRO1 (args[0]);
2819 gcpro1.nvars = 4;
2820 RETURN_UNGCPRO (Ffuncall (4, args));
db9f0278
JB
2821}
2822
f6d62986 2823/* Call function fn with 4 arguments arg1, arg2, arg3, arg4. */
a5a44b91
JB
2824/* ARGSUSED */
2825Lisp_Object
d3da34e0
JB
2826call4 (Lisp_Object fn, Lisp_Object arg1, Lisp_Object arg2, Lisp_Object arg3,
2827 Lisp_Object arg4)
a5a44b91
JB
2828{
2829 struct gcpro gcpro1;
a5a44b91
JB
2830 Lisp_Object args[5];
2831 args[0] = fn;
15285f9f
RS
2832 args[1] = arg1;
2833 args[2] = arg2;
2834 args[3] = arg3;
2835 args[4] = arg4;
a5a44b91
JB
2836 GCPRO1 (args[0]);
2837 gcpro1.nvars = 5;
2838 RETURN_UNGCPRO (Ffuncall (5, args));
a5a44b91
JB
2839}
2840
f6d62986 2841/* Call function fn with 5 arguments arg1, arg2, arg3, arg4, arg5. */
15285f9f
RS
2842/* ARGSUSED */
2843Lisp_Object
d3da34e0
JB
2844call5 (Lisp_Object fn, Lisp_Object arg1, Lisp_Object arg2, Lisp_Object arg3,
2845 Lisp_Object arg4, Lisp_Object arg5)
15285f9f
RS
2846{
2847 struct gcpro gcpro1;
15285f9f
RS
2848 Lisp_Object args[6];
2849 args[0] = fn;
2850 args[1] = arg1;
2851 args[2] = arg2;
2852 args[3] = arg3;
2853 args[4] = arg4;
2854 args[5] = arg5;
2855 GCPRO1 (args[0]);
2856 gcpro1.nvars = 6;
2857 RETURN_UNGCPRO (Ffuncall (6, args));
15285f9f
RS
2858}
2859
f6d62986 2860/* Call function fn with 6 arguments arg1, arg2, arg3, arg4, arg5, arg6. */
15285f9f
RS
2861/* ARGSUSED */
2862Lisp_Object
d3da34e0
JB
2863call6 (Lisp_Object fn, Lisp_Object arg1, Lisp_Object arg2, Lisp_Object arg3,
2864 Lisp_Object arg4, Lisp_Object arg5, Lisp_Object arg6)
15285f9f
RS
2865{
2866 struct gcpro gcpro1;
15285f9f
RS
2867 Lisp_Object args[7];
2868 args[0] = fn;
2869 args[1] = arg1;
2870 args[2] = arg2;
2871 args[3] = arg3;
2872 args[4] = arg4;
2873 args[5] = arg5;
2874 args[6] = arg6;
2875 GCPRO1 (args[0]);
2876 gcpro1.nvars = 7;
2877 RETURN_UNGCPRO (Ffuncall (7, args));
15285f9f
RS
2878}
2879
f6d62986 2880/* Call function fn with 7 arguments arg1, arg2, arg3, arg4, arg5, arg6, arg7. */
574c05e2
KK
2881/* ARGSUSED */
2882Lisp_Object
d3da34e0
JB
2883call7 (Lisp_Object fn, Lisp_Object arg1, Lisp_Object arg2, Lisp_Object arg3,
2884 Lisp_Object arg4, Lisp_Object arg5, Lisp_Object arg6, Lisp_Object arg7)
574c05e2
KK
2885{
2886 struct gcpro gcpro1;
574c05e2
KK
2887 Lisp_Object args[8];
2888 args[0] = fn;
2889 args[1] = arg1;
2890 args[2] = arg2;
2891 args[3] = arg3;
2892 args[4] = arg4;
2893 args[5] = arg5;
2894 args[6] = arg6;
2895 args[7] = arg7;
2896 GCPRO1 (args[0]);
2897 gcpro1.nvars = 8;
2898 RETURN_UNGCPRO (Ffuncall (8, args));
574c05e2
KK
2899}
2900
6c2ef893
RS
2901/* The caller should GCPRO all the elements of ARGS. */
2902
a7ca3326 2903DEFUN ("functionp", Ffunctionp, Sfunctionp, 1, 1, 0,
7200d79c 2904 doc: /* Non-nil if OBJECT is a function. */)
c566235d 2905 (Lisp_Object object)
b9598260
SM
2906{
2907 if (SYMBOLP (object) && !NILP (Ffboundp (object)))
2908 {
ba83908c 2909 object = Findirect_function (object, Qt);
b9598260
SM
2910
2911 if (CONSP (object) && EQ (XCAR (object), Qautoload))
2912 {
2913 /* Autoloaded symbols are functions, except if they load
2914 macros or keymaps. */
2915 int i;
2916 for (i = 0; i < 4 && CONSP (object); i++)
2917 object = XCDR (object);
2918
2919 return (CONSP (object) && !NILP (XCAR (object))) ? Qnil : Qt;
2920 }
2921 }
2922
2923 if (SUBRP (object))
3c3ddb98 2924 return (XSUBR (object)->max_args != UNEVALLED) ? Qt : Qnil;
876c194c 2925 else if (COMPILEDP (object))
b9598260
SM
2926 return Qt;
2927 else if (CONSP (object))
2928 {
2929 Lisp_Object car = XCAR (object);
2930 return (EQ (car, Qlambda) || EQ (car, Qclosure)) ? Qt : Qnil;
2931 }
2932 else
2933 return Qnil;
2934}
2935
a7ca3326 2936DEFUN ("funcall", Ffuncall, Sfuncall, 1, MANY, 0,
9dbc9081
PJ
2937 doc: /* Call first argument as a function, passing remaining arguments to it.
2938Return the value that function returns.
2939Thus, (funcall 'cons 'x 'y) returns (x . y).
2940usage: (funcall FUNCTION &rest ARGUMENTS) */)
f66c7cf8 2941 (ptrdiff_t nargs, Lisp_Object *args)
db9f0278 2942{
8788120f 2943 Lisp_Object fun, original_fun;
db9f0278 2944 Lisp_Object funcar;
f66c7cf8 2945 ptrdiff_t numargs = nargs - 1;
db9f0278
JB
2946 Lisp_Object lisp_numargs;
2947 Lisp_Object val;
2948 struct backtrace backtrace;
2949 register Lisp_Object *internal_args;
f66c7cf8 2950 ptrdiff_t i;
db9f0278
JB
2951
2952 QUIT;
ee830945
RS
2953 if ((consing_since_gc > gc_cons_threshold
2954 && consing_since_gc > gc_relative_threshold)
2955 ||
2956 (!NILP (Vmemory_full) && consing_since_gc > memory_full_cons_threshold))
a6e3fa71 2957 Fgarbage_collect ();
db9f0278
JB
2958
2959 if (++lisp_eval_depth > max_lisp_eval_depth)
2960 {
2961 if (max_lisp_eval_depth < 100)
2962 max_lisp_eval_depth = 100;
2963 if (lisp_eval_depth > max_lisp_eval_depth)
921baa95 2964 error ("Lisp nesting exceeds `max-lisp-eval-depth'");
db9f0278
JB
2965 }
2966
2967 backtrace.next = backtrace_list;
2968 backtrace_list = &backtrace;
2969 backtrace.function = &args[0];
2970 backtrace.args = &args[1];
2971 backtrace.nargs = nargs - 1;
db9f0278
JB
2972 backtrace.debug_on_exit = 0;
2973
2974 if (debug_on_next_call)
2975 do_debug_on_call (Qlambda);
2976
fff3ff9c
KS
2977 CHECK_CONS_LIST ();
2978
8788120f
KS
2979 original_fun = args[0];
2980
db9f0278
JB
2981 retry:
2982
8788120f
KS
2983 /* Optimize for no indirection. */
2984 fun = original_fun;
2985 if (SYMBOLP (fun) && !EQ (fun, Qunbound)
2986 && (fun = XSYMBOL (fun)->function, SYMBOLP (fun)))
2987 fun = indirect_function (fun);
db9f0278 2988
90165123 2989 if (SUBRP (fun))
db9f0278 2990 {
ef1b0ba7 2991 if (numargs < XSUBR (fun)->min_args
db9f0278
JB
2992 || (XSUBR (fun)->max_args >= 0 && XSUBR (fun)->max_args < numargs))
2993 {
a631e24c 2994 XSETFASTINT (lisp_numargs, numargs);
734d55a2 2995 xsignal2 (Qwrong_number_of_arguments, original_fun, lisp_numargs);
db9f0278
JB
2996 }
2997
ef1b0ba7 2998 else if (XSUBR (fun)->max_args == UNEVALLED)
734d55a2 2999 xsignal1 (Qinvalid_function, original_fun);
db9f0278 3000
ef1b0ba7
SM
3001 else if (XSUBR (fun)->max_args == MANY)
3002 val = (XSUBR (fun)->function.aMANY) (numargs, args + 1);
db9f0278 3003 else
db9f0278 3004 {
ef1b0ba7
SM
3005 if (XSUBR (fun)->max_args > numargs)
3006 {
3007 internal_args = (Lisp_Object *) alloca (XSUBR (fun)->max_args * sizeof (Lisp_Object));
3008 memcpy (internal_args, args + 1, numargs * sizeof (Lisp_Object));
3009 for (i = numargs; i < XSUBR (fun)->max_args; i++)
3010 internal_args[i] = Qnil;
3011 }
3012 else
3013 internal_args = args + 1;
3014 switch (XSUBR (fun)->max_args)
3015 {
3016 case 0:
3017 val = (XSUBR (fun)->function.a0 ());
3018 break;
3019 case 1:
3020 val = (XSUBR (fun)->function.a1 (internal_args[0]));
3021 break;
3022 case 2:
3023 val = (XSUBR (fun)->function.a2
3024 (internal_args[0], internal_args[1]));
3025 break;
3026 case 3:
3027 val = (XSUBR (fun)->function.a3
3028 (internal_args[0], internal_args[1], internal_args[2]));
3029 break;
3030 case 4:
3031 val = (XSUBR (fun)->function.a4
3032 (internal_args[0], internal_args[1], internal_args[2],
3033 internal_args[3]));
3034 break;
3035 case 5:
3036 val = (XSUBR (fun)->function.a5
3037 (internal_args[0], internal_args[1], internal_args[2],
3038 internal_args[3], internal_args[4]));
3039 break;
3040 case 6:
3041 val = (XSUBR (fun)->function.a6
3042 (internal_args[0], internal_args[1], internal_args[2],
3043 internal_args[3], internal_args[4], internal_args[5]));
3044 break;
3045 case 7:
3046 val = (XSUBR (fun)->function.a7
3047 (internal_args[0], internal_args[1], internal_args[2],
3048 internal_args[3], internal_args[4], internal_args[5],
3049 internal_args[6]));
3050 break;
3051
3052 case 8:
3053 val = (XSUBR (fun)->function.a8
3054 (internal_args[0], internal_args[1], internal_args[2],
3055 internal_args[3], internal_args[4], internal_args[5],
3056 internal_args[6], internal_args[7]));
3057 break;
3058
3059 default:
3060
3061 /* If a subr takes more than 8 arguments without using MANY
3062 or UNEVALLED, we need to extend this function to support it.
3063 Until this is done, there is no way to call the function. */
3064 abort ();
3065 }
db9f0278
JB
3066 }
3067 }
ef1b0ba7 3068 else if (COMPILEDP (fun))
db9f0278
JB
3069 val = funcall_lambda (fun, numargs, args + 1);
3070 else
3071 {
8788120f 3072 if (EQ (fun, Qunbound))
734d55a2 3073 xsignal1 (Qvoid_function, original_fun);
db9f0278 3074 if (!CONSP (fun))
734d55a2
KS
3075 xsignal1 (Qinvalid_function, original_fun);
3076 funcar = XCAR (fun);
90165123 3077 if (!SYMBOLP (funcar))
734d55a2 3078 xsignal1 (Qinvalid_function, original_fun);
defb1411
SM
3079 if (EQ (funcar, Qlambda)
3080 || EQ (funcar, Qclosure))
db9f0278 3081 val = funcall_lambda (fun, numargs, args + 1);
db9f0278
JB
3082 else if (EQ (funcar, Qautoload))
3083 {
8788120f 3084 do_autoload (fun, original_fun);
fff3ff9c 3085 CHECK_CONS_LIST ();
db9f0278
JB
3086 goto retry;
3087 }
3088 else
734d55a2 3089 xsignal1 (Qinvalid_function, original_fun);
db9f0278 3090 }
c1788fbc 3091 CHECK_CONS_LIST ();
db9f0278
JB
3092 lisp_eval_depth--;
3093 if (backtrace.debug_on_exit)
3094 val = call_debugger (Fcons (Qexit, Fcons (val, Qnil)));
3095 backtrace_list = backtrace.next;
3096 return val;
3097}
3098\f
2f7c71a1 3099static Lisp_Object
defb1411 3100apply_lambda (Lisp_Object fun, Lisp_Object args)
db9f0278
JB
3101{
3102 Lisp_Object args_left;
f66c7cf8 3103 ptrdiff_t i, numargs;
db9f0278
JB
3104 register Lisp_Object *arg_vector;
3105 struct gcpro gcpro1, gcpro2, gcpro3;
db9f0278 3106 register Lisp_Object tem;
3a7a9129 3107 USE_SAFE_ALLOCA;
db9f0278 3108
f66c7cf8 3109 numargs = XFASTINT (Flength (args));
c5101a77 3110 SAFE_ALLOCA_LISP (arg_vector, numargs);
db9f0278
JB
3111 args_left = args;
3112
3113 GCPRO3 (*arg_vector, args_left, fun);
3114 gcpro1.nvars = 0;
3115
c5101a77 3116 for (i = 0; i < numargs; )
db9f0278
JB
3117 {
3118 tem = Fcar (args_left), args_left = Fcdr (args_left);
defb1411 3119 tem = eval_sub (tem);
db9f0278
JB
3120 arg_vector[i++] = tem;
3121 gcpro1.nvars = i;
3122 }
3123
3124 UNGCPRO;
3125
f07a954e
SM
3126 backtrace_list->args = arg_vector;
3127 backtrace_list->nargs = i;
c5101a77 3128 tem = funcall_lambda (fun, numargs, arg_vector);
db9f0278
JB
3129
3130 /* Do the debug-on-exit now, while arg_vector still exists. */
3131 if (backtrace_list->debug_on_exit)
3132 tem = call_debugger (Fcons (Qexit, Fcons (tem, Qnil)));
3133 /* Don't do it again when we return to eval. */
3134 backtrace_list->debug_on_exit = 0;
3a7a9129 3135 SAFE_FREE ();
db9f0278
JB
3136 return tem;
3137}
3138
3139/* Apply a Lisp function FUN to the NARGS evaluated arguments in ARG_VECTOR
3140 and return the result of evaluation.
3141 FUN must be either a lambda-expression or a compiled-code object. */
3142
2901f1d1 3143static Lisp_Object
f66c7cf8 3144funcall_lambda (Lisp_Object fun, ptrdiff_t nargs,
c5101a77 3145 register Lisp_Object *arg_vector)
db9f0278 3146{
defb1411 3147 Lisp_Object val, syms_left, next, lexenv;
aed13378 3148 int count = SPECPDL_INDEX ();
f66c7cf8 3149 ptrdiff_t i;
c5101a77 3150 int optional, rest;
db9f0278 3151
90165123 3152 if (CONSP (fun))
9ab90667 3153 {
defb1411
SM
3154 if (EQ (XCAR (fun), Qclosure))
3155 {
3156 fun = XCDR (fun); /* Drop `closure'. */
3157 lexenv = XCAR (fun);
23aba0ea 3158 CHECK_LIST_CONS (fun, fun);
defb1411
SM
3159 }
3160 else
3161 lexenv = Qnil;
9ab90667
GM
3162 syms_left = XCDR (fun);
3163 if (CONSP (syms_left))
3164 syms_left = XCAR (syms_left);
3165 else
734d55a2 3166 xsignal1 (Qinvalid_function, fun);
9ab90667 3167 }
90165123 3168 else if (COMPILEDP (fun))
defb1411 3169 {
798cb644
SM
3170 syms_left = AREF (fun, COMPILED_ARGLIST);
3171 if (INTEGERP (syms_left))
876c194c
SM
3172 /* A byte-code object with a non-nil `push args' slot means we
3173 shouldn't bind any arguments, instead just call the byte-code
3174 interpreter directly; it will push arguments as necessary.
3175
3176 Byte-code objects with either a non-existant, or a nil value for
3177 the `push args' slot (the default), have dynamically-bound
3178 arguments, and use the argument-binding code below instead (as do
3179 all interpreted functions, even lexically bound ones). */
3180 {
3181 /* If we have not actually read the bytecode string
3182 and constants vector yet, fetch them from the file. */
3183 if (CONSP (AREF (fun, COMPILED_BYTECODE)))
3184 Ffetch_bytecode (fun);
3185 return exec_byte_code (AREF (fun, COMPILED_BYTECODE),
3186 AREF (fun, COMPILED_CONSTANTS),
3187 AREF (fun, COMPILED_STACK_DEPTH),
798cb644 3188 syms_left,
876c194c
SM
3189 nargs, arg_vector);
3190 }
defb1411
SM
3191 lexenv = Qnil;
3192 }
9ab90667
GM
3193 else
3194 abort ();
db9f0278 3195
9ab90667
GM
3196 i = optional = rest = 0;
3197 for (; CONSP (syms_left); syms_left = XCDR (syms_left))
db9f0278
JB
3198 {
3199 QUIT;
177c0ea7 3200
9ab90667 3201 next = XCAR (syms_left);
8788120f 3202 if (!SYMBOLP (next))
734d55a2 3203 xsignal1 (Qinvalid_function, fun);
177c0ea7 3204
db9f0278
JB
3205 if (EQ (next, Qand_rest))
3206 rest = 1;
3207 else if (EQ (next, Qand_optional))
3208 optional = 1;
db9f0278 3209 else
db9f0278 3210 {
e610eaca 3211 Lisp_Object arg;
defb1411
SM
3212 if (rest)
3213 {
e610eaca 3214 arg = Flist (nargs - i, &arg_vector[i]);
defb1411
SM
3215 i = nargs;
3216 }
3217 else if (i < nargs)
e610eaca 3218 arg = arg_vector[i++];
b9598260
SM
3219 else if (!optional)
3220 xsignal2 (Qwrong_number_of_arguments, fun, make_number (nargs));
3221 else
e610eaca 3222 arg = Qnil;
7200d79c 3223
b9598260 3224 /* Bind the argument. */
876c194c 3225 if (!NILP (lexenv) && SYMBOLP (next))
b9598260 3226 /* Lexically bind NEXT by adding it to the lexenv alist. */
e610eaca 3227 lexenv = Fcons (Fcons (next, arg), lexenv);
b9598260
SM
3228 else
3229 /* Dynamically bind NEXT. */
e610eaca 3230 specbind (next, arg);
db9f0278 3231 }
db9f0278
JB
3232 }
3233
9ab90667 3234 if (!NILP (syms_left))
734d55a2 3235 xsignal1 (Qinvalid_function, fun);
9ab90667 3236 else if (i < nargs)
734d55a2 3237 xsignal2 (Qwrong_number_of_arguments, fun, make_number (nargs));
db9f0278 3238
b9598260
SM
3239 if (!EQ (lexenv, Vinternal_interpreter_environment))
3240 /* Instantiate a new lexical environment. */
3241 specbind (Qinternal_interpreter_environment, lexenv);
3242
90165123 3243 if (CONSP (fun))
9ab90667 3244 val = Fprogn (XCDR (XCDR (fun)));
db9f0278 3245 else
ca248607
RS
3246 {
3247 /* If we have not actually read the bytecode string
3248 and constants vector yet, fetch them from the file. */
845975f5 3249 if (CONSP (AREF (fun, COMPILED_BYTECODE)))
661c7d6e 3250 Ffetch_bytecode (fun);
b9598260
SM
3251 val = exec_byte_code (AREF (fun, COMPILED_BYTECODE),
3252 AREF (fun, COMPILED_CONSTANTS),
3253 AREF (fun, COMPILED_STACK_DEPTH),
3254 Qnil, 0, 0);
ca248607 3255 }
177c0ea7 3256
db9f0278
JB
3257 return unbind_to (count, val);
3258}
661c7d6e
KH
3259
3260DEFUN ("fetch-bytecode", Ffetch_bytecode, Sfetch_bytecode,
9dbc9081
PJ
3261 1, 1, 0,
3262 doc: /* If byte-compiled OBJECT is lazy-loaded, fetch it now. */)
5842a27b 3263 (Lisp_Object object)
661c7d6e
KH
3264{
3265 Lisp_Object tem;
3266
845975f5 3267 if (COMPILEDP (object) && CONSP (AREF (object, COMPILED_BYTECODE)))
661c7d6e 3268 {
845975f5 3269 tem = read_doc_string (AREF (object, COMPILED_BYTECODE));
5bbdb090 3270 if (!CONSP (tem))
845975f5
SM
3271 {
3272 tem = AREF (object, COMPILED_BYTECODE);
3273 if (CONSP (tem) && STRINGP (XCAR (tem)))
d5db4077 3274 error ("Invalid byte code in %s", SDATA (XCAR (tem)));
845975f5
SM
3275 else
3276 error ("Invalid byte code");
3277 }
3ae565b3
SM
3278 ASET (object, COMPILED_BYTECODE, XCAR (tem));
3279 ASET (object, COMPILED_CONSTANTS, XCDR (tem));
661c7d6e
KH
3280 }
3281 return object;
3282}
db9f0278 3283\f
475545b5 3284static void
d3da34e0 3285grow_specpdl (void)
db9f0278 3286{
aed13378 3287 register int count = SPECPDL_INDEX ();
db9f0278
JB
3288 if (specpdl_size >= max_specpdl_size)
3289 {
3290 if (max_specpdl_size < 400)
3291 max_specpdl_size = 400;
3292 if (specpdl_size >= max_specpdl_size)
734d55a2 3293 signal_error ("Variable binding depth exceeds max-specpdl-size", Qnil);
db9f0278
JB
3294 }
3295 specpdl_size *= 2;
3296 if (specpdl_size > max_specpdl_size)
3297 specpdl_size = max_specpdl_size;
3298 specpdl = (struct specbinding *) xrealloc (specpdl, specpdl_size * sizeof (struct specbinding));
3299 specpdl_ptr = specpdl + count;
3300}
3301
f6d62986 3302/* `specpdl_ptr->symbol' is a field which describes which variable is
4e2db1fe
SM
3303 let-bound, so it can be properly undone when we unbind_to.
3304 It can have the following two shapes:
3305 - SYMBOL : if it's a plain symbol, it means that we have let-bound
3306 a symbol that is not buffer-local (at least at the time
3307 the let binding started). Note also that it should not be
3308 aliased (i.e. when let-binding V1 that's aliased to V2, we want
3309 to record V2 here).
3310 - (SYMBOL WHERE . BUFFER) : this means that it is a let-binding for
3311 variable SYMBOL which can be buffer-local. WHERE tells us
3312 which buffer is affected (or nil if the let-binding affects the
3313 global value of the variable) and BUFFER tells us which buffer was
3314 current (i.e. if WHERE is non-nil, then BUFFER==WHERE, otherwise
3315 BUFFER did not yet have a buffer-local value). */
3316
db9f0278 3317void
d3da34e0 3318specbind (Lisp_Object symbol, Lisp_Object value)
db9f0278 3319{
ce5b453a
SM
3320 struct Lisp_Symbol *sym;
3321
3322 eassert (!handling_signal);
db9f0278 3323
b7826503 3324 CHECK_SYMBOL (symbol);
ce5b453a 3325 sym = XSYMBOL (symbol);
db9f0278
JB
3326 if (specpdl_ptr == specpdl + specpdl_size)
3327 grow_specpdl ();
719177b3 3328
ce5b453a
SM
3329 start:
3330 switch (sym->redirect)
719177b3 3331 {
ce5b453a
SM
3332 case SYMBOL_VARALIAS:
3333 sym = indirect_variable (sym); XSETSYMBOL (symbol, sym); goto start;
3334 case SYMBOL_PLAINVAL:
bb8e180f
AS
3335 /* The most common case is that of a non-constant symbol with a
3336 trivial value. Make that as fast as we can. */
3337 specpdl_ptr->symbol = symbol;
3338 specpdl_ptr->old_value = SYMBOL_VAL (sym);
3339 specpdl_ptr->func = NULL;
3340 ++specpdl_ptr;
3341 if (!sym->constant)
3342 SET_SYMBOL_VAL (sym, value);
3343 else
3344 set_internal (symbol, value, Qnil, 1);
3345 break;
4e2db1fe
SM
3346 case SYMBOL_LOCALIZED:
3347 if (SYMBOL_BLV (sym)->frame_local)
3348 error ("Frame-local vars cannot be let-bound");
3349 case SYMBOL_FORWARDED:
ce5b453a
SM
3350 {
3351 Lisp_Object ovalue = find_symbol_value (symbol);
3352 specpdl_ptr->func = 0;
3353 specpdl_ptr->old_value = ovalue;
3354
3355 eassert (sym->redirect != SYMBOL_LOCALIZED
3356 || (EQ (SYMBOL_BLV (sym)->where,
3357 SYMBOL_BLV (sym)->frame_local ?
3358 Fselected_frame () : Fcurrent_buffer ())));
3359
3360 if (sym->redirect == SYMBOL_LOCALIZED
3361 || BUFFER_OBJFWDP (SYMBOL_FWD (sym)))
3362 {
3363 Lisp_Object where, cur_buf = Fcurrent_buffer ();
3364
3365 /* For a local variable, record both the symbol and which
3366 buffer's or frame's value we are saving. */
3367 if (!NILP (Flocal_variable_p (symbol, Qnil)))
3368 {
3369 eassert (sym->redirect != SYMBOL_LOCALIZED
3370 || (BLV_FOUND (SYMBOL_BLV (sym))
3371 && EQ (cur_buf, SYMBOL_BLV (sym)->where)));
3372 where = cur_buf;
3373 }
3374 else if (sym->redirect == SYMBOL_LOCALIZED
3375 && BLV_FOUND (SYMBOL_BLV (sym)))
3376 where = SYMBOL_BLV (sym)->where;
3377 else
3378 where = Qnil;
3379
3380 /* We're not using the `unused' slot in the specbinding
3381 structure because this would mean we have to do more
3382 work for simple variables. */
3383 /* FIXME: The third value `current_buffer' is only used in
3384 let_shadows_buffer_binding_p which is itself only used
3385 in set_internal for local_if_set. */
4e2db1fe 3386 eassert (NILP (where) || EQ (where, cur_buf));
ce5b453a
SM
3387 specpdl_ptr->symbol = Fcons (symbol, Fcons (where, cur_buf));
3388
3389 /* If SYMBOL is a per-buffer variable which doesn't have a
3390 buffer-local value here, make the `let' change the global
3391 value by changing the value of SYMBOL in all buffers not
3392 having their own value. This is consistent with what
3393 happens with other buffer-local variables. */
3394 if (NILP (where)
3395 && sym->redirect == SYMBOL_FORWARDED)
3396 {
3397 eassert (BUFFER_OBJFWDP (SYMBOL_FWD (sym)));
3398 ++specpdl_ptr;
3399 Fset_default (symbol, value);
3400 return;
3401 }
3402 }
3403 else
3404 specpdl_ptr->symbol = symbol;
3405
3406 specpdl_ptr++;
94b612ad 3407 set_internal (symbol, value, Qnil, 1);
ce5b453a
SM
3408 break;
3409 }
3410 default: abort ();
9ab90667 3411 }
db9f0278
JB
3412}
3413
3414void
d3da34e0 3415record_unwind_protect (Lisp_Object (*function) (Lisp_Object), Lisp_Object arg)
db9f0278 3416{
9ba8e10d
CY
3417 eassert (!handling_signal);
3418
db9f0278
JB
3419 if (specpdl_ptr == specpdl + specpdl_size)
3420 grow_specpdl ();
3421 specpdl_ptr->func = function;
3422 specpdl_ptr->symbol = Qnil;
3423 specpdl_ptr->old_value = arg;
3424 specpdl_ptr++;
3425}
3426
3427Lisp_Object
d3da34e0 3428unbind_to (int count, Lisp_Object value)
db9f0278 3429{
5a073f50
KS
3430 Lisp_Object quitf = Vquit_flag;
3431 struct gcpro gcpro1, gcpro2;
db9f0278 3432
5a073f50 3433 GCPRO2 (value, quitf);
db9f0278
JB
3434 Vquit_flag = Qnil;
3435
3436 while (specpdl_ptr != specpdl + count)
3437 {
611a8f8c
RS
3438 /* Copy the binding, and decrement specpdl_ptr, before we do
3439 the work to unbind it. We decrement first
3440 so that an error in unbinding won't try to unbind
3441 the same entry again, and we copy the binding first
3442 in case more bindings are made during some of the code we run. */
eb700b82 3443
45f266dc
DL
3444 struct specbinding this_binding;
3445 this_binding = *--specpdl_ptr;
611a8f8c
RS
3446
3447 if (this_binding.func != 0)
3448 (*this_binding.func) (this_binding.old_value);
0967b4b0
GM
3449 /* If the symbol is a list, it is really (SYMBOL WHERE
3450 . CURRENT-BUFFER) where WHERE is either nil, a buffer, or a
3451 frame. If WHERE is a buffer or frame, this indicates we
1b1acc13
PJ
3452 bound a variable that had a buffer-local or frame-local
3453 binding. WHERE nil means that the variable had the default
0967b4b0 3454 value when it was bound. CURRENT-BUFFER is the buffer that
bb8e180f 3455 was current when the variable was bound. */
611a8f8c 3456 else if (CONSP (this_binding.symbol))
719177b3 3457 {
eb700b82 3458 Lisp_Object symbol, where;
719177b3 3459
611a8f8c
RS
3460 symbol = XCAR (this_binding.symbol);
3461 where = XCAR (XCDR (this_binding.symbol));
719177b3 3462
eb700b82 3463 if (NILP (where))
611a8f8c 3464 Fset_default (symbol, this_binding.old_value);
94b612ad
SM
3465 /* If `where' is non-nil, reset the value in the appropriate
3466 local binding, but only if that binding still exists. */
4e2db1fe
SM
3467 else if (BUFFERP (where)
3468 ? !NILP (Flocal_variable_p (symbol, where))
3469 : !NILP (Fassq (symbol, XFRAME (where)->param_alist)))
3470 set_internal (symbol, this_binding.old_value, where, 1);
719177b3 3471 }
94b612ad
SM
3472 /* If variable has a trivial value (no forwarding), we can
3473 just set it. No need to check for constant symbols here,
3474 since that was already done by specbind. */
3475 else if (XSYMBOL (this_binding.symbol)->redirect == SYMBOL_PLAINVAL)
3476 SET_SYMBOL_VAL (XSYMBOL (this_binding.symbol),
3477 this_binding.old_value);
db9f0278 3478 else
94b612ad
SM
3479 /* NOTE: we only ever come here if make_local_foo was used for
3480 the first time on this var within this let. */
3481 Fset_default (this_binding.symbol, this_binding.old_value);
db9f0278 3482 }
177c0ea7 3483
5a073f50
KS
3484 if (NILP (Vquit_flag) && !NILP (quitf))
3485 Vquit_flag = quitf;
db9f0278
JB
3486
3487 UNGCPRO;
db9f0278
JB
3488 return value;
3489}
b9598260 3490
4a330052 3491DEFUN ("special-variable-p", Fspecial_variable_p, Sspecial_variable_p, 1, 1, 0,
b9598260
SM
3492 doc: /* Return non-nil if SYMBOL's global binding has been declared special.
3493A special variable is one that will be bound dynamically, even in a
3494context where binding is lexical by default. */)
c566235d 3495 (Lisp_Object symbol)
b9598260
SM
3496{
3497 CHECK_SYMBOL (symbol);
3498 return XSYMBOL (symbol)->declared_special ? Qt : Qnil;
3499}
3500
db9f0278 3501\f
db9f0278 3502DEFUN ("backtrace-debug", Fbacktrace_debug, Sbacktrace_debug, 2, 2, 0,
9dbc9081
PJ
3503 doc: /* Set the debug-on-exit flag of eval frame LEVEL levels down to FLAG.
3504The debugger is entered when that frame exits, if the flag is non-nil. */)
5842a27b 3505 (Lisp_Object level, Lisp_Object flag)
db9f0278
JB
3506{
3507 register struct backtrace *backlist = backtrace_list;
3508 register int i;
3509
b7826503 3510 CHECK_NUMBER (level);
db9f0278
JB
3511
3512 for (i = 0; backlist && i < XINT (level); i++)
3513 {
3514 backlist = backlist->next;
3515 }
3516
3517 if (backlist)
265a9e55 3518 backlist->debug_on_exit = !NILP (flag);
db9f0278
JB
3519
3520 return flag;
3521}
3522
3523DEFUN ("backtrace", Fbacktrace, Sbacktrace, 0, 0, "",
9dbc9081
PJ
3524 doc: /* Print a trace of Lisp function calls currently active.
3525Output stream used is value of `standard-output'. */)
5842a27b 3526 (void)
db9f0278
JB
3527{
3528 register struct backtrace *backlist = backtrace_list;
db9f0278
JB
3529 Lisp_Object tail;
3530 Lisp_Object tem;
db9f0278 3531 struct gcpro gcpro1;
d4b6d95d 3532 Lisp_Object old_print_level = Vprint_level;
db9f0278 3533
d4b6d95d
LMI
3534 if (NILP (Vprint_level))
3535 XSETFASTINT (Vprint_level, 8);
db9f0278
JB
3536
3537 tail = Qnil;
3538 GCPRO1 (tail);
3539
3540 while (backlist)
3541 {
3542 write_string (backlist->debug_on_exit ? "* " : " ", 2);
44f230aa 3543 if (backlist->nargs == UNEVALLED)
db9f0278
JB
3544 {
3545 Fprin1 (Fcons (*backlist->function, *backlist->args), Qnil);
b6703b02 3546 write_string ("\n", -1);
db9f0278
JB
3547 }
3548 else
3549 {
3550 tem = *backlist->function;
f6d62986 3551 Fprin1 (tem, Qnil); /* This can QUIT. */
db9f0278 3552 write_string ("(", -1);
44f230aa
SM
3553 if (backlist->nargs == MANY)
3554 { /* FIXME: Can this happen? */
a3eed478 3555 int i;
db9f0278 3556 for (tail = *backlist->args, i = 0;
265a9e55 3557 !NILP (tail);
a3eed478 3558 tail = Fcdr (tail), i = 1)
db9f0278
JB
3559 {
3560 if (i) write_string (" ", -1);
3561 Fprin1 (Fcar (tail), Qnil);
3562 }
3563 }
3564 else
3565 {
f66c7cf8 3566 ptrdiff_t i;
db9f0278
JB
3567 for (i = 0; i < backlist->nargs; i++)
3568 {
3569 if (i) write_string (" ", -1);
3570 Fprin1 (backlist->args[i], Qnil);
3571 }
3572 }
b6703b02 3573 write_string (")\n", -1);
db9f0278 3574 }
db9f0278
JB
3575 backlist = backlist->next;
3576 }
3577
d4b6d95d 3578 Vprint_level = old_print_level;
db9f0278
JB
3579 UNGCPRO;
3580 return Qnil;
3581}
3582
17401c97 3583DEFUN ("backtrace-frame", Fbacktrace_frame, Sbacktrace_frame, 1, 1, NULL,
9dbc9081
PJ
3584 doc: /* Return the function and arguments NFRAMES up from current execution point.
3585If that frame has not evaluated the arguments yet (or is a special form),
3586the value is (nil FUNCTION ARG-FORMS...).
3587If that frame has evaluated its arguments and called its function already,
3588the value is (t FUNCTION ARG-VALUES...).
3589A &rest arg is represented as the tail of the list ARG-VALUES.
3590FUNCTION is whatever was supplied as car of evaluated list,
3591or a lambda expression for macro calls.
3592If NFRAMES is more than the number of frames, the value is nil. */)
5842a27b 3593 (Lisp_Object nframes)
db9f0278
JB
3594{
3595 register struct backtrace *backlist = backtrace_list;
5d5d959d 3596 register EMACS_INT i;
db9f0278
JB
3597 Lisp_Object tem;
3598
b7826503 3599 CHECK_NATNUM (nframes);
db9f0278
JB
3600
3601 /* Find the frame requested. */
b6703b02 3602 for (i = 0; backlist && i < XFASTINT (nframes); i++)
db9f0278
JB
3603 backlist = backlist->next;
3604
3605 if (!backlist)
3606 return Qnil;
44f230aa 3607 if (backlist->nargs == UNEVALLED)
db9f0278
JB
3608 return Fcons (Qnil, Fcons (*backlist->function, *backlist->args));
3609 else
3610 {
44f230aa 3611 if (backlist->nargs == MANY) /* FIXME: Can this happen? */
db9f0278
JB
3612 tem = *backlist->args;
3613 else
3614 tem = Flist (backlist->nargs, backlist->args);
3615
3616 return Fcons (Qt, Fcons (*backlist->function, tem));
3617 }
3618}
a2ff3819 3619
db9f0278 3620\f
244ed907 3621#if BYTE_MARK_STACK
4ce0541e 3622void
d3da34e0 3623mark_backtrace (void)
4ce0541e
SM
3624{
3625 register struct backtrace *backlist;
f66c7cf8 3626 ptrdiff_t i;
4ce0541e
SM
3627
3628 for (backlist = backtrace_list; backlist; backlist = backlist->next)
3629 {
3630 mark_object (*backlist->function);
3631
44f230aa
SM
3632 if (backlist->nargs == UNEVALLED
3633 || backlist->nargs == MANY) /* FIXME: Can this happen? */
c5101a77 3634 i = 1;
4ce0541e 3635 else
c5101a77
PE
3636 i = backlist->nargs;
3637 while (i--)
4ce0541e
SM
3638 mark_object (backlist->args[i]);
3639 }
3640}
244ed907 3641#endif
4ce0541e 3642
dfcf069d 3643void
d3da34e0 3644syms_of_eval (void)
db9f0278 3645{
29208e82 3646 DEFVAR_INT ("max-specpdl-size", max_specpdl_size,
82fc29a1 3647 doc: /* *Limit on number of Lisp variable bindings and `unwind-protect's.
9f5903bb 3648If Lisp code tries to increase the total number past this amount,
2520dc0c
RS
3649an error is signaled.
3650You can safely use a value considerably larger than the default value,
3651if that proves inconveniently small. However, if you increase it too far,
3652Emacs could run out of memory trying to make the stack bigger. */);
db9f0278 3653
29208e82 3654 DEFVAR_INT ("max-lisp-eval-depth", max_lisp_eval_depth,
9dbc9081 3655 doc: /* *Limit on depth in `eval', `apply' and `funcall' before error.
2520dc0c
RS
3656
3657This limit serves to catch infinite recursions for you before they cause
9dbc9081
PJ
3658actual stack overflow in C, which would be fatal for Emacs.
3659You can safely make it considerably larger than its default value,
2520dc0c
RS
3660if that proves inconveniently small. However, if you increase it too far,
3661Emacs could overflow the real C stack, and crash. */);
db9f0278 3662
29208e82 3663 DEFVAR_LISP ("quit-flag", Vquit_flag,
9dbc9081 3664 doc: /* Non-nil causes `eval' to abort, unless `inhibit-quit' is non-nil.
42ed718e
RS
3665If the value is t, that means do an ordinary quit.
3666If the value equals `throw-on-input', that means quit by throwing
3667to the tag specified in `throw-on-input'; it's for handling `while-no-input'.
3668Typing C-g sets `quit-flag' to t, regardless of `inhibit-quit',
3669but `inhibit-quit' non-nil prevents anything from taking notice of that. */);
db9f0278
JB
3670 Vquit_flag = Qnil;
3671
29208e82 3672 DEFVAR_LISP ("inhibit-quit", Vinhibit_quit,
9dbc9081
PJ
3673 doc: /* Non-nil inhibits C-g quitting from happening immediately.
3674Note that `quit-flag' will still be set by typing C-g,
3675so a quit will be signaled as soon as `inhibit-quit' is nil.
3676To prevent this happening, set `quit-flag' to nil
3677before making `inhibit-quit' nil. */);
db9f0278
JB
3678 Vinhibit_quit = Qnil;
3679
cd3520a4
JB
3680 DEFSYM (Qinhibit_quit, "inhibit-quit");
3681 DEFSYM (Qautoload, "autoload");
3682 DEFSYM (Qdebug_on_error, "debug-on-error");
3683 DEFSYM (Qmacro, "macro");
3684 DEFSYM (Qdeclare, "declare");
177c0ea7 3685
db9f0278
JB
3686 /* Note that the process handling also uses Qexit, but we don't want
3687 to staticpro it twice, so we just do it here. */
cd3520a4 3688 DEFSYM (Qexit, "exit");
b9598260 3689
cd3520a4
JB
3690 DEFSYM (Qinteractive, "interactive");
3691 DEFSYM (Qcommandp, "commandp");
3692 DEFSYM (Qdefun, "defun");
3693 DEFSYM (Qand_rest, "&rest");
3694 DEFSYM (Qand_optional, "&optional");
3695 DEFSYM (Qclosure, "closure");
3696 DEFSYM (Qdebug, "debug");
f01cbfdd 3697
29208e82 3698 DEFVAR_LISP ("debug-on-error", Vdebug_on_error,
9dbc9081
PJ
3699 doc: /* *Non-nil means enter debugger if an error is signaled.
3700Does not apply to errors handled by `condition-case' or those
3701matched by `debug-ignored-errors'.
3702If the value is a list, an error only means to enter the debugger
3703if one of its condition symbols appears in the list.
3704When you evaluate an expression interactively, this variable
3705is temporarily non-nil if `eval-expression-debug-on-error' is non-nil.
fbbdcf2f
CY
3706The command `toggle-debug-on-error' toggles this.
3707See also the variable `debug-on-quit'. */);
128c0f66 3708 Vdebug_on_error = Qnil;
db9f0278 3709
29208e82 3710 DEFVAR_LISP ("debug-ignored-errors", Vdebug_ignored_errors,
9dbc9081
PJ
3711 doc: /* *List of errors for which the debugger should not be called.
3712Each element may be a condition-name or a regexp that matches error messages.
3713If any element applies to a given error, that error skips the debugger
3714and just returns to top level.
3715This overrides the variable `debug-on-error'.
3716It does not apply to errors handled by `condition-case'. */);
fc950e09
KH
3717 Vdebug_ignored_errors = Qnil;
3718
29208e82 3719 DEFVAR_BOOL ("debug-on-quit", debug_on_quit,
82fc29a1
JB
3720 doc: /* *Non-nil means enter debugger if quit is signaled (C-g, for example).
3721Does not apply if quit is handled by a `condition-case'. */);
db9f0278
JB
3722 debug_on_quit = 0;
3723
29208e82 3724 DEFVAR_BOOL ("debug-on-next-call", debug_on_next_call,
9dbc9081 3725 doc: /* Non-nil means enter debugger before next `eval', `apply' or `funcall'. */);
db9f0278 3726
29208e82 3727 DEFVAR_BOOL ("debugger-may-continue", debugger_may_continue,
9dbc9081
PJ
3728 doc: /* Non-nil means debugger may continue execution.
3729This is nil when the debugger is called under circumstances where it
3730might not be safe to continue. */);
dac204bc 3731 debugger_may_continue = 1;
556d7314 3732
29208e82 3733 DEFVAR_LISP ("debugger", Vdebugger,
9dbc9081
PJ
3734 doc: /* Function to call to invoke debugger.
3735If due to frame exit, args are `exit' and the value being returned;
3736 this function's value will be returned instead of that.
3737If due to error, args are `error' and a list of the args to `signal'.
3738If due to `apply' or `funcall' entry, one arg, `lambda'.
3739If due to `eval' entry, one arg, t. */);
db9f0278
JB
3740 Vdebugger = Qnil;
3741
29208e82 3742 DEFVAR_LISP ("signal-hook-function", Vsignal_hook_function,
9dbc9081
PJ
3743 doc: /* If non-nil, this is a function for `signal' to call.
3744It receives the same arguments that `signal' was given.
3745The Edebug package uses this to regain control. */);
61ede770
RS
3746 Vsignal_hook_function = Qnil;
3747
29208e82 3748 DEFVAR_LISP ("debug-on-signal", Vdebug_on_signal,
9dbc9081
PJ
3749 doc: /* *Non-nil means call the debugger regardless of condition handlers.
3750Note that `debug-on-error', `debug-on-quit' and friends
3751still determine whether to handle the particular condition. */);
57a6e758 3752 Vdebug_on_signal = Qnil;
61ede770 3753
29208e82 3754 DEFVAR_LISP ("macro-declaration-function", Vmacro_declaration_function,
d6edd563
GM
3755 doc: /* Function to process declarations in a macro definition.
3756The function will be called with two args MACRO and DECL.
3757MACRO is the name of the macro being defined.
3758DECL is a list `(declare ...)' containing the declarations.
3759The value the function returns is not used. */);
3760 Vmacro_declaration_function = Qnil;
3761
b38b1ec0
SM
3762 /* When lexical binding is being used,
3763 vinternal_interpreter_environment is non-nil, and contains an alist
3764 of lexically-bound variable, or (t), indicating an empty
3765 environment. The lisp name of this variable would be
3766 `internal-interpreter-environment' if it weren't hidden.
3767 Every element of this list can be either a cons (VAR . VAL)
3768 specifying a lexical binding, or a single symbol VAR indicating
3769 that this variable should use dynamic scoping. */
cd3520a4 3770 DEFSYM (Qinternal_interpreter_environment, "internal-interpreter-environment");
b38b1ec0
SM
3771 DEFVAR_LISP ("internal-interpreter-environment",
3772 Vinternal_interpreter_environment,
b9598260
SM
3773 doc: /* If non-nil, the current lexical environment of the lisp interpreter.
3774When lexical binding is not being used, this variable is nil.
3775A value of `(t)' indicates an empty environment, otherwise it is an
3776alist of active lexical bindings. */);
3777 Vinternal_interpreter_environment = Qnil;
b38b1ec0
SM
3778 /* Don't export this variable to Elisp, so noone can mess with it
3779 (Just imagine if someone makes it buffer-local). */
3780 Funintern (Qinternal_interpreter_environment, Qnil);
b9598260 3781
cd3520a4 3782 DEFSYM (Vrun_hooks, "run-hooks");
db9f0278
JB
3783
3784 staticpro (&Vautoload_queue);
3785 Vautoload_queue = Qnil;
a2ff3819
GM
3786 staticpro (&Vsignaling_function);
3787 Vsignaling_function = Qnil;
db9f0278
JB
3788
3789 defsubr (&Sor);
3790 defsubr (&Sand);
3791 defsubr (&Sif);
3792 defsubr (&Scond);
3793 defsubr (&Sprogn);
3794 defsubr (&Sprog1);
3795 defsubr (&Sprog2);
3796 defsubr (&Ssetq);
3797 defsubr (&Squote);
3798 defsubr (&Sfunction);
3799 defsubr (&Sdefun);
3800 defsubr (&Sdefmacro);
3801 defsubr (&Sdefvar);
19cebf5a 3802 defsubr (&Sdefvaralias);
db9f0278
JB
3803 defsubr (&Sdefconst);
3804 defsubr (&Suser_variable_p);
3805 defsubr (&Slet);
3806 defsubr (&SletX);
3807 defsubr (&Swhile);
3808 defsubr (&Smacroexpand);
3809 defsubr (&Scatch);
3810 defsubr (&Sthrow);
3811 defsubr (&Sunwind_protect);
3812 defsubr (&Scondition_case);
3813 defsubr (&Ssignal);
3814 defsubr (&Sinteractive_p);
4b664e76 3815 defsubr (&Scalled_interactively_p);
db9f0278
JB
3816 defsubr (&Scommandp);
3817 defsubr (&Sautoload);
3818 defsubr (&Seval);
3819 defsubr (&Sapply);
3820 defsubr (&Sfuncall);
ff936e53
SM
3821 defsubr (&Srun_hooks);
3822 defsubr (&Srun_hook_with_args);
3823 defsubr (&Srun_hook_with_args_until_success);
3824 defsubr (&Srun_hook_with_args_until_failure);
f6d62986 3825 defsubr (&Srun_hook_wrapped);
661c7d6e 3826 defsubr (&Sfetch_bytecode);
db9f0278
JB
3827 defsubr (&Sbacktrace_debug);
3828 defsubr (&Sbacktrace);
3829 defsubr (&Sbacktrace_frame);
4a330052 3830 defsubr (&Sspecial_variable_p);
b9598260 3831 defsubr (&Sfunctionp);
db9f0278 3832}