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