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