Removed spurious comment (obsoleted by ;;;###autoload).
[bpt/emacs.git] / src / eval.c
CommitLineData
db9f0278 1/* Evaluator for GNU Emacs Lisp interpreter.
70ee42f7 2 Copyright (C) 1985, 1986, 1987, 1992 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
21#include "config.h"
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);
265a9e55 749 while (tem = Feval (test), !NILP (tem))
db9f0278
JB
750 {
751 QUIT;
752 Fprogn (body);
753 }
754
755 UNGCPRO;
756 return Qnil;
757}
758
759DEFUN ("macroexpand", Fmacroexpand, Smacroexpand, 1, 2, 0,
760 "Return result of expanding macros at top level of FORM.\n\
761If FORM is not a macro call, it is returned unchanged.\n\
762Otherwise, the macro is expanded and the expansion is considered\n\
763in place of FORM. When a non-macro-call results, it is returned.\n\n\
764The second optional arg ENVIRONMENT species an environment of macro\n\
765definitions to shadow the loaded ones for use in file byte-compilation.")
766 (form, env)
767 register Lisp_Object form;
768 Lisp_Object env;
769{
23d6b5a6 770 /* With cleanups from Hallvard Furuseth. */
db9f0278
JB
771 register Lisp_Object expander, sym, def, tem;
772
773 while (1)
774 {
775 /* Come back here each time we expand a macro call,
776 in case it expands into another macro call. */
777 if (XTYPE (form) != Lisp_Cons)
778 break;
23d6b5a6
JB
779 /* Set SYM, give DEF and TEM right values in case SYM is not a symbol. */
780 def = sym = XCONS (form)->car;
781 tem = Qnil;
db9f0278
JB
782 /* Trace symbols aliases to other symbols
783 until we get a symbol that is not an alias. */
23d6b5a6 784 while (XTYPE (def) == Lisp_Symbol)
db9f0278
JB
785 {
786 QUIT;
23d6b5a6 787 sym = def;
db9f0278 788 tem = Fassq (sym, env);
265a9e55 789 if (NILP (tem))
db9f0278
JB
790 {
791 def = XSYMBOL (sym)->function;
23d6b5a6
JB
792 if (!EQ (def, Qunbound))
793 continue;
db9f0278 794 }
23d6b5a6 795 break;
db9f0278
JB
796 }
797 /* Right now TEM is the result from SYM in ENV,
798 and if TEM is nil then DEF is SYM's function definition. */
265a9e55 799 if (NILP (tem))
db9f0278
JB
800 {
801 /* SYM is not mentioned in ENV.
802 Look at its function definition. */
803 if (EQ (def, Qunbound)
804 || XTYPE (def) != Lisp_Cons)
805 /* Not defined or definition not suitable */
806 break;
807 if (EQ (XCONS (def)->car, Qautoload))
808 {
809 /* Autoloading function: will it be a macro when loaded? */
ee9ee63c
JB
810 tem = Fnth (make_number (4), def);
811 if (EQ (XCONS (tem)->car, Qt)
812 || EQ (XCONS (tem)->car, Qmacro))
813 /* Yes, load it and try again. */
814 {
815 do_autoload (def, sym);
816 continue;
817 }
818 else
db9f0278 819 break;
db9f0278
JB
820 }
821 else if (!EQ (XCONS (def)->car, Qmacro))
822 break;
823 else expander = XCONS (def)->cdr;
824 }
825 else
826 {
827 expander = XCONS (tem)->cdr;
265a9e55 828 if (NILP (expander))
db9f0278
JB
829 break;
830 }
db9f0278
JB
831 form = apply1 (expander, XCONS (form)->cdr);
832 }
833 return form;
834}
835\f
836DEFUN ("catch", Fcatch, Scatch, 1, UNEVALLED, 0,
837 "(catch TAG BODY...): eval BODY allowing nonlocal exits using `throw'.\n\
838TAG is evalled to get the tag to use. Then the BODY is executed.\n\
839Within BODY, (throw TAG) with same tag exits BODY and exits this `catch'.\n\
840If no throw happens, `catch' returns the value of the last BODY form.\n\
841If a throw happens, it specifies the value to return from `catch'.")
842 (args)
843 Lisp_Object args;
844{
845 register Lisp_Object tag;
846 struct gcpro gcpro1;
847
848 GCPRO1 (args);
849 tag = Feval (Fcar (args));
850 UNGCPRO;
851 return internal_catch (tag, Fprogn, Fcdr (args));
852}
853
854/* Set up a catch, then call C function FUNC on argument ARG.
855 FUNC should return a Lisp_Object.
856 This is how catches are done from within C code. */
857
858Lisp_Object
859internal_catch (tag, func, arg)
860 Lisp_Object tag;
861 Lisp_Object (*func) ();
862 Lisp_Object arg;
863{
864 /* This structure is made part of the chain `catchlist'. */
865 struct catchtag c;
866
867 /* Fill in the components of c, and put it on the list. */
868 c.next = catchlist;
869 c.tag = tag;
870 c.val = Qnil;
871 c.backlist = backtrace_list;
872 c.handlerlist = handlerlist;
873 c.lisp_eval_depth = lisp_eval_depth;
874 c.pdlcount = specpdl_ptr - specpdl;
875 c.poll_suppress_count = poll_suppress_count;
876 c.gcpro = gcprolist;
877 catchlist = &c;
878
879 /* Call FUNC. */
880 if (! _setjmp (c.jmp))
881 c.val = (*func) (arg);
882
883 /* Throw works by a longjmp that comes right here. */
884 catchlist = c.next;
885 return c.val;
886}
887
ba410f40
JB
888/* Unwind the specbind, catch, and handler stacks back to CATCH, and
889 jump to that CATCH, returning VALUE as the value of that catch.
db9f0278 890
ba410f40
JB
891 This is the guts Fthrow and Fsignal; they differ only in the way
892 they choose the catch tag to throw to. A catch tag for a
893 condition-case form has a TAG of Qnil.
db9f0278 894
ba410f40
JB
895 Before each catch is discarded, unbind all special bindings and
896 execute all unwind-protect clauses made above that catch. Unwind
897 the handler stack as we go, so that the proper handlers are in
898 effect for each unwind-protect clause we run. At the end, restore
899 some static info saved in CATCH, and longjmp to the location
900 specified in the
901
902 This is used for correct unwinding in Fthrow and Fsignal. */
db9f0278
JB
903
904static void
ba410f40 905unwind_to_catch (catch, value)
db9f0278 906 struct catchtag *catch;
ba410f40 907 Lisp_Object value;
db9f0278
JB
908{
909 register int last_time;
910
ba410f40
JB
911 /* Save the value in the tag. */
912 catch->val = value;
913
82da7701
JB
914 /* Restore the polling-suppression count. */
915 if (catch->poll_suppress_count > poll_suppress_count)
916 abort ();
917 while (catch->poll_suppress_count < poll_suppress_count)
918 start_polling ();
919
db9f0278
JB
920 do
921 {
922 last_time = catchlist == catch;
82da7701
JB
923
924 /* Unwind the specpdl stack, and then restore the proper set of
925 handlers. */
db9f0278
JB
926 unbind_to (catchlist->pdlcount, Qnil);
927 handlerlist = catchlist->handlerlist;
928 catchlist = catchlist->next;
929 }
930 while (! last_time);
931
932 gcprolist = catch->gcpro;
933 backtrace_list = catch->backlist;
934 lisp_eval_depth = catch->lisp_eval_depth;
ba410f40
JB
935
936 _longjmp (catch->jmp, 1);
db9f0278
JB
937}
938
939DEFUN ("throw", Fthrow, Sthrow, 2, 2, 0,
940 "(throw TAG VALUE): throw to the catch for TAG and return VALUE from it.\n\
941Both TAG and VALUE are evalled.")
942 (tag, val)
943 register Lisp_Object tag, val;
944{
945 register struct catchtag *c;
946
947 while (1)
948 {
265a9e55 949 if (!NILP (tag))
db9f0278
JB
950 for (c = catchlist; c; c = c->next)
951 {
952 if (EQ (c->tag, tag))
ba410f40 953 unwind_to_catch (c, val);
db9f0278
JB
954 }
955 tag = Fsignal (Qno_catch, Fcons (tag, Fcons (val, Qnil)));
956 }
957}
958
959
960DEFUN ("unwind-protect", Funwind_protect, Sunwind_protect, 1, UNEVALLED, 0,
961 "Do BODYFORM, protecting with UNWINDFORMS.\n\
962Usage looks like (unwind-protect BODYFORM UNWINDFORMS...).\n\
963If BODYFORM completes normally, its value is returned\n\
964after executing the UNWINDFORMS.\n\
965If BODYFORM exits nonlocally, the UNWINDFORMS are executed anyway.")
966 (args)
967 Lisp_Object args;
968{
969 Lisp_Object val;
970 int count = specpdl_ptr - specpdl;
971
972 record_unwind_protect (0, Fcdr (args));
973 val = Feval (Fcar (args));
974 return unbind_to (count, val);
975}
976\f
977/* Chain of condition handlers currently in effect.
978 The elements of this chain are contained in the stack frames
979 of Fcondition_case and internal_condition_case.
980 When an error is signaled (by calling Fsignal, below),
981 this chain is searched for an element that applies. */
982
983struct handler *handlerlist;
984
985DEFUN ("condition-case", Fcondition_case, Scondition_case, 2, UNEVALLED, 0,
986 "Regain control when an error is signaled.\n\
987Usage looks like (condition-case VAR BODYFORM HANDLERS...).\n\
988executes BODYFORM and returns its value if no error happens.\n\
989Each element of HANDLERS looks like (CONDITION-NAME BODY...)\n\
990where the BODY is made of Lisp expressions.\n\n\
991A handler is applicable to an error\n\
992if CONDITION-NAME is one of the error's condition names.\n\
993If an error happens, the first applicable handler is run.\n\
994\n\
995When a handler handles an error,\n\
996control returns to the condition-case and the handler BODY... is executed\n\
997with VAR bound to (SIGNALED-CONDITIONS . SIGNAL-DATA).\n\
998VAR may be nil; then you do not get access to the signal information.\n\
999\n\
1000The value of the last BODY form is returned from the condition-case.\n\
1001See also the function `signal' for more info.")
1002 (args)
1003 Lisp_Object args;
1004{
1005 Lisp_Object val;
1006 struct catchtag c;
1007 struct handler h;
82da7701 1008 register Lisp_Object var, bodyform, handlers;
db9f0278 1009
82da7701
JB
1010 var = Fcar (args);
1011 bodyform = Fcar (Fcdr (args));
1012 handlers = Fcdr (Fcdr (args));
1013 CHECK_SYMBOL (var, 0);
1014
1015 for (val = handlers; ! NILP (val); val = Fcdr (val))
1016 {
1017 Lisp_Object tem;
1018 tem = Fcar (val);
1019 if ((!NILP (tem)) &&
1020 (!CONSP (tem) || (XTYPE (XCONS (tem)->car) != Lisp_Symbol)))
1021 error ("Invalid condition handler", tem);
1022 }
db9f0278
JB
1023
1024 c.tag = Qnil;
1025 c.val = Qnil;
1026 c.backlist = backtrace_list;
1027 c.handlerlist = handlerlist;
1028 c.lisp_eval_depth = lisp_eval_depth;
1029 c.pdlcount = specpdl_ptr - specpdl;
1030 c.poll_suppress_count = poll_suppress_count;
1031 c.gcpro = gcprolist;
1032 if (_setjmp (c.jmp))
1033 {
265a9e55 1034 if (!NILP (h.var))
db9f0278
JB
1035 specbind (h.var, Fcdr (c.val));
1036 val = Fprogn (Fcdr (Fcar (c.val)));
82da7701
JB
1037
1038 /* Note that this just undoes the binding of h.var; whoever
1039 longjumped to us unwound the stack to c.pdlcount before
1040 throwing. */
db9f0278
JB
1041 unbind_to (c.pdlcount, Qnil);
1042 return val;
1043 }
1044 c.next = catchlist;
1045 catchlist = &c;
db9f0278 1046
82da7701
JB
1047 h.var = var;
1048 h.handler = handlers;
db9f0278 1049 h.next = handlerlist;
db9f0278
JB
1050 h.tag = &c;
1051 handlerlist = &h;
1052
82da7701 1053 val = Feval (bodyform);
db9f0278
JB
1054 catchlist = c.next;
1055 handlerlist = h.next;
1056 return val;
1057}
1058
1059Lisp_Object
1060internal_condition_case (bfun, handlers, hfun)
1061 Lisp_Object (*bfun) ();
1062 Lisp_Object handlers;
1063 Lisp_Object (*hfun) ();
1064{
1065 Lisp_Object val;
1066 struct catchtag c;
1067 struct handler h;
1068
1069 c.tag = Qnil;
1070 c.val = Qnil;
1071 c.backlist = backtrace_list;
1072 c.handlerlist = handlerlist;
1073 c.lisp_eval_depth = lisp_eval_depth;
1074 c.pdlcount = specpdl_ptr - specpdl;
1075 c.poll_suppress_count = poll_suppress_count;
1076 c.gcpro = gcprolist;
1077 if (_setjmp (c.jmp))
1078 {
1079 return (*hfun) (Fcdr (c.val));
1080 }
1081 c.next = catchlist;
1082 catchlist = &c;
1083 h.handler = handlers;
1084 h.var = Qnil;
db9f0278
JB
1085 h.next = handlerlist;
1086 h.tag = &c;
1087 handlerlist = &h;
1088
1089 val = (*bfun) ();
1090 catchlist = c.next;
1091 handlerlist = h.next;
1092 return val;
1093}
1094
1095static Lisp_Object find_handler_clause ();
1096
1097DEFUN ("signal", Fsignal, Ssignal, 2, 2, 0,
1098 "Signal an error. Args are SIGNAL-NAME, and associated DATA.\n\
1099This function does not return.\n\n\
1100A signal name is a symbol with an `error-conditions' property\n\
1101that is a list of condition names.\n\
1102A handler for any of those names will get to handle this signal.\n\
1103The symbol `error' should normally be one of them.\n\
1104\n\
1105DATA should be a list. Its elements are printed as part of the error message.\n\
1106If the signal is handled, DATA is made available to the handler.\n\
1107See also the function `condition-case'.")
1108 (sig, data)
1109 Lisp_Object sig, data;
1110{
1111 register struct handler *allhandlers = handlerlist;
1112 Lisp_Object conditions;
1113 extern int gc_in_progress;
1114 extern int waiting_for_input;
1115 Lisp_Object debugger_value;
1116
1117 quit_error_check ();
1118 immediate_quit = 0;
1119 if (gc_in_progress || waiting_for_input)
1120 abort ();
1121
e5d77022 1122#ifdef HAVE_X_WINDOWS
db9f0278 1123 TOTALLY_UNBLOCK_INPUT;
e5d77022 1124#endif
db9f0278
JB
1125
1126 conditions = Fget (sig, Qerror_conditions);
1127
1128 for (; handlerlist; handlerlist = handlerlist->next)
1129 {
1130 register Lisp_Object clause;
1131 clause = find_handler_clause (handlerlist->handler, conditions,
1132 sig, data, &debugger_value);
1133
1134#if 0 /* Most callers are not prepared to handle gc if this returns.
1135 So, since this feature is not very useful, take it out. */
1136 /* If have called debugger and user wants to continue,
1137 just return nil. */
1138 if (EQ (clause, Qlambda))
1139 return debugger_value;
1140#else
1141 if (EQ (clause, Qlambda))
82da7701
JB
1142 {
1143 /* We can't return values to code which signalled an error, but we
1144 can continue code which has signalled a quit. */
1145 if (EQ (sig, Qquit))
1146 return Qnil;
1147 else
db9f0278 1148 error ("Returning a value from an error is no longer supported");
82da7701 1149 }
db9f0278
JB
1150#endif
1151
265a9e55 1152 if (!NILP (clause))
db9f0278
JB
1153 {
1154 struct handler *h = handlerlist;
db9f0278 1155 handlerlist = allhandlers;
ba410f40 1156 unwind_to_catch (h->tag, Fcons (clause, Fcons (sig, data)));
db9f0278
JB
1157 }
1158 }
1159
1160 handlerlist = allhandlers;
1161 /* If no handler is present now, try to run the debugger,
1162 and if that fails, throw to top level. */
1163 find_handler_clause (Qerror, conditions, sig, data, &debugger_value);
1164 Fthrow (Qtop_level, Qt);
1165}
1166
128c0f66
RM
1167/* Return nonzero iff LIST is a non-nil atom or
1168 a list containing one of CONDITIONS. */
1169
1170static int
1171wants_debugger (list, conditions)
1172 Lisp_Object list, conditions;
1173{
4de86b16 1174 if (NILP (list))
128c0f66
RM
1175 return 0;
1176 if (! CONSP (list))
1177 return 1;
1178
ab67260b 1179 while (CONSP (conditions))
128c0f66 1180 {
ab67260b
RS
1181 Lisp_Object this, tail;
1182 this = XCONS (conditions)->car;
1183 for (tail = list; CONSP (tail); tail = XCONS (tail)->cdr)
1184 if (EQ (XCONS (tail)->car, this))
128c0f66 1185 return 1;
128c0f66
RM
1186 conditions = XCONS (conditions)->cdr;
1187 }
ab67260b 1188 return 0;
128c0f66
RM
1189}
1190
1191/* Value of Qlambda means we have called debugger and user has continued.
1192 Store value returned from debugger into *DEBUGGER_VALUE_PTR. */
db9f0278
JB
1193
1194static Lisp_Object
1195find_handler_clause (handlers, conditions, sig, data, debugger_value_ptr)
1196 Lisp_Object handlers, conditions, sig, data;
1197 Lisp_Object *debugger_value_ptr;
1198{
1199 register Lisp_Object h;
1200 register Lisp_Object tem;
1201 register Lisp_Object tem1;
1202
1203 if (EQ (handlers, Qt)) /* t is used by handlers for all conditions, set up by C code. */
1204 return Qt;
1205 if (EQ (handlers, Qerror)) /* error is used similarly, but means display a backtrace too */
1206 {
128c0f66 1207 if (wants_debugger (Vstack_trace_on_error, conditions))
db9f0278 1208 internal_with_output_to_temp_buffer ("*Backtrace*", Fbacktrace, Qnil);
ba410f40
JB
1209 if ((EQ (sig, Qquit)
1210 ? debug_on_quit
1211 : wants_debugger (Vdebug_on_error, conditions))
1212 && when_entered_debugger < num_nonmacro_input_chars)
db9f0278
JB
1213 {
1214 int count = specpdl_ptr - specpdl;
1215 specbind (Qdebug_on_error, Qnil);
1216 *debugger_value_ptr =
1217 call_debugger (Fcons (Qerror,
1218 Fcons (Fcons (sig, data),
1219 Qnil)));
1220 return unbind_to (count, Qlambda);
1221 }
1222 return Qt;
1223 }
1224 for (h = handlers; CONSP (h); h = Fcdr (h))
1225 {
1226 tem1 = Fcar (h);
1227 if (!CONSP (tem1))
1228 continue;
1229 tem = Fmemq (Fcar (tem1), conditions);
265a9e55 1230 if (!NILP (tem))
db9f0278
JB
1231 return tem1;
1232 }
1233 return Qnil;
1234}
1235
1236/* dump an error message; called like printf */
1237
1238/* VARARGS 1 */
1239void
1240error (m, a1, a2, a3)
1241 char *m;
1242{
1243 char buf[200];
1244 sprintf (buf, m, a1, a2, a3);
1245
1246 while (1)
1247 Fsignal (Qerror, Fcons (build_string (buf), Qnil));
1248}
1249\f
1250DEFUN ("commandp", Fcommandp, Scommandp, 1, 1, 0,
1251 "T if FUNCTION makes provisions for interactive calling.\n\
1252This means it contains a description for how to read arguments to give it.\n\
1253The value is nil for an invalid function or a symbol with no function\n\
1254definition.\n\
1255\n\
1256Interactively callable functions include strings and vectors (treated\n\
1257as keyboard macros), lambda-expressions that contain a top-level call\n\
1258to `interactive', autoload definitions made by `autoload' with non-nil\n\
1259fourth argument, and some of the built-in functions of Lisp.\n\
1260\n\
1261Also, a symbol satisfies `commandp' if its function definition does so.")
1262 (function)
1263 Lisp_Object function;
1264{
1265 register Lisp_Object fun;
1266 register Lisp_Object funcar;
1267 register Lisp_Object tem;
1268 register int i = 0;
1269
1270 fun = function;
1271
ffd56f97
JB
1272 fun = indirect_function (fun);
1273 if (EQ (fun, Qunbound))
1274 return Qnil;
db9f0278
JB
1275
1276 /* Emacs primitives are interactive if their DEFUN specifies an
1277 interactive spec. */
1278 if (XTYPE (fun) == Lisp_Subr)
1279 {
1280 if (XSUBR (fun)->prompt)
1281 return Qt;
1282 else
1283 return Qnil;
1284 }
1285
1286 /* Bytecode objects are interactive if they are long enough to
1287 have an element whose index is COMPILED_INTERACTIVE, which is
1288 where the interactive spec is stored. */
1289 else if (XTYPE (fun) == Lisp_Compiled)
1290 return (XVECTOR (fun)->size > COMPILED_INTERACTIVE
1291 ? Qt : Qnil);
1292
1293 /* Strings and vectors are keyboard macros. */
1294 if (XTYPE (fun) == Lisp_String
1295 || XTYPE (fun) == Lisp_Vector)
1296 return Qt;
1297
1298 /* Lists may represent commands. */
1299 if (!CONSP (fun))
1300 return Qnil;
1301 funcar = Fcar (fun);
1302 if (XTYPE (funcar) != Lisp_Symbol)
1303 return Fsignal (Qinvalid_function, Fcons (fun, Qnil));
1304 if (EQ (funcar, Qlambda))
1305 return Fassq (Qinteractive, Fcdr (Fcdr (fun)));
1306 if (EQ (funcar, Qmocklisp))
1307 return Qt; /* All mocklisp functions can be called interactively */
1308 if (EQ (funcar, Qautoload))
1309 return Fcar (Fcdr (Fcdr (Fcdr (fun))));
1310 else
1311 return Qnil;
1312}
1313
1314/* ARGSUSED */
1315DEFUN ("autoload", Fautoload, Sautoload, 2, 5, 0,
1316 "Define FUNCTION to autoload from FILE.\n\
1317FUNCTION is a symbol; FILE is a file name string to pass to `load'.\n\
1318Third arg DOCSTRING is documentation for the function.\n\
1319Fourth arg INTERACTIVE if non-nil says function can be called interactively.\n\
ee9ee63c
JB
1320Fifth arg TYPE indicates the type of the object:\n\
1321 nil or omitted says FUNCTION is a function,\n\
1322 `keymap' says FUNCTION is really a keymap, and\n\
1323 `macro' or t says FUNCTION is really a macro.\n\
db9f0278
JB
1324Third through fifth args give info about the real definition.\n\
1325They default to nil.\n\
1326If FUNCTION is already defined other than as an autoload,\n\
1327this does nothing and returns nil.")
ee9ee63c
JB
1328 (function, file, docstring, interactive, type)
1329 Lisp_Object function, file, docstring, interactive, type;
db9f0278
JB
1330{
1331#ifdef NO_ARG_ARRAY
1332 Lisp_Object args[4];
1333#endif
1334
1335 CHECK_SYMBOL (function, 0);
1336 CHECK_STRING (file, 1);
1337
1338 /* If function is defined and not as an autoload, don't override */
1339 if (!EQ (XSYMBOL (function)->function, Qunbound)
1340 && !(XTYPE (XSYMBOL (function)->function) == Lisp_Cons
1341 && EQ (XCONS (XSYMBOL (function)->function)->car, Qautoload)))
1342 return Qnil;
1343
1344#ifdef NO_ARG_ARRAY
1345 args[0] = file;
1346 args[1] = docstring;
1347 args[2] = interactive;
ee9ee63c 1348 args[3] = type;
db9f0278
JB
1349
1350 return Ffset (function, Fcons (Qautoload, Flist (4, &args[0])));
1351#else /* NO_ARG_ARRAY */
1352 return Ffset (function, Fcons (Qautoload, Flist (4, &file)));
1353#endif /* not NO_ARG_ARRAY */
1354}
1355
1356Lisp_Object
1357un_autoload (oldqueue)
1358 Lisp_Object oldqueue;
1359{
1360 register Lisp_Object queue, first, second;
1361
1362 /* Queue to unwind is current value of Vautoload_queue.
1363 oldqueue is the shadowed value to leave in Vautoload_queue. */
1364 queue = Vautoload_queue;
1365 Vautoload_queue = oldqueue;
1366 while (CONSP (queue))
1367 {
1368 first = Fcar (queue);
1369 second = Fcdr (first);
1370 first = Fcar (first);
1371 if (EQ (second, Qnil))
1372 Vfeatures = first;
1373 else
1374 Ffset (first, second);
1375 queue = Fcdr (queue);
1376 }
1377 return Qnil;
1378}
1379
1380do_autoload (fundef, funname)
1381 Lisp_Object fundef, funname;
1382{
1383 int count = specpdl_ptr - specpdl;
2a49b6e5 1384 Lisp_Object fun, val, queue, first, second;
db9f0278
JB
1385
1386 fun = funname;
1387 CHECK_SYMBOL (funname, 0);
1388
1389 /* Value saved here is to be restored into Vautoload_queue */
1390 record_unwind_protect (un_autoload, Vautoload_queue);
1391 Vautoload_queue = Qt;
1392 Fload (Fcar (Fcdr (fundef)), Qnil, noninteractive ? Qt : Qnil, Qnil);
2a49b6e5 1393
ac669fa2 1394#ifdef UNLOAD
2a49b6e5
RS
1395 /* Save the old autoloads, in case we ever do an unload. */
1396 queue = Vautoload_queue;
1397 while (CONSP (queue))
1398 {
1399 first = Fcar (queue);
1400 second = Fcdr (first);
1401 first = Fcar (first);
1402 if (!EQ (second, Qnil))
1403 Fput(first, Qautoload, (Fcdr (second)));
1404 queue = Fcdr (queue);
1405 }
ac669fa2 1406#endif /* UNLOAD */
2a49b6e5 1407
db9f0278
JB
1408 /* Once loading finishes, don't undo it. */
1409 Vautoload_queue = Qt;
1410 unbind_to (count, Qnil);
1411
ffd56f97
JB
1412 fun = Findirect_function (fun);
1413
db9f0278
JB
1414 if (XTYPE (fun) == Lisp_Cons
1415 && EQ (XCONS (fun)->car, Qautoload))
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
1736/* Call function fn with argument arg */
1737/* ARGSUSED */
1738Lisp_Object
1739call1 (fn, arg)
1740 Lisp_Object fn, arg;
1741{
a6e3fa71 1742 struct gcpro gcpro1;
db9f0278 1743#ifdef NO_ARG_ARRAY
a6e3fa71
JB
1744 Lisp_Object args[2];
1745
db9f0278
JB
1746 args[0] = fn;
1747 args[1] = arg;
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
1758/* Call function fn with arguments arg, arg1 */
1759/* ARGSUSED */
1760Lisp_Object
1761call2 (fn, arg, arg1)
1762 Lisp_Object fn, arg, arg1;
1763{
a6e3fa71 1764 struct gcpro gcpro1;
db9f0278
JB
1765#ifdef NO_ARG_ARRAY
1766 Lisp_Object args[3];
1767 args[0] = fn;
1768 args[1] = arg;
1769 args[2] = arg1;
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
1780/* Call function fn with arguments arg, arg1, arg2 */
1781/* ARGSUSED */
1782Lisp_Object
1783call3 (fn, arg, arg1, arg2)
1784 Lisp_Object fn, arg, arg1, arg2;
1785{
a6e3fa71 1786 struct gcpro gcpro1;
db9f0278
JB
1787#ifdef NO_ARG_ARRAY
1788 Lisp_Object args[4];
1789 args[0] = fn;
1790 args[1] = arg;
1791 args[2] = arg1;
1792 args[3] = arg2;
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
1803DEFUN ("funcall", Ffuncall, Sfuncall, 1, MANY, 0,
1804 "Call first argument as a function, passing remaining arguments to it.\n\
1805Thus, (funcall 'cons 'x 'y) returns (x . y).")
1806 (nargs, args)
1807 int nargs;
1808 Lisp_Object *args;
1809{
1810 Lisp_Object fun;
1811 Lisp_Object funcar;
1812 int numargs = nargs - 1;
1813 Lisp_Object lisp_numargs;
1814 Lisp_Object val;
1815 struct backtrace backtrace;
1816 register Lisp_Object *internal_args;
1817 register int i;
1818
1819 QUIT;
1820 if (consing_since_gc > gc_cons_threshold)
a6e3fa71 1821 Fgarbage_collect ();
db9f0278
JB
1822
1823 if (++lisp_eval_depth > max_lisp_eval_depth)
1824 {
1825 if (max_lisp_eval_depth < 100)
1826 max_lisp_eval_depth = 100;
1827 if (lisp_eval_depth > max_lisp_eval_depth)
1828 error ("Lisp nesting exceeds max-lisp-eval-depth");
1829 }
1830
1831 backtrace.next = backtrace_list;
1832 backtrace_list = &backtrace;
1833 backtrace.function = &args[0];
1834 backtrace.args = &args[1];
1835 backtrace.nargs = nargs - 1;
1836 backtrace.evalargs = 0;
1837 backtrace.debug_on_exit = 0;
1838
1839 if (debug_on_next_call)
1840 do_debug_on_call (Qlambda);
1841
1842 retry:
1843
1844 fun = args[0];
ffd56f97
JB
1845
1846 fun = Findirect_function (fun);
db9f0278
JB
1847
1848 if (XTYPE (fun) == Lisp_Subr)
1849 {
1850 if (numargs < XSUBR (fun)->min_args
1851 || (XSUBR (fun)->max_args >= 0 && XSUBR (fun)->max_args < numargs))
1852 {
1853 XFASTINT (lisp_numargs) = numargs;
1854 return Fsignal (Qwrong_number_of_arguments, Fcons (fun, Fcons (lisp_numargs, Qnil)));
1855 }
1856
1857 if (XSUBR (fun)->max_args == UNEVALLED)
1858 return Fsignal (Qinvalid_function, Fcons (fun, Qnil));
1859
1860 if (XSUBR (fun)->max_args == MANY)
1861 {
1862 val = (*XSUBR (fun)->function) (numargs, args + 1);
1863 goto done;
1864 }
1865
1866 if (XSUBR (fun)->max_args > numargs)
1867 {
1868 internal_args = (Lisp_Object *) alloca (XSUBR (fun)->max_args * sizeof (Lisp_Object));
1869 bcopy (args + 1, internal_args, numargs * sizeof (Lisp_Object));
1870 for (i = numargs; i < XSUBR (fun)->max_args; i++)
1871 internal_args[i] = Qnil;
1872 }
1873 else
1874 internal_args = args + 1;
1875 switch (XSUBR (fun)->max_args)
1876 {
1877 case 0:
1878 val = (*XSUBR (fun)->function) ();
1879 goto done;
1880 case 1:
1881 val = (*XSUBR (fun)->function) (internal_args[0]);
1882 goto done;
1883 case 2:
1884 val = (*XSUBR (fun)->function) (internal_args[0],
1885 internal_args[1]);
1886 goto done;
1887 case 3:
1888 val = (*XSUBR (fun)->function) (internal_args[0], internal_args[1],
1889 internal_args[2]);
1890 goto done;
1891 case 4:
1892 val = (*XSUBR (fun)->function) (internal_args[0], internal_args[1],
1893 internal_args[2],
1894 internal_args[3]);
1895 goto done;
1896 case 5:
1897 val = (*XSUBR (fun)->function) (internal_args[0], internal_args[1],
1898 internal_args[2], internal_args[3],
1899 internal_args[4]);
1900 goto done;
1901 case 6:
1902 val = (*XSUBR (fun)->function) (internal_args[0], internal_args[1],
1903 internal_args[2], internal_args[3],
1904 internal_args[4], internal_args[5]);
1905 goto done;
15c65264
RS
1906 case 7:
1907 val = (*XSUBR (fun)->function) (internal_args[0], internal_args[1],
1908 internal_args[2], internal_args[3],
1909 internal_args[4], internal_args[5],
1910 internal_args[6]);
1911 goto done;
db9f0278
JB
1912
1913 default:
70ee42f7
JB
1914
1915 /* If a subr takes more than 6 arguments without using MANY
1916 or UNEVALLED, we need to extend this function to support it.
1917 Until this is done, there is no way to call the function. */
1918 abort ();
db9f0278
JB
1919 }
1920 }
1921 if (XTYPE (fun) == Lisp_Compiled)
1922 val = funcall_lambda (fun, numargs, args + 1);
1923 else
1924 {
1925 if (!CONSP (fun))
1926 return Fsignal (Qinvalid_function, Fcons (fun, Qnil));
1927 funcar = Fcar (fun);
1928 if (XTYPE (funcar) != Lisp_Symbol)
1929 return Fsignal (Qinvalid_function, Fcons (fun, Qnil));
1930 if (EQ (funcar, Qlambda))
1931 val = funcall_lambda (fun, numargs, args + 1);
1932 else if (EQ (funcar, Qmocklisp))
1933 val = ml_apply (fun, Flist (numargs, args + 1));
1934 else if (EQ (funcar, Qautoload))
1935 {
1936 do_autoload (fun, args[0]);
1937 goto retry;
1938 }
1939 else
1940 return Fsignal (Qinvalid_function, Fcons (fun, Qnil));
1941 }
1942 done:
1943 lisp_eval_depth--;
1944 if (backtrace.debug_on_exit)
1945 val = call_debugger (Fcons (Qexit, Fcons (val, Qnil)));
1946 backtrace_list = backtrace.next;
1947 return val;
1948}
1949\f
1950Lisp_Object
1951apply_lambda (fun, args, eval_flag)
1952 Lisp_Object fun, args;
1953 int eval_flag;
1954{
1955 Lisp_Object args_left;
1956 Lisp_Object numargs;
1957 register Lisp_Object *arg_vector;
1958 struct gcpro gcpro1, gcpro2, gcpro3;
1959 register int i;
1960 register Lisp_Object tem;
1961
1962 numargs = Flength (args);
1963 arg_vector = (Lisp_Object *) alloca (XINT (numargs) * sizeof (Lisp_Object));
1964 args_left = args;
1965
1966 GCPRO3 (*arg_vector, args_left, fun);
1967 gcpro1.nvars = 0;
1968
1969 for (i = 0; i < XINT (numargs);)
1970 {
1971 tem = Fcar (args_left), args_left = Fcdr (args_left);
1972 if (eval_flag) tem = Feval (tem);
1973 arg_vector[i++] = tem;
1974 gcpro1.nvars = i;
1975 }
1976
1977 UNGCPRO;
1978
1979 if (eval_flag)
1980 {
1981 backtrace_list->args = arg_vector;
1982 backtrace_list->nargs = i;
1983 }
1984 backtrace_list->evalargs = 0;
1985 tem = funcall_lambda (fun, XINT (numargs), arg_vector);
1986
1987 /* Do the debug-on-exit now, while arg_vector still exists. */
1988 if (backtrace_list->debug_on_exit)
1989 tem = call_debugger (Fcons (Qexit, Fcons (tem, Qnil)));
1990 /* Don't do it again when we return to eval. */
1991 backtrace_list->debug_on_exit = 0;
1992 return tem;
1993}
1994
1995/* Apply a Lisp function FUN to the NARGS evaluated arguments in ARG_VECTOR
1996 and return the result of evaluation.
1997 FUN must be either a lambda-expression or a compiled-code object. */
1998
1999Lisp_Object
2000funcall_lambda (fun, nargs, arg_vector)
2001 Lisp_Object fun;
2002 int nargs;
2003 register Lisp_Object *arg_vector;
2004{
2005 Lisp_Object val, tem;
2006 register Lisp_Object syms_left;
2007 Lisp_Object numargs;
2008 register Lisp_Object next;
2009 int count = specpdl_ptr - specpdl;
2010 register int i;
2011 int optional = 0, rest = 0;
2012
2013 specbind (Qmocklisp_arguments, Qt); /* t means NOT mocklisp! */
2014
2015 XFASTINT (numargs) = nargs;
2016
2017 if (XTYPE (fun) == Lisp_Cons)
2018 syms_left = Fcar (Fcdr (fun));
2019 else if (XTYPE (fun) == Lisp_Compiled)
2020 syms_left = XVECTOR (fun)->contents[COMPILED_ARGLIST];
2021 else abort ();
2022
2023 i = 0;
265a9e55 2024 for (; !NILP (syms_left); syms_left = Fcdr (syms_left))
db9f0278
JB
2025 {
2026 QUIT;
2027 next = Fcar (syms_left);
9ffa21d4
JB
2028 while (XTYPE (next) != Lisp_Symbol)
2029 next = Fsignal (Qinvalid_function, Fcons (fun, Qnil));
db9f0278
JB
2030 if (EQ (next, Qand_rest))
2031 rest = 1;
2032 else if (EQ (next, Qand_optional))
2033 optional = 1;
2034 else if (rest)
2035 {
9ffa21d4 2036 specbind (next, Flist (nargs - i, &arg_vector[i]));
db9f0278
JB
2037 i = nargs;
2038 }
2039 else if (i < nargs)
2040 {
2041 tem = arg_vector[i++];
2042 specbind (next, tem);
2043 }
2044 else if (!optional)
2045 return Fsignal (Qwrong_number_of_arguments, Fcons (fun, Fcons (numargs, Qnil)));
2046 else
2047 specbind (next, Qnil);
2048 }
2049
2050 if (i < nargs)
2051 return Fsignal (Qwrong_number_of_arguments, Fcons (fun, Fcons (numargs, Qnil)));
2052
2053 if (XTYPE (fun) == Lisp_Cons)
2054 val = Fprogn (Fcdr (Fcdr (fun)));
2055 else
2056 val = Fbyte_code (XVECTOR (fun)->contents[COMPILED_BYTECODE],
2057 XVECTOR (fun)->contents[COMPILED_CONSTANTS],
2058 XVECTOR (fun)->contents[COMPILED_STACK_DEPTH]);
2059 return unbind_to (count, val);
2060}
2061\f
2062void
2063grow_specpdl ()
2064{
2065 register int count = specpdl_ptr - specpdl;
2066 if (specpdl_size >= max_specpdl_size)
2067 {
2068 if (max_specpdl_size < 400)
2069 max_specpdl_size = 400;
2070 if (specpdl_size >= max_specpdl_size)
2071 {
debee8fe
RS
2072 if (!NILP (Vdebug_on_error))
2073 /* Leave room for some specpdl in the debugger. */
2074 max_specpdl_size = specpdl_size + 100;
db9f0278
JB
2075 Fsignal (Qerror,
2076 Fcons (build_string ("Variable binding depth exceeds max-specpdl-size"), Qnil));
db9f0278
JB
2077 }
2078 }
2079 specpdl_size *= 2;
2080 if (specpdl_size > max_specpdl_size)
2081 specpdl_size = max_specpdl_size;
2082 specpdl = (struct specbinding *) xrealloc (specpdl, specpdl_size * sizeof (struct specbinding));
2083 specpdl_ptr = specpdl + count;
2084}
2085
2086void
2087specbind (symbol, value)
2088 Lisp_Object symbol, value;
2089{
2090 extern void store_symval_forwarding (); /* in eval.c */
2091 Lisp_Object ovalue;
2092
9ffa21d4
JB
2093 CHECK_SYMBOL (symbol, 0);
2094
db9f0278
JB
2095 if (specpdl_ptr == specpdl + specpdl_size)
2096 grow_specpdl ();
2097 specpdl_ptr->symbol = symbol;
2098 specpdl_ptr->func = 0;
2099 ovalue = XSYMBOL (symbol)->value;
2100 specpdl_ptr->old_value = EQ (ovalue, Qunbound) ? Qunbound : Fsymbol_value (symbol);
2101 specpdl_ptr++;
2102 if (XTYPE (ovalue) == Lisp_Buffer_Objfwd)
2103 store_symval_forwarding (symbol, ovalue, value);
2104 else
2105 Fset (symbol, value);
2106}
2107
2108void
2109record_unwind_protect (function, arg)
2110 Lisp_Object (*function)();
2111 Lisp_Object arg;
2112{
2113 if (specpdl_ptr == specpdl + specpdl_size)
2114 grow_specpdl ();
2115 specpdl_ptr->func = function;
2116 specpdl_ptr->symbol = Qnil;
2117 specpdl_ptr->old_value = arg;
2118 specpdl_ptr++;
2119}
2120
2121Lisp_Object
2122unbind_to (count, value)
2123 int count;
2124 Lisp_Object value;
2125{
265a9e55 2126 int quitf = !NILP (Vquit_flag);
db9f0278
JB
2127 struct gcpro gcpro1;
2128
2129 GCPRO1 (value);
2130
2131 Vquit_flag = Qnil;
2132
2133 while (specpdl_ptr != specpdl + count)
2134 {
2135 --specpdl_ptr;
2136 if (specpdl_ptr->func != 0)
2137 (*specpdl_ptr->func) (specpdl_ptr->old_value);
2138 /* Note that a "binding" of nil is really an unwind protect,
2139 so in that case the "old value" is a list of forms to evaluate. */
265a9e55 2140 else if (NILP (specpdl_ptr->symbol))
db9f0278
JB
2141 Fprogn (specpdl_ptr->old_value);
2142 else
2143 Fset (specpdl_ptr->symbol, specpdl_ptr->old_value);
2144 }
265a9e55 2145 if (NILP (Vquit_flag) && quitf) Vquit_flag = Qt;
db9f0278
JB
2146
2147 UNGCPRO;
2148
2149 return value;
2150}
2151\f
2152#if 0
2153
2154/* Get the value of symbol's global binding, even if that binding
2155 is not now dynamically visible. */
2156
2157Lisp_Object
2158top_level_value (symbol)
2159 Lisp_Object symbol;
2160{
2161 register struct specbinding *ptr = specpdl;
2162
2163 CHECK_SYMBOL (symbol, 0);
2164 for (; ptr != specpdl_ptr; ptr++)
2165 {
2166 if (EQ (ptr->symbol, symbol))
2167 return ptr->old_value;
2168 }
2169 return Fsymbol_value (symbol);
2170}
2171
2172Lisp_Object
2173top_level_set (symbol, newval)
2174 Lisp_Object symbol, newval;
2175{
2176 register struct specbinding *ptr = specpdl;
2177
2178 CHECK_SYMBOL (symbol, 0);
2179 for (; ptr != specpdl_ptr; ptr++)
2180 {
2181 if (EQ (ptr->symbol, symbol))
2182 {
2183 ptr->old_value = newval;
2184 return newval;
2185 }
2186 }
2187 return Fset (symbol, newval);
2188}
2189
2190#endif /* 0 */
2191\f
2192DEFUN ("backtrace-debug", Fbacktrace_debug, Sbacktrace_debug, 2, 2, 0,
2193 "Set the debug-on-exit flag of eval frame LEVEL levels down to FLAG.\n\
2194The debugger is entered when that frame exits, if the flag is non-nil.")
2195 (level, flag)
2196 Lisp_Object level, flag;
2197{
2198 register struct backtrace *backlist = backtrace_list;
2199 register int i;
2200
2201 CHECK_NUMBER (level, 0);
2202
2203 for (i = 0; backlist && i < XINT (level); i++)
2204 {
2205 backlist = backlist->next;
2206 }
2207
2208 if (backlist)
265a9e55 2209 backlist->debug_on_exit = !NILP (flag);
db9f0278
JB
2210
2211 return flag;
2212}
2213
2214DEFUN ("backtrace", Fbacktrace, Sbacktrace, 0, 0, "",
2215 "Print a trace of Lisp function calls currently active.\n\
2216Output stream used is value of `standard-output'.")
2217 ()
2218{
2219 register struct backtrace *backlist = backtrace_list;
2220 register int i;
2221 Lisp_Object tail;
2222 Lisp_Object tem;
2223 extern Lisp_Object Vprint_level;
2224 struct gcpro gcpro1;
2225
db9f0278
JB
2226 XFASTINT (Vprint_level) = 3;
2227
2228 tail = Qnil;
2229 GCPRO1 (tail);
2230
2231 while (backlist)
2232 {
2233 write_string (backlist->debug_on_exit ? "* " : " ", 2);
2234 if (backlist->nargs == UNEVALLED)
2235 {
2236 Fprin1 (Fcons (*backlist->function, *backlist->args), Qnil);
2237 }
2238 else
2239 {
2240 tem = *backlist->function;
2241 Fprin1 (tem, Qnil); /* This can QUIT */
2242 write_string ("(", -1);
2243 if (backlist->nargs == MANY)
2244 {
2245 for (tail = *backlist->args, i = 0;
265a9e55 2246 !NILP (tail);
db9f0278
JB
2247 tail = Fcdr (tail), i++)
2248 {
2249 if (i) write_string (" ", -1);
2250 Fprin1 (Fcar (tail), Qnil);
2251 }
2252 }
2253 else
2254 {
2255 for (i = 0; i < backlist->nargs; i++)
2256 {
2257 if (i) write_string (" ", -1);
2258 Fprin1 (backlist->args[i], Qnil);
2259 }
2260 }
2261 }
2262 write_string (")\n", -1);
2263 backlist = backlist->next;
2264 }
2265
2266 Vprint_level = Qnil;
2267 UNGCPRO;
2268 return Qnil;
2269}
2270
2271DEFUN ("backtrace-frame", Fbacktrace_frame, Sbacktrace_frame, 1, 1, "",
2272 "Return the function and arguments N frames up from current execution point.\n\
2273If that frame has not evaluated the arguments yet (or is a special form),\n\
2274the value is (nil FUNCTION ARG-FORMS...).\n\
2275If that frame has evaluated its arguments and called its function already,\n\
2276the value is (t FUNCTION ARG-VALUES...).\n\
2277A &rest arg is represented as the tail of the list ARG-VALUES.\n\
2278FUNCTION is whatever was supplied as car of evaluated list,\n\
2279or a lambda expression for macro calls.\n\
2280If N is more than the number of frames, the value is nil.")
2281 (nframes)
2282 Lisp_Object nframes;
2283{
2284 register struct backtrace *backlist = backtrace_list;
2285 register int i;
2286 Lisp_Object tem;
2287
2288 CHECK_NATNUM (nframes, 0);
2289
2290 /* Find the frame requested. */
2291 for (i = 0; i < XFASTINT (nframes); i++)
2292 backlist = backlist->next;
2293
2294 if (!backlist)
2295 return Qnil;
2296 if (backlist->nargs == UNEVALLED)
2297 return Fcons (Qnil, Fcons (*backlist->function, *backlist->args));
2298 else
2299 {
2300 if (backlist->nargs == MANY)
2301 tem = *backlist->args;
2302 else
2303 tem = Flist (backlist->nargs, backlist->args);
2304
2305 return Fcons (Qt, Fcons (*backlist->function, tem));
2306 }
2307}
2308\f
2309syms_of_eval ()
2310{
2311 DEFVAR_INT ("max-specpdl-size", &max_specpdl_size,
2312 "Limit on number of Lisp variable bindings & unwind-protects before error.");
2313
2314 DEFVAR_INT ("max-lisp-eval-depth", &max_lisp_eval_depth,
2315 "Limit on depth in `eval', `apply' and `funcall' before error.\n\
2316This limit is to catch infinite recursions for you before they cause\n\
2317actual stack overflow in C, which would be fatal for Emacs.\n\
2318You can safely make it considerably larger than its default value,\n\
2319if that proves inconveniently small.");
2320
2321 DEFVAR_LISP ("quit-flag", &Vquit_flag,
2322 "Non-nil causes `eval' to abort, unless `inhibit-quit' is non-nil.\n\
2323Typing C-G sets `quit-flag' non-nil, regardless of `inhibit-quit'.");
2324 Vquit_flag = Qnil;
2325
2326 DEFVAR_LISP ("inhibit-quit", &Vinhibit_quit,
2327 "Non-nil inhibits C-g quitting from happening immediately.\n\
2328Note that `quit-flag' will still be set by typing C-g,\n\
2329so a quit will be signalled as soon as `inhibit-quit' is nil.\n\
2330To prevent this happening, set `quit-flag' to nil\n\
2331before making `inhibit-quit' nil.");
2332 Vinhibit_quit = Qnil;
2333
ad236261
JB
2334 Qinhibit_quit = intern ("inhibit-quit");
2335 staticpro (&Qinhibit_quit);
2336
db9f0278
JB
2337 Qautoload = intern ("autoload");
2338 staticpro (&Qautoload);
2339
2340 Qdebug_on_error = intern ("debug-on-error");
2341 staticpro (&Qdebug_on_error);
2342
2343 Qmacro = intern ("macro");
2344 staticpro (&Qmacro);
2345
2346 /* Note that the process handling also uses Qexit, but we don't want
2347 to staticpro it twice, so we just do it here. */
2348 Qexit = intern ("exit");
2349 staticpro (&Qexit);
2350
2351 Qinteractive = intern ("interactive");
2352 staticpro (&Qinteractive);
2353
2354 Qcommandp = intern ("commandp");
2355 staticpro (&Qcommandp);
2356
2357 Qdefun = intern ("defun");
2358 staticpro (&Qdefun);
2359
2360 Qand_rest = intern ("&rest");
2361 staticpro (&Qand_rest);
2362
2363 Qand_optional = intern ("&optional");
2364 staticpro (&Qand_optional);
2365
128c0f66 2366 DEFVAR_LISP ("stack-trace-on-error", &Vstack_trace_on_error,
db9f0278 2367 "*Non-nil means automatically display a backtrace buffer\n\
128c0f66
RM
2368after any error that is handled by the editor command loop.\n\
2369If the value is a list, an error only means to display a backtrace\n\
2370if one of its condition symbols appears in the list.");
2371 Vstack_trace_on_error = Qnil;
db9f0278 2372
128c0f66 2373 DEFVAR_LISP ("debug-on-error", &Vdebug_on_error,
db9f0278
JB
2374 "*Non-nil means enter debugger if an error is signaled.\n\
2375Does not apply to errors handled by `condition-case'.\n\
128c0f66
RM
2376If the value is a list, an error only means to enter the debugger\n\
2377if one of its condition symbols appears in the list.\n\
db9f0278 2378See also variable `debug-on-quit'.");
128c0f66 2379 Vdebug_on_error = Qnil;
db9f0278
JB
2380
2381 DEFVAR_BOOL ("debug-on-quit", &debug_on_quit,
2382 "*Non-nil means enter debugger if quit is signaled (C-G, for example).\n\
1b7d8239 2383Does not apply if quit is handled by a `condition-case'.");
db9f0278
JB
2384 debug_on_quit = 0;
2385
2386 DEFVAR_BOOL ("debug-on-next-call", &debug_on_next_call,
2387 "Non-nil means enter debugger before next `eval', `apply' or `funcall'.");
2388
2389 DEFVAR_LISP ("debugger", &Vdebugger,
2390 "Function to call to invoke debugger.\n\
2391If due to frame exit, args are `exit' and the value being returned;\n\
2392 this function's value will be returned instead of that.\n\
2393If due to error, args are `error' and a list of the args to `signal'.\n\
2394If due to `apply' or `funcall' entry, one arg, `lambda'.\n\
2395If due to `eval' entry, one arg, t.");
2396 Vdebugger = Qnil;
2397
2398 Qmocklisp_arguments = intern ("mocklisp-arguments");
2399 staticpro (&Qmocklisp_arguments);
2400 DEFVAR_LISP ("mocklisp-arguments", &Vmocklisp_arguments,
2401 "While in a mocklisp function, the list of its unevaluated args.");
2402 Vmocklisp_arguments = Qt;
2403
2404 DEFVAR_LISP ("run-hooks", &Vrun_hooks,
2405 "Set to the function `run-hooks', if that function has been defined.\n\
2406Otherwise, nil (in a bare Emacs without preloaded Lisp code).");
2407 Vrun_hooks = Qnil;
2408
2409 staticpro (&Vautoload_queue);
2410 Vautoload_queue = Qnil;
2411
2412 defsubr (&Sor);
2413 defsubr (&Sand);
2414 defsubr (&Sif);
2415 defsubr (&Scond);
2416 defsubr (&Sprogn);
2417 defsubr (&Sprog1);
2418 defsubr (&Sprog2);
2419 defsubr (&Ssetq);
2420 defsubr (&Squote);
2421 defsubr (&Sfunction);
2422 defsubr (&Sdefun);
2423 defsubr (&Sdefmacro);
2424 defsubr (&Sdefvar);
2425 defsubr (&Sdefconst);
2426 defsubr (&Suser_variable_p);
2427 defsubr (&Slet);
2428 defsubr (&SletX);
2429 defsubr (&Swhile);
2430 defsubr (&Smacroexpand);
2431 defsubr (&Scatch);
2432 defsubr (&Sthrow);
2433 defsubr (&Sunwind_protect);
2434 defsubr (&Scondition_case);
2435 defsubr (&Ssignal);
2436 defsubr (&Sinteractive_p);
2437 defsubr (&Scommandp);
2438 defsubr (&Sautoload);
2439 defsubr (&Seval);
2440 defsubr (&Sapply);
2441 defsubr (&Sfuncall);
2442 defsubr (&Sbacktrace_debug);
2443 defsubr (&Sbacktrace);
2444 defsubr (&Sbacktrace_frame);
2445}