Sync copyright years from ../emacs/ChangeLog.
[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
1358instead of a single condition name.
1359
1360When a handler handles an error,
1361control returns to the condition-case and the handler BODY... is executed
1362with VAR bound to (SIGNALED-CONDITIONS . SIGNAL-DATA).
1363VAR may be nil; then you do not get access to the signal information.
1364
1365The value of the last BODY form is returned from the condition-case.
1366See also the function `signal' for more info.
2b47b74d 1367usage: (condition-case VAR BODYFORM &rest HANDLERS) */)
9dbc9081 1368 (args)
db9f0278
JB
1369 Lisp_Object args;
1370{
17401c97
GM
1371 register Lisp_Object bodyform, handlers;
1372 volatile Lisp_Object var;
db9f0278 1373
82da7701
JB
1374 var = Fcar (args);
1375 bodyform = Fcar (Fcdr (args));
1376 handlers = Fcdr (Fcdr (args));
ee830945
RS
1377
1378 return internal_lisp_condition_case (var, bodyform, handlers);
1379}
1380
1381/* Like Fcondition_case, but the args are separate
1382 rather than passed in a list. Used by Fbyte_code. */
1383
1384Lisp_Object
1385internal_lisp_condition_case (var, bodyform, handlers)
1386 volatile Lisp_Object var;
1387 Lisp_Object bodyform, handlers;
1388{
1389 Lisp_Object val;
1390 struct catchtag c;
1391 struct handler h;
1392
b7826503 1393 CHECK_SYMBOL (var);
82da7701 1394
2b47b74d 1395 for (val = handlers; CONSP (val); val = XCDR (val))
82da7701
JB
1396 {
1397 Lisp_Object tem;
2b47b74d 1398 tem = XCAR (val);
5f96776a
RS
1399 if (! (NILP (tem)
1400 || (CONSP (tem)
03699b14
KR
1401 && (SYMBOLP (XCAR (tem))
1402 || CONSP (XCAR (tem))))))
82da7701
JB
1403 error ("Invalid condition handler", tem);
1404 }
db9f0278
JB
1405
1406 c.tag = Qnil;
1407 c.val = Qnil;
1408 c.backlist = backtrace_list;
1409 c.handlerlist = handlerlist;
1410 c.lisp_eval_depth = lisp_eval_depth;
aed13378 1411 c.pdlcount = SPECPDL_INDEX ();
db9f0278 1412 c.poll_suppress_count = poll_suppress_count;
2659a09f 1413 c.interrupt_input_blocked = interrupt_input_blocked;
db9f0278 1414 c.gcpro = gcprolist;
bcf28080 1415 c.byte_stack = byte_stack_list;
db9f0278
JB
1416 if (_setjmp (c.jmp))
1417 {
265a9e55 1418 if (!NILP (h.var))
9d58218c
RS
1419 specbind (h.var, c.val);
1420 val = Fprogn (Fcdr (h.chosen_clause));
82da7701
JB
1421
1422 /* Note that this just undoes the binding of h.var; whoever
1423 longjumped to us unwound the stack to c.pdlcount before
1424 throwing. */
db9f0278
JB
1425 unbind_to (c.pdlcount, Qnil);
1426 return val;
1427 }
1428 c.next = catchlist;
1429 catchlist = &c;
177c0ea7 1430
82da7701
JB
1431 h.var = var;
1432 h.handler = handlers;
db9f0278 1433 h.next = handlerlist;
db9f0278
JB
1434 h.tag = &c;
1435 handlerlist = &h;
1436
82da7701 1437 val = Feval (bodyform);
db9f0278
JB
1438 catchlist = c.next;
1439 handlerlist = h.next;
1440 return val;
1441}
1442
f029ca5f
RS
1443/* Call the function BFUN with no arguments, catching errors within it
1444 according to HANDLERS. If there is an error, call HFUN with
1445 one argument which is the data that describes the error:
1446 (SIGNALNAME . DATA)
1447
1448 HANDLERS can be a list of conditions to catch.
1449 If HANDLERS is Qt, catch all errors.
1450 If HANDLERS is Qerror, catch all errors
1451 but allow the debugger to run if that is enabled. */
1452
db9f0278
JB
1453Lisp_Object
1454internal_condition_case (bfun, handlers, hfun)
1455 Lisp_Object (*bfun) ();
1456 Lisp_Object handlers;
1457 Lisp_Object (*hfun) ();
1458{
1459 Lisp_Object val;
1460 struct catchtag c;
1461 struct handler h;
1462
88019a63
RS
1463 /* Since Fsignal will close off all calls to x_catch_errors,
1464 we will get the wrong results if some are not closed now. */
e6aee454 1465#if 0 /* Fsignal doesn't do that anymore. --lorentey */
a2a103bb 1466#if HAVE_X_WINDOWS
88019a63 1467 if (x_catching_errors ())
01591d17 1468 abort ();
e6aee454 1469#endif
a2a103bb 1470#endif
01591d17 1471
db9f0278
JB
1472 c.tag = Qnil;
1473 c.val = Qnil;
1474 c.backlist = backtrace_list;
1475 c.handlerlist = handlerlist;
1476 c.lisp_eval_depth = lisp_eval_depth;
aed13378 1477 c.pdlcount = SPECPDL_INDEX ();
db9f0278 1478 c.poll_suppress_count = poll_suppress_count;
2659a09f 1479 c.interrupt_input_blocked = interrupt_input_blocked;
db9f0278 1480 c.gcpro = gcprolist;
bcf28080 1481 c.byte_stack = byte_stack_list;
db9f0278
JB
1482 if (_setjmp (c.jmp))
1483 {
9d58218c 1484 return (*hfun) (c.val);
db9f0278
JB
1485 }
1486 c.next = catchlist;
1487 catchlist = &c;
1488 h.handler = handlers;
1489 h.var = Qnil;
db9f0278
JB
1490 h.next = handlerlist;
1491 h.tag = &c;
1492 handlerlist = &h;
1493
1494 val = (*bfun) ();
1495 catchlist = c.next;
1496 handlerlist = h.next;
1497 return val;
1498}
1499
2659a09f 1500/* Like internal_condition_case but call BFUN with ARG as its argument. */
f029ca5f 1501
d227775c
RS
1502Lisp_Object
1503internal_condition_case_1 (bfun, arg, handlers, hfun)
1504 Lisp_Object (*bfun) ();
1505 Lisp_Object arg;
1506 Lisp_Object handlers;
1507 Lisp_Object (*hfun) ();
1508{
1509 Lisp_Object val;
1510 struct catchtag c;
1511 struct handler h;
1512
88019a63
RS
1513 /* Since Fsignal will close off all calls to x_catch_errors,
1514 we will get the wrong results if some are not closed now. */
e6aee454 1515#if 0 /* Fsignal doesn't do that anymore. --lorentey */
a2a103bb 1516#if HAVE_X_WINDOWS
88019a63
RS
1517 if (x_catching_errors ())
1518 abort ();
e6aee454 1519#endif
a2a103bb 1520#endif
88019a63 1521
d227775c
RS
1522 c.tag = Qnil;
1523 c.val = Qnil;
1524 c.backlist = backtrace_list;
1525 c.handlerlist = handlerlist;
1526 c.lisp_eval_depth = lisp_eval_depth;
aed13378 1527 c.pdlcount = SPECPDL_INDEX ();
d227775c 1528 c.poll_suppress_count = poll_suppress_count;
2659a09f 1529 c.interrupt_input_blocked = interrupt_input_blocked;
d227775c 1530 c.gcpro = gcprolist;
bcf28080 1531 c.byte_stack = byte_stack_list;
d227775c
RS
1532 if (_setjmp (c.jmp))
1533 {
9d58218c 1534 return (*hfun) (c.val);
d227775c
RS
1535 }
1536 c.next = catchlist;
1537 catchlist = &c;
1538 h.handler = handlers;
1539 h.var = Qnil;
1540 h.next = handlerlist;
1541 h.tag = &c;
1542 handlerlist = &h;
1543
1544 val = (*bfun) (arg);
1545 catchlist = c.next;
1546 handlerlist = h.next;
1547 return val;
1548}
10b29d41
GM
1549
1550
2659a09f 1551/* Like internal_condition_case but call BFUN with NARGS as first,
10b29d41
GM
1552 and ARGS as second argument. */
1553
1554Lisp_Object
1555internal_condition_case_2 (bfun, nargs, args, handlers, hfun)
1556 Lisp_Object (*bfun) ();
1557 int nargs;
1558 Lisp_Object *args;
1559 Lisp_Object handlers;
1560 Lisp_Object (*hfun) ();
1561{
1562 Lisp_Object val;
1563 struct catchtag c;
1564 struct handler h;
1565
88019a63
RS
1566 /* Since Fsignal will close off all calls to x_catch_errors,
1567 we will get the wrong results if some are not closed now. */
e6aee454 1568#if 0 /* Fsignal doesn't do that anymore. --lorentey */
a2a103bb 1569#if HAVE_X_WINDOWS
88019a63
RS
1570 if (x_catching_errors ())
1571 abort ();
e6aee454 1572#endif
a2a103bb 1573#endif
88019a63 1574
10b29d41
GM
1575 c.tag = Qnil;
1576 c.val = Qnil;
1577 c.backlist = backtrace_list;
1578 c.handlerlist = handlerlist;
1579 c.lisp_eval_depth = lisp_eval_depth;
aed13378 1580 c.pdlcount = SPECPDL_INDEX ();
10b29d41 1581 c.poll_suppress_count = poll_suppress_count;
2659a09f 1582 c.interrupt_input_blocked = interrupt_input_blocked;
10b29d41
GM
1583 c.gcpro = gcprolist;
1584 c.byte_stack = byte_stack_list;
1585 if (_setjmp (c.jmp))
1586 {
1587 return (*hfun) (c.val);
1588 }
1589 c.next = catchlist;
1590 catchlist = &c;
1591 h.handler = handlers;
1592 h.var = Qnil;
1593 h.next = handlerlist;
1594 h.tag = &c;
1595 handlerlist = &h;
1596
1597 val = (*bfun) (nargs, args);
1598 catchlist = c.next;
1599 handlerlist = h.next;
1600 return val;
1601}
1602
d227775c 1603\f
2901f1d1 1604static Lisp_Object find_handler_clause P_ ((Lisp_Object, Lisp_Object,
f01cbfdd 1605 Lisp_Object, Lisp_Object));
db9f0278
JB
1606
1607DEFUN ("signal", Fsignal, Ssignal, 2, 2, 0,
9dbc9081
PJ
1608 doc: /* Signal an error. Args are ERROR-SYMBOL and associated DATA.
1609This function does not return.
1610
1611An error symbol is a symbol with an `error-conditions' property
1612that is a list of condition names.
1613A handler for any of those names will get to handle this signal.
1614The symbol `error' should normally be one of them.
1615
1616DATA should be a list. Its elements are printed as part of the error message.
3297ec22
LT
1617See Info anchor `(elisp)Definition of signal' for some details on how this
1618error message is constructed.
9dbc9081
PJ
1619If the signal is handled, DATA is made available to the handler.
1620See also the function `condition-case'. */)
1621 (error_symbol, data)
4200e719 1622 Lisp_Object error_symbol, data;
db9f0278 1623{
bfa8ca43 1624 /* When memory is full, ERROR-SYMBOL is nil,
26631f2b
RS
1625 and DATA is (REAL-ERROR-SYMBOL . REAL-DATA).
1626 That is a special case--don't do this in other situations. */
db9f0278
JB
1627 register struct handler *allhandlers = handlerlist;
1628 Lisp_Object conditions;
1629 extern int gc_in_progress;
1630 extern int waiting_for_input;
c11d3d17 1631 Lisp_Object string;
1ea9dec4 1632 Lisp_Object real_error_symbol;
a2ff3819 1633 struct backtrace *bp;
db9f0278 1634
346598f1 1635 immediate_quit = handling_signal = 0;
d063129f 1636 abort_on_gc = 0;
db9f0278
JB
1637 if (gc_in_progress || waiting_for_input)
1638 abort ();
1639
1ea9dec4
RS
1640 if (NILP (error_symbol))
1641 real_error_symbol = Fcar (data);
1642 else
1643 real_error_symbol = error_symbol;
1644
26631f2b
RS
1645#if 0 /* rms: I don't know why this was here,
1646 but it is surely wrong for an error that is handled. */
48f8dfa3 1647#ifdef HAVE_X_WINDOWS
df6c90d8
GM
1648 if (display_hourglass_p)
1649 cancel_hourglass ();
48f8dfa3 1650#endif
177c0ea7 1651#endif
48f8dfa3 1652
61ede770 1653 /* This hook is used by edebug. */
26631f2b
RS
1654 if (! NILP (Vsignal_hook_function)
1655 && ! NILP (error_symbol))
9f5903bb
RS
1656 {
1657 /* Edebug takes care of restoring these variables when it exits. */
1658 if (lisp_eval_depth + 20 > max_lisp_eval_depth)
1659 max_lisp_eval_depth = lisp_eval_depth + 20;
1660
1661 if (SPECPDL_INDEX () + 40 > max_specpdl_size)
1662 max_specpdl_size = SPECPDL_INDEX () + 40;
1663
1664 call2 (Vsignal_hook_function, error_symbol, data);
1665 }
61ede770 1666
1ea9dec4 1667 conditions = Fget (real_error_symbol, Qerror_conditions);
db9f0278 1668
a2ff3819
GM
1669 /* Remember from where signal was called. Skip over the frame for
1670 `signal' itself. If a frame for `error' follows, skip that,
26631f2b
RS
1671 too. Don't do this when ERROR_SYMBOL is nil, because that
1672 is a memory-full error. */
090a072f 1673 Vsignaling_function = Qnil;
26631f2b 1674 if (backtrace_list && !NILP (error_symbol))
090a072f
GM
1675 {
1676 bp = backtrace_list->next;
1677 if (bp && bp->function && EQ (*bp->function, Qerror))
1678 bp = bp->next;
1679 if (bp && bp->function)
1680 Vsignaling_function = *bp->function;
1681 }
a2ff3819 1682
db9f0278
JB
1683 for (; handlerlist; handlerlist = handlerlist->next)
1684 {
1685 register Lisp_Object clause;
177c0ea7 1686
db9f0278 1687 clause = find_handler_clause (handlerlist->handler, conditions,
f01cbfdd 1688 error_symbol, data);
db9f0278 1689
db9f0278 1690 if (EQ (clause, Qlambda))
82da7701 1691 {
690337b7
KH
1692 /* We can't return values to code which signaled an error, but we
1693 can continue code which has signaled a quit. */
1ea9dec4 1694 if (EQ (real_error_symbol, Qquit))
82da7701
JB
1695 return Qnil;
1696 else
d3e6f8be 1697 error ("Cannot return from the debugger in an error");
82da7701 1698 }
db9f0278 1699
265a9e55 1700 if (!NILP (clause))
db9f0278 1701 {
9d58218c 1702 Lisp_Object unwind_data;
db9f0278 1703 struct handler *h = handlerlist;
9d58218c 1704
db9f0278 1705 handlerlist = allhandlers;
1ea9dec4
RS
1706
1707 if (NILP (error_symbol))
1708 unwind_data = data;
9d58218c
RS
1709 else
1710 unwind_data = Fcons (error_symbol, data);
1711 h->chosen_clause = clause;
1712 unwind_to_catch (h->tag, unwind_data);
db9f0278
JB
1713 }
1714 }
1715
1716 handlerlist = allhandlers;
1717 /* If no handler is present now, try to run the debugger,
1718 and if that fails, throw to top level. */
f01cbfdd 1719 find_handler_clause (Qerror, conditions, error_symbol, data);
c11d3d17
RS
1720 if (catchlist != 0)
1721 Fthrow (Qtop_level, Qt);
1722
1ea9dec4 1723 if (! NILP (error_symbol))
c11d3d17
RS
1724 data = Fcons (error_symbol, data);
1725
1726 string = Ferror_message_string (data);
d5db4077 1727 fatal ("%s", SDATA (string), 0);
db9f0278
JB
1728}
1729
734d55a2
KS
1730/* Internal version of Fsignal that never returns.
1731 Used for anything but Qquit (which can return from Fsignal). */
1732
1733void
1734xsignal (error_symbol, data)
1735 Lisp_Object error_symbol, data;
1736{
1737 Fsignal (error_symbol, data);
1738 abort ();
1739}
1740
1741/* Like xsignal, but takes 0, 1, 2, or 3 args instead of a list. */
1742
1743void
1744xsignal0 (error_symbol)
1745 Lisp_Object error_symbol;
1746{
1747 xsignal (error_symbol, Qnil);
1748}
1749
1750void
1751xsignal1 (error_symbol, arg)
1752 Lisp_Object error_symbol, arg;
1753{
1754 xsignal (error_symbol, list1 (arg));
1755}
1756
1757void
1758xsignal2 (error_symbol, arg1, arg2)
1759 Lisp_Object error_symbol, arg1, arg2;
1760{
1761 xsignal (error_symbol, list2 (arg1, arg2));
1762}
1763
1764void
1765xsignal3 (error_symbol, arg1, arg2, arg3)
1766 Lisp_Object error_symbol, arg1, arg2, arg3;
1767{
1768 xsignal (error_symbol, list3 (arg1, arg2, arg3));
1769}
1770
1771/* Signal `error' with message S, and additional arg ARG.
1772 If ARG is not a genuine list, make it a one-element list. */
1773
1774void
1775signal_error (s, arg)
1776 char *s;
1777 Lisp_Object arg;
1778{
1779 Lisp_Object tortoise, hare;
1780
1781 hare = tortoise = arg;
1782 while (CONSP (hare))
1783 {
1784 hare = XCDR (hare);
1785 if (!CONSP (hare))
1786 break;
1787
1788 hare = XCDR (hare);
1789 tortoise = XCDR (tortoise);
1790
1791 if (EQ (hare, tortoise))
1792 break;
1793 }
1794
1795 if (!NILP (hare))
1796 arg = Fcons (arg, Qnil); /* Make it a list. */
1797
1798 xsignal (Qerror, Fcons (build_string (s), arg));
1799}
1800
1801
e0f24100 1802/* Return nonzero if LIST is a non-nil atom or
128c0f66
RM
1803 a list containing one of CONDITIONS. */
1804
1805static int
1806wants_debugger (list, conditions)
1807 Lisp_Object list, conditions;
1808{
4de86b16 1809 if (NILP (list))
128c0f66
RM
1810 return 0;
1811 if (! CONSP (list))
1812 return 1;
1813
ab67260b 1814 while (CONSP (conditions))
128c0f66 1815 {
ab67260b 1816 Lisp_Object this, tail;
03699b14
KR
1817 this = XCAR (conditions);
1818 for (tail = list; CONSP (tail); tail = XCDR (tail))
1819 if (EQ (XCAR (tail), this))
128c0f66 1820 return 1;
03699b14 1821 conditions = XCDR (conditions);
128c0f66 1822 }
ab67260b 1823 return 0;
128c0f66
RM
1824}
1825
fc950e09
KH
1826/* Return 1 if an error with condition-symbols CONDITIONS,
1827 and described by SIGNAL-DATA, should skip the debugger
1b1acc13 1828 according to debugger-ignored-errors. */
fc950e09
KH
1829
1830static int
1831skip_debugger (conditions, data)
1832 Lisp_Object conditions, data;
1833{
1834 Lisp_Object tail;
1835 int first_string = 1;
1836 Lisp_Object error_message;
1837
17401c97
GM
1838 error_message = Qnil;
1839 for (tail = Vdebug_ignored_errors; CONSP (tail); tail = XCDR (tail))
fc950e09 1840 {
03699b14 1841 if (STRINGP (XCAR (tail)))
fc950e09
KH
1842 {
1843 if (first_string)
1844 {
1845 error_message = Ferror_message_string (data);
1846 first_string = 0;
1847 }
177c0ea7 1848
03699b14 1849 if (fast_string_match (XCAR (tail), error_message) >= 0)
fc950e09
KH
1850 return 1;
1851 }
1852 else
1853 {
1854 Lisp_Object contail;
1855
17401c97 1856 for (contail = conditions; CONSP (contail); contail = XCDR (contail))
03699b14 1857 if (EQ (XCAR (tail), XCAR (contail)))
fc950e09
KH
1858 return 1;
1859 }
1860 }
1861
1862 return 0;
1863}
1864
128c0f66 1865/* Value of Qlambda means we have called debugger and user has continued.
1ea9dec4 1866 There are two ways to pass SIG and DATA:
9b942ebd 1867 = SIG is the error symbol, and DATA is the rest of the data.
1ea9dec4 1868 = SIG is nil, and DATA is (SYMBOL . REST-OF-DATA).
9b942ebd 1869 This is for memory-full errors only.
1ea9dec4 1870
9f5903bb
RS
1871 We need to increase max_specpdl_size temporarily around
1872 anything we do that can push on the specpdl, so as not to get
1873 a second error here in case we're handling specpdl overflow. */
db9f0278
JB
1874
1875static Lisp_Object
f01cbfdd 1876find_handler_clause (handlers, conditions, sig, data)
db9f0278 1877 Lisp_Object handlers, conditions, sig, data;
db9f0278
JB
1878{
1879 register Lisp_Object h;
1880 register Lisp_Object tem;
f01cbfdd
RS
1881 int debugger_called = 0;
1882 int debugger_considered = 0;
db9f0278 1883
f01cbfdd
RS
1884 /* t is used by handlers for all conditions, set up by C code. */
1885 if (EQ (handlers, Qt))
db9f0278 1886 return Qt;
f01cbfdd
RS
1887
1888 /* Don't run the debugger for a memory-full error.
1889 (There is no room in memory to do that!) */
1890 if (NILP (sig))
1891 debugger_considered = 1;
1892
61ede770
RS
1893 /* error is used similarly, but means print an error message
1894 and run the debugger if that is enabled. */
1895 if (EQ (handlers, Qerror)
57a6e758
RS
1896 || !NILP (Vdebug_on_signal)) /* This says call debugger even if
1897 there is a handler. */
db9f0278 1898 {
f01cbfdd 1899 if (!NILP (sig) && wants_debugger (Vstack_trace_on_error, conditions))
88817f3b 1900 {
9f5903bb 1901 max_specpdl_size++;
f01cbfdd 1902 #ifdef PROTOTYPES
88817f3b
RS
1903 internal_with_output_to_temp_buffer ("*Backtrace*",
1904 (Lisp_Object (*) (Lisp_Object)) Fbacktrace,
1905 Qnil);
f01cbfdd 1906 #else
88817f3b
RS
1907 internal_with_output_to_temp_buffer ("*Backtrace*",
1908 Fbacktrace, Qnil);
f01cbfdd 1909 #endif
9f5903bb 1910 max_specpdl_size--;
88817f3b 1911 }
f01cbfdd
RS
1912
1913 if (!debugger_considered)
db9f0278 1914 {
f01cbfdd
RS
1915 debugger_considered = 1;
1916 debugger_called = maybe_call_debugger (conditions, sig, data);
61ede770 1917 }
f01cbfdd 1918
61ede770
RS
1919 /* If there is no handler, return saying whether we ran the debugger. */
1920 if (EQ (handlers, Qerror))
1921 {
1922 if (debugger_called)
9f5903bb 1923 return Qlambda;
61ede770 1924 return Qt;
db9f0278 1925 }
db9f0278 1926 }
f01cbfdd 1927
db9f0278
JB
1928 for (h = handlers; CONSP (h); h = Fcdr (h))
1929 {
5f96776a
RS
1930 Lisp_Object handler, condit;
1931
1932 handler = Fcar (h);
1933 if (!CONSP (handler))
db9f0278 1934 continue;
5f96776a
RS
1935 condit = Fcar (handler);
1936 /* Handle a single condition name in handler HANDLER. */
1937 if (SYMBOLP (condit))
1938 {
1939 tem = Fmemq (Fcar (handler), conditions);
1940 if (!NILP (tem))
1941 return handler;
1942 }
1943 /* Handle a list of condition names in handler HANDLER. */
1944 else if (CONSP (condit))
1945 {
f01cbfdd
RS
1946 Lisp_Object tail;
1947 for (tail = condit; CONSP (tail); tail = XCDR (tail))
5f96776a 1948 {
f01cbfdd 1949 tem = Fmemq (Fcar (tail), conditions);
5f96776a 1950 if (!NILP (tem))
f01cbfdd
RS
1951 {
1952 /* This handler is going to apply.
1953 Does it allow the debugger to run first? */
1954 if (! debugger_considered && !NILP (Fmemq (Qdebug, condit)))
1955 maybe_call_debugger (conditions, sig, data);
1956 return handler;
1957 }
5f96776a
RS
1958 }
1959 }
db9f0278 1960 }
f01cbfdd 1961
db9f0278
JB
1962 return Qnil;
1963}
1964
f01cbfdd
RS
1965/* Call the debugger if calling it is currently enabled for CONDITIONS.
1966 SIG and DATA describe the signal, as in find_handler_clause. */
1967
1968int
1969maybe_call_debugger (conditions, sig, data)
1970 Lisp_Object conditions, sig, data;
1971{
1972 Lisp_Object combined_data;
1973
1974 combined_data = Fcons (sig, data);
1975
1976 if (
1977 /* Don't try to run the debugger with interrupts blocked.
1978 The editing loop would return anyway. */
1979 ! INPUT_BLOCKED_P
1980 /* Does user wants to enter debugger for this kind of error? */
1981 && (EQ (sig, Qquit)
1982 ? debug_on_quit
1983 : wants_debugger (Vdebug_on_error, conditions))
1984 && ! skip_debugger (conditions, combined_data)
1985 /* rms: what's this for? */
1986 && when_entered_debugger < num_nonmacro_input_events)
1987 {
1988 call_debugger (Fcons (Qerror, Fcons (combined_data, Qnil)));
1989 return 1;
1990 }
1991
1992 return 0;
1993}
1994
db9f0278
JB
1995/* dump an error message; called like printf */
1996
1997/* VARARGS 1 */
1998void
1999error (m, a1, a2, a3)
2000 char *m;
9125da08 2001 char *a1, *a2, *a3;
db9f0278
JB
2002{
2003 char buf[200];
9125da08
RS
2004 int size = 200;
2005 int mlen;
2006 char *buffer = buf;
2007 char *args[3];
2008 int allocated = 0;
2009 Lisp_Object string;
2010
2011 args[0] = a1;
2012 args[1] = a2;
2013 args[2] = a3;
2014
2015 mlen = strlen (m);
db9f0278
JB
2016
2017 while (1)
9125da08 2018 {
955f3ff9 2019 int used = doprnt (buffer, size, m, m + mlen, 3, args);
9125da08
RS
2020 if (used < size)
2021 break;
2022 size *= 2;
2023 if (allocated)
2024 buffer = (char *) xrealloc (buffer, size);
5ece1728
RS
2025 else
2026 {
2027 buffer = (char *) xmalloc (size);
2028 allocated = 1;
2029 }
9125da08
RS
2030 }
2031
955f3ff9 2032 string = build_string (buffer);
9125da08 2033 if (allocated)
9ae6734f 2034 xfree (buffer);
9125da08 2035
734d55a2 2036 xsignal1 (Qerror, string);
db9f0278
JB
2037}
2038\f
e72706be 2039DEFUN ("commandp", Fcommandp, Scommandp, 1, 2, 0,
9dbc9081
PJ
2040 doc: /* Non-nil if FUNCTION makes provisions for interactive calling.
2041This means it contains a description for how to read arguments to give it.
2042The value is nil for an invalid function or a symbol with no function
2043definition.
2044
2045Interactively callable functions include strings and vectors (treated
2046as keyboard macros), lambda-expressions that contain a top-level call
2047to `interactive', autoload definitions made by `autoload' with non-nil
2048fourth argument, and some of the built-in functions of Lisp.
2049
e72706be
RS
2050Also, a symbol satisfies `commandp' if its function definition does so.
2051
2052If the optional argument FOR-CALL-INTERACTIVELY is non-nil,
769b4fb2 2053then strings and vectors are not accepted. */)
e72706be
RS
2054 (function, for_call_interactively)
2055 Lisp_Object function, for_call_interactively;
db9f0278
JB
2056{
2057 register Lisp_Object fun;
2058 register Lisp_Object funcar;
52b71f49 2059 Lisp_Object if_prop = Qnil;
db9f0278
JB
2060
2061 fun = function;
2062
52b71f49
SM
2063 fun = indirect_function (fun); /* Check cycles. */
2064 if (NILP (fun) || EQ (fun, Qunbound))
ffd56f97 2065 return Qnil;
db9f0278 2066
52b71f49
SM
2067 /* Check an `interactive-form' property if present, analogous to the
2068 function-documentation property. */
2069 fun = function;
2070 while (SYMBOLP (fun))
2071 {
2072 Lisp_Object tmp = Fget (fun, intern ("interactive-form"));
2073 if (!NILP (tmp))
2074 if_prop = Qt;
2075 fun = Fsymbol_function (fun);
2076 }
2077
db9f0278
JB
2078 /* Emacs primitives are interactive if their DEFUN specifies an
2079 interactive spec. */
90165123 2080 if (SUBRP (fun))
04724b69 2081 return XSUBR (fun)->intspec ? Qt : if_prop;
db9f0278
JB
2082
2083 /* Bytecode objects are interactive if they are long enough to
2084 have an element whose index is COMPILED_INTERACTIVE, which is
2085 where the interactive spec is stored. */
90165123 2086 else if (COMPILEDP (fun))
845975f5 2087 return ((ASIZE (fun) & PSEUDOVECTOR_SIZE_MASK) > COMPILED_INTERACTIVE
52b71f49 2088 ? Qt : if_prop);
db9f0278
JB
2089
2090 /* Strings and vectors are keyboard macros. */
52b71f49 2091 if (STRINGP (fun) || VECTORP (fun))
6e33efc4 2092 return (NILP (for_call_interactively) ? Qt : Qnil);
db9f0278
JB
2093
2094 /* Lists may represent commands. */
2095 if (!CONSP (fun))
2096 return Qnil;
ed16fb98 2097 funcar = XCAR (fun);
db9f0278 2098 if (EQ (funcar, Qlambda))
52b71f49 2099 return !NILP (Fassq (Qinteractive, Fcdr (XCDR (fun)))) ? Qt : if_prop;
db9f0278 2100 if (EQ (funcar, Qautoload))
52b71f49 2101 return !NILP (Fcar (Fcdr (Fcdr (XCDR (fun))))) ? Qt : if_prop;
db9f0278
JB
2102 else
2103 return Qnil;
2104}
2105
2106/* ARGSUSED */
2107DEFUN ("autoload", Fautoload, Sautoload, 2, 5, 0,
9dbc9081
PJ
2108 doc: /* Define FUNCTION to autoload from FILE.
2109FUNCTION is a symbol; FILE is a file name string to pass to `load'.
2110Third arg DOCSTRING is documentation for the function.
2111Fourth arg INTERACTIVE if non-nil says function can be called interactively.
2112Fifth arg TYPE indicates the type of the object:
2113 nil or omitted says FUNCTION is a function,
2114 `keymap' says FUNCTION is really a keymap, and
2115 `macro' or t says FUNCTION is really a macro.
2116Third through fifth args give info about the real definition.
2117They default to nil.
2118If FUNCTION is already defined other than as an autoload,
2119this does nothing and returns nil. */)
2120 (function, file, docstring, interactive, type)
ee9ee63c 2121 Lisp_Object function, file, docstring, interactive, type;
db9f0278
JB
2122{
2123#ifdef NO_ARG_ARRAY
2124 Lisp_Object args[4];
2125#endif
2126
b7826503
PJ
2127 CHECK_SYMBOL (function);
2128 CHECK_STRING (file);
db9f0278
JB
2129
2130 /* If function is defined and not as an autoload, don't override */
2131 if (!EQ (XSYMBOL (function)->function, Qunbound)
90165123 2132 && !(CONSP (XSYMBOL (function)->function)
03699b14 2133 && EQ (XCAR (XSYMBOL (function)->function), Qautoload)))
db9f0278
JB
2134 return Qnil;
2135
7973e637
SM
2136 if (NILP (Vpurify_flag))
2137 /* Only add entries after dumping, because the ones before are
2138 not useful and else we get loads of them from the loaddefs.el. */
2139 LOADHIST_ATTACH (Fcons (Qautoload, function));
2140
db9f0278
JB
2141#ifdef NO_ARG_ARRAY
2142 args[0] = file;
2143 args[1] = docstring;
2144 args[2] = interactive;
ee9ee63c 2145 args[3] = type;
db9f0278
JB
2146
2147 return Ffset (function, Fcons (Qautoload, Flist (4, &args[0])));
2148#else /* NO_ARG_ARRAY */
2149 return Ffset (function, Fcons (Qautoload, Flist (4, &file)));
2150#endif /* not NO_ARG_ARRAY */
2151}
2152
2153Lisp_Object
2154un_autoload (oldqueue)
2155 Lisp_Object oldqueue;
2156{
2157 register Lisp_Object queue, first, second;
2158
2159 /* Queue to unwind is current value of Vautoload_queue.
2160 oldqueue is the shadowed value to leave in Vautoload_queue. */
2161 queue = Vautoload_queue;
2162 Vautoload_queue = oldqueue;
2163 while (CONSP (queue))
2164 {
e509f168 2165 first = XCAR (queue);
db9f0278
JB
2166 second = Fcdr (first);
2167 first = Fcar (first);
47b82df9
RS
2168 if (EQ (first, make_number (0)))
2169 Vfeatures = second;
db9f0278
JB
2170 else
2171 Ffset (first, second);
e509f168 2172 queue = XCDR (queue);
db9f0278
JB
2173 }
2174 return Qnil;
2175}
2176
ca20916b
RS
2177/* Load an autoloaded function.
2178 FUNNAME is the symbol which is the function's name.
2179 FUNDEF is the autoload definition (a list). */
2180
045ba794 2181void
db9f0278
JB
2182do_autoload (fundef, funname)
2183 Lisp_Object fundef, funname;
2184{
aed13378 2185 int count = SPECPDL_INDEX ();
cb81ac97 2186 Lisp_Object fun, queue, first, second;
ca20916b 2187 struct gcpro gcpro1, gcpro2, gcpro3;
db9f0278 2188
aea6173f
RS
2189 /* This is to make sure that loadup.el gives a clear picture
2190 of what files are preloaded and when. */
ab4db096
RS
2191 if (! NILP (Vpurify_flag))
2192 error ("Attempt to autoload %s while preparing to dump",
d5db4077 2193 SDATA (SYMBOL_NAME (funname)));
ab4db096 2194
db9f0278 2195 fun = funname;
b7826503 2196 CHECK_SYMBOL (funname);
ca20916b 2197 GCPRO3 (fun, funname, fundef);
db9f0278 2198
f87740dc 2199 /* Preserve the match data. */
89f2614d 2200 record_unwind_save_match_data ();
177c0ea7 2201
f87740dc 2202 /* Value saved here is to be restored into Vautoload_queue. */
db9f0278
JB
2203 record_unwind_protect (un_autoload, Vautoload_queue);
2204 Vautoload_queue = Qt;
4aac2302 2205 Fload (Fcar (Fcdr (fundef)), Qnil, noninteractive ? Qt : Qnil, Qnil, Qt);
2a49b6e5 2206
f87740dc 2207 /* Save the old autoloads, in case we ever do an unload. */
2a49b6e5
RS
2208 queue = Vautoload_queue;
2209 while (CONSP (queue))
2210 {
e509f168 2211 first = XCAR (queue);
2a49b6e5
RS
2212 second = Fcdr (first);
2213 first = Fcar (first);
5739ce6b 2214
fe5195e8 2215 if (SYMBOLP (first) && CONSP (second) && EQ (XCAR (second), Qautoload))
e509f168 2216 Fput (first, Qautoload, (XCDR (second)));
5739ce6b 2217
e509f168 2218 queue = XCDR (queue);
2a49b6e5
RS
2219 }
2220
db9f0278
JB
2221 /* Once loading finishes, don't undo it. */
2222 Vautoload_queue = Qt;
2223 unbind_to (count, Qnil);
2224
a7f96a35 2225 fun = Findirect_function (fun, Qnil);
ffd56f97 2226
76c2b0cc 2227 if (!NILP (Fequal (fun, fundef)))
db9f0278 2228 error ("Autoloading failed to define function %s",
d5db4077 2229 SDATA (SYMBOL_NAME (funname)));
ca20916b 2230 UNGCPRO;
db9f0278 2231}
4c576a83 2232
db9f0278
JB
2233\f
2234DEFUN ("eval", Feval, Seval, 1, 1, 0,
9dbc9081
PJ
2235 doc: /* Evaluate FORM and return its value. */)
2236 (form)
db9f0278
JB
2237 Lisp_Object form;
2238{
2239 Lisp_Object fun, val, original_fun, original_args;
2240 Lisp_Object funcar;
2241 struct backtrace backtrace;
2242 struct gcpro gcpro1, gcpro2, gcpro3;
2243
df470e3b 2244 if (handling_signal)
48f8dfa3 2245 abort ();
177c0ea7 2246
90165123 2247 if (SYMBOLP (form))
2b9bde76 2248 return Fsymbol_value (form);
db9f0278
JB
2249 if (!CONSP (form))
2250 return form;
2251
2252 QUIT;
ee830945
RS
2253 if ((consing_since_gc > gc_cons_threshold
2254 && consing_since_gc > gc_relative_threshold)
2255 ||
2256 (!NILP (Vmemory_full) && consing_since_gc > memory_full_cons_threshold))
db9f0278
JB
2257 {
2258 GCPRO1 (form);
2259 Fgarbage_collect ();
2260 UNGCPRO;
2261 }
2262
2263 if (++lisp_eval_depth > max_lisp_eval_depth)
2264 {
2265 if (max_lisp_eval_depth < 100)
2266 max_lisp_eval_depth = 100;
2267 if (lisp_eval_depth > max_lisp_eval_depth)
921baa95 2268 error ("Lisp nesting exceeds `max-lisp-eval-depth'");
db9f0278
JB
2269 }
2270
2271 original_fun = Fcar (form);
2272 original_args = Fcdr (form);
2273
2274 backtrace.next = backtrace_list;
2275 backtrace_list = &backtrace;
2276 backtrace.function = &original_fun; /* This also protects them from gc */
2277 backtrace.args = &original_args;
2278 backtrace.nargs = UNEVALLED;
2279 backtrace.evalargs = 1;
2280 backtrace.debug_on_exit = 0;
2281
2282 if (debug_on_next_call)
2283 do_debug_on_call (Qt);
2284
2285 /* At this point, only original_fun and original_args
2286 have values that will be used below */
2287 retry:
8788120f
KS
2288
2289 /* Optimize for no indirection. */
2290 fun = original_fun;
2291 if (SYMBOLP (fun) && !EQ (fun, Qunbound)
2292 && (fun = XSYMBOL (fun)->function, SYMBOLP (fun)))
2293 fun = indirect_function (fun);
db9f0278 2294
90165123 2295 if (SUBRP (fun))
db9f0278
JB
2296 {
2297 Lisp_Object numargs;
166c822d 2298 Lisp_Object argvals[8];
db9f0278
JB
2299 Lisp_Object args_left;
2300 register int i, maxargs;
2301
2302 args_left = original_args;
2303 numargs = Flength (args_left);
2304
c1788fbc
RS
2305 CHECK_CONS_LIST ();
2306
db9f0278
JB
2307 if (XINT (numargs) < XSUBR (fun)->min_args ||
2308 (XSUBR (fun)->max_args >= 0 && XSUBR (fun)->max_args < XINT (numargs)))
734d55a2 2309 xsignal2 (Qwrong_number_of_arguments, original_fun, numargs);
db9f0278
JB
2310
2311 if (XSUBR (fun)->max_args == UNEVALLED)
2312 {
2313 backtrace.evalargs = 0;
2314 val = (*XSUBR (fun)->function) (args_left);
2315 goto done;
2316 }
2317
2318 if (XSUBR (fun)->max_args == MANY)
2319 {
2320 /* Pass a vector of evaluated arguments */
2321 Lisp_Object *vals;
2322 register int argnum = 0;
2323
2324 vals = (Lisp_Object *) alloca (XINT (numargs) * sizeof (Lisp_Object));
2325
2326 GCPRO3 (args_left, fun, fun);
2327 gcpro3.var = vals;
2328 gcpro3.nvars = 0;
2329
265a9e55 2330 while (!NILP (args_left))
db9f0278
JB
2331 {
2332 vals[argnum++] = Feval (Fcar (args_left));
2333 args_left = Fcdr (args_left);
2334 gcpro3.nvars = argnum;
2335 }
db9f0278
JB
2336
2337 backtrace.args = vals;
2338 backtrace.nargs = XINT (numargs);
2339
2340 val = (*XSUBR (fun)->function) (XINT (numargs), vals);
a6e3fa71 2341 UNGCPRO;
db9f0278
JB
2342 goto done;
2343 }
2344
2345 GCPRO3 (args_left, fun, fun);
2346 gcpro3.var = argvals;
2347 gcpro3.nvars = 0;
2348
2349 maxargs = XSUBR (fun)->max_args;
2350 for (i = 0; i < maxargs; args_left = Fcdr (args_left))
2351 {
2352 argvals[i] = Feval (Fcar (args_left));
2353 gcpro3.nvars = ++i;
2354 }
2355
2356 UNGCPRO;
2357
2358 backtrace.args = argvals;
2359 backtrace.nargs = XINT (numargs);
2360
2361 switch (i)
2362 {
2363 case 0:
2364 val = (*XSUBR (fun)->function) ();
2365 goto done;
2366 case 1:
2367 val = (*XSUBR (fun)->function) (argvals[0]);
2368 goto done;
2369 case 2:
2370 val = (*XSUBR (fun)->function) (argvals[0], argvals[1]);
2371 goto done;
2372 case 3:
2373 val = (*XSUBR (fun)->function) (argvals[0], argvals[1],
2374 argvals[2]);
2375 goto done;
2376 case 4:
2377 val = (*XSUBR (fun)->function) (argvals[0], argvals[1],
2378 argvals[2], argvals[3]);
2379 goto done;
2380 case 5:
2381 val = (*XSUBR (fun)->function) (argvals[0], argvals[1], argvals[2],
2382 argvals[3], argvals[4]);
2383 goto done;
2384 case 6:
2385 val = (*XSUBR (fun)->function) (argvals[0], argvals[1], argvals[2],
2386 argvals[3], argvals[4], argvals[5]);
2387 goto done;
15c65264
RS
2388 case 7:
2389 val = (*XSUBR (fun)->function) (argvals[0], argvals[1], argvals[2],
2390 argvals[3], argvals[4], argvals[5],
2391 argvals[6]);
2392 goto done;
db9f0278 2393
166c822d
KH
2394 case 8:
2395 val = (*XSUBR (fun)->function) (argvals[0], argvals[1], argvals[2],
2396 argvals[3], argvals[4], argvals[5],
2397 argvals[6], argvals[7]);
2398 goto done;
2399
db9f0278 2400 default:
08564963
JB
2401 /* Someone has created a subr that takes more arguments than
2402 is supported by this code. We need to either rewrite the
2403 subr to use a different argument protocol, or add more
2404 cases to this switch. */
2405 abort ();
db9f0278
JB
2406 }
2407 }
90165123 2408 if (COMPILEDP (fun))
db9f0278
JB
2409 val = apply_lambda (fun, original_args, 1);
2410 else
2411 {
8788120f 2412 if (EQ (fun, Qunbound))
734d55a2 2413 xsignal1 (Qvoid_function, original_fun);
db9f0278 2414 if (!CONSP (fun))
734d55a2
KS
2415 xsignal1 (Qinvalid_function, original_fun);
2416 funcar = XCAR (fun);
90165123 2417 if (!SYMBOLP (funcar))
734d55a2 2418 xsignal1 (Qinvalid_function, original_fun);
db9f0278
JB
2419 if (EQ (funcar, Qautoload))
2420 {
2421 do_autoload (fun, original_fun);
2422 goto retry;
2423 }
2424 if (EQ (funcar, Qmacro))
2425 val = Feval (apply1 (Fcdr (fun), original_args));
2426 else if (EQ (funcar, Qlambda))
2427 val = apply_lambda (fun, original_args, 1);
db9f0278 2428 else
734d55a2 2429 xsignal1 (Qinvalid_function, original_fun);
db9f0278
JB
2430 }
2431 done:
c1788fbc
RS
2432 CHECK_CONS_LIST ();
2433
db9f0278
JB
2434 lisp_eval_depth--;
2435 if (backtrace.debug_on_exit)
2436 val = call_debugger (Fcons (Qexit, Fcons (val, Qnil)));
2437 backtrace_list = backtrace.next;
824eb35e 2438
db9f0278
JB
2439 return val;
2440}
2441\f
2442DEFUN ("apply", Fapply, Sapply, 2, MANY, 0,
9dbc9081
PJ
2443 doc: /* Call FUNCTION with our remaining args, using our last arg as list of args.
2444Then return the value FUNCTION returns.
2445Thus, (apply '+ 1 2 '(3 4)) returns 10.
2446usage: (apply FUNCTION &rest ARGUMENTS) */)
2447 (nargs, args)
db9f0278
JB
2448 int nargs;
2449 Lisp_Object *args;
2450{
2451 register int i, numargs;
2452 register Lisp_Object spread_arg;
2453 register Lisp_Object *funcall_args;
db9f0278 2454 Lisp_Object fun;
96d44c64 2455 struct gcpro gcpro1;
db9f0278
JB
2456
2457 fun = args [0];
2458 funcall_args = 0;
2459 spread_arg = args [nargs - 1];
b7826503 2460 CHECK_LIST (spread_arg);
177c0ea7 2461
db9f0278
JB
2462 numargs = XINT (Flength (spread_arg));
2463
2464 if (numargs == 0)
2465 return Ffuncall (nargs - 1, args);
2466 else if (numargs == 1)
2467 {
03699b14 2468 args [nargs - 1] = XCAR (spread_arg);
db9f0278
JB
2469 return Ffuncall (nargs, args);
2470 }
2471
a6e3fa71 2472 numargs += nargs - 2;
db9f0278 2473
8788120f
KS
2474 /* Optimize for no indirection. */
2475 if (SYMBOLP (fun) && !EQ (fun, Qunbound)
2476 && (fun = XSYMBOL (fun)->function, SYMBOLP (fun)))
2477 fun = indirect_function (fun);
ffd56f97 2478 if (EQ (fun, Qunbound))
db9f0278 2479 {
ffd56f97
JB
2480 /* Let funcall get the error */
2481 fun = args[0];
2482 goto funcall;
db9f0278
JB
2483 }
2484
90165123 2485 if (SUBRP (fun))
db9f0278
JB
2486 {
2487 if (numargs < XSUBR (fun)->min_args
2488 || (XSUBR (fun)->max_args >= 0 && XSUBR (fun)->max_args < numargs))
2489 goto funcall; /* Let funcall get the error */
2490 else if (XSUBR (fun)->max_args > numargs)
2491 {
2492 /* Avoid making funcall cons up a yet another new vector of arguments
2493 by explicitly supplying nil's for optional values */
2494 funcall_args = (Lisp_Object *) alloca ((1 + XSUBR (fun)->max_args)
2495 * sizeof (Lisp_Object));
2496 for (i = numargs; i < XSUBR (fun)->max_args;)
2497 funcall_args[++i] = Qnil;
96d44c64
SM
2498 GCPRO1 (*funcall_args);
2499 gcpro1.nvars = 1 + XSUBR (fun)->max_args;
db9f0278
JB
2500 }
2501 }
2502 funcall:
2503 /* We add 1 to numargs because funcall_args includes the
2504 function itself as well as its arguments. */
2505 if (!funcall_args)
a6e3fa71
JB
2506 {
2507 funcall_args = (Lisp_Object *) alloca ((1 + numargs)
2508 * sizeof (Lisp_Object));
96d44c64
SM
2509 GCPRO1 (*funcall_args);
2510 gcpro1.nvars = 1 + numargs;
a6e3fa71
JB
2511 }
2512
db9f0278
JB
2513 bcopy (args, funcall_args, nargs * sizeof (Lisp_Object));
2514 /* Spread the last arg we got. Its first element goes in
2515 the slot that it used to occupy, hence this value of I. */
2516 i = nargs - 1;
265a9e55 2517 while (!NILP (spread_arg))
db9f0278 2518 {
03699b14
KR
2519 funcall_args [i++] = XCAR (spread_arg);
2520 spread_arg = XCDR (spread_arg);
db9f0278 2521 }
a6e3fa71 2522
96d44c64
SM
2523 /* By convention, the caller needs to gcpro Ffuncall's args. */
2524 RETURN_UNGCPRO (Ffuncall (gcpro1.nvars, funcall_args));
db9f0278
JB
2525}
2526\f
ff936e53
SM
2527/* Run hook variables in various ways. */
2528
2529enum run_hooks_condition {to_completion, until_success, until_failure};
2901f1d1
SM
2530static Lisp_Object run_hook_with_args P_ ((int, Lisp_Object *,
2531 enum run_hooks_condition));
ff936e53 2532
8b5176cd 2533DEFUN ("run-hooks", Frun_hooks, Srun_hooks, 0, MANY, 0,
9f685258 2534 doc: /* Run each hook in HOOKS.
9dbc9081
PJ
2535Each argument should be a symbol, a hook variable.
2536These symbols are processed in the order specified.
2537If a hook symbol has a non-nil value, that value may be a function
2538or a list of functions to be called to run the hook.
2539If the value is a function, it is called with no arguments.
2540If it is a list, the elements are called, in order, with no arguments.
2541
9f685258
LK
2542Major modes should not use this function directly to run their mode
2543hook; they should use `run-mode-hooks' instead.
2544
72e85d5d
RS
2545Do not use `make-local-variable' to make a hook variable buffer-local.
2546Instead, use `add-hook' and specify t for the LOCAL argument.
9dbc9081
PJ
2547usage: (run-hooks &rest HOOKS) */)
2548 (nargs, args)
ff936e53
SM
2549 int nargs;
2550 Lisp_Object *args;
2551{
2552 Lisp_Object hook[1];
2553 register int i;
2554
2555 for (i = 0; i < nargs; i++)
2556 {
2557 hook[0] = args[i];
2558 run_hook_with_args (1, hook, to_completion);
2559 }
2560
2561 return Qnil;
2562}
177c0ea7 2563
a0d76c27 2564DEFUN ("run-hook-with-args", Frun_hook_with_args,
9dbc9081
PJ
2565 Srun_hook_with_args, 1, MANY, 0,
2566 doc: /* Run HOOK with the specified arguments ARGS.
2567HOOK should be a symbol, a hook variable. If HOOK has a non-nil
2568value, that value may be a function or a list of functions to be
2569called to run the hook. If the value is a function, it is called with
2570the given arguments and its return value is returned. If it is a list
2571of functions, those functions are called, in order,
2572with the given arguments ARGS.
d5e2c90c 2573It is best not to depend on the value returned by `run-hook-with-args',
9dbc9081
PJ
2574as that may change.
2575
72e85d5d
RS
2576Do not use `make-local-variable' to make a hook variable buffer-local.
2577Instead, use `add-hook' and specify t for the LOCAL argument.
9dbc9081
PJ
2578usage: (run-hook-with-args HOOK &rest ARGS) */)
2579 (nargs, args)
ff936e53
SM
2580 int nargs;
2581 Lisp_Object *args;
2582{
2583 return run_hook_with_args (nargs, args, to_completion);
2584}
2585
a0d76c27 2586DEFUN ("run-hook-with-args-until-success", Frun_hook_with_args_until_success,
9dbc9081
PJ
2587 Srun_hook_with_args_until_success, 1, MANY, 0,
2588 doc: /* Run HOOK with the specified arguments ARGS.
d5e2c90c
RS
2589HOOK should be a symbol, a hook variable. If HOOK has a non-nil
2590value, that value may be a function or a list of functions to be
2591called to run the hook. If the value is a function, it is called with
2592the given arguments and its return value is returned.
2593If it is a list of functions, those functions are called, in order,
2594with the given arguments ARGS, until one of them
9dbc9081 2595returns a non-nil value. Then we return that value.
d5e2c90c 2596However, if they all return nil, we return nil.
9dbc9081 2597
72e85d5d
RS
2598Do not use `make-local-variable' to make a hook variable buffer-local.
2599Instead, use `add-hook' and specify t for the LOCAL argument.
9dbc9081
PJ
2600usage: (run-hook-with-args-until-success HOOK &rest ARGS) */)
2601 (nargs, args)
b0b667cb
KH
2602 int nargs;
2603 Lisp_Object *args;
2604{
ff936e53
SM
2605 return run_hook_with_args (nargs, args, until_success);
2606}
2607
a0d76c27 2608DEFUN ("run-hook-with-args-until-failure", Frun_hook_with_args_until_failure,
9dbc9081
PJ
2609 Srun_hook_with_args_until_failure, 1, MANY, 0,
2610 doc: /* Run HOOK with the specified arguments ARGS.
d5e2c90c
RS
2611HOOK should be a symbol, a hook variable. If HOOK has a non-nil
2612value, that value may be a function or a list of functions to be
2613called to run the hook. If the value is a function, it is called with
2614the given arguments and its return value is returned.
2615If it is a list of functions, those functions are called, in order,
2616with the given arguments ARGS, until one of them returns nil.
2617Then we return nil. However, if they all return non-nil, we return non-nil.
9dbc9081 2618
72e85d5d
RS
2619Do not use `make-local-variable' to make a hook variable buffer-local.
2620Instead, use `add-hook' and specify t for the LOCAL argument.
9dbc9081
PJ
2621usage: (run-hook-with-args-until-failure HOOK &rest ARGS) */)
2622 (nargs, args)
ff936e53
SM
2623 int nargs;
2624 Lisp_Object *args;
2625{
2626 return run_hook_with_args (nargs, args, until_failure);
2627}
2628
c933ea05
RS
2629/* ARGS[0] should be a hook symbol.
2630 Call each of the functions in the hook value, passing each of them
2631 as arguments all the rest of ARGS (all NARGS - 1 elements).
2632 COND specifies a condition to test after each call
2633 to decide whether to stop.
2634 The caller (or its caller, etc) must gcpro all of ARGS,
2635 except that it isn't necessary to gcpro ARGS[0]. */
2636
2901f1d1 2637static Lisp_Object
ff936e53
SM
2638run_hook_with_args (nargs, args, cond)
2639 int nargs;
2640 Lisp_Object *args;
2641 enum run_hooks_condition cond;
2642{
2643 Lisp_Object sym, val, ret;
fada05d6
KH
2644 Lisp_Object globals;
2645 struct gcpro gcpro1, gcpro2, gcpro3;
b0b667cb 2646
f029ca5f
RS
2647 /* If we are dying or still initializing,
2648 don't do anything--it would probably crash if we tried. */
2649 if (NILP (Vrun_hooks))
caff32a7 2650 return Qnil;
f029ca5f 2651
b0b667cb 2652 sym = args[0];
aa681b51 2653 val = find_symbol_value (sym);
ff936e53
SM
2654 ret = (cond == until_failure ? Qt : Qnil);
2655
b0b667cb 2656 if (EQ (val, Qunbound) || NILP (val))
ff936e53 2657 return ret;
03699b14 2658 else if (!CONSP (val) || EQ (XCAR (val), Qlambda))
b0b667cb
KH
2659 {
2660 args[0] = val;
2661 return Ffuncall (nargs, args);
2662 }
2663 else
2664 {
fada05d6
KH
2665 globals = Qnil;
2666 GCPRO3 (sym, val, globals);
cb9d21f8 2667
ff936e53
SM
2668 for (;
2669 CONSP (val) && ((cond == to_completion)
2670 || (cond == until_success ? NILP (ret)
2671 : !NILP (ret)));
03699b14 2672 val = XCDR (val))
b0b667cb 2673 {
03699b14 2674 if (EQ (XCAR (val), Qt))
b0b667cb
KH
2675 {
2676 /* t indicates this hook has a local binding;
2677 it means to run the global binding too. */
b0b667cb 2678
ff936e53
SM
2679 for (globals = Fdefault_value (sym);
2680 CONSP (globals) && ((cond == to_completion)
2681 || (cond == until_success ? NILP (ret)
2682 : !NILP (ret)));
03699b14 2683 globals = XCDR (globals))
b0b667cb 2684 {
03699b14 2685 args[0] = XCAR (globals);
77d92e05
RS
2686 /* In a global value, t should not occur. If it does, we
2687 must ignore it to avoid an endless loop. */
2688 if (!EQ (args[0], Qt))
2689 ret = Ffuncall (nargs, args);
b0b667cb
KH
2690 }
2691 }
2692 else
2693 {
03699b14 2694 args[0] = XCAR (val);
ff936e53 2695 ret = Ffuncall (nargs, args);
b0b667cb
KH
2696 }
2697 }
cb9d21f8
RS
2698
2699 UNGCPRO;
ff936e53 2700 return ret;
b0b667cb
KH
2701 }
2702}
c933ea05
RS
2703
2704/* Run a hook symbol ARGS[0], but use FUNLIST instead of the actual
2705 present value of that symbol.
2706 Call each element of FUNLIST,
2707 passing each of them the rest of ARGS.
2708 The caller (or its caller, etc) must gcpro all of ARGS,
2709 except that it isn't necessary to gcpro ARGS[0]. */
2710
2711Lisp_Object
2712run_hook_list_with_args (funlist, nargs, args)
2713 Lisp_Object funlist;
2714 int nargs;
2715 Lisp_Object *args;
2716{
2717 Lisp_Object sym;
2718 Lisp_Object val;
fada05d6
KH
2719 Lisp_Object globals;
2720 struct gcpro gcpro1, gcpro2, gcpro3;
c933ea05
RS
2721
2722 sym = args[0];
fada05d6
KH
2723 globals = Qnil;
2724 GCPRO3 (sym, val, globals);
c933ea05 2725
03699b14 2726 for (val = funlist; CONSP (val); val = XCDR (val))
c933ea05 2727 {
03699b14 2728 if (EQ (XCAR (val), Qt))
c933ea05
RS
2729 {
2730 /* t indicates this hook has a local binding;
2731 it means to run the global binding too. */
c933ea05
RS
2732
2733 for (globals = Fdefault_value (sym);
2734 CONSP (globals);
03699b14 2735 globals = XCDR (globals))
c933ea05 2736 {
03699b14 2737 args[0] = XCAR (globals);
77d92e05
RS
2738 /* In a global value, t should not occur. If it does, we
2739 must ignore it to avoid an endless loop. */
2740 if (!EQ (args[0], Qt))
2741 Ffuncall (nargs, args);
c933ea05
RS
2742 }
2743 }
2744 else
2745 {
03699b14 2746 args[0] = XCAR (val);
c933ea05
RS
2747 Ffuncall (nargs, args);
2748 }
2749 }
2750 UNGCPRO;
2751 return Qnil;
2752}
7d48558f
RS
2753
2754/* Run the hook HOOK, giving each function the two args ARG1 and ARG2. */
2755
2756void
2757run_hook_with_args_2 (hook, arg1, arg2)
2758 Lisp_Object hook, arg1, arg2;
2759{
2760 Lisp_Object temp[3];
2761 temp[0] = hook;
2762 temp[1] = arg1;
2763 temp[2] = arg2;
2764
2765 Frun_hook_with_args (3, temp);
2766}
ff936e53 2767\f
db9f0278
JB
2768/* Apply fn to arg */
2769Lisp_Object
2770apply1 (fn, arg)
2771 Lisp_Object fn, arg;
2772{
a6e3fa71
JB
2773 struct gcpro gcpro1;
2774
2775 GCPRO1 (fn);
265a9e55 2776 if (NILP (arg))
a6e3fa71
JB
2777 RETURN_UNGCPRO (Ffuncall (1, &fn));
2778 gcpro1.nvars = 2;
db9f0278
JB
2779#ifdef NO_ARG_ARRAY
2780 {
2781 Lisp_Object args[2];
2782 args[0] = fn;
2783 args[1] = arg;
a6e3fa71
JB
2784 gcpro1.var = args;
2785 RETURN_UNGCPRO (Fapply (2, args));
db9f0278
JB
2786 }
2787#else /* not NO_ARG_ARRAY */
a6e3fa71 2788 RETURN_UNGCPRO (Fapply (2, &fn));
db9f0278
JB
2789#endif /* not NO_ARG_ARRAY */
2790}
2791
2792/* Call function fn on no arguments */
2793Lisp_Object
2794call0 (fn)
2795 Lisp_Object fn;
2796{
a6e3fa71
JB
2797 struct gcpro gcpro1;
2798
2799 GCPRO1 (fn);
2800 RETURN_UNGCPRO (Ffuncall (1, &fn));
db9f0278
JB
2801}
2802
15285f9f 2803/* Call function fn with 1 argument arg1 */
db9f0278
JB
2804/* ARGSUSED */
2805Lisp_Object
15285f9f
RS
2806call1 (fn, arg1)
2807 Lisp_Object fn, arg1;
db9f0278 2808{
a6e3fa71 2809 struct gcpro gcpro1;
db9f0278 2810#ifdef NO_ARG_ARRAY
177c0ea7 2811 Lisp_Object args[2];
a6e3fa71 2812
db9f0278 2813 args[0] = fn;
15285f9f 2814 args[1] = arg1;
a6e3fa71
JB
2815 GCPRO1 (args[0]);
2816 gcpro1.nvars = 2;
2817 RETURN_UNGCPRO (Ffuncall (2, args));
db9f0278 2818#else /* not NO_ARG_ARRAY */
a6e3fa71
JB
2819 GCPRO1 (fn);
2820 gcpro1.nvars = 2;
2821 RETURN_UNGCPRO (Ffuncall (2, &fn));
db9f0278
JB
2822#endif /* not NO_ARG_ARRAY */
2823}
2824
15285f9f 2825/* Call function fn with 2 arguments arg1, arg2 */
db9f0278
JB
2826/* ARGSUSED */
2827Lisp_Object
15285f9f
RS
2828call2 (fn, arg1, arg2)
2829 Lisp_Object fn, arg1, arg2;
db9f0278 2830{
a6e3fa71 2831 struct gcpro gcpro1;
db9f0278
JB
2832#ifdef NO_ARG_ARRAY
2833 Lisp_Object args[3];
2834 args[0] = fn;
15285f9f
RS
2835 args[1] = arg1;
2836 args[2] = arg2;
a6e3fa71
JB
2837 GCPRO1 (args[0]);
2838 gcpro1.nvars = 3;
2839 RETURN_UNGCPRO (Ffuncall (3, args));
db9f0278 2840#else /* not NO_ARG_ARRAY */
a6e3fa71
JB
2841 GCPRO1 (fn);
2842 gcpro1.nvars = 3;
2843 RETURN_UNGCPRO (Ffuncall (3, &fn));
db9f0278
JB
2844#endif /* not NO_ARG_ARRAY */
2845}
2846
15285f9f 2847/* Call function fn with 3 arguments arg1, arg2, arg3 */
db9f0278
JB
2848/* ARGSUSED */
2849Lisp_Object
15285f9f
RS
2850call3 (fn, arg1, arg2, arg3)
2851 Lisp_Object fn, arg1, arg2, arg3;
db9f0278 2852{
a6e3fa71 2853 struct gcpro gcpro1;
db9f0278
JB
2854#ifdef NO_ARG_ARRAY
2855 Lisp_Object args[4];
2856 args[0] = fn;
15285f9f
RS
2857 args[1] = arg1;
2858 args[2] = arg2;
2859 args[3] = arg3;
a6e3fa71
JB
2860 GCPRO1 (args[0]);
2861 gcpro1.nvars = 4;
2862 RETURN_UNGCPRO (Ffuncall (4, args));
db9f0278 2863#else /* not NO_ARG_ARRAY */
a6e3fa71
JB
2864 GCPRO1 (fn);
2865 gcpro1.nvars = 4;
2866 RETURN_UNGCPRO (Ffuncall (4, &fn));
db9f0278
JB
2867#endif /* not NO_ARG_ARRAY */
2868}
2869
15285f9f 2870/* Call function fn with 4 arguments arg1, arg2, arg3, arg4 */
a5a44b91
JB
2871/* ARGSUSED */
2872Lisp_Object
15285f9f
RS
2873call4 (fn, arg1, arg2, arg3, arg4)
2874 Lisp_Object fn, arg1, arg2, arg3, arg4;
a5a44b91
JB
2875{
2876 struct gcpro gcpro1;
2877#ifdef NO_ARG_ARRAY
2878 Lisp_Object args[5];
2879 args[0] = fn;
15285f9f
RS
2880 args[1] = arg1;
2881 args[2] = arg2;
2882 args[3] = arg3;
2883 args[4] = arg4;
a5a44b91
JB
2884 GCPRO1 (args[0]);
2885 gcpro1.nvars = 5;
2886 RETURN_UNGCPRO (Ffuncall (5, args));
2887#else /* not NO_ARG_ARRAY */
2888 GCPRO1 (fn);
2889 gcpro1.nvars = 5;
2890 RETURN_UNGCPRO (Ffuncall (5, &fn));
2891#endif /* not NO_ARG_ARRAY */
2892}
2893
15285f9f
RS
2894/* Call function fn with 5 arguments arg1, arg2, arg3, arg4, arg5 */
2895/* ARGSUSED */
2896Lisp_Object
2897call5 (fn, arg1, arg2, arg3, arg4, arg5)
2898 Lisp_Object fn, arg1, arg2, arg3, arg4, arg5;
2899{
2900 struct gcpro gcpro1;
2901#ifdef NO_ARG_ARRAY
2902 Lisp_Object args[6];
2903 args[0] = fn;
2904 args[1] = arg1;
2905 args[2] = arg2;
2906 args[3] = arg3;
2907 args[4] = arg4;
2908 args[5] = arg5;
2909 GCPRO1 (args[0]);
2910 gcpro1.nvars = 6;
2911 RETURN_UNGCPRO (Ffuncall (6, args));
2912#else /* not NO_ARG_ARRAY */
2913 GCPRO1 (fn);
2914 gcpro1.nvars = 6;
2915 RETURN_UNGCPRO (Ffuncall (6, &fn));
2916#endif /* not NO_ARG_ARRAY */
2917}
2918
2919/* Call function fn with 6 arguments arg1, arg2, arg3, arg4, arg5, arg6 */
2920/* ARGSUSED */
2921Lisp_Object
2922call6 (fn, arg1, arg2, arg3, arg4, arg5, arg6)
2923 Lisp_Object fn, arg1, arg2, arg3, arg4, arg5, arg6;
2924{
2925 struct gcpro gcpro1;
2926#ifdef NO_ARG_ARRAY
2927 Lisp_Object args[7];
2928 args[0] = fn;
2929 args[1] = arg1;
2930 args[2] = arg2;
2931 args[3] = arg3;
2932 args[4] = arg4;
2933 args[5] = arg5;
2934 args[6] = arg6;
2935 GCPRO1 (args[0]);
2936 gcpro1.nvars = 7;
2937 RETURN_UNGCPRO (Ffuncall (7, args));
2938#else /* not NO_ARG_ARRAY */
2939 GCPRO1 (fn);
2940 gcpro1.nvars = 7;
2941 RETURN_UNGCPRO (Ffuncall (7, &fn));
2942#endif /* not NO_ARG_ARRAY */
2943}
2944
6c2ef893
RS
2945/* The caller should GCPRO all the elements of ARGS. */
2946
db9f0278 2947DEFUN ("funcall", Ffuncall, Sfuncall, 1, MANY, 0,
9dbc9081
PJ
2948 doc: /* Call first argument as a function, passing remaining arguments to it.
2949Return the value that function returns.
2950Thus, (funcall 'cons 'x 'y) returns (x . y).
2951usage: (funcall FUNCTION &rest ARGUMENTS) */)
2952 (nargs, args)
db9f0278
JB
2953 int nargs;
2954 Lisp_Object *args;
2955{
8788120f 2956 Lisp_Object fun, original_fun;
db9f0278
JB
2957 Lisp_Object funcar;
2958 int numargs = nargs - 1;
2959 Lisp_Object lisp_numargs;
2960 Lisp_Object val;
2961 struct backtrace backtrace;
2962 register Lisp_Object *internal_args;
2963 register int i;
2964
2965 QUIT;
ee830945
RS
2966 if ((consing_since_gc > gc_cons_threshold
2967 && consing_since_gc > gc_relative_threshold)
2968 ||
2969 (!NILP (Vmemory_full) && consing_since_gc > memory_full_cons_threshold))
a6e3fa71 2970 Fgarbage_collect ();
db9f0278
JB
2971
2972 if (++lisp_eval_depth > max_lisp_eval_depth)
2973 {
2974 if (max_lisp_eval_depth < 100)
2975 max_lisp_eval_depth = 100;
2976 if (lisp_eval_depth > max_lisp_eval_depth)
921baa95 2977 error ("Lisp nesting exceeds `max-lisp-eval-depth'");
db9f0278
JB
2978 }
2979
2980 backtrace.next = backtrace_list;
2981 backtrace_list = &backtrace;
2982 backtrace.function = &args[0];
2983 backtrace.args = &args[1];
2984 backtrace.nargs = nargs - 1;
2985 backtrace.evalargs = 0;
2986 backtrace.debug_on_exit = 0;
2987
2988 if (debug_on_next_call)
2989 do_debug_on_call (Qlambda);
2990
fff3ff9c
KS
2991 CHECK_CONS_LIST ();
2992
8788120f
KS
2993 original_fun = args[0];
2994
db9f0278
JB
2995 retry:
2996
8788120f
KS
2997 /* Optimize for no indirection. */
2998 fun = original_fun;
2999 if (SYMBOLP (fun) && !EQ (fun, Qunbound)
3000 && (fun = XSYMBOL (fun)->function, SYMBOLP (fun)))
3001 fun = indirect_function (fun);
db9f0278 3002
90165123 3003 if (SUBRP (fun))
db9f0278 3004 {
fff3ff9c 3005 if (numargs < XSUBR (fun)->min_args
db9f0278
JB
3006 || (XSUBR (fun)->max_args >= 0 && XSUBR (fun)->max_args < numargs))
3007 {
a631e24c 3008 XSETFASTINT (lisp_numargs, numargs);
734d55a2 3009 xsignal2 (Qwrong_number_of_arguments, original_fun, lisp_numargs);
db9f0278
JB
3010 }
3011
3012 if (XSUBR (fun)->max_args == UNEVALLED)
734d55a2 3013 xsignal1 (Qinvalid_function, original_fun);
db9f0278
JB
3014
3015 if (XSUBR (fun)->max_args == MANY)
3016 {
3017 val = (*XSUBR (fun)->function) (numargs, args + 1);
3018 goto done;
3019 }
3020
3021 if (XSUBR (fun)->max_args > numargs)
3022 {
3023 internal_args = (Lisp_Object *) alloca (XSUBR (fun)->max_args * sizeof (Lisp_Object));
3024 bcopy (args + 1, internal_args, numargs * sizeof (Lisp_Object));
3025 for (i = numargs; i < XSUBR (fun)->max_args; i++)
3026 internal_args[i] = Qnil;
3027 }
3028 else
3029 internal_args = args + 1;
3030 switch (XSUBR (fun)->max_args)
3031 {
3032 case 0:
3033 val = (*XSUBR (fun)->function) ();
3034 goto done;
3035 case 1:
3036 val = (*XSUBR (fun)->function) (internal_args[0]);
3037 goto done;
3038 case 2:
82fc29a1 3039 val = (*XSUBR (fun)->function) (internal_args[0], internal_args[1]);
db9f0278
JB
3040 goto done;
3041 case 3:
3042 val = (*XSUBR (fun)->function) (internal_args[0], internal_args[1],
3043 internal_args[2]);
3044 goto done;
3045 case 4:
3046 val = (*XSUBR (fun)->function) (internal_args[0], internal_args[1],
82fc29a1 3047 internal_args[2], internal_args[3]);
db9f0278
JB
3048 goto done;
3049 case 5:
3050 val = (*XSUBR (fun)->function) (internal_args[0], internal_args[1],
3051 internal_args[2], internal_args[3],
3052 internal_args[4]);
3053 goto done;
3054 case 6:
3055 val = (*XSUBR (fun)->function) (internal_args[0], internal_args[1],
3056 internal_args[2], internal_args[3],
3057 internal_args[4], internal_args[5]);
3058 goto done;
15c65264
RS
3059 case 7:
3060 val = (*XSUBR (fun)->function) (internal_args[0], internal_args[1],
3061 internal_args[2], internal_args[3],
3062 internal_args[4], internal_args[5],
3063 internal_args[6]);
3064 goto done;
db9f0278 3065
166c822d
KH
3066 case 8:
3067 val = (*XSUBR (fun)->function) (internal_args[0], internal_args[1],
3068 internal_args[2], internal_args[3],
3069 internal_args[4], internal_args[5],
3070 internal_args[6], internal_args[7]);
3071 goto done;
3072
db9f0278 3073 default:
70ee42f7 3074
166c822d 3075 /* If a subr takes more than 8 arguments without using MANY
177c0ea7 3076 or UNEVALLED, we need to extend this function to support it.
70ee42f7
JB
3077 Until this is done, there is no way to call the function. */
3078 abort ();
db9f0278
JB
3079 }
3080 }
90165123 3081 if (COMPILEDP (fun))
db9f0278
JB
3082 val = funcall_lambda (fun, numargs, args + 1);
3083 else
3084 {
8788120f 3085 if (EQ (fun, Qunbound))
734d55a2 3086 xsignal1 (Qvoid_function, original_fun);
db9f0278 3087 if (!CONSP (fun))
734d55a2
KS
3088 xsignal1 (Qinvalid_function, original_fun);
3089 funcar = XCAR (fun);
90165123 3090 if (!SYMBOLP (funcar))
734d55a2 3091 xsignal1 (Qinvalid_function, original_fun);
db9f0278
JB
3092 if (EQ (funcar, Qlambda))
3093 val = funcall_lambda (fun, numargs, args + 1);
db9f0278
JB
3094 else if (EQ (funcar, Qautoload))
3095 {
8788120f 3096 do_autoload (fun, original_fun);
fff3ff9c 3097 CHECK_CONS_LIST ();
db9f0278
JB
3098 goto retry;
3099 }
3100 else
734d55a2 3101 xsignal1 (Qinvalid_function, original_fun);
db9f0278
JB
3102 }
3103 done:
c1788fbc 3104 CHECK_CONS_LIST ();
db9f0278
JB
3105 lisp_eval_depth--;
3106 if (backtrace.debug_on_exit)
3107 val = call_debugger (Fcons (Qexit, Fcons (val, Qnil)));
3108 backtrace_list = backtrace.next;
3109 return val;
3110}
3111\f
3112Lisp_Object
3113apply_lambda (fun, args, eval_flag)
3114 Lisp_Object fun, args;
3115 int eval_flag;
3116{
3117 Lisp_Object args_left;
3118 Lisp_Object numargs;
3119 register Lisp_Object *arg_vector;
3120 struct gcpro gcpro1, gcpro2, gcpro3;
3121 register int i;
3122 register Lisp_Object tem;
3123
3124 numargs = Flength (args);
3125 arg_vector = (Lisp_Object *) alloca (XINT (numargs) * sizeof (Lisp_Object));
3126 args_left = args;
3127
3128 GCPRO3 (*arg_vector, args_left, fun);
3129 gcpro1.nvars = 0;
3130
3131 for (i = 0; i < XINT (numargs);)
3132 {
3133 tem = Fcar (args_left), args_left = Fcdr (args_left);
3134 if (eval_flag) tem = Feval (tem);
3135 arg_vector[i++] = tem;
3136 gcpro1.nvars = i;
3137 }
3138
3139 UNGCPRO;
3140
3141 if (eval_flag)
3142 {
3143 backtrace_list->args = arg_vector;
3144 backtrace_list->nargs = i;
3145 }
3146 backtrace_list->evalargs = 0;
3147 tem = funcall_lambda (fun, XINT (numargs), arg_vector);
3148
3149 /* Do the debug-on-exit now, while arg_vector still exists. */
3150 if (backtrace_list->debug_on_exit)
3151 tem = call_debugger (Fcons (Qexit, Fcons (tem, Qnil)));
3152 /* Don't do it again when we return to eval. */
3153 backtrace_list->debug_on_exit = 0;
3154 return tem;
3155}
3156
3157/* Apply a Lisp function FUN to the NARGS evaluated arguments in ARG_VECTOR
3158 and return the result of evaluation.
3159 FUN must be either a lambda-expression or a compiled-code object. */
3160
2901f1d1 3161static Lisp_Object
db9f0278
JB
3162funcall_lambda (fun, nargs, arg_vector)
3163 Lisp_Object fun;
3164 int nargs;
3165 register Lisp_Object *arg_vector;
3166{
9ab90667 3167 Lisp_Object val, syms_left, next;
aed13378 3168 int count = SPECPDL_INDEX ();
9ab90667 3169 int i, optional, rest;
db9f0278 3170
90165123 3171 if (CONSP (fun))
9ab90667
GM
3172 {
3173 syms_left = XCDR (fun);
3174 if (CONSP (syms_left))
3175 syms_left = XCAR (syms_left);
3176 else
734d55a2 3177 xsignal1 (Qinvalid_function, fun);
9ab90667 3178 }
90165123 3179 else if (COMPILEDP (fun))
845975f5 3180 syms_left = AREF (fun, COMPILED_ARGLIST);
9ab90667
GM
3181 else
3182 abort ();
db9f0278 3183
9ab90667
GM
3184 i = optional = rest = 0;
3185 for (; CONSP (syms_left); syms_left = XCDR (syms_left))
db9f0278
JB
3186 {
3187 QUIT;
177c0ea7 3188
9ab90667 3189 next = XCAR (syms_left);
8788120f 3190 if (!SYMBOLP (next))
734d55a2 3191 xsignal1 (Qinvalid_function, fun);
177c0ea7 3192
db9f0278
JB
3193 if (EQ (next, Qand_rest))
3194 rest = 1;
3195 else if (EQ (next, Qand_optional))
3196 optional = 1;
3197 else if (rest)
3198 {
9ffa21d4 3199 specbind (next, Flist (nargs - i, &arg_vector[i]));
db9f0278
JB
3200 i = nargs;
3201 }
3202 else if (i < nargs)
9ab90667 3203 specbind (next, arg_vector[i++]);
db9f0278 3204 else if (!optional)
734d55a2 3205 xsignal2 (Qwrong_number_of_arguments, fun, make_number (nargs));
db9f0278
JB
3206 else
3207 specbind (next, Qnil);
3208 }
3209
9ab90667 3210 if (!NILP (syms_left))
734d55a2 3211 xsignal1 (Qinvalid_function, fun);
9ab90667 3212 else if (i < nargs)
734d55a2 3213 xsignal2 (Qwrong_number_of_arguments, fun, make_number (nargs));
db9f0278 3214
90165123 3215 if (CONSP (fun))
9ab90667 3216 val = Fprogn (XCDR (XCDR (fun)));
db9f0278 3217 else
ca248607
RS
3218 {
3219 /* If we have not actually read the bytecode string
3220 and constants vector yet, fetch them from the file. */
845975f5 3221 if (CONSP (AREF (fun, COMPILED_BYTECODE)))
661c7d6e 3222 Ffetch_bytecode (fun);
845975f5
SM
3223 val = Fbyte_code (AREF (fun, COMPILED_BYTECODE),
3224 AREF (fun, COMPILED_CONSTANTS),
3225 AREF (fun, COMPILED_STACK_DEPTH));
ca248607 3226 }
177c0ea7 3227
db9f0278
JB
3228 return unbind_to (count, val);
3229}
661c7d6e
KH
3230
3231DEFUN ("fetch-bytecode", Ffetch_bytecode, Sfetch_bytecode,
9dbc9081
PJ
3232 1, 1, 0,
3233 doc: /* If byte-compiled OBJECT is lazy-loaded, fetch it now. */)
3234 (object)
661c7d6e
KH
3235 Lisp_Object object;
3236{
3237 Lisp_Object tem;
3238
845975f5 3239 if (COMPILEDP (object) && CONSP (AREF (object, COMPILED_BYTECODE)))
661c7d6e 3240 {
845975f5 3241 tem = read_doc_string (AREF (object, COMPILED_BYTECODE));
5bbdb090 3242 if (!CONSP (tem))
845975f5
SM
3243 {
3244 tem = AREF (object, COMPILED_BYTECODE);
3245 if (CONSP (tem) && STRINGP (XCAR (tem)))
d5db4077 3246 error ("Invalid byte code in %s", SDATA (XCAR (tem)));
845975f5
SM
3247 else
3248 error ("Invalid byte code");
3249 }
3250 AREF (object, COMPILED_BYTECODE) = XCAR (tem);
3251 AREF (object, COMPILED_CONSTANTS) = XCDR (tem);
661c7d6e
KH
3252 }
3253 return object;
3254}
db9f0278
JB
3255\f
3256void
3257grow_specpdl ()
3258{
aed13378 3259 register int count = SPECPDL_INDEX ();
db9f0278
JB
3260 if (specpdl_size >= max_specpdl_size)
3261 {
3262 if (max_specpdl_size < 400)
3263 max_specpdl_size = 400;
3264 if (specpdl_size >= max_specpdl_size)
734d55a2 3265 signal_error ("Variable binding depth exceeds max-specpdl-size", Qnil);
db9f0278
JB
3266 }
3267 specpdl_size *= 2;
3268 if (specpdl_size > max_specpdl_size)
3269 specpdl_size = max_specpdl_size;
3270 specpdl = (struct specbinding *) xrealloc (specpdl, specpdl_size * sizeof (struct specbinding));
3271 specpdl_ptr = specpdl + count;
3272}
3273
3274void
3275specbind (symbol, value)
3276 Lisp_Object symbol, value;
3277{
db9f0278 3278 Lisp_Object ovalue;
19cebf5a 3279 Lisp_Object valcontents;
db9f0278 3280
b7826503 3281 CHECK_SYMBOL (symbol);
db9f0278
JB
3282 if (specpdl_ptr == specpdl + specpdl_size)
3283 grow_specpdl ();
719177b3 3284
19cebf5a
GM
3285 /* The most common case is that of a non-constant symbol with a
3286 trivial value. Make that as fast as we can. */
3287 valcontents = SYMBOL_VALUE (symbol);
3288 if (!MISCP (valcontents) && !SYMBOL_CONSTANT_P (symbol))
719177b3 3289 {
9ab90667 3290 specpdl_ptr->symbol = symbol;
19cebf5a 3291 specpdl_ptr->old_value = valcontents;
9ab90667
GM
3292 specpdl_ptr->func = NULL;
3293 ++specpdl_ptr;
19cebf5a 3294 SET_SYMBOL_VALUE (symbol, value);
719177b3
RS
3295 }
3296 else
9ab90667 3297 {
eb700b82 3298 Lisp_Object valcontents;
177c0ea7 3299
9ab90667
GM
3300 ovalue = find_symbol_value (symbol);
3301 specpdl_ptr->func = 0;
3302 specpdl_ptr->old_value = ovalue;
719177b3 3303
eb700b82
GM
3304 valcontents = XSYMBOL (symbol)->value;
3305
3306 if (BUFFER_LOCAL_VALUEP (valcontents)
3307 || SOME_BUFFER_LOCAL_VALUEP (valcontents)
3308 || BUFFER_OBJFWDP (valcontents))
9ab90667 3309 {
0967b4b0
GM
3310 Lisp_Object where, current_buffer;
3311
3312 current_buffer = Fcurrent_buffer ();
177c0ea7 3313
9ab90667 3314 /* For a local variable, record both the symbol and which
eb700b82
GM
3315 buffer's or frame's value we are saving. */
3316 if (!NILP (Flocal_variable_p (symbol, Qnil)))
0967b4b0 3317 where = current_buffer;
eb700b82
GM
3318 else if (!BUFFER_OBJFWDP (valcontents)
3319 && XBUFFER_LOCAL_VALUE (valcontents)->found_for_frame)
3320 where = XBUFFER_LOCAL_VALUE (valcontents)->frame;
3321 else
3322 where = Qnil;
3323
3324 /* We're not using the `unused' slot in the specbinding
3325 structure because this would mean we have to do more
3326 work for simple variables. */
0967b4b0 3327 specpdl_ptr->symbol = Fcons (symbol, Fcons (where, current_buffer));
06bccf8e
GM
3328
3329 /* If SYMBOL is a per-buffer variable which doesn't have a
3330 buffer-local value here, make the `let' change the global
3331 value by changing the value of SYMBOL in all buffers not
3332 having their own value. This is consistent with what
3333 happens with other buffer-local variables. */
eb700b82
GM
3334 if (NILP (where)
3335 && BUFFER_OBJFWDP (valcontents))
06bccf8e
GM
3336 {
3337 ++specpdl_ptr;
3338 Fset_default (symbol, value);
3339 return;
3340 }
9ab90667
GM
3341 }
3342 else
3343 specpdl_ptr->symbol = symbol;
3344
3345 specpdl_ptr++;
3346 if (BUFFER_OBJFWDP (ovalue) || KBOARD_OBJFWDP (ovalue))
eae0e123 3347 store_symval_forwarding (symbol, ovalue, value, NULL);
9ab90667
GM
3348 else
3349 set_internal (symbol, value, 0, 1);
3350 }
db9f0278
JB
3351}
3352
3353void
3354record_unwind_protect (function, arg)
1d159538 3355 Lisp_Object (*function) P_ ((Lisp_Object));
db9f0278
JB
3356 Lisp_Object arg;
3357{
9ba8e10d
CY
3358 eassert (!handling_signal);
3359
db9f0278
JB
3360 if (specpdl_ptr == specpdl + specpdl_size)
3361 grow_specpdl ();
3362 specpdl_ptr->func = function;
3363 specpdl_ptr->symbol = Qnil;
3364 specpdl_ptr->old_value = arg;
3365 specpdl_ptr++;
3366}
3367
3368Lisp_Object
3369unbind_to (count, value)
3370 int count;
3371 Lisp_Object value;
3372{
5a073f50
KS
3373 Lisp_Object quitf = Vquit_flag;
3374 struct gcpro gcpro1, gcpro2;
db9f0278 3375
5a073f50 3376 GCPRO2 (value, quitf);
db9f0278
JB
3377 Vquit_flag = Qnil;
3378
3379 while (specpdl_ptr != specpdl + count)
3380 {
611a8f8c
RS
3381 /* Copy the binding, and decrement specpdl_ptr, before we do
3382 the work to unbind it. We decrement first
3383 so that an error in unbinding won't try to unbind
3384 the same entry again, and we copy the binding first
3385 in case more bindings are made during some of the code we run. */
eb700b82 3386
45f266dc
DL
3387 struct specbinding this_binding;
3388 this_binding = *--specpdl_ptr;
611a8f8c
RS
3389
3390 if (this_binding.func != 0)
3391 (*this_binding.func) (this_binding.old_value);
0967b4b0
GM
3392 /* If the symbol is a list, it is really (SYMBOL WHERE
3393 . CURRENT-BUFFER) where WHERE is either nil, a buffer, or a
3394 frame. If WHERE is a buffer or frame, this indicates we
1b1acc13
PJ
3395 bound a variable that had a buffer-local or frame-local
3396 binding. WHERE nil means that the variable had the default
0967b4b0
GM
3397 value when it was bound. CURRENT-BUFFER is the buffer that
3398 was current when the variable was bound. */
611a8f8c 3399 else if (CONSP (this_binding.symbol))
719177b3 3400 {
eb700b82 3401 Lisp_Object symbol, where;
719177b3 3402
611a8f8c
RS
3403 symbol = XCAR (this_binding.symbol);
3404 where = XCAR (XCDR (this_binding.symbol));
719177b3 3405
eb700b82 3406 if (NILP (where))
611a8f8c 3407 Fset_default (symbol, this_binding.old_value);
eb700b82 3408 else if (BUFFERP (where))
611a8f8c 3409 set_internal (symbol, this_binding.old_value, XBUFFER (where), 1);
177c0ea7 3410 else
611a8f8c 3411 set_internal (symbol, this_binding.old_value, NULL, 1);
719177b3 3412 }
db9f0278 3413 else
9ab90667
GM
3414 {
3415 /* If variable has a trivial value (no forwarding), we can
3416 just set it. No need to check for constant symbols here,
3417 since that was already done by specbind. */
611a8f8c
RS
3418 if (!MISCP (SYMBOL_VALUE (this_binding.symbol)))
3419 SET_SYMBOL_VALUE (this_binding.symbol, this_binding.old_value);
9ab90667 3420 else
611a8f8c 3421 set_internal (this_binding.symbol, this_binding.old_value, 0, 1);
9ab90667 3422 }
db9f0278 3423 }
177c0ea7 3424
5a073f50
KS
3425 if (NILP (Vquit_flag) && !NILP (quitf))
3426 Vquit_flag = quitf;
db9f0278
JB
3427
3428 UNGCPRO;
db9f0278
JB
3429 return value;
3430}
3431\f
db9f0278 3432DEFUN ("backtrace-debug", Fbacktrace_debug, Sbacktrace_debug, 2, 2, 0,
9dbc9081
PJ
3433 doc: /* Set the debug-on-exit flag of eval frame LEVEL levels down to FLAG.
3434The debugger is entered when that frame exits, if the flag is non-nil. */)
3435 (level, flag)
db9f0278
JB
3436 Lisp_Object level, flag;
3437{
3438 register struct backtrace *backlist = backtrace_list;
3439 register int i;
3440
b7826503 3441 CHECK_NUMBER (level);
db9f0278
JB
3442
3443 for (i = 0; backlist && i < XINT (level); i++)
3444 {
3445 backlist = backlist->next;
3446 }
3447
3448 if (backlist)
265a9e55 3449 backlist->debug_on_exit = !NILP (flag);
db9f0278
JB
3450
3451 return flag;
3452}
3453
3454DEFUN ("backtrace", Fbacktrace, Sbacktrace, 0, 0, "",
9dbc9081
PJ
3455 doc: /* Print a trace of Lisp function calls currently active.
3456Output stream used is value of `standard-output'. */)
3457 ()
db9f0278
JB
3458{
3459 register struct backtrace *backlist = backtrace_list;
3460 register int i;
3461 Lisp_Object tail;
3462 Lisp_Object tem;
3463 extern Lisp_Object Vprint_level;
3464 struct gcpro gcpro1;
3465
a631e24c 3466 XSETFASTINT (Vprint_level, 3);
db9f0278
JB
3467
3468 tail = Qnil;
3469 GCPRO1 (tail);
3470
3471 while (backlist)
3472 {
3473 write_string (backlist->debug_on_exit ? "* " : " ", 2);
3474 if (backlist->nargs == UNEVALLED)
3475 {
3476 Fprin1 (Fcons (*backlist->function, *backlist->args), Qnil);
b6703b02 3477 write_string ("\n", -1);
db9f0278
JB
3478 }
3479 else
3480 {
3481 tem = *backlist->function;
3482 Fprin1 (tem, Qnil); /* This can QUIT */
3483 write_string ("(", -1);
3484 if (backlist->nargs == MANY)
3485 {
3486 for (tail = *backlist->args, i = 0;
265a9e55 3487 !NILP (tail);
db9f0278
JB
3488 tail = Fcdr (tail), i++)
3489 {
3490 if (i) write_string (" ", -1);
3491 Fprin1 (Fcar (tail), Qnil);
3492 }
3493 }
3494 else
3495 {
3496 for (i = 0; i < backlist->nargs; i++)
3497 {
3498 if (i) write_string (" ", -1);
3499 Fprin1 (backlist->args[i], Qnil);
3500 }
3501 }
b6703b02 3502 write_string (")\n", -1);
db9f0278 3503 }
db9f0278
JB
3504 backlist = backlist->next;
3505 }
3506
3507 Vprint_level = Qnil;
3508 UNGCPRO;
3509 return Qnil;
3510}
3511
17401c97 3512DEFUN ("backtrace-frame", Fbacktrace_frame, Sbacktrace_frame, 1, 1, NULL,
9dbc9081
PJ
3513 doc: /* Return the function and arguments NFRAMES up from current execution point.
3514If that frame has not evaluated the arguments yet (or is a special form),
3515the value is (nil FUNCTION ARG-FORMS...).
3516If that frame has evaluated its arguments and called its function already,
3517the value is (t FUNCTION ARG-VALUES...).
3518A &rest arg is represented as the tail of the list ARG-VALUES.
3519FUNCTION is whatever was supplied as car of evaluated list,
3520or a lambda expression for macro calls.
3521If NFRAMES is more than the number of frames, the value is nil. */)
3522 (nframes)
db9f0278
JB
3523 Lisp_Object nframes;
3524{
3525 register struct backtrace *backlist = backtrace_list;
3526 register int i;
3527 Lisp_Object tem;
3528
b7826503 3529 CHECK_NATNUM (nframes);
db9f0278
JB
3530
3531 /* Find the frame requested. */
b6703b02 3532 for (i = 0; backlist && i < XFASTINT (nframes); i++)
db9f0278
JB
3533 backlist = backlist->next;
3534
3535 if (!backlist)
3536 return Qnil;
3537 if (backlist->nargs == UNEVALLED)
3538 return Fcons (Qnil, Fcons (*backlist->function, *backlist->args));
3539 else
3540 {
3541 if (backlist->nargs == MANY)
3542 tem = *backlist->args;
3543 else
3544 tem = Flist (backlist->nargs, backlist->args);
3545
3546 return Fcons (Qt, Fcons (*backlist->function, tem));
3547 }
3548}
a2ff3819 3549
db9f0278 3550\f
4ce0541e
SM
3551void
3552mark_backtrace ()
3553{
3554 register struct backtrace *backlist;
3555 register int i;
3556
3557 for (backlist = backtrace_list; backlist; backlist = backlist->next)
3558 {
3559 mark_object (*backlist->function);
3560
3561 if (backlist->nargs == UNEVALLED || backlist->nargs == MANY)
3562 i = 0;
3563 else
3564 i = backlist->nargs - 1;
3565 for (; i >= 0; i--)
3566 mark_object (backlist->args[i]);
3567 }
3568}
3569
dfcf069d 3570void
db9f0278
JB
3571syms_of_eval ()
3572{
3573 DEFVAR_INT ("max-specpdl-size", &max_specpdl_size,
82fc29a1 3574 doc: /* *Limit on number of Lisp variable bindings and `unwind-protect's.
9f5903bb 3575If Lisp code tries to increase the total number past this amount,
2520dc0c
RS
3576an error is signaled.
3577You can safely use a value considerably larger than the default value,
3578if that proves inconveniently small. However, if you increase it too far,
3579Emacs could run out of memory trying to make the stack bigger. */);
db9f0278
JB
3580
3581 DEFVAR_INT ("max-lisp-eval-depth", &max_lisp_eval_depth,
9dbc9081 3582 doc: /* *Limit on depth in `eval', `apply' and `funcall' before error.
2520dc0c
RS
3583
3584This limit serves to catch infinite recursions for you before they cause
9dbc9081
PJ
3585actual stack overflow in C, which would be fatal for Emacs.
3586You can safely make it considerably larger than its default value,
2520dc0c
RS
3587if that proves inconveniently small. However, if you increase it too far,
3588Emacs could overflow the real C stack, and crash. */);
db9f0278
JB
3589
3590 DEFVAR_LISP ("quit-flag", &Vquit_flag,
9dbc9081 3591 doc: /* Non-nil causes `eval' to abort, unless `inhibit-quit' is non-nil.
42ed718e
RS
3592If the value is t, that means do an ordinary quit.
3593If the value equals `throw-on-input', that means quit by throwing
3594to the tag specified in `throw-on-input'; it's for handling `while-no-input'.
3595Typing C-g sets `quit-flag' to t, regardless of `inhibit-quit',
3596but `inhibit-quit' non-nil prevents anything from taking notice of that. */);
db9f0278
JB
3597 Vquit_flag = Qnil;
3598
3599 DEFVAR_LISP ("inhibit-quit", &Vinhibit_quit,
9dbc9081
PJ
3600 doc: /* Non-nil inhibits C-g quitting from happening immediately.
3601Note that `quit-flag' will still be set by typing C-g,
3602so a quit will be signaled as soon as `inhibit-quit' is nil.
3603To prevent this happening, set `quit-flag' to nil
3604before making `inhibit-quit' nil. */);
db9f0278
JB
3605 Vinhibit_quit = Qnil;
3606
ad236261
JB
3607 Qinhibit_quit = intern ("inhibit-quit");
3608 staticpro (&Qinhibit_quit);
3609
db9f0278
JB
3610 Qautoload = intern ("autoload");
3611 staticpro (&Qautoload);
3612
3613 Qdebug_on_error = intern ("debug-on-error");
3614 staticpro (&Qdebug_on_error);
3615
3616 Qmacro = intern ("macro");
3617 staticpro (&Qmacro);
3618
d6edd563
GM
3619 Qdeclare = intern ("declare");
3620 staticpro (&Qdeclare);
177c0ea7 3621
db9f0278
JB
3622 /* Note that the process handling also uses Qexit, but we don't want
3623 to staticpro it twice, so we just do it here. */
3624 Qexit = intern ("exit");
3625 staticpro (&Qexit);
3626
3627 Qinteractive = intern ("interactive");
3628 staticpro (&Qinteractive);
3629
3630 Qcommandp = intern ("commandp");
3631 staticpro (&Qcommandp);
3632
3633 Qdefun = intern ("defun");
3634 staticpro (&Qdefun);
3635
3636 Qand_rest = intern ("&rest");
3637 staticpro (&Qand_rest);
3638
3639 Qand_optional = intern ("&optional");
3640 staticpro (&Qand_optional);
3641
f01cbfdd
RS
3642 Qdebug = intern ("debug");
3643 staticpro (&Qdebug);
3644
128c0f66 3645 DEFVAR_LISP ("stack-trace-on-error", &Vstack_trace_on_error,
704788b3
RS
3646 doc: /* *Non-nil means errors display a backtrace buffer.
3647More precisely, this happens for any error that is handled
3648by the editor command loop.
9dbc9081
PJ
3649If the value is a list, an error only means to display a backtrace
3650if one of its condition symbols appears in the list. */);
128c0f66 3651 Vstack_trace_on_error = Qnil;
db9f0278 3652
128c0f66 3653 DEFVAR_LISP ("debug-on-error", &Vdebug_on_error,
9dbc9081
PJ
3654 doc: /* *Non-nil means enter debugger if an error is signaled.
3655Does not apply to errors handled by `condition-case' or those
3656matched by `debug-ignored-errors'.
3657If the value is a list, an error only means to enter the debugger
3658if one of its condition symbols appears in the list.
3659When you evaluate an expression interactively, this variable
3660is temporarily non-nil if `eval-expression-debug-on-error' is non-nil.
3661See also variable `debug-on-quit'. */);
128c0f66 3662 Vdebug_on_error = Qnil;
db9f0278 3663
fc950e09 3664 DEFVAR_LISP ("debug-ignored-errors", &Vdebug_ignored_errors,
9dbc9081
PJ
3665 doc: /* *List of errors for which the debugger should not be called.
3666Each element may be a condition-name or a regexp that matches error messages.
3667If any element applies to a given error, that error skips the debugger
3668and just returns to top level.
3669This overrides the variable `debug-on-error'.
3670It does not apply to errors handled by `condition-case'. */);
fc950e09
KH
3671 Vdebug_ignored_errors = Qnil;
3672
db9f0278 3673 DEFVAR_BOOL ("debug-on-quit", &debug_on_quit,
82fc29a1
JB
3674 doc: /* *Non-nil means enter debugger if quit is signaled (C-g, for example).
3675Does not apply if quit is handled by a `condition-case'. */);
db9f0278
JB
3676 debug_on_quit = 0;
3677
3678 DEFVAR_BOOL ("debug-on-next-call", &debug_on_next_call,
9dbc9081 3679 doc: /* Non-nil means enter debugger before next `eval', `apply' or `funcall'. */);
db9f0278 3680
556d7314 3681 DEFVAR_BOOL ("debugger-may-continue", &debugger_may_continue,
9dbc9081
PJ
3682 doc: /* Non-nil means debugger may continue execution.
3683This is nil when the debugger is called under circumstances where it
3684might not be safe to continue. */);
dac204bc 3685 debugger_may_continue = 1;
556d7314 3686
db9f0278 3687 DEFVAR_LISP ("debugger", &Vdebugger,
9dbc9081
PJ
3688 doc: /* Function to call to invoke debugger.
3689If due to frame exit, args are `exit' and the value being returned;
3690 this function's value will be returned instead of that.
3691If due to error, args are `error' and a list of the args to `signal'.
3692If due to `apply' or `funcall' entry, one arg, `lambda'.
3693If due to `eval' entry, one arg, t. */);
db9f0278
JB
3694 Vdebugger = Qnil;
3695
61ede770 3696 DEFVAR_LISP ("signal-hook-function", &Vsignal_hook_function,
9dbc9081
PJ
3697 doc: /* If non-nil, this is a function for `signal' to call.
3698It receives the same arguments that `signal' was given.
3699The Edebug package uses this to regain control. */);
61ede770
RS
3700 Vsignal_hook_function = Qnil;
3701
57a6e758 3702 DEFVAR_LISP ("debug-on-signal", &Vdebug_on_signal,
9dbc9081
PJ
3703 doc: /* *Non-nil means call the debugger regardless of condition handlers.
3704Note that `debug-on-error', `debug-on-quit' and friends
3705still determine whether to handle the particular condition. */);
57a6e758 3706 Vdebug_on_signal = Qnil;
61ede770 3707
d6edd563
GM
3708 DEFVAR_LISP ("macro-declaration-function", &Vmacro_declaration_function,
3709 doc: /* Function to process declarations in a macro definition.
3710The function will be called with two args MACRO and DECL.
3711MACRO is the name of the macro being defined.
3712DECL is a list `(declare ...)' containing the declarations.
3713The value the function returns is not used. */);
3714 Vmacro_declaration_function = Qnil;
3715
6e6e9f08
RS
3716 Vrun_hooks = intern ("run-hooks");
3717 staticpro (&Vrun_hooks);
db9f0278
JB
3718
3719 staticpro (&Vautoload_queue);
3720 Vautoload_queue = Qnil;
a2ff3819
GM
3721 staticpro (&Vsignaling_function);
3722 Vsignaling_function = Qnil;
db9f0278
JB
3723
3724 defsubr (&Sor);
3725 defsubr (&Sand);
3726 defsubr (&Sif);
3727 defsubr (&Scond);
3728 defsubr (&Sprogn);
3729 defsubr (&Sprog1);
3730 defsubr (&Sprog2);
3731 defsubr (&Ssetq);
3732 defsubr (&Squote);
3733 defsubr (&Sfunction);
3734 defsubr (&Sdefun);
3735 defsubr (&Sdefmacro);
3736 defsubr (&Sdefvar);
19cebf5a 3737 defsubr (&Sdefvaralias);
db9f0278
JB
3738 defsubr (&Sdefconst);
3739 defsubr (&Suser_variable_p);
3740 defsubr (&Slet);
3741 defsubr (&SletX);
3742 defsubr (&Swhile);
3743 defsubr (&Smacroexpand);
3744 defsubr (&Scatch);
3745 defsubr (&Sthrow);
3746 defsubr (&Sunwind_protect);
3747 defsubr (&Scondition_case);
3748 defsubr (&Ssignal);
3749 defsubr (&Sinteractive_p);
4b664e76 3750 defsubr (&Scalled_interactively_p);
db9f0278
JB
3751 defsubr (&Scommandp);
3752 defsubr (&Sautoload);
3753 defsubr (&Seval);
3754 defsubr (&Sapply);
3755 defsubr (&Sfuncall);
ff936e53
SM
3756 defsubr (&Srun_hooks);
3757 defsubr (&Srun_hook_with_args);
3758 defsubr (&Srun_hook_with_args_until_success);
3759 defsubr (&Srun_hook_with_args_until_failure);
661c7d6e 3760 defsubr (&Sfetch_bytecode);
db9f0278
JB
3761 defsubr (&Sbacktrace_debug);
3762 defsubr (&Sbacktrace);
3763 defsubr (&Sbacktrace_frame);
3764}
ab5796a9
MB
3765
3766/* arch-tag: 014a07aa-33ab-4a8f-a3d2-ee8a4a9ff7fb
3767 (do not change this comment) */