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