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