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