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