(init_eval): Initialize when_entered_debugger to -1.
[bpt/emacs.git] / src / eval.c
1 /* Evaluator for GNU Emacs Lisp interpreter.
2 Copyright (C) 1985, 1986, 1987, 1993 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 *) malloc (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 "(prog1 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 buffer = (char *) xmalloc (size);
1335 }
1336
1337 string = build_string (buf);
1338 if (allocated)
1339 free (buffer);
1340
1341 Fsignal (Qerror, Fcons (string, Qnil));
1342 }
1343 \f
1344 DEFUN ("commandp", Fcommandp, Scommandp, 1, 1, 0,
1345 "T if FUNCTION makes provisions for interactive calling.\n\
1346 This means it contains a description for how to read arguments to give it.\n\
1347 The value is nil for an invalid function or a symbol with no function\n\
1348 definition.\n\
1349 \n\
1350 Interactively callable functions include strings and vectors (treated\n\
1351 as keyboard macros), lambda-expressions that contain a top-level call\n\
1352 to `interactive', autoload definitions made by `autoload' with non-nil\n\
1353 fourth argument, and some of the built-in functions of Lisp.\n\
1354 \n\
1355 Also, a symbol satisfies `commandp' if its function definition does so.")
1356 (function)
1357 Lisp_Object function;
1358 {
1359 register Lisp_Object fun;
1360 register Lisp_Object funcar;
1361 register Lisp_Object tem;
1362 register int i = 0;
1363
1364 fun = function;
1365
1366 fun = indirect_function (fun);
1367 if (EQ (fun, Qunbound))
1368 return Qnil;
1369
1370 /* Emacs primitives are interactive if their DEFUN specifies an
1371 interactive spec. */
1372 if (XTYPE (fun) == Lisp_Subr)
1373 {
1374 if (XSUBR (fun)->prompt)
1375 return Qt;
1376 else
1377 return Qnil;
1378 }
1379
1380 /* Bytecode objects are interactive if they are long enough to
1381 have an element whose index is COMPILED_INTERACTIVE, which is
1382 where the interactive spec is stored. */
1383 else if (XTYPE (fun) == Lisp_Compiled)
1384 return (XVECTOR (fun)->size > COMPILED_INTERACTIVE
1385 ? Qt : Qnil);
1386
1387 /* Strings and vectors are keyboard macros. */
1388 if (XTYPE (fun) == Lisp_String
1389 || XTYPE (fun) == Lisp_Vector)
1390 return Qt;
1391
1392 /* Lists may represent commands. */
1393 if (!CONSP (fun))
1394 return Qnil;
1395 funcar = Fcar (fun);
1396 if (XTYPE (funcar) != Lisp_Symbol)
1397 return Fsignal (Qinvalid_function, Fcons (fun, Qnil));
1398 if (EQ (funcar, Qlambda))
1399 return Fassq (Qinteractive, Fcdr (Fcdr (fun)));
1400 if (EQ (funcar, Qmocklisp))
1401 return Qt; /* All mocklisp functions can be called interactively */
1402 if (EQ (funcar, Qautoload))
1403 return Fcar (Fcdr (Fcdr (Fcdr (fun))));
1404 else
1405 return Qnil;
1406 }
1407
1408 /* ARGSUSED */
1409 DEFUN ("autoload", Fautoload, Sautoload, 2, 5, 0,
1410 "Define FUNCTION to autoload from FILE.\n\
1411 FUNCTION is a symbol; FILE is a file name string to pass to `load'.\n\
1412 Third arg DOCSTRING is documentation for the function.\n\
1413 Fourth arg INTERACTIVE if non-nil says function can be called interactively.\n\
1414 Fifth arg TYPE indicates the type of the object:\n\
1415 nil or omitted says FUNCTION is a function,\n\
1416 `keymap' says FUNCTION is really a keymap, and\n\
1417 `macro' or t says FUNCTION is really a macro.\n\
1418 Third through fifth args give info about the real definition.\n\
1419 They default to nil.\n\
1420 If FUNCTION is already defined other than as an autoload,\n\
1421 this does nothing and returns nil.")
1422 (function, file, docstring, interactive, type)
1423 Lisp_Object function, file, docstring, interactive, type;
1424 {
1425 #ifdef NO_ARG_ARRAY
1426 Lisp_Object args[4];
1427 #endif
1428
1429 CHECK_SYMBOL (function, 0);
1430 CHECK_STRING (file, 1);
1431
1432 /* If function is defined and not as an autoload, don't override */
1433 if (!EQ (XSYMBOL (function)->function, Qunbound)
1434 && !(XTYPE (XSYMBOL (function)->function) == Lisp_Cons
1435 && EQ (XCONS (XSYMBOL (function)->function)->car, Qautoload)))
1436 return Qnil;
1437
1438 #ifdef NO_ARG_ARRAY
1439 args[0] = file;
1440 args[1] = docstring;
1441 args[2] = interactive;
1442 args[3] = type;
1443
1444 return Ffset (function, Fcons (Qautoload, Flist (4, &args[0])));
1445 #else /* NO_ARG_ARRAY */
1446 return Ffset (function, Fcons (Qautoload, Flist (4, &file)));
1447 #endif /* not NO_ARG_ARRAY */
1448 }
1449
1450 Lisp_Object
1451 un_autoload (oldqueue)
1452 Lisp_Object oldqueue;
1453 {
1454 register Lisp_Object queue, first, second;
1455
1456 /* Queue to unwind is current value of Vautoload_queue.
1457 oldqueue is the shadowed value to leave in Vautoload_queue. */
1458 queue = Vautoload_queue;
1459 Vautoload_queue = oldqueue;
1460 while (CONSP (queue))
1461 {
1462 first = Fcar (queue);
1463 second = Fcdr (first);
1464 first = Fcar (first);
1465 if (EQ (second, Qnil))
1466 Vfeatures = first;
1467 else
1468 Ffset (first, second);
1469 queue = Fcdr (queue);
1470 }
1471 return Qnil;
1472 }
1473
1474 do_autoload (fundef, funname)
1475 Lisp_Object fundef, funname;
1476 {
1477 int count = specpdl_ptr - specpdl;
1478 Lisp_Object fun, val, queue, first, second;
1479
1480 fun = funname;
1481 CHECK_SYMBOL (funname, 0);
1482
1483 /* Value saved here is to be restored into Vautoload_queue */
1484 record_unwind_protect (un_autoload, Vautoload_queue);
1485 Vautoload_queue = Qt;
1486 Fload (Fcar (Fcdr (fundef)), Qnil, noninteractive ? Qt : Qnil, Qnil);
1487
1488 /* Save the old autoloads, in case we ever do an unload. */
1489 queue = Vautoload_queue;
1490 while (CONSP (queue))
1491 {
1492 first = Fcar (queue);
1493 second = Fcdr (first);
1494 first = Fcar (first);
1495
1496 /* Note: This test is subtle. The cdr of an autoload-queue entry
1497 may be an atom if the autoload entry was generated by a defalias
1498 or fset. */
1499 if (CONSP (second))
1500 Fput (first, Qautoload, (Fcdr (second)));
1501
1502 queue = Fcdr (queue);
1503 }
1504
1505 /* Once loading finishes, don't undo it. */
1506 Vautoload_queue = Qt;
1507 unbind_to (count, Qnil);
1508
1509 fun = Findirect_function (fun);
1510
1511 if (!NILP (Fequal (fun, fundef)))
1512 error ("Autoloading failed to define function %s",
1513 XSYMBOL (funname)->name->data);
1514 }
1515 \f
1516 DEFUN ("eval", Feval, Seval, 1, 1, 0,
1517 "Evaluate FORM and return its value.")
1518 (form)
1519 Lisp_Object form;
1520 {
1521 Lisp_Object fun, val, original_fun, original_args;
1522 Lisp_Object funcar;
1523 struct backtrace backtrace;
1524 struct gcpro gcpro1, gcpro2, gcpro3;
1525
1526 if (XTYPE (form) == Lisp_Symbol)
1527 {
1528 if (EQ (Vmocklisp_arguments, Qt))
1529 return Fsymbol_value (form);
1530 val = Fsymbol_value (form);
1531 if (NILP (val))
1532 XFASTINT (val) = 0;
1533 else if (EQ (val, Qt))
1534 XFASTINT (val) = 1;
1535 return val;
1536 }
1537 if (!CONSP (form))
1538 return form;
1539
1540 QUIT;
1541 if (consing_since_gc > gc_cons_threshold)
1542 {
1543 GCPRO1 (form);
1544 Fgarbage_collect ();
1545 UNGCPRO;
1546 }
1547
1548 if (++lisp_eval_depth > max_lisp_eval_depth)
1549 {
1550 if (max_lisp_eval_depth < 100)
1551 max_lisp_eval_depth = 100;
1552 if (lisp_eval_depth > max_lisp_eval_depth)
1553 error ("Lisp nesting exceeds max-lisp-eval-depth");
1554 }
1555
1556 original_fun = Fcar (form);
1557 original_args = Fcdr (form);
1558
1559 backtrace.next = backtrace_list;
1560 backtrace_list = &backtrace;
1561 backtrace.function = &original_fun; /* This also protects them from gc */
1562 backtrace.args = &original_args;
1563 backtrace.nargs = UNEVALLED;
1564 backtrace.evalargs = 1;
1565 backtrace.debug_on_exit = 0;
1566
1567 if (debug_on_next_call)
1568 do_debug_on_call (Qt);
1569
1570 /* At this point, only original_fun and original_args
1571 have values that will be used below */
1572 retry:
1573 fun = Findirect_function (original_fun);
1574
1575 if (XTYPE (fun) == Lisp_Subr)
1576 {
1577 Lisp_Object numargs;
1578 Lisp_Object argvals[7];
1579 Lisp_Object args_left;
1580 register int i, maxargs;
1581
1582 args_left = original_args;
1583 numargs = Flength (args_left);
1584
1585 if (XINT (numargs) < XSUBR (fun)->min_args ||
1586 (XSUBR (fun)->max_args >= 0 && XSUBR (fun)->max_args < XINT (numargs)))
1587 return Fsignal (Qwrong_number_of_arguments, Fcons (fun, Fcons (numargs, Qnil)));
1588
1589 if (XSUBR (fun)->max_args == UNEVALLED)
1590 {
1591 backtrace.evalargs = 0;
1592 val = (*XSUBR (fun)->function) (args_left);
1593 goto done;
1594 }
1595
1596 if (XSUBR (fun)->max_args == MANY)
1597 {
1598 /* Pass a vector of evaluated arguments */
1599 Lisp_Object *vals;
1600 register int argnum = 0;
1601
1602 vals = (Lisp_Object *) alloca (XINT (numargs) * sizeof (Lisp_Object));
1603
1604 GCPRO3 (args_left, fun, fun);
1605 gcpro3.var = vals;
1606 gcpro3.nvars = 0;
1607
1608 while (!NILP (args_left))
1609 {
1610 vals[argnum++] = Feval (Fcar (args_left));
1611 args_left = Fcdr (args_left);
1612 gcpro3.nvars = argnum;
1613 }
1614
1615 backtrace.args = vals;
1616 backtrace.nargs = XINT (numargs);
1617
1618 val = (*XSUBR (fun)->function) (XINT (numargs), vals);
1619 UNGCPRO;
1620 goto done;
1621 }
1622
1623 GCPRO3 (args_left, fun, fun);
1624 gcpro3.var = argvals;
1625 gcpro3.nvars = 0;
1626
1627 maxargs = XSUBR (fun)->max_args;
1628 for (i = 0; i < maxargs; args_left = Fcdr (args_left))
1629 {
1630 argvals[i] = Feval (Fcar (args_left));
1631 gcpro3.nvars = ++i;
1632 }
1633
1634 UNGCPRO;
1635
1636 backtrace.args = argvals;
1637 backtrace.nargs = XINT (numargs);
1638
1639 switch (i)
1640 {
1641 case 0:
1642 val = (*XSUBR (fun)->function) ();
1643 goto done;
1644 case 1:
1645 val = (*XSUBR (fun)->function) (argvals[0]);
1646 goto done;
1647 case 2:
1648 val = (*XSUBR (fun)->function) (argvals[0], argvals[1]);
1649 goto done;
1650 case 3:
1651 val = (*XSUBR (fun)->function) (argvals[0], argvals[1],
1652 argvals[2]);
1653 goto done;
1654 case 4:
1655 val = (*XSUBR (fun)->function) (argvals[0], argvals[1],
1656 argvals[2], argvals[3]);
1657 goto done;
1658 case 5:
1659 val = (*XSUBR (fun)->function) (argvals[0], argvals[1], argvals[2],
1660 argvals[3], argvals[4]);
1661 goto done;
1662 case 6:
1663 val = (*XSUBR (fun)->function) (argvals[0], argvals[1], argvals[2],
1664 argvals[3], argvals[4], argvals[5]);
1665 goto done;
1666 case 7:
1667 val = (*XSUBR (fun)->function) (argvals[0], argvals[1], argvals[2],
1668 argvals[3], argvals[4], argvals[5],
1669 argvals[6]);
1670 goto done;
1671
1672 default:
1673 /* Someone has created a subr that takes more arguments than
1674 is supported by this code. We need to either rewrite the
1675 subr to use a different argument protocol, or add more
1676 cases to this switch. */
1677 abort ();
1678 }
1679 }
1680 if (XTYPE (fun) == Lisp_Compiled)
1681 val = apply_lambda (fun, original_args, 1);
1682 else
1683 {
1684 if (!CONSP (fun))
1685 return Fsignal (Qinvalid_function, Fcons (fun, Qnil));
1686 funcar = Fcar (fun);
1687 if (XTYPE (funcar) != Lisp_Symbol)
1688 return Fsignal (Qinvalid_function, Fcons (fun, Qnil));
1689 if (EQ (funcar, Qautoload))
1690 {
1691 do_autoload (fun, original_fun);
1692 goto retry;
1693 }
1694 if (EQ (funcar, Qmacro))
1695 val = Feval (apply1 (Fcdr (fun), original_args));
1696 else if (EQ (funcar, Qlambda))
1697 val = apply_lambda (fun, original_args, 1);
1698 else if (EQ (funcar, Qmocklisp))
1699 val = ml_apply (fun, original_args);
1700 else
1701 return Fsignal (Qinvalid_function, Fcons (fun, Qnil));
1702 }
1703 done:
1704 if (!EQ (Vmocklisp_arguments, Qt))
1705 {
1706 if (NILP (val))
1707 XFASTINT (val) = 0;
1708 else if (EQ (val, Qt))
1709 XFASTINT (val) = 1;
1710 }
1711 lisp_eval_depth--;
1712 if (backtrace.debug_on_exit)
1713 val = call_debugger (Fcons (Qexit, Fcons (val, Qnil)));
1714 backtrace_list = backtrace.next;
1715 return val;
1716 }
1717 \f
1718 DEFUN ("apply", Fapply, Sapply, 2, MANY, 0,
1719 "Call FUNCTION with our remaining args, using our last arg as list of args.\n\
1720 Thus, (apply '+ 1 2 '(3 4)) returns 10.")
1721 (nargs, args)
1722 int nargs;
1723 Lisp_Object *args;
1724 {
1725 register int i, numargs;
1726 register Lisp_Object spread_arg;
1727 register Lisp_Object *funcall_args;
1728 Lisp_Object fun;
1729 struct gcpro gcpro1;
1730
1731 fun = args [0];
1732 funcall_args = 0;
1733 spread_arg = args [nargs - 1];
1734 CHECK_LIST (spread_arg, nargs);
1735
1736 numargs = XINT (Flength (spread_arg));
1737
1738 if (numargs == 0)
1739 return Ffuncall (nargs - 1, args);
1740 else if (numargs == 1)
1741 {
1742 args [nargs - 1] = XCONS (spread_arg)->car;
1743 return Ffuncall (nargs, args);
1744 }
1745
1746 numargs += nargs - 2;
1747
1748 fun = indirect_function (fun);
1749 if (EQ (fun, Qunbound))
1750 {
1751 /* Let funcall get the error */
1752 fun = args[0];
1753 goto funcall;
1754 }
1755
1756 if (XTYPE (fun) == Lisp_Subr)
1757 {
1758 if (numargs < XSUBR (fun)->min_args
1759 || (XSUBR (fun)->max_args >= 0 && XSUBR (fun)->max_args < numargs))
1760 goto funcall; /* Let funcall get the error */
1761 else if (XSUBR (fun)->max_args > numargs)
1762 {
1763 /* Avoid making funcall cons up a yet another new vector of arguments
1764 by explicitly supplying nil's for optional values */
1765 funcall_args = (Lisp_Object *) alloca ((1 + XSUBR (fun)->max_args)
1766 * sizeof (Lisp_Object));
1767 for (i = numargs; i < XSUBR (fun)->max_args;)
1768 funcall_args[++i] = Qnil;
1769 GCPRO1 (*funcall_args);
1770 gcpro1.nvars = 1 + XSUBR (fun)->max_args;
1771 }
1772 }
1773 funcall:
1774 /* We add 1 to numargs because funcall_args includes the
1775 function itself as well as its arguments. */
1776 if (!funcall_args)
1777 {
1778 funcall_args = (Lisp_Object *) alloca ((1 + numargs)
1779 * sizeof (Lisp_Object));
1780 GCPRO1 (*funcall_args);
1781 gcpro1.nvars = 1 + numargs;
1782 }
1783
1784 bcopy (args, funcall_args, nargs * sizeof (Lisp_Object));
1785 /* Spread the last arg we got. Its first element goes in
1786 the slot that it used to occupy, hence this value of I. */
1787 i = nargs - 1;
1788 while (!NILP (spread_arg))
1789 {
1790 funcall_args [i++] = XCONS (spread_arg)->car;
1791 spread_arg = XCONS (spread_arg)->cdr;
1792 }
1793
1794 RETURN_UNGCPRO (Ffuncall (gcpro1.nvars, funcall_args));
1795 }
1796 \f
1797 /* Apply fn to arg */
1798 Lisp_Object
1799 apply1 (fn, arg)
1800 Lisp_Object fn, arg;
1801 {
1802 struct gcpro gcpro1;
1803
1804 GCPRO1 (fn);
1805 if (NILP (arg))
1806 RETURN_UNGCPRO (Ffuncall (1, &fn));
1807 gcpro1.nvars = 2;
1808 #ifdef NO_ARG_ARRAY
1809 {
1810 Lisp_Object args[2];
1811 args[0] = fn;
1812 args[1] = arg;
1813 gcpro1.var = args;
1814 RETURN_UNGCPRO (Fapply (2, args));
1815 }
1816 #else /* not NO_ARG_ARRAY */
1817 RETURN_UNGCPRO (Fapply (2, &fn));
1818 #endif /* not NO_ARG_ARRAY */
1819 }
1820
1821 /* Call function fn on no arguments */
1822 Lisp_Object
1823 call0 (fn)
1824 Lisp_Object fn;
1825 {
1826 struct gcpro gcpro1;
1827
1828 GCPRO1 (fn);
1829 RETURN_UNGCPRO (Ffuncall (1, &fn));
1830 }
1831
1832 /* Call function fn with 1 argument arg1 */
1833 /* ARGSUSED */
1834 Lisp_Object
1835 call1 (fn, arg1)
1836 Lisp_Object fn, arg1;
1837 {
1838 struct gcpro gcpro1;
1839 #ifdef NO_ARG_ARRAY
1840 Lisp_Object args[2];
1841
1842 args[0] = fn;
1843 args[1] = arg1;
1844 GCPRO1 (args[0]);
1845 gcpro1.nvars = 2;
1846 RETURN_UNGCPRO (Ffuncall (2, args));
1847 #else /* not NO_ARG_ARRAY */
1848 GCPRO1 (fn);
1849 gcpro1.nvars = 2;
1850 RETURN_UNGCPRO (Ffuncall (2, &fn));
1851 #endif /* not NO_ARG_ARRAY */
1852 }
1853
1854 /* Call function fn with 2 arguments arg1, arg2 */
1855 /* ARGSUSED */
1856 Lisp_Object
1857 call2 (fn, arg1, arg2)
1858 Lisp_Object fn, arg1, arg2;
1859 {
1860 struct gcpro gcpro1;
1861 #ifdef NO_ARG_ARRAY
1862 Lisp_Object args[3];
1863 args[0] = fn;
1864 args[1] = arg1;
1865 args[2] = arg2;
1866 GCPRO1 (args[0]);
1867 gcpro1.nvars = 3;
1868 RETURN_UNGCPRO (Ffuncall (3, args));
1869 #else /* not NO_ARG_ARRAY */
1870 GCPRO1 (fn);
1871 gcpro1.nvars = 3;
1872 RETURN_UNGCPRO (Ffuncall (3, &fn));
1873 #endif /* not NO_ARG_ARRAY */
1874 }
1875
1876 /* Call function fn with 3 arguments arg1, arg2, arg3 */
1877 /* ARGSUSED */
1878 Lisp_Object
1879 call3 (fn, arg1, arg2, arg3)
1880 Lisp_Object fn, arg1, arg2, arg3;
1881 {
1882 struct gcpro gcpro1;
1883 #ifdef NO_ARG_ARRAY
1884 Lisp_Object args[4];
1885 args[0] = fn;
1886 args[1] = arg1;
1887 args[2] = arg2;
1888 args[3] = arg3;
1889 GCPRO1 (args[0]);
1890 gcpro1.nvars = 4;
1891 RETURN_UNGCPRO (Ffuncall (4, args));
1892 #else /* not NO_ARG_ARRAY */
1893 GCPRO1 (fn);
1894 gcpro1.nvars = 4;
1895 RETURN_UNGCPRO (Ffuncall (4, &fn));
1896 #endif /* not NO_ARG_ARRAY */
1897 }
1898
1899 /* Call function fn with 4 arguments arg1, arg2, arg3, arg4 */
1900 /* ARGSUSED */
1901 Lisp_Object
1902 call4 (fn, arg1, arg2, arg3, arg4)
1903 Lisp_Object fn, arg1, arg2, arg3, arg4;
1904 {
1905 struct gcpro gcpro1;
1906 #ifdef NO_ARG_ARRAY
1907 Lisp_Object args[5];
1908 args[0] = fn;
1909 args[1] = arg1;
1910 args[2] = arg2;
1911 args[3] = arg3;
1912 args[4] = arg4;
1913 GCPRO1 (args[0]);
1914 gcpro1.nvars = 5;
1915 RETURN_UNGCPRO (Ffuncall (5, args));
1916 #else /* not NO_ARG_ARRAY */
1917 GCPRO1 (fn);
1918 gcpro1.nvars = 5;
1919 RETURN_UNGCPRO (Ffuncall (5, &fn));
1920 #endif /* not NO_ARG_ARRAY */
1921 }
1922
1923 /* Call function fn with 5 arguments arg1, arg2, arg3, arg4, arg5 */
1924 /* ARGSUSED */
1925 Lisp_Object
1926 call5 (fn, arg1, arg2, arg3, arg4, arg5)
1927 Lisp_Object fn, arg1, arg2, arg3, arg4, arg5;
1928 {
1929 struct gcpro gcpro1;
1930 #ifdef NO_ARG_ARRAY
1931 Lisp_Object args[6];
1932 args[0] = fn;
1933 args[1] = arg1;
1934 args[2] = arg2;
1935 args[3] = arg3;
1936 args[4] = arg4;
1937 args[5] = arg5;
1938 GCPRO1 (args[0]);
1939 gcpro1.nvars = 6;
1940 RETURN_UNGCPRO (Ffuncall (6, args));
1941 #else /* not NO_ARG_ARRAY */
1942 GCPRO1 (fn);
1943 gcpro1.nvars = 6;
1944 RETURN_UNGCPRO (Ffuncall (6, &fn));
1945 #endif /* not NO_ARG_ARRAY */
1946 }
1947
1948 /* Call function fn with 6 arguments arg1, arg2, arg3, arg4, arg5, arg6 */
1949 /* ARGSUSED */
1950 Lisp_Object
1951 call6 (fn, arg1, arg2, arg3, arg4, arg5, arg6)
1952 Lisp_Object fn, arg1, arg2, arg3, arg4, arg5, arg6;
1953 {
1954 struct gcpro gcpro1;
1955 #ifdef NO_ARG_ARRAY
1956 Lisp_Object args[7];
1957 args[0] = fn;
1958 args[1] = arg1;
1959 args[2] = arg2;
1960 args[3] = arg3;
1961 args[4] = arg4;
1962 args[5] = arg5;
1963 args[6] = arg6;
1964 GCPRO1 (args[0]);
1965 gcpro1.nvars = 7;
1966 RETURN_UNGCPRO (Ffuncall (7, args));
1967 #else /* not NO_ARG_ARRAY */
1968 GCPRO1 (fn);
1969 gcpro1.nvars = 7;
1970 RETURN_UNGCPRO (Ffuncall (7, &fn));
1971 #endif /* not NO_ARG_ARRAY */
1972 }
1973
1974 DEFUN ("funcall", Ffuncall, Sfuncall, 1, MANY, 0,
1975 "Call first argument as a function, passing remaining arguments to it.\n\
1976 Thus, (funcall 'cons 'x 'y) returns (x . y).")
1977 (nargs, args)
1978 int nargs;
1979 Lisp_Object *args;
1980 {
1981 Lisp_Object fun;
1982 Lisp_Object funcar;
1983 int numargs = nargs - 1;
1984 Lisp_Object lisp_numargs;
1985 Lisp_Object val;
1986 struct backtrace backtrace;
1987 register Lisp_Object *internal_args;
1988 register int i;
1989
1990 QUIT;
1991 if (consing_since_gc > gc_cons_threshold)
1992 Fgarbage_collect ();
1993
1994 if (++lisp_eval_depth > max_lisp_eval_depth)
1995 {
1996 if (max_lisp_eval_depth < 100)
1997 max_lisp_eval_depth = 100;
1998 if (lisp_eval_depth > max_lisp_eval_depth)
1999 error ("Lisp nesting exceeds max-lisp-eval-depth");
2000 }
2001
2002 backtrace.next = backtrace_list;
2003 backtrace_list = &backtrace;
2004 backtrace.function = &args[0];
2005 backtrace.args = &args[1];
2006 backtrace.nargs = nargs - 1;
2007 backtrace.evalargs = 0;
2008 backtrace.debug_on_exit = 0;
2009
2010 if (debug_on_next_call)
2011 do_debug_on_call (Qlambda);
2012
2013 retry:
2014
2015 fun = args[0];
2016
2017 fun = Findirect_function (fun);
2018
2019 if (XTYPE (fun) == Lisp_Subr)
2020 {
2021 if (numargs < XSUBR (fun)->min_args
2022 || (XSUBR (fun)->max_args >= 0 && XSUBR (fun)->max_args < numargs))
2023 {
2024 XFASTINT (lisp_numargs) = numargs;
2025 return Fsignal (Qwrong_number_of_arguments, Fcons (fun, Fcons (lisp_numargs, Qnil)));
2026 }
2027
2028 if (XSUBR (fun)->max_args == UNEVALLED)
2029 return Fsignal (Qinvalid_function, Fcons (fun, Qnil));
2030
2031 if (XSUBR (fun)->max_args == MANY)
2032 {
2033 val = (*XSUBR (fun)->function) (numargs, args + 1);
2034 goto done;
2035 }
2036
2037 if (XSUBR (fun)->max_args > numargs)
2038 {
2039 internal_args = (Lisp_Object *) alloca (XSUBR (fun)->max_args * sizeof (Lisp_Object));
2040 bcopy (args + 1, internal_args, numargs * sizeof (Lisp_Object));
2041 for (i = numargs; i < XSUBR (fun)->max_args; i++)
2042 internal_args[i] = Qnil;
2043 }
2044 else
2045 internal_args = args + 1;
2046 switch (XSUBR (fun)->max_args)
2047 {
2048 case 0:
2049 val = (*XSUBR (fun)->function) ();
2050 goto done;
2051 case 1:
2052 val = (*XSUBR (fun)->function) (internal_args[0]);
2053 goto done;
2054 case 2:
2055 val = (*XSUBR (fun)->function) (internal_args[0],
2056 internal_args[1]);
2057 goto done;
2058 case 3:
2059 val = (*XSUBR (fun)->function) (internal_args[0], internal_args[1],
2060 internal_args[2]);
2061 goto done;
2062 case 4:
2063 val = (*XSUBR (fun)->function) (internal_args[0], internal_args[1],
2064 internal_args[2],
2065 internal_args[3]);
2066 goto done;
2067 case 5:
2068 val = (*XSUBR (fun)->function) (internal_args[0], internal_args[1],
2069 internal_args[2], internal_args[3],
2070 internal_args[4]);
2071 goto done;
2072 case 6:
2073 val = (*XSUBR (fun)->function) (internal_args[0], internal_args[1],
2074 internal_args[2], internal_args[3],
2075 internal_args[4], internal_args[5]);
2076 goto done;
2077 case 7:
2078 val = (*XSUBR (fun)->function) (internal_args[0], internal_args[1],
2079 internal_args[2], internal_args[3],
2080 internal_args[4], internal_args[5],
2081 internal_args[6]);
2082 goto done;
2083
2084 default:
2085
2086 /* If a subr takes more than 6 arguments without using MANY
2087 or UNEVALLED, we need to extend this function to support it.
2088 Until this is done, there is no way to call the function. */
2089 abort ();
2090 }
2091 }
2092 if (XTYPE (fun) == Lisp_Compiled)
2093 val = funcall_lambda (fun, numargs, args + 1);
2094 else
2095 {
2096 if (!CONSP (fun))
2097 return Fsignal (Qinvalid_function, Fcons (fun, Qnil));
2098 funcar = Fcar (fun);
2099 if (XTYPE (funcar) != Lisp_Symbol)
2100 return Fsignal (Qinvalid_function, Fcons (fun, Qnil));
2101 if (EQ (funcar, Qlambda))
2102 val = funcall_lambda (fun, numargs, args + 1);
2103 else if (EQ (funcar, Qmocklisp))
2104 val = ml_apply (fun, Flist (numargs, args + 1));
2105 else if (EQ (funcar, Qautoload))
2106 {
2107 do_autoload (fun, args[0]);
2108 goto retry;
2109 }
2110 else
2111 return Fsignal (Qinvalid_function, Fcons (fun, Qnil));
2112 }
2113 done:
2114 lisp_eval_depth--;
2115 if (backtrace.debug_on_exit)
2116 val = call_debugger (Fcons (Qexit, Fcons (val, Qnil)));
2117 backtrace_list = backtrace.next;
2118 return val;
2119 }
2120 \f
2121 Lisp_Object
2122 apply_lambda (fun, args, eval_flag)
2123 Lisp_Object fun, args;
2124 int eval_flag;
2125 {
2126 Lisp_Object args_left;
2127 Lisp_Object numargs;
2128 register Lisp_Object *arg_vector;
2129 struct gcpro gcpro1, gcpro2, gcpro3;
2130 register int i;
2131 register Lisp_Object tem;
2132
2133 numargs = Flength (args);
2134 arg_vector = (Lisp_Object *) alloca (XINT (numargs) * sizeof (Lisp_Object));
2135 args_left = args;
2136
2137 GCPRO3 (*arg_vector, args_left, fun);
2138 gcpro1.nvars = 0;
2139
2140 for (i = 0; i < XINT (numargs);)
2141 {
2142 tem = Fcar (args_left), args_left = Fcdr (args_left);
2143 if (eval_flag) tem = Feval (tem);
2144 arg_vector[i++] = tem;
2145 gcpro1.nvars = i;
2146 }
2147
2148 UNGCPRO;
2149
2150 if (eval_flag)
2151 {
2152 backtrace_list->args = arg_vector;
2153 backtrace_list->nargs = i;
2154 }
2155 backtrace_list->evalargs = 0;
2156 tem = funcall_lambda (fun, XINT (numargs), arg_vector);
2157
2158 /* Do the debug-on-exit now, while arg_vector still exists. */
2159 if (backtrace_list->debug_on_exit)
2160 tem = call_debugger (Fcons (Qexit, Fcons (tem, Qnil)));
2161 /* Don't do it again when we return to eval. */
2162 backtrace_list->debug_on_exit = 0;
2163 return tem;
2164 }
2165
2166 /* Apply a Lisp function FUN to the NARGS evaluated arguments in ARG_VECTOR
2167 and return the result of evaluation.
2168 FUN must be either a lambda-expression or a compiled-code object. */
2169
2170 Lisp_Object
2171 funcall_lambda (fun, nargs, arg_vector)
2172 Lisp_Object fun;
2173 int nargs;
2174 register Lisp_Object *arg_vector;
2175 {
2176 Lisp_Object val, tem;
2177 register Lisp_Object syms_left;
2178 Lisp_Object numargs;
2179 register Lisp_Object next;
2180 int count = specpdl_ptr - specpdl;
2181 register int i;
2182 int optional = 0, rest = 0;
2183
2184 specbind (Qmocklisp_arguments, Qt); /* t means NOT mocklisp! */
2185
2186 XFASTINT (numargs) = nargs;
2187
2188 if (XTYPE (fun) == Lisp_Cons)
2189 syms_left = Fcar (Fcdr (fun));
2190 else if (XTYPE (fun) == Lisp_Compiled)
2191 syms_left = XVECTOR (fun)->contents[COMPILED_ARGLIST];
2192 else abort ();
2193
2194 i = 0;
2195 for (; !NILP (syms_left); syms_left = Fcdr (syms_left))
2196 {
2197 QUIT;
2198 next = Fcar (syms_left);
2199 while (XTYPE (next) != Lisp_Symbol)
2200 next = Fsignal (Qinvalid_function, Fcons (fun, Qnil));
2201 if (EQ (next, Qand_rest))
2202 rest = 1;
2203 else if (EQ (next, Qand_optional))
2204 optional = 1;
2205 else if (rest)
2206 {
2207 specbind (next, Flist (nargs - i, &arg_vector[i]));
2208 i = nargs;
2209 }
2210 else if (i < nargs)
2211 {
2212 tem = arg_vector[i++];
2213 specbind (next, tem);
2214 }
2215 else if (!optional)
2216 return Fsignal (Qwrong_number_of_arguments, Fcons (fun, Fcons (numargs, Qnil)));
2217 else
2218 specbind (next, Qnil);
2219 }
2220
2221 if (i < nargs)
2222 return Fsignal (Qwrong_number_of_arguments, Fcons (fun, Fcons (numargs, Qnil)));
2223
2224 if (XTYPE (fun) == Lisp_Cons)
2225 val = Fprogn (Fcdr (Fcdr (fun)));
2226 else
2227 val = Fbyte_code (XVECTOR (fun)->contents[COMPILED_BYTECODE],
2228 XVECTOR (fun)->contents[COMPILED_CONSTANTS],
2229 XVECTOR (fun)->contents[COMPILED_STACK_DEPTH]);
2230 return unbind_to (count, val);
2231 }
2232 \f
2233 void
2234 grow_specpdl ()
2235 {
2236 register int count = specpdl_ptr - specpdl;
2237 if (specpdl_size >= max_specpdl_size)
2238 {
2239 if (max_specpdl_size < 400)
2240 max_specpdl_size = 400;
2241 if (specpdl_size >= max_specpdl_size)
2242 {
2243 if (!NILP (Vdebug_on_error))
2244 /* Leave room for some specpdl in the debugger. */
2245 max_specpdl_size = specpdl_size + 100;
2246 Fsignal (Qerror,
2247 Fcons (build_string ("Variable binding depth exceeds max-specpdl-size"), Qnil));
2248 }
2249 }
2250 specpdl_size *= 2;
2251 if (specpdl_size > max_specpdl_size)
2252 specpdl_size = max_specpdl_size;
2253 specpdl = (struct specbinding *) xrealloc (specpdl, specpdl_size * sizeof (struct specbinding));
2254 specpdl_ptr = specpdl + count;
2255 }
2256
2257 void
2258 specbind (symbol, value)
2259 Lisp_Object symbol, value;
2260 {
2261 extern void store_symval_forwarding (); /* in eval.c */
2262 Lisp_Object ovalue;
2263
2264 CHECK_SYMBOL (symbol, 0);
2265
2266 if (specpdl_ptr == specpdl + specpdl_size)
2267 grow_specpdl ();
2268 specpdl_ptr->symbol = symbol;
2269 specpdl_ptr->func = 0;
2270 specpdl_ptr->old_value = ovalue = find_symbol_value (symbol);
2271 specpdl_ptr++;
2272 if (XTYPE (ovalue) == Lisp_Buffer_Objfwd)
2273 store_symval_forwarding (symbol, ovalue, value);
2274 else
2275 Fset (symbol, value);
2276 }
2277
2278 void
2279 record_unwind_protect (function, arg)
2280 Lisp_Object (*function)();
2281 Lisp_Object arg;
2282 {
2283 if (specpdl_ptr == specpdl + specpdl_size)
2284 grow_specpdl ();
2285 specpdl_ptr->func = function;
2286 specpdl_ptr->symbol = Qnil;
2287 specpdl_ptr->old_value = arg;
2288 specpdl_ptr++;
2289 }
2290
2291 Lisp_Object
2292 unbind_to (count, value)
2293 int count;
2294 Lisp_Object value;
2295 {
2296 int quitf = !NILP (Vquit_flag);
2297 struct gcpro gcpro1;
2298
2299 GCPRO1 (value);
2300
2301 Vquit_flag = Qnil;
2302
2303 while (specpdl_ptr != specpdl + count)
2304 {
2305 --specpdl_ptr;
2306 if (specpdl_ptr->func != 0)
2307 (*specpdl_ptr->func) (specpdl_ptr->old_value);
2308 /* Note that a "binding" of nil is really an unwind protect,
2309 so in that case the "old value" is a list of forms to evaluate. */
2310 else if (NILP (specpdl_ptr->symbol))
2311 Fprogn (specpdl_ptr->old_value);
2312 else
2313 Fset (specpdl_ptr->symbol, specpdl_ptr->old_value);
2314 }
2315 if (NILP (Vquit_flag) && quitf) Vquit_flag = Qt;
2316
2317 UNGCPRO;
2318
2319 return value;
2320 }
2321 \f
2322 #if 0
2323
2324 /* Get the value of symbol's global binding, even if that binding
2325 is not now dynamically visible. */
2326
2327 Lisp_Object
2328 top_level_value (symbol)
2329 Lisp_Object symbol;
2330 {
2331 register struct specbinding *ptr = specpdl;
2332
2333 CHECK_SYMBOL (symbol, 0);
2334 for (; ptr != specpdl_ptr; ptr++)
2335 {
2336 if (EQ (ptr->symbol, symbol))
2337 return ptr->old_value;
2338 }
2339 return Fsymbol_value (symbol);
2340 }
2341
2342 Lisp_Object
2343 top_level_set (symbol, newval)
2344 Lisp_Object symbol, newval;
2345 {
2346 register struct specbinding *ptr = specpdl;
2347
2348 CHECK_SYMBOL (symbol, 0);
2349 for (; ptr != specpdl_ptr; ptr++)
2350 {
2351 if (EQ (ptr->symbol, symbol))
2352 {
2353 ptr->old_value = newval;
2354 return newval;
2355 }
2356 }
2357 return Fset (symbol, newval);
2358 }
2359
2360 #endif /* 0 */
2361 \f
2362 DEFUN ("backtrace-debug", Fbacktrace_debug, Sbacktrace_debug, 2, 2, 0,
2363 "Set the debug-on-exit flag of eval frame LEVEL levels down to FLAG.\n\
2364 The debugger is entered when that frame exits, if the flag is non-nil.")
2365 (level, flag)
2366 Lisp_Object level, flag;
2367 {
2368 register struct backtrace *backlist = backtrace_list;
2369 register int i;
2370
2371 CHECK_NUMBER (level, 0);
2372
2373 for (i = 0; backlist && i < XINT (level); i++)
2374 {
2375 backlist = backlist->next;
2376 }
2377
2378 if (backlist)
2379 backlist->debug_on_exit = !NILP (flag);
2380
2381 return flag;
2382 }
2383
2384 DEFUN ("backtrace", Fbacktrace, Sbacktrace, 0, 0, "",
2385 "Print a trace of Lisp function calls currently active.\n\
2386 Output stream used is value of `standard-output'.")
2387 ()
2388 {
2389 register struct backtrace *backlist = backtrace_list;
2390 register int i;
2391 Lisp_Object tail;
2392 Lisp_Object tem;
2393 extern Lisp_Object Vprint_level;
2394 struct gcpro gcpro1;
2395
2396 XFASTINT (Vprint_level) = 3;
2397
2398 tail = Qnil;
2399 GCPRO1 (tail);
2400
2401 while (backlist)
2402 {
2403 write_string (backlist->debug_on_exit ? "* " : " ", 2);
2404 if (backlist->nargs == UNEVALLED)
2405 {
2406 Fprin1 (Fcons (*backlist->function, *backlist->args), Qnil);
2407 }
2408 else
2409 {
2410 tem = *backlist->function;
2411 Fprin1 (tem, Qnil); /* This can QUIT */
2412 write_string ("(", -1);
2413 if (backlist->nargs == MANY)
2414 {
2415 for (tail = *backlist->args, i = 0;
2416 !NILP (tail);
2417 tail = Fcdr (tail), i++)
2418 {
2419 if (i) write_string (" ", -1);
2420 Fprin1 (Fcar (tail), Qnil);
2421 }
2422 }
2423 else
2424 {
2425 for (i = 0; i < backlist->nargs; i++)
2426 {
2427 if (i) write_string (" ", -1);
2428 Fprin1 (backlist->args[i], Qnil);
2429 }
2430 }
2431 }
2432 write_string (")\n", -1);
2433 backlist = backlist->next;
2434 }
2435
2436 Vprint_level = Qnil;
2437 UNGCPRO;
2438 return Qnil;
2439 }
2440
2441 DEFUN ("backtrace-frame", Fbacktrace_frame, Sbacktrace_frame, 1, 1, "",
2442 "Return the function and arguments N frames up from current execution point.\n\
2443 If that frame has not evaluated the arguments yet (or is a special form),\n\
2444 the value is (nil FUNCTION ARG-FORMS...).\n\
2445 If that frame has evaluated its arguments and called its function already,\n\
2446 the value is (t FUNCTION ARG-VALUES...).\n\
2447 A &rest arg is represented as the tail of the list ARG-VALUES.\n\
2448 FUNCTION is whatever was supplied as car of evaluated list,\n\
2449 or a lambda expression for macro calls.\n\
2450 If N is more than the number of frames, the value is nil.")
2451 (nframes)
2452 Lisp_Object nframes;
2453 {
2454 register struct backtrace *backlist = backtrace_list;
2455 register int i;
2456 Lisp_Object tem;
2457
2458 CHECK_NATNUM (nframes, 0);
2459
2460 /* Find the frame requested. */
2461 for (i = 0; i < XFASTINT (nframes); i++)
2462 backlist = backlist->next;
2463
2464 if (!backlist)
2465 return Qnil;
2466 if (backlist->nargs == UNEVALLED)
2467 return Fcons (Qnil, Fcons (*backlist->function, *backlist->args));
2468 else
2469 {
2470 if (backlist->nargs == MANY)
2471 tem = *backlist->args;
2472 else
2473 tem = Flist (backlist->nargs, backlist->args);
2474
2475 return Fcons (Qt, Fcons (*backlist->function, tem));
2476 }
2477 }
2478 \f
2479 syms_of_eval ()
2480 {
2481 DEFVAR_INT ("max-specpdl-size", &max_specpdl_size,
2482 "Limit on number of Lisp variable bindings & unwind-protects before error.");
2483
2484 DEFVAR_INT ("max-lisp-eval-depth", &max_lisp_eval_depth,
2485 "Limit on depth in `eval', `apply' and `funcall' before error.\n\
2486 This limit is to catch infinite recursions for you before they cause\n\
2487 actual stack overflow in C, which would be fatal for Emacs.\n\
2488 You can safely make it considerably larger than its default value,\n\
2489 if that proves inconveniently small.");
2490
2491 DEFVAR_LISP ("quit-flag", &Vquit_flag,
2492 "Non-nil causes `eval' to abort, unless `inhibit-quit' is non-nil.\n\
2493 Typing C-G sets `quit-flag' non-nil, regardless of `inhibit-quit'.");
2494 Vquit_flag = Qnil;
2495
2496 DEFVAR_LISP ("inhibit-quit", &Vinhibit_quit,
2497 "Non-nil inhibits C-g quitting from happening immediately.\n\
2498 Note that `quit-flag' will still be set by typing C-g,\n\
2499 so a quit will be signalled as soon as `inhibit-quit' is nil.\n\
2500 To prevent this happening, set `quit-flag' to nil\n\
2501 before making `inhibit-quit' nil.");
2502 Vinhibit_quit = Qnil;
2503
2504 Qinhibit_quit = intern ("inhibit-quit");
2505 staticpro (&Qinhibit_quit);
2506
2507 Qautoload = intern ("autoload");
2508 staticpro (&Qautoload);
2509
2510 Qdebug_on_error = intern ("debug-on-error");
2511 staticpro (&Qdebug_on_error);
2512
2513 Qmacro = intern ("macro");
2514 staticpro (&Qmacro);
2515
2516 /* Note that the process handling also uses Qexit, but we don't want
2517 to staticpro it twice, so we just do it here. */
2518 Qexit = intern ("exit");
2519 staticpro (&Qexit);
2520
2521 Qinteractive = intern ("interactive");
2522 staticpro (&Qinteractive);
2523
2524 Qcommandp = intern ("commandp");
2525 staticpro (&Qcommandp);
2526
2527 Qdefun = intern ("defun");
2528 staticpro (&Qdefun);
2529
2530 Qand_rest = intern ("&rest");
2531 staticpro (&Qand_rest);
2532
2533 Qand_optional = intern ("&optional");
2534 staticpro (&Qand_optional);
2535
2536 DEFVAR_LISP ("stack-trace-on-error", &Vstack_trace_on_error,
2537 "*Non-nil means automatically display a backtrace buffer\n\
2538 after any error that is handled by the editor command loop.\n\
2539 If the value is a list, an error only means to display a backtrace\n\
2540 if one of its condition symbols appears in the list.");
2541 Vstack_trace_on_error = Qnil;
2542
2543 DEFVAR_LISP ("debug-on-error", &Vdebug_on_error,
2544 "*Non-nil means enter debugger if an error is signaled.\n\
2545 Does not apply to errors handled by `condition-case'.\n\
2546 If the value is a list, an error only means to enter the debugger\n\
2547 if one of its condition symbols appears in the list.\n\
2548 See also variable `debug-on-quit'.");
2549 Vdebug_on_error = Qnil;
2550
2551 DEFVAR_BOOL ("debug-on-quit", &debug_on_quit,
2552 "*Non-nil means enter debugger if quit is signaled (C-G, for example).\n\
2553 Does not apply if quit is handled by a `condition-case'.");
2554 debug_on_quit = 0;
2555
2556 DEFVAR_BOOL ("debug-on-next-call", &debug_on_next_call,
2557 "Non-nil means enter debugger before next `eval', `apply' or `funcall'.");
2558
2559 DEFVAR_LISP ("debugger", &Vdebugger,
2560 "Function to call to invoke debugger.\n\
2561 If due to frame exit, args are `exit' and the value being returned;\n\
2562 this function's value will be returned instead of that.\n\
2563 If due to error, args are `error' and a list of the args to `signal'.\n\
2564 If due to `apply' or `funcall' entry, one arg, `lambda'.\n\
2565 If due to `eval' entry, one arg, t.");
2566 Vdebugger = Qnil;
2567
2568 Qmocklisp_arguments = intern ("mocklisp-arguments");
2569 staticpro (&Qmocklisp_arguments);
2570 DEFVAR_LISP ("mocklisp-arguments", &Vmocklisp_arguments,
2571 "While in a mocklisp function, the list of its unevaluated args.");
2572 Vmocklisp_arguments = Qt;
2573
2574 DEFVAR_LISP ("run-hooks", &Vrun_hooks,
2575 "Set to the function `run-hooks', if that function has been defined.\n\
2576 Otherwise, nil (in a bare Emacs without preloaded Lisp code).");
2577 Vrun_hooks = Qnil;
2578
2579 staticpro (&Vautoload_queue);
2580 Vautoload_queue = Qnil;
2581
2582 defsubr (&Sor);
2583 defsubr (&Sand);
2584 defsubr (&Sif);
2585 defsubr (&Scond);
2586 defsubr (&Sprogn);
2587 defsubr (&Sprog1);
2588 defsubr (&Sprog2);
2589 defsubr (&Ssetq);
2590 defsubr (&Squote);
2591 defsubr (&Sfunction);
2592 defsubr (&Sdefun);
2593 defsubr (&Sdefmacro);
2594 defsubr (&Sdefvar);
2595 defsubr (&Sdefconst);
2596 defsubr (&Suser_variable_p);
2597 defsubr (&Slet);
2598 defsubr (&SletX);
2599 defsubr (&Swhile);
2600 defsubr (&Smacroexpand);
2601 defsubr (&Scatch);
2602 defsubr (&Sthrow);
2603 defsubr (&Sunwind_protect);
2604 defsubr (&Scondition_case);
2605 defsubr (&Ssignal);
2606 defsubr (&Sinteractive_p);
2607 defsubr (&Scommandp);
2608 defsubr (&Sautoload);
2609 defsubr (&Seval);
2610 defsubr (&Sapply);
2611 defsubr (&Sfuncall);
2612 defsubr (&Sbacktrace_debug);
2613 defsubr (&Sbacktrace);
2614 defsubr (&Sbacktrace_frame);
2615 }