(command_loop_1): Fix test for valid display table entry,
[bpt/emacs.git] / src / eval.c
CommitLineData
db9f0278 1/* Evaluator for GNU Emacs Lisp interpreter.
3a22ee35 2 Copyright (C) 1985, 1986, 1987, 1993, 1994 Free Software Foundation, Inc.
db9f0278
JB
3
4This file is part of GNU Emacs.
5
6GNU Emacs is free software; you can redistribute it and/or modify
7it under the terms of the GNU General Public License as published by
8the Free Software Foundation; either version 1, or (at your option)
9any later version.
10
11GNU Emacs is distributed in the hope that it will be useful,
12but WITHOUT ANY WARRANTY; without even the implied warranty of
13MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14GNU General Public License for more details.
15
16You should have received a copy of the GNU General Public License
17along with GNU Emacs; see the file COPYING. If not, write to
18the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
19
20
18160b98 21#include <config.h>
db9f0278 22#include "lisp.h"
9ac0d9e0 23#include "blockinput.h"
db9f0278
JB
24
25#ifndef standalone
26#include "commands.h"
1f98fa48 27#include "keyboard.h"
db9f0278
JB
28#else
29#define INTERACTIVE 1
30#endif
31
32#include <setjmp.h>
33
34/* This definition is duplicated in alloc.c and keyboard.c */
35/* Putting it in lisp.h makes cc bomb out! */
36
37struct backtrace
38 {
39 struct backtrace *next;
40 Lisp_Object *function;
41 Lisp_Object *args; /* Points to vector of args. */
daa37602
JB
42 int nargs; /* Length of vector.
43 If nargs is UNEVALLED, args points to slot holding
44 list of unevalled args */
db9f0278
JB
45 char evalargs;
46 /* Nonzero means call value of debugger when done with this operation. */
47 char debug_on_exit;
48 };
49
50struct backtrace *backtrace_list;
51
82da7701
JB
52/* This structure helps implement the `catch' and `throw' control
53 structure. A struct catchtag contains all the information needed
54 to restore the state of the interpreter after a non-local jump.
55
56 Handlers for error conditions (represented by `struct handler'
57 structures) just point to a catch tag to do the cleanup required
58 for their jumps.
59
60 catchtag structures are chained together in the C calling stack;
61 the `next' member points to the next outer catchtag.
62
63 A call like (throw TAG VAL) searches for a catchtag whose `tag'
64 member is TAG, and then unbinds to it. The `val' member is used to
65 hold VAL while the stack is unwound; `val' is returned as the value
66 of the catch form.
67
68 All the other members are concerned with restoring the interpreter
69 state. */
db9f0278
JB
70struct catchtag
71 {
72 Lisp_Object tag;
73 Lisp_Object val;
74 struct catchtag *next;
75 struct gcpro *gcpro;
76 jmp_buf jmp;
77 struct backtrace *backlist;
78 struct handler *handlerlist;
79 int lisp_eval_depth;
80 int pdlcount;
81 int poll_suppress_count;
82 };
83
84struct catchtag *catchlist;
85
86Lisp_Object Qautoload, Qmacro, Qexit, Qinteractive, Qcommandp, Qdefun;
ad236261 87Lisp_Object Qinhibit_quit, Vinhibit_quit, Vquit_flag;
db9f0278
JB
88Lisp_Object Qmocklisp_arguments, Vmocklisp_arguments, Qmocklisp;
89Lisp_Object Qand_rest, Qand_optional;
90Lisp_Object Qdebug_on_error;
91
92Lisp_Object Vrun_hooks;
93
94/* Non-nil means record all fset's and provide's, to be undone
95 if the file being autoloaded is not fully loaded.
96 They are recorded by being consed onto the front of Vautoload_queue:
97 (FUN . ODEF) for a defun, (OFEATURES . nil) for a provide. */
98
99Lisp_Object Vautoload_queue;
100
101/* Current number of specbindings allocated in specpdl. */
102int specpdl_size;
103
104/* Pointer to beginning of specpdl. */
105struct specbinding *specpdl;
106
107/* Pointer to first unused element in specpdl. */
108struct specbinding *specpdl_ptr;
109
110/* Maximum size allowed for specpdl allocation */
111int max_specpdl_size;
112
113/* Depth in Lisp evaluations and function calls. */
114int lisp_eval_depth;
115
116/* Maximum allowed depth in Lisp evaluations and function calls. */
117int max_lisp_eval_depth;
118
119/* Nonzero means enter debugger before next function call */
120int debug_on_next_call;
121
128c0f66 122/* List of conditions (non-nil atom means all) which cause a backtrace
4de86b16 123 if an error is handled by the command loop's error handler. */
128c0f66 124Lisp_Object Vstack_trace_on_error;
db9f0278 125
128c0f66 126/* List of conditions (non-nil atom means all) which enter the debugger
4de86b16 127 if an error is handled by the command loop's error handler. */
128c0f66 128Lisp_Object Vdebug_on_error;
db9f0278
JB
129
130/* Nonzero means enter debugger if a quit signal
128c0f66 131 is handled by the command loop's error handler. */
db9f0278
JB
132int debug_on_quit;
133
82da7701
JB
134/* The value of num_nonmacro_input_chars as of the last time we
135 started to enter the debugger. If we decide to enter the debugger
136 again when this is still equal to num_nonmacro_input_chars, then we
137 know that the debugger itself has an error, and we should just
138 signal the error instead of entering an infinite loop of debugger
139 invocations. */
140int when_entered_debugger;
db9f0278
JB
141
142Lisp_Object Vdebugger;
143
144void specbind (), record_unwind_protect ();
145
146Lisp_Object funcall_lambda ();
147extern Lisp_Object ml_apply (); /* Apply a mocklisp function to unevaluated argument list */
148
149init_eval_once ()
150{
151 specpdl_size = 50;
152 specpdl = (struct specbinding *) malloc (specpdl_size * sizeof (struct specbinding));
153 max_specpdl_size = 600;
154 max_lisp_eval_depth = 200;
155}
156
157init_eval ()
158{
159 specpdl_ptr = specpdl;
160 catchlist = 0;
161 handlerlist = 0;
162 backtrace_list = 0;
163 Vquit_flag = Qnil;
164 debug_on_next_call = 0;
165 lisp_eval_depth = 0;
b5b911f9
RS
166 /* This is less than the initial value of num_nonmacro_input_chars. */
167 when_entered_debugger = -1;
db9f0278
JB
168}
169
170Lisp_Object
171call_debugger (arg)
172 Lisp_Object arg;
173{
174 if (lisp_eval_depth + 20 > max_lisp_eval_depth)
175 max_lisp_eval_depth = lisp_eval_depth + 20;
176 if (specpdl_size + 40 > max_specpdl_size)
177 max_specpdl_size = specpdl_size + 40;
178 debug_on_next_call = 0;
82da7701 179 when_entered_debugger = num_nonmacro_input_chars;
db9f0278
JB
180 return apply1 (Vdebugger, arg);
181}
182
183do_debug_on_call (code)
184 Lisp_Object code;
185{
186 debug_on_next_call = 0;
187 backtrace_list->debug_on_exit = 1;
188 call_debugger (Fcons (code, Qnil));
189}
190\f
191/* NOTE!!! Every function that can call EVAL must protect its args
192 and temporaries from garbage collection while it needs them.
193 The definition of `For' shows what you have to do. */
194
195DEFUN ("or", For, Sor, 0, UNEVALLED, 0,
196 "Eval args until one of them yields non-nil, then return that value.\n\
197The remaining args are not evalled at all.\n\
198If all args return nil, return nil.")
199 (args)
200 Lisp_Object args;
201{
202 register Lisp_Object val;
203 Lisp_Object args_left;
204 struct gcpro gcpro1;
205
265a9e55 206 if (NILP(args))
db9f0278
JB
207 return Qnil;
208
209 args_left = args;
210 GCPRO1 (args_left);
211
212 do
213 {
214 val = Feval (Fcar (args_left));
265a9e55 215 if (!NILP (val))
db9f0278
JB
216 break;
217 args_left = Fcdr (args_left);
218 }
265a9e55 219 while (!NILP(args_left));
db9f0278
JB
220
221 UNGCPRO;
222 return val;
223}
224
225DEFUN ("and", Fand, Sand, 0, UNEVALLED, 0,
226 "Eval args until one of them yields nil, then return nil.\n\
227The remaining args are not evalled at all.\n\
228If no arg yields nil, return the last arg's value.")
229 (args)
230 Lisp_Object args;
231{
232 register Lisp_Object val;
233 Lisp_Object args_left;
234 struct gcpro gcpro1;
235
265a9e55 236 if (NILP(args))
db9f0278
JB
237 return Qt;
238
239 args_left = args;
240 GCPRO1 (args_left);
241
242 do
243 {
244 val = Feval (Fcar (args_left));
265a9e55 245 if (NILP (val))
db9f0278
JB
246 break;
247 args_left = Fcdr (args_left);
248 }
265a9e55 249 while (!NILP(args_left));
db9f0278
JB
250
251 UNGCPRO;
252 return val;
253}
254
255DEFUN ("if", Fif, Sif, 2, UNEVALLED, 0,
256 "(if COND THEN ELSE...): if COND yields non-nil, do THEN, else do ELSE...\n\
257Returns the value of THEN or the value of the last of the ELSE's.\n\
258THEN must be one expression, but ELSE... can be zero or more expressions.\n\
259If COND yields nil, and there are no ELSE's, the value is nil.")
260 (args)
261 Lisp_Object args;
262{
263 register Lisp_Object cond;
264 struct gcpro gcpro1;
265
266 GCPRO1 (args);
267 cond = Feval (Fcar (args));
268 UNGCPRO;
269
265a9e55 270 if (!NILP (cond))
db9f0278
JB
271 return Feval (Fcar (Fcdr (args)));
272 return Fprogn (Fcdr (Fcdr (args)));
273}
274
275DEFUN ("cond", Fcond, Scond, 0, UNEVALLED, 0,
276 "(cond CLAUSES...): try each clause until one succeeds.\n\
277Each clause looks like (CONDITION BODY...). CONDITION is evaluated\n\
278and, if the value is non-nil, this clause succeeds:\n\
279then the expressions in BODY are evaluated and the last one's\n\
280value is the value of the cond-form.\n\
281If no clause succeeds, cond returns nil.\n\
282If a clause has one element, as in (CONDITION),\n\
283CONDITION's value if non-nil is returned from the cond-form.")
284 (args)
285 Lisp_Object args;
286{
287 register Lisp_Object clause, val;
288 struct gcpro gcpro1;
289
290 val = Qnil;
291 GCPRO1 (args);
265a9e55 292 while (!NILP (args))
db9f0278
JB
293 {
294 clause = Fcar (args);
295 val = Feval (Fcar (clause));
265a9e55 296 if (!NILP (val))
db9f0278
JB
297 {
298 if (!EQ (XCONS (clause)->cdr, Qnil))
299 val = Fprogn (XCONS (clause)->cdr);
300 break;
301 }
302 args = XCONS (args)->cdr;
303 }
304 UNGCPRO;
305
306 return val;
307}
308
309DEFUN ("progn", Fprogn, Sprogn, 0, UNEVALLED, 0,
310 "(progn BODY...): eval BODY forms sequentially and return value of last one.")
311 (args)
312 Lisp_Object args;
313{
314 register Lisp_Object val, tem;
315 Lisp_Object args_left;
316 struct gcpro gcpro1;
317
318 /* In Mocklisp code, symbols at the front of the progn arglist
319 are to be bound to zero. */
320 if (!EQ (Vmocklisp_arguments, Qt))
321 {
322 val = make_number (0);
265a9e55 323 while (!NILP (args) && (tem = Fcar (args), XTYPE (tem) == Lisp_Symbol))
db9f0278
JB
324 {
325 QUIT;
326 specbind (tem, val), args = Fcdr (args);
327 }
328 }
329
265a9e55 330 if (NILP(args))
db9f0278
JB
331 return Qnil;
332
333 args_left = args;
334 GCPRO1 (args_left);
335
336 do
337 {
338 val = Feval (Fcar (args_left));
339 args_left = Fcdr (args_left);
340 }
265a9e55 341 while (!NILP(args_left));
db9f0278
JB
342
343 UNGCPRO;
344 return val;
345}
346
347DEFUN ("prog1", Fprog1, Sprog1, 1, UNEVALLED, 0,
348 "(prog1 FIRST BODY...): eval FIRST and BODY sequentially; value from FIRST.\n\
349The value of FIRST is saved during the evaluation of the remaining args,\n\
350whose values are discarded.")
351 (args)
352 Lisp_Object args;
353{
354 Lisp_Object val;
355 register Lisp_Object args_left;
356 struct gcpro gcpro1, gcpro2;
357 register int argnum = 0;
358
265a9e55 359 if (NILP(args))
db9f0278
JB
360 return Qnil;
361
362 args_left = args;
363 val = Qnil;
364 GCPRO2 (args, val);
365
366 do
367 {
368 if (!(argnum++))
369 val = Feval (Fcar (args_left));
370 else
371 Feval (Fcar (args_left));
372 args_left = Fcdr (args_left);
373 }
265a9e55 374 while (!NILP(args_left));
db9f0278
JB
375
376 UNGCPRO;
377 return val;
378}
379
380DEFUN ("prog2", Fprog2, Sprog2, 2, UNEVALLED, 0,
381 "(prog1 X Y BODY...): eval X, Y and BODY sequentially; value from Y.\n\
382The value of Y is saved during the evaluation of the remaining args,\n\
383whose values are discarded.")
384 (args)
385 Lisp_Object args;
386{
387 Lisp_Object val;
388 register Lisp_Object args_left;
389 struct gcpro gcpro1, gcpro2;
390 register int argnum = -1;
391
392 val = Qnil;
393
87d238ba 394 if (NILP (args))
db9f0278
JB
395 return Qnil;
396
397 args_left = args;
398 val = Qnil;
399 GCPRO2 (args, val);
400
401 do
402 {
403 if (!(argnum++))
404 val = Feval (Fcar (args_left));
405 else
406 Feval (Fcar (args_left));
407 args_left = Fcdr (args_left);
408 }
87d238ba 409 while (!NILP (args_left));
db9f0278
JB
410
411 UNGCPRO;
412 return val;
413}
414
415DEFUN ("setq", Fsetq, Ssetq, 0, UNEVALLED, 0,
416 "(setq SYM VAL SYM VAL ...): set each SYM to the value of its VAL.\n\
b0d75191
RS
417The symbols SYM are variables; they are literal (not evaluated).\n\
418The values VAL are expressions; they are evaluated.\n\
419Thus, (setq x (1+ y)) sets `x' to the value of `(1+ y)'.\n\
420The second VAL is not computed until after the first SYM is set, and so on;\n\
421each VAL can use the new value of variables set earlier in the `setq'.\n\
196e7d3f 422The return value of the `setq' form is the value of the last VAL.")
db9f0278
JB
423 (args)
424 Lisp_Object args;
425{
426 register Lisp_Object args_left;
427 register Lisp_Object val, sym;
428 struct gcpro gcpro1;
429
265a9e55 430 if (NILP(args))
db9f0278
JB
431 return Qnil;
432
433 args_left = args;
434 GCPRO1 (args);
435
436 do
437 {
438 val = Feval (Fcar (Fcdr (args_left)));
439 sym = Fcar (args_left);
440 Fset (sym, val);
441 args_left = Fcdr (Fcdr (args_left));
442 }
265a9e55 443 while (!NILP(args_left));
db9f0278
JB
444
445 UNGCPRO;
446 return val;
447}
448
449DEFUN ("quote", Fquote, Squote, 1, UNEVALLED, 0,
450 "Return the argument, without evaluating it. `(quote x)' yields `x'.")
451 (args)
452 Lisp_Object args;
453{
454 return Fcar (args);
455}
456
457DEFUN ("function", Ffunction, Sfunction, 1, UNEVALLED, 0,
458 "Like `quote', but preferred for objects which are functions.\n\
459In byte compilation, `function' causes its argument to be compiled.\n\
460`quote' cannot do that.")
461 (args)
462 Lisp_Object args;
463{
464 return Fcar (args);
465}
466
467DEFUN ("interactive-p", Finteractive_p, Sinteractive_p, 0, 0, 0,
468 "Return t if function in which this appears was called interactively.\n\
469This means that the function was called with call-interactively (which\n\
470includes being called as the binding of a key)\n\
471and input is currently coming from the keyboard (not in keyboard macro).")
472 ()
473{
474 register struct backtrace *btp;
475 register Lisp_Object fun;
476
477 if (!INTERACTIVE)
478 return Qnil;
479
db9f0278 480 btp = backtrace_list;
daa37602
JB
481
482 /* If this isn't a byte-compiled function, there may be a frame at
483 the top for Finteractive_p itself. If so, skip it. */
484 fun = Findirect_function (*btp->function);
485 if (XTYPE (fun) == Lisp_Subr
486 && (struct Lisp_Subr *) XPNTR (fun) == &Sinteractive_p)
db9f0278 487 btp = btp->next;
daa37602
JB
488
489 /* If we're running an Emacs 18-style byte-compiled function, there
490 may be a frame for Fbytecode. Now, given the strictest
491 definition, this function isn't really being called
492 interactively, but because that's the way Emacs 18 always builds
493 byte-compiled functions, we'll accept it for now. */
494 if (EQ (*btp->function, Qbytecode))
495 btp = btp->next;
496
497 /* If this isn't a byte-compiled function, then we may now be
498 looking at several frames for special forms. Skip past them. */
499 while (btp &&
500 btp->nargs == UNEVALLED)
a6e3fa71
JB
501 btp = btp->next;
502
daa37602
JB
503 /* btp now points at the frame of the innermost function that isn't
504 a special form, ignoring frames for Finteractive_p and/or
505 Fbytecode at the top. If this frame is for a built-in function
506 (such as load or eval-region) return nil. */
ffd56f97 507 fun = Findirect_function (*btp->function);
db9f0278
JB
508 if (XTYPE (fun) == Lisp_Subr)
509 return Qnil;
510 /* btp points to the frame of a Lisp function that called interactive-p.
511 Return t if that function was called interactively. */
512 if (btp && btp->next && EQ (*btp->next->function, Qcall_interactively))
513 return Qt;
514 return Qnil;
515}
516
517DEFUN ("defun", Fdefun, Sdefun, 2, UNEVALLED, 0,
518 "(defun NAME ARGLIST [DOCSTRING] BODY...): define NAME as a function.\n\
519The definition is (lambda ARGLIST [DOCSTRING] BODY...).\n\
520See also the function `interactive'.")
521 (args)
522 Lisp_Object args;
523{
524 register Lisp_Object fn_name;
525 register Lisp_Object defn;
526
527 fn_name = Fcar (args);
528 defn = Fcons (Qlambda, Fcdr (args));
265a9e55 529 if (!NILP (Vpurify_flag))
db9f0278
JB
530 defn = Fpurecopy (defn);
531 Ffset (fn_name, defn);
2a49b6e5 532 LOADHIST_ATTACH (fn_name);
db9f0278
JB
533 return fn_name;
534}
535
536DEFUN ("defmacro", Fdefmacro, Sdefmacro, 2, UNEVALLED, 0,
537 "(defmacro NAME ARGLIST [DOCSTRING] BODY...): define NAME as a macro.\n\
538The definition is (macro lambda ARGLIST [DOCSTRING] BODY...).\n\
539When the macro is called, as in (NAME ARGS...),\n\
540the function (lambda ARGLIST BODY...) is applied to\n\
541the list ARGS... as it appears in the expression,\n\
542and the result should be a form to be evaluated instead of the original.")
543 (args)
544 Lisp_Object args;
545{
546 register Lisp_Object fn_name;
547 register Lisp_Object defn;
548
549 fn_name = Fcar (args);
550 defn = Fcons (Qmacro, Fcons (Qlambda, Fcdr (args)));
265a9e55 551 if (!NILP (Vpurify_flag))
db9f0278
JB
552 defn = Fpurecopy (defn);
553 Ffset (fn_name, defn);
2a49b6e5 554 LOADHIST_ATTACH (fn_name);
db9f0278
JB
555 return fn_name;
556}
557
558DEFUN ("defvar", Fdefvar, Sdefvar, 1, UNEVALLED, 0,
559 "(defvar SYMBOL INITVALUE DOCSTRING): define SYMBOL as a variable.\n\
560You are not required to define a variable in order to use it,\n\
561but the definition can supply documentation and an initial value\n\
562in a way that tags can recognize.\n\n\
563INITVALUE is evaluated, and used to set SYMBOL, only if SYMBOL's value is void.\n\
06ef7355
RS
564If SYMBOL is buffer-local, its default value is what is set;\n\
565 buffer-local values are not affected.\n\
db9f0278
JB
566INITVALUE and DOCSTRING are optional.\n\
567If DOCSTRING starts with *, this variable is identified as a user option.\n\
568 This means that M-x set-variable and M-x edit-options recognize it.\n\
569If INITVALUE is missing, SYMBOL's value is not set.")
570 (args)
571 Lisp_Object args;
572{
573 register Lisp_Object sym, tem;
574
575 sym = Fcar (args);
576 tem = Fcdr (args);
265a9e55 577 if (!NILP (tem))
db9f0278
JB
578 {
579 tem = Fdefault_boundp (sym);
265a9e55 580 if (NILP (tem))
db9f0278
JB
581 Fset_default (sym, Feval (Fcar (Fcdr (args))));
582 }
583 tem = Fcar (Fcdr (Fcdr (args)));
265a9e55 584 if (!NILP (tem))
db9f0278 585 {
265a9e55 586 if (!NILP (Vpurify_flag))
db9f0278
JB
587 tem = Fpurecopy (tem);
588 Fput (sym, Qvariable_documentation, tem);
589 }
2a49b6e5 590 LOADHIST_ATTACH (sym);
db9f0278
JB
591 return sym;
592}
593
594DEFUN ("defconst", Fdefconst, Sdefconst, 2, UNEVALLED, 0,
595 "(defconst SYMBOL INITVALUE DOCSTRING): define SYMBOL as a constant variable.\n\
596The intent is that programs do not change this value, but users may.\n\
597Always sets the value of SYMBOL to the result of evalling INITVALUE.\n\
06ef7355
RS
598If SYMBOL is buffer-local, its default value is what is set;\n\
599 buffer-local values are not affected.\n\
db9f0278
JB
600DOCSTRING is optional.\n\
601If DOCSTRING starts with *, this variable is identified as a user option.\n\
602 This means that M-x set-variable and M-x edit-options recognize it.\n\n\
603Note: do not use `defconst' for user options in libraries that are not\n\
604normally loaded, since it is useful for users to be able to specify\n\
605their own values for such variables before loading the library.\n\
606Since `defconst' unconditionally assigns the variable,\n\
607it would override the user's choice.")
608 (args)
609 Lisp_Object args;
610{
611 register Lisp_Object sym, tem;
612
613 sym = Fcar (args);
614 Fset_default (sym, Feval (Fcar (Fcdr (args))));
615 tem = Fcar (Fcdr (Fcdr (args)));
265a9e55 616 if (!NILP (tem))
db9f0278 617 {
265a9e55 618 if (!NILP (Vpurify_flag))
db9f0278
JB
619 tem = Fpurecopy (tem);
620 Fput (sym, Qvariable_documentation, tem);
621 }
2a49b6e5 622 LOADHIST_ATTACH (sym);
db9f0278
JB
623 return sym;
624}
625
626DEFUN ("user-variable-p", Fuser_variable_p, Suser_variable_p, 1, 1, 0,
627 "Returns t if VARIABLE is intended to be set and modified by users.\n\
628\(The alternative is a variable used internally in a Lisp program.)\n\
629Determined by whether the first character of the documentation\n\
630for the variable is \"*\"")
631 (variable)
632 Lisp_Object variable;
633{
634 Lisp_Object documentation;
635
636 documentation = Fget (variable, Qvariable_documentation);
637 if (XTYPE (documentation) == Lisp_Int && XINT (documentation) < 0)
638 return Qt;
639 if ((XTYPE (documentation) == Lisp_String) &&
640 ((unsigned char) XSTRING (documentation)->data[0] == '*'))
641 return Qt;
642 return Qnil;
643}
644\f
645DEFUN ("let*", FletX, SletX, 1, UNEVALLED, 0,
646 "(let* VARLIST BODY...): bind variables according to VARLIST then eval BODY.\n\
647The value of the last form in BODY is returned.\n\
648Each element of VARLIST is a symbol (which is bound to nil)\n\
649or a list (SYMBOL VALUEFORM) (which binds SYMBOL to the value of VALUEFORM).\n\
650Each VALUEFORM can refer to the symbols already bound by this VARLIST.")
651 (args)
652 Lisp_Object args;
653{
654 Lisp_Object varlist, val, elt;
655 int count = specpdl_ptr - specpdl;
656 struct gcpro gcpro1, gcpro2, gcpro3;
657
658 GCPRO3 (args, elt, varlist);
659
660 varlist = Fcar (args);
265a9e55 661 while (!NILP (varlist))
db9f0278
JB
662 {
663 QUIT;
664 elt = Fcar (varlist);
665 if (XTYPE (elt) == Lisp_Symbol)
666 specbind (elt, Qnil);
08564963
JB
667 else if (! NILP (Fcdr (Fcdr (elt))))
668 Fsignal (Qerror,
669 Fcons (build_string ("`let' bindings can have only one value-form"),
670 elt));
db9f0278
JB
671 else
672 {
673 val = Feval (Fcar (Fcdr (elt)));
674 specbind (Fcar (elt), val);
675 }
676 varlist = Fcdr (varlist);
677 }
678 UNGCPRO;
679 val = Fprogn (Fcdr (args));
680 return unbind_to (count, val);
681}
682
683DEFUN ("let", Flet, Slet, 1, UNEVALLED, 0,
684 "(let VARLIST BODY...): bind variables according to VARLIST then eval BODY.\n\
685The value of the last form in BODY is returned.\n\
686Each element of VARLIST is a symbol (which is bound to nil)\n\
687or a list (SYMBOL VALUEFORM) (which binds SYMBOL to the value of VALUEFORM).\n\
688All the VALUEFORMs are evalled before any symbols are bound.")
689 (args)
690 Lisp_Object args;
691{
692 Lisp_Object *temps, tem;
693 register Lisp_Object elt, varlist;
694 int count = specpdl_ptr - specpdl;
695 register int argnum;
696 struct gcpro gcpro1, gcpro2;
697
698 varlist = Fcar (args);
699
700 /* Make space to hold the values to give the bound variables */
701 elt = Flength (varlist);
702 temps = (Lisp_Object *) alloca (XFASTINT (elt) * sizeof (Lisp_Object));
703
704 /* Compute the values and store them in `temps' */
705
706 GCPRO2 (args, *temps);
707 gcpro2.nvars = 0;
708
265a9e55 709 for (argnum = 0; !NILP (varlist); varlist = Fcdr (varlist))
db9f0278
JB
710 {
711 QUIT;
712 elt = Fcar (varlist);
713 if (XTYPE (elt) == Lisp_Symbol)
714 temps [argnum++] = Qnil;
08564963
JB
715 else if (! NILP (Fcdr (Fcdr (elt))))
716 Fsignal (Qerror,
717 Fcons (build_string ("`let' bindings can have only one value-form"),
718 elt));
db9f0278
JB
719 else
720 temps [argnum++] = Feval (Fcar (Fcdr (elt)));
721 gcpro2.nvars = argnum;
722 }
723 UNGCPRO;
724
725 varlist = Fcar (args);
265a9e55 726 for (argnum = 0; !NILP (varlist); varlist = Fcdr (varlist))
db9f0278
JB
727 {
728 elt = Fcar (varlist);
729 tem = temps[argnum++];
730 if (XTYPE (elt) == Lisp_Symbol)
731 specbind (elt, tem);
732 else
733 specbind (Fcar (elt), tem);
734 }
735
736 elt = Fprogn (Fcdr (args));
737 return unbind_to (count, elt);
738}
739
740DEFUN ("while", Fwhile, Swhile, 1, UNEVALLED, 0,
741 "(while TEST BODY...): if TEST yields non-nil, eval BODY... and repeat.\n\
742The order of execution is thus TEST, BODY, TEST, BODY and so on\n\
743until TEST returns nil.")
744 (args)
745 Lisp_Object args;
746{
747 Lisp_Object test, body, tem;
748 struct gcpro gcpro1, gcpro2;
749
750 GCPRO2 (test, body);
751
752 test = Fcar (args);
753 body = Fcdr (args);
e3c24a74
RS
754 while (tem = Feval (test),
755 (!EQ (Vmocklisp_arguments, Qt) ? XINT (tem) : !NILP (tem)))
db9f0278
JB
756 {
757 QUIT;
758 Fprogn (body);
759 }
760
761 UNGCPRO;
762 return Qnil;
763}
764
765DEFUN ("macroexpand", Fmacroexpand, Smacroexpand, 1, 2, 0,
766 "Return result of expanding macros at top level of FORM.\n\
767If FORM is not a macro call, it is returned unchanged.\n\
768Otherwise, the macro is expanded and the expansion is considered\n\
769in place of FORM. When a non-macro-call results, it is returned.\n\n\
770The second optional arg ENVIRONMENT species an environment of macro\n\
771definitions to shadow the loaded ones for use in file byte-compilation.")
772 (form, env)
773 register Lisp_Object form;
774 Lisp_Object env;
775{
23d6b5a6 776 /* With cleanups from Hallvard Furuseth. */
db9f0278
JB
777 register Lisp_Object expander, sym, def, tem;
778
779 while (1)
780 {
781 /* Come back here each time we expand a macro call,
782 in case it expands into another macro call. */
783 if (XTYPE (form) != Lisp_Cons)
784 break;
23d6b5a6
JB
785 /* Set SYM, give DEF and TEM right values in case SYM is not a symbol. */
786 def = sym = XCONS (form)->car;
787 tem = Qnil;
db9f0278
JB
788 /* Trace symbols aliases to other symbols
789 until we get a symbol that is not an alias. */
23d6b5a6 790 while (XTYPE (def) == Lisp_Symbol)
db9f0278
JB
791 {
792 QUIT;
23d6b5a6 793 sym = def;
db9f0278 794 tem = Fassq (sym, env);
265a9e55 795 if (NILP (tem))
db9f0278
JB
796 {
797 def = XSYMBOL (sym)->function;
23d6b5a6
JB
798 if (!EQ (def, Qunbound))
799 continue;
db9f0278 800 }
23d6b5a6 801 break;
db9f0278
JB
802 }
803 /* Right now TEM is the result from SYM in ENV,
804 and if TEM is nil then DEF is SYM's function definition. */
265a9e55 805 if (NILP (tem))
db9f0278
JB
806 {
807 /* SYM is not mentioned in ENV.
808 Look at its function definition. */
809 if (EQ (def, Qunbound)
810 || XTYPE (def) != Lisp_Cons)
811 /* Not defined or definition not suitable */
812 break;
813 if (EQ (XCONS (def)->car, Qautoload))
814 {
815 /* Autoloading function: will it be a macro when loaded? */
ee9ee63c 816 tem = Fnth (make_number (4), def);
47ccd8b6 817 if (EQ (tem, Qt) || EQ (tem, Qmacro))
ee9ee63c
JB
818 /* Yes, load it and try again. */
819 {
820 do_autoload (def, sym);
821 continue;
822 }
823 else
db9f0278 824 break;
db9f0278
JB
825 }
826 else if (!EQ (XCONS (def)->car, Qmacro))
827 break;
828 else expander = XCONS (def)->cdr;
829 }
830 else
831 {
832 expander = XCONS (tem)->cdr;
265a9e55 833 if (NILP (expander))
db9f0278
JB
834 break;
835 }
db9f0278
JB
836 form = apply1 (expander, XCONS (form)->cdr);
837 }
838 return form;
839}
840\f
841DEFUN ("catch", Fcatch, Scatch, 1, UNEVALLED, 0,
842 "(catch TAG BODY...): eval BODY allowing nonlocal exits using `throw'.\n\
843TAG is evalled to get the tag to use. Then the BODY is executed.\n\
844Within BODY, (throw TAG) with same tag exits BODY and exits this `catch'.\n\
845If no throw happens, `catch' returns the value of the last BODY form.\n\
846If a throw happens, it specifies the value to return from `catch'.")
847 (args)
848 Lisp_Object args;
849{
850 register Lisp_Object tag;
851 struct gcpro gcpro1;
852
853 GCPRO1 (args);
854 tag = Feval (Fcar (args));
855 UNGCPRO;
856 return internal_catch (tag, Fprogn, Fcdr (args));
857}
858
859/* Set up a catch, then call C function FUNC on argument ARG.
860 FUNC should return a Lisp_Object.
861 This is how catches are done from within C code. */
862
863Lisp_Object
864internal_catch (tag, func, arg)
865 Lisp_Object tag;
866 Lisp_Object (*func) ();
867 Lisp_Object arg;
868{
869 /* This structure is made part of the chain `catchlist'. */
870 struct catchtag c;
871
872 /* Fill in the components of c, and put it on the list. */
873 c.next = catchlist;
874 c.tag = tag;
875 c.val = Qnil;
876 c.backlist = backtrace_list;
877 c.handlerlist = handlerlist;
878 c.lisp_eval_depth = lisp_eval_depth;
879 c.pdlcount = specpdl_ptr - specpdl;
880 c.poll_suppress_count = poll_suppress_count;
881 c.gcpro = gcprolist;
882 catchlist = &c;
883
884 /* Call FUNC. */
885 if (! _setjmp (c.jmp))
886 c.val = (*func) (arg);
887
888 /* Throw works by a longjmp that comes right here. */
889 catchlist = c.next;
890 return c.val;
891}
892
ba410f40
JB
893/* Unwind the specbind, catch, and handler stacks back to CATCH, and
894 jump to that CATCH, returning VALUE as the value of that catch.
db9f0278 895
ba410f40
JB
896 This is the guts Fthrow and Fsignal; they differ only in the way
897 they choose the catch tag to throw to. A catch tag for a
898 condition-case form has a TAG of Qnil.
db9f0278 899
ba410f40
JB
900 Before each catch is discarded, unbind all special bindings and
901 execute all unwind-protect clauses made above that catch. Unwind
902 the handler stack as we go, so that the proper handlers are in
903 effect for each unwind-protect clause we run. At the end, restore
904 some static info saved in CATCH, and longjmp to the location
905 specified in the
906
907 This is used for correct unwinding in Fthrow and Fsignal. */
db9f0278
JB
908
909static void
ba410f40 910unwind_to_catch (catch, value)
db9f0278 911 struct catchtag *catch;
ba410f40 912 Lisp_Object value;
db9f0278
JB
913{
914 register int last_time;
915
ba410f40
JB
916 /* Save the value in the tag. */
917 catch->val = value;
918
82da7701 919 /* Restore the polling-suppression count. */
1cdc3155 920 set_poll_suppress_count (catch->poll_suppress_count);
82da7701 921
db9f0278
JB
922 do
923 {
924 last_time = catchlist == catch;
82da7701
JB
925
926 /* Unwind the specpdl stack, and then restore the proper set of
927 handlers. */
db9f0278
JB
928 unbind_to (catchlist->pdlcount, Qnil);
929 handlerlist = catchlist->handlerlist;
930 catchlist = catchlist->next;
931 }
932 while (! last_time);
933
934 gcprolist = catch->gcpro;
935 backtrace_list = catch->backlist;
936 lisp_eval_depth = catch->lisp_eval_depth;
ba410f40
JB
937
938 _longjmp (catch->jmp, 1);
db9f0278
JB
939}
940
941DEFUN ("throw", Fthrow, Sthrow, 2, 2, 0,
942 "(throw TAG VALUE): throw to the catch for TAG and return VALUE from it.\n\
943Both TAG and VALUE are evalled.")
944 (tag, val)
945 register Lisp_Object tag, val;
946{
947 register struct catchtag *c;
948
949 while (1)
950 {
265a9e55 951 if (!NILP (tag))
db9f0278
JB
952 for (c = catchlist; c; c = c->next)
953 {
954 if (EQ (c->tag, tag))
ba410f40 955 unwind_to_catch (c, val);
db9f0278
JB
956 }
957 tag = Fsignal (Qno_catch, Fcons (tag, Fcons (val, Qnil)));
958 }
959}
960
961
962DEFUN ("unwind-protect", Funwind_protect, Sunwind_protect, 1, UNEVALLED, 0,
963 "Do BODYFORM, protecting with UNWINDFORMS.\n\
964Usage looks like (unwind-protect BODYFORM UNWINDFORMS...).\n\
965If BODYFORM completes normally, its value is returned\n\
966after executing the UNWINDFORMS.\n\
967If BODYFORM exits nonlocally, the UNWINDFORMS are executed anyway.")
968 (args)
969 Lisp_Object args;
970{
971 Lisp_Object val;
972 int count = specpdl_ptr - specpdl;
973
974 record_unwind_protect (0, Fcdr (args));
975 val = Feval (Fcar (args));
976 return unbind_to (count, val);
977}
978\f
979/* Chain of condition handlers currently in effect.
980 The elements of this chain are contained in the stack frames
981 of Fcondition_case and internal_condition_case.
982 When an error is signaled (by calling Fsignal, below),
983 this chain is searched for an element that applies. */
984
985struct handler *handlerlist;
986
987DEFUN ("condition-case", Fcondition_case, Scondition_case, 2, UNEVALLED, 0,
988 "Regain control when an error is signaled.\n\
989Usage looks like (condition-case VAR BODYFORM HANDLERS...).\n\
990executes BODYFORM and returns its value if no error happens.\n\
991Each element of HANDLERS looks like (CONDITION-NAME BODY...)\n\
992where the BODY is made of Lisp expressions.\n\n\
993A handler is applicable to an error\n\
994if CONDITION-NAME is one of the error's condition names.\n\
995If an error happens, the first applicable handler is run.\n\
996\n\
633357d4
RS
997The car of a handler may be a list of condition names\n\
998instead of a single condition name.\n\
999\n\
db9f0278
JB
1000When a handler handles an error,\n\
1001control returns to the condition-case and the handler BODY... is executed\n\
1002with VAR bound to (SIGNALED-CONDITIONS . SIGNAL-DATA).\n\
1003VAR may be nil; then you do not get access to the signal information.\n\
1004\n\
1005The value of the last BODY form is returned from the condition-case.\n\
1006See also the function `signal' for more info.")
1007 (args)
1008 Lisp_Object args;
1009{
1010 Lisp_Object val;
1011 struct catchtag c;
1012 struct handler h;
82da7701 1013 register Lisp_Object var, bodyform, handlers;
db9f0278 1014
82da7701
JB
1015 var = Fcar (args);
1016 bodyform = Fcar (Fcdr (args));
1017 handlers = Fcdr (Fcdr (args));
1018 CHECK_SYMBOL (var, 0);
1019
1020 for (val = handlers; ! NILP (val); val = Fcdr (val))
1021 {
1022 Lisp_Object tem;
1023 tem = Fcar (val);
5f96776a
RS
1024 if (! (NILP (tem)
1025 || (CONSP (tem)
1026 && (SYMBOLP (XCONS (tem)->car)
1027 || CONSP (XCONS (tem)->car)))))
82da7701
JB
1028 error ("Invalid condition handler", tem);
1029 }
db9f0278
JB
1030
1031 c.tag = Qnil;
1032 c.val = Qnil;
1033 c.backlist = backtrace_list;
1034 c.handlerlist = handlerlist;
1035 c.lisp_eval_depth = lisp_eval_depth;
1036 c.pdlcount = specpdl_ptr - specpdl;
1037 c.poll_suppress_count = poll_suppress_count;
1038 c.gcpro = gcprolist;
1039 if (_setjmp (c.jmp))
1040 {
265a9e55 1041 if (!NILP (h.var))
9d58218c
RS
1042 specbind (h.var, c.val);
1043 val = Fprogn (Fcdr (h.chosen_clause));
82da7701
JB
1044
1045 /* Note that this just undoes the binding of h.var; whoever
1046 longjumped to us unwound the stack to c.pdlcount before
1047 throwing. */
db9f0278
JB
1048 unbind_to (c.pdlcount, Qnil);
1049 return val;
1050 }
1051 c.next = catchlist;
1052 catchlist = &c;
db9f0278 1053
82da7701
JB
1054 h.var = var;
1055 h.handler = handlers;
db9f0278 1056 h.next = handlerlist;
db9f0278
JB
1057 h.tag = &c;
1058 handlerlist = &h;
1059
82da7701 1060 val = Feval (bodyform);
db9f0278
JB
1061 catchlist = c.next;
1062 handlerlist = h.next;
1063 return val;
1064}
1065
1066Lisp_Object
1067internal_condition_case (bfun, handlers, hfun)
1068 Lisp_Object (*bfun) ();
1069 Lisp_Object handlers;
1070 Lisp_Object (*hfun) ();
1071{
1072 Lisp_Object val;
1073 struct catchtag c;
1074 struct handler h;
1075
1076 c.tag = Qnil;
1077 c.val = Qnil;
1078 c.backlist = backtrace_list;
1079 c.handlerlist = handlerlist;
1080 c.lisp_eval_depth = lisp_eval_depth;
1081 c.pdlcount = specpdl_ptr - specpdl;
1082 c.poll_suppress_count = poll_suppress_count;
1083 c.gcpro = gcprolist;
1084 if (_setjmp (c.jmp))
1085 {
9d58218c 1086 return (*hfun) (c.val);
db9f0278
JB
1087 }
1088 c.next = catchlist;
1089 catchlist = &c;
1090 h.handler = handlers;
1091 h.var = Qnil;
db9f0278
JB
1092 h.next = handlerlist;
1093 h.tag = &c;
1094 handlerlist = &h;
1095
1096 val = (*bfun) ();
1097 catchlist = c.next;
1098 handlerlist = h.next;
1099 return val;
1100}
1101
d227775c
RS
1102Lisp_Object
1103internal_condition_case_1 (bfun, arg, handlers, hfun)
1104 Lisp_Object (*bfun) ();
1105 Lisp_Object arg;
1106 Lisp_Object handlers;
1107 Lisp_Object (*hfun) ();
1108{
1109 Lisp_Object val;
1110 struct catchtag c;
1111 struct handler h;
1112
1113 c.tag = Qnil;
1114 c.val = Qnil;
1115 c.backlist = backtrace_list;
1116 c.handlerlist = handlerlist;
1117 c.lisp_eval_depth = lisp_eval_depth;
1118 c.pdlcount = specpdl_ptr - specpdl;
1119 c.poll_suppress_count = poll_suppress_count;
1120 c.gcpro = gcprolist;
1121 if (_setjmp (c.jmp))
1122 {
9d58218c 1123 return (*hfun) (c.val);
d227775c
RS
1124 }
1125 c.next = catchlist;
1126 catchlist = &c;
1127 h.handler = handlers;
1128 h.var = Qnil;
1129 h.next = handlerlist;
1130 h.tag = &c;
1131 handlerlist = &h;
1132
1133 val = (*bfun) (arg);
1134 catchlist = c.next;
1135 handlerlist = h.next;
1136 return val;
1137}
1138\f
db9f0278
JB
1139static Lisp_Object find_handler_clause ();
1140
1141DEFUN ("signal", Fsignal, Ssignal, 2, 2, 0,
4200e719 1142 "Signal an error. Args are ERROR-SYMBOL and associated DATA.\n\
db9f0278 1143This function does not return.\n\n\
4200e719 1144An error symbol is a symbol with an `error-conditions' property\n\
db9f0278
JB
1145that is a list of condition names.\n\
1146A handler for any of those names will get to handle this signal.\n\
1147The symbol `error' should normally be one of them.\n\
1148\n\
1149DATA should be a list. Its elements are printed as part of the error message.\n\
1150If the signal is handled, DATA is made available to the handler.\n\
1151See also the function `condition-case'.")
4200e719
RS
1152 (error_symbol, data)
1153 Lisp_Object error_symbol, data;
db9f0278
JB
1154{
1155 register struct handler *allhandlers = handlerlist;
1156 Lisp_Object conditions;
1157 extern int gc_in_progress;
1158 extern int waiting_for_input;
1159 Lisp_Object debugger_value;
1160
1161 quit_error_check ();
1162 immediate_quit = 0;
1163 if (gc_in_progress || waiting_for_input)
1164 abort ();
1165
e5d77022 1166#ifdef HAVE_X_WINDOWS
db9f0278 1167 TOTALLY_UNBLOCK_INPUT;
e5d77022 1168#endif
db9f0278 1169
4200e719 1170 conditions = Fget (error_symbol, Qerror_conditions);
db9f0278
JB
1171
1172 for (; handlerlist; handlerlist = handlerlist->next)
1173 {
1174 register Lisp_Object clause;
1175 clause = find_handler_clause (handlerlist->handler, conditions,
4200e719 1176 error_symbol, data, &debugger_value);
db9f0278
JB
1177
1178#if 0 /* Most callers are not prepared to handle gc if this returns.
1179 So, since this feature is not very useful, take it out. */
1180 /* If have called debugger and user wants to continue,
1181 just return nil. */
1182 if (EQ (clause, Qlambda))
1183 return debugger_value;
1184#else
1185 if (EQ (clause, Qlambda))
82da7701
JB
1186 {
1187 /* We can't return values to code which signalled an error, but we
1188 can continue code which has signalled a quit. */
4200e719 1189 if (EQ (error_symbol, Qquit))
82da7701
JB
1190 return Qnil;
1191 else
d3e6f8be 1192 error ("Cannot return from the debugger in an error");
82da7701 1193 }
db9f0278
JB
1194#endif
1195
265a9e55 1196 if (!NILP (clause))
db9f0278 1197 {
9d58218c 1198 Lisp_Object unwind_data;
db9f0278 1199 struct handler *h = handlerlist;
9d58218c 1200
db9f0278 1201 handlerlist = allhandlers;
9d58218c
RS
1202 if (data == memory_signal_data)
1203 unwind_data = memory_signal_data;
1204 else
1205 unwind_data = Fcons (error_symbol, data);
1206 h->chosen_clause = clause;
1207 unwind_to_catch (h->tag, unwind_data);
db9f0278
JB
1208 }
1209 }
1210
1211 handlerlist = allhandlers;
1212 /* If no handler is present now, try to run the debugger,
1213 and if that fails, throw to top level. */
4200e719 1214 find_handler_clause (Qerror, conditions, error_symbol, data, &debugger_value);
db9f0278
JB
1215 Fthrow (Qtop_level, Qt);
1216}
1217
128c0f66
RM
1218/* Return nonzero iff LIST is a non-nil atom or
1219 a list containing one of CONDITIONS. */
1220
1221static int
1222wants_debugger (list, conditions)
1223 Lisp_Object list, conditions;
1224{
4de86b16 1225 if (NILP (list))
128c0f66
RM
1226 return 0;
1227 if (! CONSP (list))
1228 return 1;
1229
ab67260b 1230 while (CONSP (conditions))
128c0f66 1231 {
ab67260b
RS
1232 Lisp_Object this, tail;
1233 this = XCONS (conditions)->car;
1234 for (tail = list; CONSP (tail); tail = XCONS (tail)->cdr)
1235 if (EQ (XCONS (tail)->car, this))
128c0f66 1236 return 1;
128c0f66
RM
1237 conditions = XCONS (conditions)->cdr;
1238 }
ab67260b 1239 return 0;
128c0f66
RM
1240}
1241
1242/* Value of Qlambda means we have called debugger and user has continued.
1243 Store value returned from debugger into *DEBUGGER_VALUE_PTR. */
db9f0278
JB
1244
1245static Lisp_Object
1246find_handler_clause (handlers, conditions, sig, data, debugger_value_ptr)
1247 Lisp_Object handlers, conditions, sig, data;
1248 Lisp_Object *debugger_value_ptr;
1249{
1250 register Lisp_Object h;
1251 register Lisp_Object tem;
db9f0278
JB
1252
1253 if (EQ (handlers, Qt)) /* t is used by handlers for all conditions, set up by C code. */
1254 return Qt;
1255 if (EQ (handlers, Qerror)) /* error is used similarly, but means display a backtrace too */
1256 {
128c0f66 1257 if (wants_debugger (Vstack_trace_on_error, conditions))
db9f0278 1258 internal_with_output_to_temp_buffer ("*Backtrace*", Fbacktrace, Qnil);
ba410f40
JB
1259 if ((EQ (sig, Qquit)
1260 ? debug_on_quit
1261 : wants_debugger (Vdebug_on_error, conditions))
1262 && when_entered_debugger < num_nonmacro_input_chars)
db9f0278
JB
1263 {
1264 int count = specpdl_ptr - specpdl;
1265 specbind (Qdebug_on_error, Qnil);
1266 *debugger_value_ptr =
1267 call_debugger (Fcons (Qerror,
1268 Fcons (Fcons (sig, data),
1269 Qnil)));
1270 return unbind_to (count, Qlambda);
1271 }
1272 return Qt;
1273 }
1274 for (h = handlers; CONSP (h); h = Fcdr (h))
1275 {
5f96776a
RS
1276 Lisp_Object handler, condit;
1277
1278 handler = Fcar (h);
1279 if (!CONSP (handler))
db9f0278 1280 continue;
5f96776a
RS
1281 condit = Fcar (handler);
1282 /* Handle a single condition name in handler HANDLER. */
1283 if (SYMBOLP (condit))
1284 {
1285 tem = Fmemq (Fcar (handler), conditions);
1286 if (!NILP (tem))
1287 return handler;
1288 }
1289 /* Handle a list of condition names in handler HANDLER. */
1290 else if (CONSP (condit))
1291 {
1292 while (CONSP (condit))
1293 {
1294 tem = Fmemq (Fcar (condit), conditions);
1295 if (!NILP (tem))
1296 return handler;
1297 condit = XCONS (condit)->cdr;
1298 }
1299 }
db9f0278
JB
1300 }
1301 return Qnil;
1302}
1303
1304/* dump an error message; called like printf */
1305
1306/* VARARGS 1 */
1307void
1308error (m, a1, a2, a3)
1309 char *m;
9125da08 1310 char *a1, *a2, *a3;
db9f0278
JB
1311{
1312 char buf[200];
9125da08
RS
1313 int size = 200;
1314 int mlen;
1315 char *buffer = buf;
1316 char *args[3];
1317 int allocated = 0;
1318 Lisp_Object string;
1319
1320 args[0] = a1;
1321 args[1] = a2;
1322 args[2] = a3;
1323
1324 mlen = strlen (m);
db9f0278
JB
1325
1326 while (1)
9125da08
RS
1327 {
1328 int used = doprnt (buf, size, m, m + mlen, 3, args);
1329 if (used < size)
1330 break;
1331 size *= 2;
1332 if (allocated)
1333 buffer = (char *) xrealloc (buffer, size);
5ece1728
RS
1334 else
1335 {
1336 buffer = (char *) xmalloc (size);
1337 allocated = 1;
1338 }
9125da08
RS
1339 }
1340
1341 string = build_string (buf);
1342 if (allocated)
1343 free (buffer);
1344
1345 Fsignal (Qerror, Fcons (string, Qnil));
db9f0278
JB
1346}
1347\f
1348DEFUN ("commandp", Fcommandp, Scommandp, 1, 1, 0,
1349 "T if FUNCTION makes provisions for interactive calling.\n\
1350This means it contains a description for how to read arguments to give it.\n\
1351The value is nil for an invalid function or a symbol with no function\n\
1352definition.\n\
1353\n\
1354Interactively callable functions include strings and vectors (treated\n\
1355as keyboard macros), lambda-expressions that contain a top-level call\n\
1356to `interactive', autoload definitions made by `autoload' with non-nil\n\
1357fourth argument, and some of the built-in functions of Lisp.\n\
1358\n\
1359Also, a symbol satisfies `commandp' if its function definition does so.")
1360 (function)
1361 Lisp_Object function;
1362{
1363 register Lisp_Object fun;
1364 register Lisp_Object funcar;
1365 register Lisp_Object tem;
1366 register int i = 0;
1367
1368 fun = function;
1369
ffd56f97
JB
1370 fun = indirect_function (fun);
1371 if (EQ (fun, Qunbound))
1372 return Qnil;
db9f0278
JB
1373
1374 /* Emacs primitives are interactive if their DEFUN specifies an
1375 interactive spec. */
1376 if (XTYPE (fun) == Lisp_Subr)
1377 {
1378 if (XSUBR (fun)->prompt)
1379 return Qt;
1380 else
1381 return Qnil;
1382 }
1383
1384 /* Bytecode objects are interactive if they are long enough to
1385 have an element whose index is COMPILED_INTERACTIVE, which is
1386 where the interactive spec is stored. */
1387 else if (XTYPE (fun) == Lisp_Compiled)
1388 return (XVECTOR (fun)->size > COMPILED_INTERACTIVE
1389 ? Qt : Qnil);
1390
1391 /* Strings and vectors are keyboard macros. */
1392 if (XTYPE (fun) == Lisp_String
1393 || XTYPE (fun) == Lisp_Vector)
1394 return Qt;
1395
1396 /* Lists may represent commands. */
1397 if (!CONSP (fun))
1398 return Qnil;
1399 funcar = Fcar (fun);
1400 if (XTYPE (funcar) != Lisp_Symbol)
1401 return Fsignal (Qinvalid_function, Fcons (fun, Qnil));
1402 if (EQ (funcar, Qlambda))
1403 return Fassq (Qinteractive, Fcdr (Fcdr (fun)));
1404 if (EQ (funcar, Qmocklisp))
1405 return Qt; /* All mocklisp functions can be called interactively */
1406 if (EQ (funcar, Qautoload))
1407 return Fcar (Fcdr (Fcdr (Fcdr (fun))));
1408 else
1409 return Qnil;
1410}
1411
1412/* ARGSUSED */
1413DEFUN ("autoload", Fautoload, Sautoload, 2, 5, 0,
1414 "Define FUNCTION to autoload from FILE.\n\
1415FUNCTION is a symbol; FILE is a file name string to pass to `load'.\n\
1416Third arg DOCSTRING is documentation for the function.\n\
1417Fourth arg INTERACTIVE if non-nil says function can be called interactively.\n\
ee9ee63c
JB
1418Fifth arg TYPE indicates the type of the object:\n\
1419 nil or omitted says FUNCTION is a function,\n\
1420 `keymap' says FUNCTION is really a keymap, and\n\
1421 `macro' or t says FUNCTION is really a macro.\n\
db9f0278
JB
1422Third through fifth args give info about the real definition.\n\
1423They default to nil.\n\
1424If FUNCTION is already defined other than as an autoload,\n\
1425this does nothing and returns nil.")
ee9ee63c
JB
1426 (function, file, docstring, interactive, type)
1427 Lisp_Object function, file, docstring, interactive, type;
db9f0278
JB
1428{
1429#ifdef NO_ARG_ARRAY
1430 Lisp_Object args[4];
1431#endif
1432
1433 CHECK_SYMBOL (function, 0);
1434 CHECK_STRING (file, 1);
1435
1436 /* If function is defined and not as an autoload, don't override */
1437 if (!EQ (XSYMBOL (function)->function, Qunbound)
1438 && !(XTYPE (XSYMBOL (function)->function) == Lisp_Cons
1439 && EQ (XCONS (XSYMBOL (function)->function)->car, Qautoload)))
1440 return Qnil;
1441
1442#ifdef NO_ARG_ARRAY
1443 args[0] = file;
1444 args[1] = docstring;
1445 args[2] = interactive;
ee9ee63c 1446 args[3] = type;
db9f0278
JB
1447
1448 return Ffset (function, Fcons (Qautoload, Flist (4, &args[0])));
1449#else /* NO_ARG_ARRAY */
1450 return Ffset (function, Fcons (Qautoload, Flist (4, &file)));
1451#endif /* not NO_ARG_ARRAY */
1452}
1453
1454Lisp_Object
1455un_autoload (oldqueue)
1456 Lisp_Object oldqueue;
1457{
1458 register Lisp_Object queue, first, second;
1459
1460 /* Queue to unwind is current value of Vautoload_queue.
1461 oldqueue is the shadowed value to leave in Vautoload_queue. */
1462 queue = Vautoload_queue;
1463 Vautoload_queue = oldqueue;
1464 while (CONSP (queue))
1465 {
1466 first = Fcar (queue);
1467 second = Fcdr (first);
1468 first = Fcar (first);
1469 if (EQ (second, Qnil))
1470 Vfeatures = first;
1471 else
1472 Ffset (first, second);
1473 queue = Fcdr (queue);
1474 }
1475 return Qnil;
1476}
1477
1478do_autoload (fundef, funname)
1479 Lisp_Object fundef, funname;
1480{
1481 int count = specpdl_ptr - specpdl;
2a49b6e5 1482 Lisp_Object fun, val, queue, first, second;
db9f0278
JB
1483
1484 fun = funname;
1485 CHECK_SYMBOL (funname, 0);
1486
1487 /* Value saved here is to be restored into Vautoload_queue */
1488 record_unwind_protect (un_autoload, Vautoload_queue);
1489 Vautoload_queue = Qt;
1490 Fload (Fcar (Fcdr (fundef)), Qnil, noninteractive ? Qt : Qnil, Qnil);
2a49b6e5
RS
1491
1492 /* Save the old autoloads, in case we ever do an unload. */
1493 queue = Vautoload_queue;
1494 while (CONSP (queue))
1495 {
1496 first = Fcar (queue);
1497 second = Fcdr (first);
1498 first = Fcar (first);
5739ce6b
ER
1499
1500 /* Note: This test is subtle. The cdr of an autoload-queue entry
1501 may be an atom if the autoload entry was generated by a defalias
1502 or fset. */
1503 if (CONSP (second))
03e267c2 1504 Fput (first, Qautoload, (Fcdr (second)));
5739ce6b 1505
2a49b6e5
RS
1506 queue = Fcdr (queue);
1507 }
1508
db9f0278
JB
1509 /* Once loading finishes, don't undo it. */
1510 Vautoload_queue = Qt;
1511 unbind_to (count, Qnil);
1512
ffd56f97
JB
1513 fun = Findirect_function (fun);
1514
76c2b0cc 1515 if (!NILP (Fequal (fun, fundef)))
db9f0278
JB
1516 error ("Autoloading failed to define function %s",
1517 XSYMBOL (funname)->name->data);
1518}
1519\f
1520DEFUN ("eval", Feval, Seval, 1, 1, 0,
1521 "Evaluate FORM and return its value.")
1522 (form)
1523 Lisp_Object form;
1524{
1525 Lisp_Object fun, val, original_fun, original_args;
1526 Lisp_Object funcar;
1527 struct backtrace backtrace;
1528 struct gcpro gcpro1, gcpro2, gcpro3;
1529
1530 if (XTYPE (form) == Lisp_Symbol)
1531 {
1532 if (EQ (Vmocklisp_arguments, Qt))
1533 return Fsymbol_value (form);
1534 val = Fsymbol_value (form);
265a9e55 1535 if (NILP (val))
db9f0278
JB
1536 XFASTINT (val) = 0;
1537 else if (EQ (val, Qt))
1538 XFASTINT (val) = 1;
1539 return val;
1540 }
1541 if (!CONSP (form))
1542 return form;
1543
1544 QUIT;
1545 if (consing_since_gc > gc_cons_threshold)
1546 {
1547 GCPRO1 (form);
1548 Fgarbage_collect ();
1549 UNGCPRO;
1550 }
1551
1552 if (++lisp_eval_depth > max_lisp_eval_depth)
1553 {
1554 if (max_lisp_eval_depth < 100)
1555 max_lisp_eval_depth = 100;
1556 if (lisp_eval_depth > max_lisp_eval_depth)
1557 error ("Lisp nesting exceeds max-lisp-eval-depth");
1558 }
1559
1560 original_fun = Fcar (form);
1561 original_args = Fcdr (form);
1562
1563 backtrace.next = backtrace_list;
1564 backtrace_list = &backtrace;
1565 backtrace.function = &original_fun; /* This also protects them from gc */
1566 backtrace.args = &original_args;
1567 backtrace.nargs = UNEVALLED;
1568 backtrace.evalargs = 1;
1569 backtrace.debug_on_exit = 0;
1570
1571 if (debug_on_next_call)
1572 do_debug_on_call (Qt);
1573
1574 /* At this point, only original_fun and original_args
1575 have values that will be used below */
1576 retry:
ffd56f97 1577 fun = Findirect_function (original_fun);
db9f0278
JB
1578
1579 if (XTYPE (fun) == Lisp_Subr)
1580 {
1581 Lisp_Object numargs;
1582 Lisp_Object argvals[7];
1583 Lisp_Object args_left;
1584 register int i, maxargs;
1585
1586 args_left = original_args;
1587 numargs = Flength (args_left);
1588
1589 if (XINT (numargs) < XSUBR (fun)->min_args ||
1590 (XSUBR (fun)->max_args >= 0 && XSUBR (fun)->max_args < XINT (numargs)))
1591 return Fsignal (Qwrong_number_of_arguments, Fcons (fun, Fcons (numargs, Qnil)));
1592
1593 if (XSUBR (fun)->max_args == UNEVALLED)
1594 {
1595 backtrace.evalargs = 0;
1596 val = (*XSUBR (fun)->function) (args_left);
1597 goto done;
1598 }
1599
1600 if (XSUBR (fun)->max_args == MANY)
1601 {
1602 /* Pass a vector of evaluated arguments */
1603 Lisp_Object *vals;
1604 register int argnum = 0;
1605
1606 vals = (Lisp_Object *) alloca (XINT (numargs) * sizeof (Lisp_Object));
1607
1608 GCPRO3 (args_left, fun, fun);
1609 gcpro3.var = vals;
1610 gcpro3.nvars = 0;
1611
265a9e55 1612 while (!NILP (args_left))
db9f0278
JB
1613 {
1614 vals[argnum++] = Feval (Fcar (args_left));
1615 args_left = Fcdr (args_left);
1616 gcpro3.nvars = argnum;
1617 }
db9f0278
JB
1618
1619 backtrace.args = vals;
1620 backtrace.nargs = XINT (numargs);
1621
1622 val = (*XSUBR (fun)->function) (XINT (numargs), vals);
a6e3fa71 1623 UNGCPRO;
db9f0278
JB
1624 goto done;
1625 }
1626
1627 GCPRO3 (args_left, fun, fun);
1628 gcpro3.var = argvals;
1629 gcpro3.nvars = 0;
1630
1631 maxargs = XSUBR (fun)->max_args;
1632 for (i = 0; i < maxargs; args_left = Fcdr (args_left))
1633 {
1634 argvals[i] = Feval (Fcar (args_left));
1635 gcpro3.nvars = ++i;
1636 }
1637
1638 UNGCPRO;
1639
1640 backtrace.args = argvals;
1641 backtrace.nargs = XINT (numargs);
1642
1643 switch (i)
1644 {
1645 case 0:
1646 val = (*XSUBR (fun)->function) ();
1647 goto done;
1648 case 1:
1649 val = (*XSUBR (fun)->function) (argvals[0]);
1650 goto done;
1651 case 2:
1652 val = (*XSUBR (fun)->function) (argvals[0], argvals[1]);
1653 goto done;
1654 case 3:
1655 val = (*XSUBR (fun)->function) (argvals[0], argvals[1],
1656 argvals[2]);
1657 goto done;
1658 case 4:
1659 val = (*XSUBR (fun)->function) (argvals[0], argvals[1],
1660 argvals[2], argvals[3]);
1661 goto done;
1662 case 5:
1663 val = (*XSUBR (fun)->function) (argvals[0], argvals[1], argvals[2],
1664 argvals[3], argvals[4]);
1665 goto done;
1666 case 6:
1667 val = (*XSUBR (fun)->function) (argvals[0], argvals[1], argvals[2],
1668 argvals[3], argvals[4], argvals[5]);
1669 goto done;
15c65264
RS
1670 case 7:
1671 val = (*XSUBR (fun)->function) (argvals[0], argvals[1], argvals[2],
1672 argvals[3], argvals[4], argvals[5],
1673 argvals[6]);
1674 goto done;
db9f0278
JB
1675
1676 default:
08564963
JB
1677 /* Someone has created a subr that takes more arguments than
1678 is supported by this code. We need to either rewrite the
1679 subr to use a different argument protocol, or add more
1680 cases to this switch. */
1681 abort ();
db9f0278
JB
1682 }
1683 }
1684 if (XTYPE (fun) == Lisp_Compiled)
1685 val = apply_lambda (fun, original_args, 1);
1686 else
1687 {
1688 if (!CONSP (fun))
1689 return Fsignal (Qinvalid_function, Fcons (fun, Qnil));
1690 funcar = Fcar (fun);
1691 if (XTYPE (funcar) != Lisp_Symbol)
1692 return Fsignal (Qinvalid_function, Fcons (fun, Qnil));
1693 if (EQ (funcar, Qautoload))
1694 {
1695 do_autoload (fun, original_fun);
1696 goto retry;
1697 }
1698 if (EQ (funcar, Qmacro))
1699 val = Feval (apply1 (Fcdr (fun), original_args));
1700 else if (EQ (funcar, Qlambda))
1701 val = apply_lambda (fun, original_args, 1);
1702 else if (EQ (funcar, Qmocklisp))
1703 val = ml_apply (fun, original_args);
1704 else
1705 return Fsignal (Qinvalid_function, Fcons (fun, Qnil));
1706 }
1707 done:
1708 if (!EQ (Vmocklisp_arguments, Qt))
1709 {
265a9e55 1710 if (NILP (val))
db9f0278
JB
1711 XFASTINT (val) = 0;
1712 else if (EQ (val, Qt))
1713 XFASTINT (val) = 1;
1714 }
1715 lisp_eval_depth--;
1716 if (backtrace.debug_on_exit)
1717 val = call_debugger (Fcons (Qexit, Fcons (val, Qnil)));
1718 backtrace_list = backtrace.next;
1719 return val;
1720}
1721\f
1722DEFUN ("apply", Fapply, Sapply, 2, MANY, 0,
1723 "Call FUNCTION with our remaining args, using our last arg as list of args.\n\
1724Thus, (apply '+ 1 2 '(3 4)) returns 10.")
1725 (nargs, args)
1726 int nargs;
1727 Lisp_Object *args;
1728{
1729 register int i, numargs;
1730 register Lisp_Object spread_arg;
1731 register Lisp_Object *funcall_args;
db9f0278 1732 Lisp_Object fun;
a6e3fa71 1733 struct gcpro gcpro1;
db9f0278
JB
1734
1735 fun = args [0];
1736 funcall_args = 0;
1737 spread_arg = args [nargs - 1];
1738 CHECK_LIST (spread_arg, nargs);
1739
1740 numargs = XINT (Flength (spread_arg));
1741
1742 if (numargs == 0)
1743 return Ffuncall (nargs - 1, args);
1744 else if (numargs == 1)
1745 {
1746 args [nargs - 1] = XCONS (spread_arg)->car;
1747 return Ffuncall (nargs, args);
1748 }
1749
a6e3fa71 1750 numargs += nargs - 2;
db9f0278 1751
ffd56f97
JB
1752 fun = indirect_function (fun);
1753 if (EQ (fun, Qunbound))
db9f0278 1754 {
ffd56f97
JB
1755 /* Let funcall get the error */
1756 fun = args[0];
1757 goto funcall;
db9f0278
JB
1758 }
1759
1760 if (XTYPE (fun) == Lisp_Subr)
1761 {
1762 if (numargs < XSUBR (fun)->min_args
1763 || (XSUBR (fun)->max_args >= 0 && XSUBR (fun)->max_args < numargs))
1764 goto funcall; /* Let funcall get the error */
1765 else if (XSUBR (fun)->max_args > numargs)
1766 {
1767 /* Avoid making funcall cons up a yet another new vector of arguments
1768 by explicitly supplying nil's for optional values */
1769 funcall_args = (Lisp_Object *) alloca ((1 + XSUBR (fun)->max_args)
1770 * sizeof (Lisp_Object));
1771 for (i = numargs; i < XSUBR (fun)->max_args;)
1772 funcall_args[++i] = Qnil;
a6e3fa71
JB
1773 GCPRO1 (*funcall_args);
1774 gcpro1.nvars = 1 + XSUBR (fun)->max_args;
db9f0278
JB
1775 }
1776 }
1777 funcall:
1778 /* We add 1 to numargs because funcall_args includes the
1779 function itself as well as its arguments. */
1780 if (!funcall_args)
a6e3fa71
JB
1781 {
1782 funcall_args = (Lisp_Object *) alloca ((1 + numargs)
1783 * sizeof (Lisp_Object));
1784 GCPRO1 (*funcall_args);
1785 gcpro1.nvars = 1 + numargs;
1786 }
1787
db9f0278
JB
1788 bcopy (args, funcall_args, nargs * sizeof (Lisp_Object));
1789 /* Spread the last arg we got. Its first element goes in
1790 the slot that it used to occupy, hence this value of I. */
1791 i = nargs - 1;
265a9e55 1792 while (!NILP (spread_arg))
db9f0278
JB
1793 {
1794 funcall_args [i++] = XCONS (spread_arg)->car;
1795 spread_arg = XCONS (spread_arg)->cdr;
1796 }
a6e3fa71
JB
1797
1798 RETURN_UNGCPRO (Ffuncall (gcpro1.nvars, funcall_args));
db9f0278
JB
1799}
1800\f
1801/* Apply fn to arg */
1802Lisp_Object
1803apply1 (fn, arg)
1804 Lisp_Object fn, arg;
1805{
a6e3fa71
JB
1806 struct gcpro gcpro1;
1807
1808 GCPRO1 (fn);
265a9e55 1809 if (NILP (arg))
a6e3fa71
JB
1810 RETURN_UNGCPRO (Ffuncall (1, &fn));
1811 gcpro1.nvars = 2;
db9f0278
JB
1812#ifdef NO_ARG_ARRAY
1813 {
1814 Lisp_Object args[2];
1815 args[0] = fn;
1816 args[1] = arg;
a6e3fa71
JB
1817 gcpro1.var = args;
1818 RETURN_UNGCPRO (Fapply (2, args));
db9f0278
JB
1819 }
1820#else /* not NO_ARG_ARRAY */
a6e3fa71 1821 RETURN_UNGCPRO (Fapply (2, &fn));
db9f0278
JB
1822#endif /* not NO_ARG_ARRAY */
1823}
1824
1825/* Call function fn on no arguments */
1826Lisp_Object
1827call0 (fn)
1828 Lisp_Object fn;
1829{
a6e3fa71
JB
1830 struct gcpro gcpro1;
1831
1832 GCPRO1 (fn);
1833 RETURN_UNGCPRO (Ffuncall (1, &fn));
db9f0278
JB
1834}
1835
15285f9f 1836/* Call function fn with 1 argument arg1 */
db9f0278
JB
1837/* ARGSUSED */
1838Lisp_Object
15285f9f
RS
1839call1 (fn, arg1)
1840 Lisp_Object fn, arg1;
db9f0278 1841{
a6e3fa71 1842 struct gcpro gcpro1;
db9f0278 1843#ifdef NO_ARG_ARRAY
a6e3fa71
JB
1844 Lisp_Object args[2];
1845
db9f0278 1846 args[0] = fn;
15285f9f 1847 args[1] = arg1;
a6e3fa71
JB
1848 GCPRO1 (args[0]);
1849 gcpro1.nvars = 2;
1850 RETURN_UNGCPRO (Ffuncall (2, args));
db9f0278 1851#else /* not NO_ARG_ARRAY */
a6e3fa71
JB
1852 GCPRO1 (fn);
1853 gcpro1.nvars = 2;
1854 RETURN_UNGCPRO (Ffuncall (2, &fn));
db9f0278
JB
1855#endif /* not NO_ARG_ARRAY */
1856}
1857
15285f9f 1858/* Call function fn with 2 arguments arg1, arg2 */
db9f0278
JB
1859/* ARGSUSED */
1860Lisp_Object
15285f9f
RS
1861call2 (fn, arg1, arg2)
1862 Lisp_Object fn, arg1, arg2;
db9f0278 1863{
a6e3fa71 1864 struct gcpro gcpro1;
db9f0278
JB
1865#ifdef NO_ARG_ARRAY
1866 Lisp_Object args[3];
1867 args[0] = fn;
15285f9f
RS
1868 args[1] = arg1;
1869 args[2] = arg2;
a6e3fa71
JB
1870 GCPRO1 (args[0]);
1871 gcpro1.nvars = 3;
1872 RETURN_UNGCPRO (Ffuncall (3, args));
db9f0278 1873#else /* not NO_ARG_ARRAY */
a6e3fa71
JB
1874 GCPRO1 (fn);
1875 gcpro1.nvars = 3;
1876 RETURN_UNGCPRO (Ffuncall (3, &fn));
db9f0278
JB
1877#endif /* not NO_ARG_ARRAY */
1878}
1879
15285f9f 1880/* Call function fn with 3 arguments arg1, arg2, arg3 */
db9f0278
JB
1881/* ARGSUSED */
1882Lisp_Object
15285f9f
RS
1883call3 (fn, arg1, arg2, arg3)
1884 Lisp_Object fn, arg1, arg2, arg3;
db9f0278 1885{
a6e3fa71 1886 struct gcpro gcpro1;
db9f0278
JB
1887#ifdef NO_ARG_ARRAY
1888 Lisp_Object args[4];
1889 args[0] = fn;
15285f9f
RS
1890 args[1] = arg1;
1891 args[2] = arg2;
1892 args[3] = arg3;
a6e3fa71
JB
1893 GCPRO1 (args[0]);
1894 gcpro1.nvars = 4;
1895 RETURN_UNGCPRO (Ffuncall (4, args));
db9f0278 1896#else /* not NO_ARG_ARRAY */
a6e3fa71
JB
1897 GCPRO1 (fn);
1898 gcpro1.nvars = 4;
1899 RETURN_UNGCPRO (Ffuncall (4, &fn));
db9f0278
JB
1900#endif /* not NO_ARG_ARRAY */
1901}
1902
15285f9f 1903/* Call function fn with 4 arguments arg1, arg2, arg3, arg4 */
a5a44b91
JB
1904/* ARGSUSED */
1905Lisp_Object
15285f9f
RS
1906call4 (fn, arg1, arg2, arg3, arg4)
1907 Lisp_Object fn, arg1, arg2, arg3, arg4;
a5a44b91
JB
1908{
1909 struct gcpro gcpro1;
1910#ifdef NO_ARG_ARRAY
1911 Lisp_Object args[5];
1912 args[0] = fn;
15285f9f
RS
1913 args[1] = arg1;
1914 args[2] = arg2;
1915 args[3] = arg3;
1916 args[4] = arg4;
a5a44b91
JB
1917 GCPRO1 (args[0]);
1918 gcpro1.nvars = 5;
1919 RETURN_UNGCPRO (Ffuncall (5, args));
1920#else /* not NO_ARG_ARRAY */
1921 GCPRO1 (fn);
1922 gcpro1.nvars = 5;
1923 RETURN_UNGCPRO (Ffuncall (5, &fn));
1924#endif /* not NO_ARG_ARRAY */
1925}
1926
15285f9f
RS
1927/* Call function fn with 5 arguments arg1, arg2, arg3, arg4, arg5 */
1928/* ARGSUSED */
1929Lisp_Object
1930call5 (fn, arg1, arg2, arg3, arg4, arg5)
1931 Lisp_Object fn, arg1, arg2, arg3, arg4, arg5;
1932{
1933 struct gcpro gcpro1;
1934#ifdef NO_ARG_ARRAY
1935 Lisp_Object args[6];
1936 args[0] = fn;
1937 args[1] = arg1;
1938 args[2] = arg2;
1939 args[3] = arg3;
1940 args[4] = arg4;
1941 args[5] = arg5;
1942 GCPRO1 (args[0]);
1943 gcpro1.nvars = 6;
1944 RETURN_UNGCPRO (Ffuncall (6, args));
1945#else /* not NO_ARG_ARRAY */
1946 GCPRO1 (fn);
1947 gcpro1.nvars = 6;
1948 RETURN_UNGCPRO (Ffuncall (6, &fn));
1949#endif /* not NO_ARG_ARRAY */
1950}
1951
1952/* Call function fn with 6 arguments arg1, arg2, arg3, arg4, arg5, arg6 */
1953/* ARGSUSED */
1954Lisp_Object
1955call6 (fn, arg1, arg2, arg3, arg4, arg5, arg6)
1956 Lisp_Object fn, arg1, arg2, arg3, arg4, arg5, arg6;
1957{
1958 struct gcpro gcpro1;
1959#ifdef NO_ARG_ARRAY
1960 Lisp_Object args[7];
1961 args[0] = fn;
1962 args[1] = arg1;
1963 args[2] = arg2;
1964 args[3] = arg3;
1965 args[4] = arg4;
1966 args[5] = arg5;
1967 args[6] = arg6;
1968 GCPRO1 (args[0]);
1969 gcpro1.nvars = 7;
1970 RETURN_UNGCPRO (Ffuncall (7, args));
1971#else /* not NO_ARG_ARRAY */
1972 GCPRO1 (fn);
1973 gcpro1.nvars = 7;
1974 RETURN_UNGCPRO (Ffuncall (7, &fn));
1975#endif /* not NO_ARG_ARRAY */
1976}
1977
db9f0278
JB
1978DEFUN ("funcall", Ffuncall, Sfuncall, 1, MANY, 0,
1979 "Call first argument as a function, passing remaining arguments to it.\n\
1980Thus, (funcall 'cons 'x 'y) returns (x . y).")
1981 (nargs, args)
1982 int nargs;
1983 Lisp_Object *args;
1984{
1985 Lisp_Object fun;
1986 Lisp_Object funcar;
1987 int numargs = nargs - 1;
1988 Lisp_Object lisp_numargs;
1989 Lisp_Object val;
1990 struct backtrace backtrace;
1991 register Lisp_Object *internal_args;
1992 register int i;
1993
1994 QUIT;
1995 if (consing_since_gc > gc_cons_threshold)
a6e3fa71 1996 Fgarbage_collect ();
db9f0278
JB
1997
1998 if (++lisp_eval_depth > max_lisp_eval_depth)
1999 {
2000 if (max_lisp_eval_depth < 100)
2001 max_lisp_eval_depth = 100;
2002 if (lisp_eval_depth > max_lisp_eval_depth)
2003 error ("Lisp nesting exceeds max-lisp-eval-depth");
2004 }
2005
2006 backtrace.next = backtrace_list;
2007 backtrace_list = &backtrace;
2008 backtrace.function = &args[0];
2009 backtrace.args = &args[1];
2010 backtrace.nargs = nargs - 1;
2011 backtrace.evalargs = 0;
2012 backtrace.debug_on_exit = 0;
2013
2014 if (debug_on_next_call)
2015 do_debug_on_call (Qlambda);
2016
2017 retry:
2018
2019 fun = args[0];
ffd56f97
JB
2020
2021 fun = Findirect_function (fun);
db9f0278
JB
2022
2023 if (XTYPE (fun) == Lisp_Subr)
2024 {
2025 if (numargs < XSUBR (fun)->min_args
2026 || (XSUBR (fun)->max_args >= 0 && XSUBR (fun)->max_args < numargs))
2027 {
2028 XFASTINT (lisp_numargs) = numargs;
2029 return Fsignal (Qwrong_number_of_arguments, Fcons (fun, Fcons (lisp_numargs, Qnil)));
2030 }
2031
2032 if (XSUBR (fun)->max_args == UNEVALLED)
2033 return Fsignal (Qinvalid_function, Fcons (fun, Qnil));
2034
2035 if (XSUBR (fun)->max_args == MANY)
2036 {
2037 val = (*XSUBR (fun)->function) (numargs, args + 1);
2038 goto done;
2039 }
2040
2041 if (XSUBR (fun)->max_args > numargs)
2042 {
2043 internal_args = (Lisp_Object *) alloca (XSUBR (fun)->max_args * sizeof (Lisp_Object));
2044 bcopy (args + 1, internal_args, numargs * sizeof (Lisp_Object));
2045 for (i = numargs; i < XSUBR (fun)->max_args; i++)
2046 internal_args[i] = Qnil;
2047 }
2048 else
2049 internal_args = args + 1;
2050 switch (XSUBR (fun)->max_args)
2051 {
2052 case 0:
2053 val = (*XSUBR (fun)->function) ();
2054 goto done;
2055 case 1:
2056 val = (*XSUBR (fun)->function) (internal_args[0]);
2057 goto done;
2058 case 2:
2059 val = (*XSUBR (fun)->function) (internal_args[0],
2060 internal_args[1]);
2061 goto done;
2062 case 3:
2063 val = (*XSUBR (fun)->function) (internal_args[0], internal_args[1],
2064 internal_args[2]);
2065 goto done;
2066 case 4:
2067 val = (*XSUBR (fun)->function) (internal_args[0], internal_args[1],
2068 internal_args[2],
2069 internal_args[3]);
2070 goto done;
2071 case 5:
2072 val = (*XSUBR (fun)->function) (internal_args[0], internal_args[1],
2073 internal_args[2], internal_args[3],
2074 internal_args[4]);
2075 goto done;
2076 case 6:
2077 val = (*XSUBR (fun)->function) (internal_args[0], internal_args[1],
2078 internal_args[2], internal_args[3],
2079 internal_args[4], internal_args[5]);
2080 goto done;
15c65264
RS
2081 case 7:
2082 val = (*XSUBR (fun)->function) (internal_args[0], internal_args[1],
2083 internal_args[2], internal_args[3],
2084 internal_args[4], internal_args[5],
2085 internal_args[6]);
2086 goto done;
db9f0278
JB
2087
2088 default:
70ee42f7
JB
2089
2090 /* If a subr takes more than 6 arguments without using MANY
2091 or UNEVALLED, we need to extend this function to support it.
2092 Until this is done, there is no way to call the function. */
2093 abort ();
db9f0278
JB
2094 }
2095 }
2096 if (XTYPE (fun) == Lisp_Compiled)
2097 val = funcall_lambda (fun, numargs, args + 1);
2098 else
2099 {
2100 if (!CONSP (fun))
2101 return Fsignal (Qinvalid_function, Fcons (fun, Qnil));
2102 funcar = Fcar (fun);
2103 if (XTYPE (funcar) != Lisp_Symbol)
2104 return Fsignal (Qinvalid_function, Fcons (fun, Qnil));
2105 if (EQ (funcar, Qlambda))
2106 val = funcall_lambda (fun, numargs, args + 1);
2107 else if (EQ (funcar, Qmocklisp))
2108 val = ml_apply (fun, Flist (numargs, args + 1));
2109 else if (EQ (funcar, Qautoload))
2110 {
2111 do_autoload (fun, args[0]);
2112 goto retry;
2113 }
2114 else
2115 return Fsignal (Qinvalid_function, Fcons (fun, Qnil));
2116 }
2117 done:
2118 lisp_eval_depth--;
2119 if (backtrace.debug_on_exit)
2120 val = call_debugger (Fcons (Qexit, Fcons (val, Qnil)));
2121 backtrace_list = backtrace.next;
2122 return val;
2123}
2124\f
2125Lisp_Object
2126apply_lambda (fun, args, eval_flag)
2127 Lisp_Object fun, args;
2128 int eval_flag;
2129{
2130 Lisp_Object args_left;
2131 Lisp_Object numargs;
2132 register Lisp_Object *arg_vector;
2133 struct gcpro gcpro1, gcpro2, gcpro3;
2134 register int i;
2135 register Lisp_Object tem;
2136
2137 numargs = Flength (args);
2138 arg_vector = (Lisp_Object *) alloca (XINT (numargs) * sizeof (Lisp_Object));
2139 args_left = args;
2140
2141 GCPRO3 (*arg_vector, args_left, fun);
2142 gcpro1.nvars = 0;
2143
2144 for (i = 0; i < XINT (numargs);)
2145 {
2146 tem = Fcar (args_left), args_left = Fcdr (args_left);
2147 if (eval_flag) tem = Feval (tem);
2148 arg_vector[i++] = tem;
2149 gcpro1.nvars = i;
2150 }
2151
2152 UNGCPRO;
2153
2154 if (eval_flag)
2155 {
2156 backtrace_list->args = arg_vector;
2157 backtrace_list->nargs = i;
2158 }
2159 backtrace_list->evalargs = 0;
2160 tem = funcall_lambda (fun, XINT (numargs), arg_vector);
2161
2162 /* Do the debug-on-exit now, while arg_vector still exists. */
2163 if (backtrace_list->debug_on_exit)
2164 tem = call_debugger (Fcons (Qexit, Fcons (tem, Qnil)));
2165 /* Don't do it again when we return to eval. */
2166 backtrace_list->debug_on_exit = 0;
2167 return tem;
2168}
2169
2170/* Apply a Lisp function FUN to the NARGS evaluated arguments in ARG_VECTOR
2171 and return the result of evaluation.
2172 FUN must be either a lambda-expression or a compiled-code object. */
2173
2174Lisp_Object
2175funcall_lambda (fun, nargs, arg_vector)
2176 Lisp_Object fun;
2177 int nargs;
2178 register Lisp_Object *arg_vector;
2179{
2180 Lisp_Object val, tem;
2181 register Lisp_Object syms_left;
2182 Lisp_Object numargs;
2183 register Lisp_Object next;
2184 int count = specpdl_ptr - specpdl;
2185 register int i;
2186 int optional = 0, rest = 0;
2187
2188 specbind (Qmocklisp_arguments, Qt); /* t means NOT mocklisp! */
2189
2190 XFASTINT (numargs) = nargs;
2191
2192 if (XTYPE (fun) == Lisp_Cons)
2193 syms_left = Fcar (Fcdr (fun));
2194 else if (XTYPE (fun) == Lisp_Compiled)
2195 syms_left = XVECTOR (fun)->contents[COMPILED_ARGLIST];
2196 else abort ();
2197
2198 i = 0;
265a9e55 2199 for (; !NILP (syms_left); syms_left = Fcdr (syms_left))
db9f0278
JB
2200 {
2201 QUIT;
2202 next = Fcar (syms_left);
9ffa21d4
JB
2203 while (XTYPE (next) != Lisp_Symbol)
2204 next = Fsignal (Qinvalid_function, Fcons (fun, Qnil));
db9f0278
JB
2205 if (EQ (next, Qand_rest))
2206 rest = 1;
2207 else if (EQ (next, Qand_optional))
2208 optional = 1;
2209 else if (rest)
2210 {
9ffa21d4 2211 specbind (next, Flist (nargs - i, &arg_vector[i]));
db9f0278
JB
2212 i = nargs;
2213 }
2214 else if (i < nargs)
2215 {
2216 tem = arg_vector[i++];
2217 specbind (next, tem);
2218 }
2219 else if (!optional)
2220 return Fsignal (Qwrong_number_of_arguments, Fcons (fun, Fcons (numargs, Qnil)));
2221 else
2222 specbind (next, Qnil);
2223 }
2224
2225 if (i < nargs)
2226 return Fsignal (Qwrong_number_of_arguments, Fcons (fun, Fcons (numargs, Qnil)));
2227
2228 if (XTYPE (fun) == Lisp_Cons)
2229 val = Fprogn (Fcdr (Fcdr (fun)));
2230 else
2231 val = Fbyte_code (XVECTOR (fun)->contents[COMPILED_BYTECODE],
2232 XVECTOR (fun)->contents[COMPILED_CONSTANTS],
2233 XVECTOR (fun)->contents[COMPILED_STACK_DEPTH]);
2234 return unbind_to (count, val);
2235}
2236\f
2237void
2238grow_specpdl ()
2239{
2240 register int count = specpdl_ptr - specpdl;
2241 if (specpdl_size >= max_specpdl_size)
2242 {
2243 if (max_specpdl_size < 400)
2244 max_specpdl_size = 400;
2245 if (specpdl_size >= max_specpdl_size)
2246 {
debee8fe
RS
2247 if (!NILP (Vdebug_on_error))
2248 /* Leave room for some specpdl in the debugger. */
2249 max_specpdl_size = specpdl_size + 100;
db9f0278
JB
2250 Fsignal (Qerror,
2251 Fcons (build_string ("Variable binding depth exceeds max-specpdl-size"), Qnil));
db9f0278
JB
2252 }
2253 }
2254 specpdl_size *= 2;
2255 if (specpdl_size > max_specpdl_size)
2256 specpdl_size = max_specpdl_size;
2257 specpdl = (struct specbinding *) xrealloc (specpdl, specpdl_size * sizeof (struct specbinding));
2258 specpdl_ptr = specpdl + count;
2259}
2260
2261void
2262specbind (symbol, value)
2263 Lisp_Object symbol, value;
2264{
2265 extern void store_symval_forwarding (); /* in eval.c */
2266 Lisp_Object ovalue;
2267
9ffa21d4
JB
2268 CHECK_SYMBOL (symbol, 0);
2269
db9f0278
JB
2270 if (specpdl_ptr == specpdl + specpdl_size)
2271 grow_specpdl ();
2272 specpdl_ptr->symbol = symbol;
2273 specpdl_ptr->func = 0;
d0f7cdc8 2274 specpdl_ptr->old_value = ovalue = find_symbol_value (symbol);
db9f0278
JB
2275 specpdl_ptr++;
2276 if (XTYPE (ovalue) == Lisp_Buffer_Objfwd)
2277 store_symval_forwarding (symbol, ovalue, value);
2278 else
2279 Fset (symbol, value);
2280}
2281
2282void
2283record_unwind_protect (function, arg)
2284 Lisp_Object (*function)();
2285 Lisp_Object arg;
2286{
2287 if (specpdl_ptr == specpdl + specpdl_size)
2288 grow_specpdl ();
2289 specpdl_ptr->func = function;
2290 specpdl_ptr->symbol = Qnil;
2291 specpdl_ptr->old_value = arg;
2292 specpdl_ptr++;
2293}
2294
2295Lisp_Object
2296unbind_to (count, value)
2297 int count;
2298 Lisp_Object value;
2299{
265a9e55 2300 int quitf = !NILP (Vquit_flag);
db9f0278
JB
2301 struct gcpro gcpro1;
2302
2303 GCPRO1 (value);
2304
2305 Vquit_flag = Qnil;
2306
2307 while (specpdl_ptr != specpdl + count)
2308 {
2309 --specpdl_ptr;
2310 if (specpdl_ptr->func != 0)
2311 (*specpdl_ptr->func) (specpdl_ptr->old_value);
2312 /* Note that a "binding" of nil is really an unwind protect,
2313 so in that case the "old value" is a list of forms to evaluate. */
265a9e55 2314 else if (NILP (specpdl_ptr->symbol))
db9f0278
JB
2315 Fprogn (specpdl_ptr->old_value);
2316 else
2317 Fset (specpdl_ptr->symbol, specpdl_ptr->old_value);
2318 }
265a9e55 2319 if (NILP (Vquit_flag) && quitf) Vquit_flag = Qt;
db9f0278
JB
2320
2321 UNGCPRO;
2322
2323 return value;
2324}
2325\f
2326#if 0
2327
2328/* Get the value of symbol's global binding, even if that binding
2329 is not now dynamically visible. */
2330
2331Lisp_Object
2332top_level_value (symbol)
2333 Lisp_Object symbol;
2334{
2335 register struct specbinding *ptr = specpdl;
2336
2337 CHECK_SYMBOL (symbol, 0);
2338 for (; ptr != specpdl_ptr; ptr++)
2339 {
2340 if (EQ (ptr->symbol, symbol))
2341 return ptr->old_value;
2342 }
2343 return Fsymbol_value (symbol);
2344}
2345
2346Lisp_Object
2347top_level_set (symbol, newval)
2348 Lisp_Object symbol, newval;
2349{
2350 register struct specbinding *ptr = specpdl;
2351
2352 CHECK_SYMBOL (symbol, 0);
2353 for (; ptr != specpdl_ptr; ptr++)
2354 {
2355 if (EQ (ptr->symbol, symbol))
2356 {
2357 ptr->old_value = newval;
2358 return newval;
2359 }
2360 }
2361 return Fset (symbol, newval);
2362}
2363
2364#endif /* 0 */
2365\f
2366DEFUN ("backtrace-debug", Fbacktrace_debug, Sbacktrace_debug, 2, 2, 0,
2367 "Set the debug-on-exit flag of eval frame LEVEL levels down to FLAG.\n\
2368The debugger is entered when that frame exits, if the flag is non-nil.")
2369 (level, flag)
2370 Lisp_Object level, flag;
2371{
2372 register struct backtrace *backlist = backtrace_list;
2373 register int i;
2374
2375 CHECK_NUMBER (level, 0);
2376
2377 for (i = 0; backlist && i < XINT (level); i++)
2378 {
2379 backlist = backlist->next;
2380 }
2381
2382 if (backlist)
265a9e55 2383 backlist->debug_on_exit = !NILP (flag);
db9f0278
JB
2384
2385 return flag;
2386}
2387
2388DEFUN ("backtrace", Fbacktrace, Sbacktrace, 0, 0, "",
2389 "Print a trace of Lisp function calls currently active.\n\
2390Output stream used is value of `standard-output'.")
2391 ()
2392{
2393 register struct backtrace *backlist = backtrace_list;
2394 register int i;
2395 Lisp_Object tail;
2396 Lisp_Object tem;
2397 extern Lisp_Object Vprint_level;
2398 struct gcpro gcpro1;
2399
db9f0278
JB
2400 XFASTINT (Vprint_level) = 3;
2401
2402 tail = Qnil;
2403 GCPRO1 (tail);
2404
2405 while (backlist)
2406 {
2407 write_string (backlist->debug_on_exit ? "* " : " ", 2);
2408 if (backlist->nargs == UNEVALLED)
2409 {
2410 Fprin1 (Fcons (*backlist->function, *backlist->args), Qnil);
2411 }
2412 else
2413 {
2414 tem = *backlist->function;
2415 Fprin1 (tem, Qnil); /* This can QUIT */
2416 write_string ("(", -1);
2417 if (backlist->nargs == MANY)
2418 {
2419 for (tail = *backlist->args, i = 0;
265a9e55 2420 !NILP (tail);
db9f0278
JB
2421 tail = Fcdr (tail), i++)
2422 {
2423 if (i) write_string (" ", -1);
2424 Fprin1 (Fcar (tail), Qnil);
2425 }
2426 }
2427 else
2428 {
2429 for (i = 0; i < backlist->nargs; i++)
2430 {
2431 if (i) write_string (" ", -1);
2432 Fprin1 (backlist->args[i], Qnil);
2433 }
2434 }
2435 }
2436 write_string (")\n", -1);
2437 backlist = backlist->next;
2438 }
2439
2440 Vprint_level = Qnil;
2441 UNGCPRO;
2442 return Qnil;
2443}
2444
2445DEFUN ("backtrace-frame", Fbacktrace_frame, Sbacktrace_frame, 1, 1, "",
2446 "Return the function and arguments N frames up from current execution point.\n\
2447If that frame has not evaluated the arguments yet (or is a special form),\n\
2448the value is (nil FUNCTION ARG-FORMS...).\n\
2449If that frame has evaluated its arguments and called its function already,\n\
2450the value is (t FUNCTION ARG-VALUES...).\n\
2451A &rest arg is represented as the tail of the list ARG-VALUES.\n\
2452FUNCTION is whatever was supplied as car of evaluated list,\n\
2453or a lambda expression for macro calls.\n\
2454If N is more than the number of frames, the value is nil.")
2455 (nframes)
2456 Lisp_Object nframes;
2457{
2458 register struct backtrace *backlist = backtrace_list;
2459 register int i;
2460 Lisp_Object tem;
2461
2462 CHECK_NATNUM (nframes, 0);
2463
2464 /* Find the frame requested. */
2465 for (i = 0; i < XFASTINT (nframes); i++)
2466 backlist = backlist->next;
2467
2468 if (!backlist)
2469 return Qnil;
2470 if (backlist->nargs == UNEVALLED)
2471 return Fcons (Qnil, Fcons (*backlist->function, *backlist->args));
2472 else
2473 {
2474 if (backlist->nargs == MANY)
2475 tem = *backlist->args;
2476 else
2477 tem = Flist (backlist->nargs, backlist->args);
2478
2479 return Fcons (Qt, Fcons (*backlist->function, tem));
2480 }
2481}
2482\f
2483syms_of_eval ()
2484{
2485 DEFVAR_INT ("max-specpdl-size", &max_specpdl_size,
2486 "Limit on number of Lisp variable bindings & unwind-protects before error.");
2487
2488 DEFVAR_INT ("max-lisp-eval-depth", &max_lisp_eval_depth,
2489 "Limit on depth in `eval', `apply' and `funcall' before error.\n\
2490This limit is to catch infinite recursions for you before they cause\n\
2491actual stack overflow in C, which would be fatal for Emacs.\n\
2492You can safely make it considerably larger than its default value,\n\
2493if that proves inconveniently small.");
2494
2495 DEFVAR_LISP ("quit-flag", &Vquit_flag,
2496 "Non-nil causes `eval' to abort, unless `inhibit-quit' is non-nil.\n\
d0b68896 2497Typing C-g sets `quit-flag' non-nil, regardless of `inhibit-quit'.");
db9f0278
JB
2498 Vquit_flag = Qnil;
2499
2500 DEFVAR_LISP ("inhibit-quit", &Vinhibit_quit,
2501 "Non-nil inhibits C-g quitting from happening immediately.\n\
2502Note that `quit-flag' will still be set by typing C-g,\n\
2503so a quit will be signalled as soon as `inhibit-quit' is nil.\n\
2504To prevent this happening, set `quit-flag' to nil\n\
2505before making `inhibit-quit' nil.");
2506 Vinhibit_quit = Qnil;
2507
ad236261
JB
2508 Qinhibit_quit = intern ("inhibit-quit");
2509 staticpro (&Qinhibit_quit);
2510
db9f0278
JB
2511 Qautoload = intern ("autoload");
2512 staticpro (&Qautoload);
2513
2514 Qdebug_on_error = intern ("debug-on-error");
2515 staticpro (&Qdebug_on_error);
2516
2517 Qmacro = intern ("macro");
2518 staticpro (&Qmacro);
2519
2520 /* Note that the process handling also uses Qexit, but we don't want
2521 to staticpro it twice, so we just do it here. */
2522 Qexit = intern ("exit");
2523 staticpro (&Qexit);
2524
2525 Qinteractive = intern ("interactive");
2526 staticpro (&Qinteractive);
2527
2528 Qcommandp = intern ("commandp");
2529 staticpro (&Qcommandp);
2530
2531 Qdefun = intern ("defun");
2532 staticpro (&Qdefun);
2533
2534 Qand_rest = intern ("&rest");
2535 staticpro (&Qand_rest);
2536
2537 Qand_optional = intern ("&optional");
2538 staticpro (&Qand_optional);
2539
128c0f66 2540 DEFVAR_LISP ("stack-trace-on-error", &Vstack_trace_on_error,
db9f0278 2541 "*Non-nil means automatically display a backtrace buffer\n\
128c0f66
RM
2542after any error that is handled by the editor command loop.\n\
2543If the value is a list, an error only means to display a backtrace\n\
2544if one of its condition symbols appears in the list.");
2545 Vstack_trace_on_error = Qnil;
db9f0278 2546
128c0f66 2547 DEFVAR_LISP ("debug-on-error", &Vdebug_on_error,
db9f0278
JB
2548 "*Non-nil means enter debugger if an error is signaled.\n\
2549Does not apply to errors handled by `condition-case'.\n\
128c0f66
RM
2550If the value is a list, an error only means to enter the debugger\n\
2551if one of its condition symbols appears in the list.\n\
db9f0278 2552See also variable `debug-on-quit'.");
128c0f66 2553 Vdebug_on_error = Qnil;
db9f0278
JB
2554
2555 DEFVAR_BOOL ("debug-on-quit", &debug_on_quit,
d0b68896 2556 "*Non-nil means enter debugger if quit is signaled (C-g, for example).\n\
1b7d8239 2557Does not apply if quit is handled by a `condition-case'.");
db9f0278
JB
2558 debug_on_quit = 0;
2559
2560 DEFVAR_BOOL ("debug-on-next-call", &debug_on_next_call,
2561 "Non-nil means enter debugger before next `eval', `apply' or `funcall'.");
2562
2563 DEFVAR_LISP ("debugger", &Vdebugger,
2564 "Function to call to invoke debugger.\n\
2565If due to frame exit, args are `exit' and the value being returned;\n\
2566 this function's value will be returned instead of that.\n\
2567If due to error, args are `error' and a list of the args to `signal'.\n\
2568If due to `apply' or `funcall' entry, one arg, `lambda'.\n\
2569If due to `eval' entry, one arg, t.");
2570 Vdebugger = Qnil;
2571
2572 Qmocklisp_arguments = intern ("mocklisp-arguments");
2573 staticpro (&Qmocklisp_arguments);
2574 DEFVAR_LISP ("mocklisp-arguments", &Vmocklisp_arguments,
2575 "While in a mocklisp function, the list of its unevaluated args.");
2576 Vmocklisp_arguments = Qt;
2577
2578 DEFVAR_LISP ("run-hooks", &Vrun_hooks,
2579 "Set to the function `run-hooks', if that function has been defined.\n\
2580Otherwise, nil (in a bare Emacs without preloaded Lisp code).");
2581 Vrun_hooks = Qnil;
2582
2583 staticpro (&Vautoload_queue);
2584 Vautoload_queue = Qnil;
2585
2586 defsubr (&Sor);
2587 defsubr (&Sand);
2588 defsubr (&Sif);
2589 defsubr (&Scond);
2590 defsubr (&Sprogn);
2591 defsubr (&Sprog1);
2592 defsubr (&Sprog2);
2593 defsubr (&Ssetq);
2594 defsubr (&Squote);
2595 defsubr (&Sfunction);
2596 defsubr (&Sdefun);
2597 defsubr (&Sdefmacro);
2598 defsubr (&Sdefvar);
2599 defsubr (&Sdefconst);
2600 defsubr (&Suser_variable_p);
2601 defsubr (&Slet);
2602 defsubr (&SletX);
2603 defsubr (&Swhile);
2604 defsubr (&Smacroexpand);
2605 defsubr (&Scatch);
2606 defsubr (&Sthrow);
2607 defsubr (&Sunwind_protect);
2608 defsubr (&Scondition_case);
2609 defsubr (&Ssignal);
2610 defsubr (&Sinteractive_p);
2611 defsubr (&Scommandp);
2612 defsubr (&Sautoload);
2613 defsubr (&Seval);
2614 defsubr (&Sapply);
2615 defsubr (&Sfuncall);
2616 defsubr (&Sbacktrace_debug);
2617 defsubr (&Sbacktrace);
2618 defsubr (&Sbacktrace_frame);
2619}