Declare Ffetch_bytecode.
[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\
638for the variable is \"*\"")
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;
90165123 647 if ((STRINGP (documentation)) &&
db9f0278
JB
648 ((unsigned char) XSTRING (documentation)->data[0] == '*'))
649 return Qt;
650 return Qnil;
651}
652\f
653DEFUN ("let*", FletX, SletX, 1, UNEVALLED, 0,
654 "(let* VARLIST BODY...): bind variables according to VARLIST then eval BODY.\n\
655The value of the last form in BODY is returned.\n\
656Each element of VARLIST is a symbol (which is bound to nil)\n\
657or a list (SYMBOL VALUEFORM) (which binds SYMBOL to the value of VALUEFORM).\n\
658Each 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);
265a9e55 669 while (!NILP (varlist))
db9f0278
JB
670 {
671 QUIT;
672 elt = Fcar (varlist);
90165123 673 if (SYMBOLP (elt))
db9f0278 674 specbind (elt, Qnil);
08564963
JB
675 else if (! NILP (Fcdr (Fcdr (elt))))
676 Fsignal (Qerror,
677 Fcons (build_string ("`let' bindings can have only one value-form"),
678 elt));
db9f0278
JB
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
691DEFUN ("let", Flet, Slet, 1, UNEVALLED, 0,
692 "(let VARLIST BODY...): bind variables according to VARLIST then eval BODY.\n\
693The value of the last form in BODY is returned.\n\
694Each element of VARLIST is a symbol (which is bound to nil)\n\
695or a list (SYMBOL VALUEFORM) (which binds SYMBOL to the value of VALUEFORM).\n\
696All 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
265a9e55 717 for (argnum = 0; !NILP (varlist); varlist = Fcdr (varlist))
db9f0278
JB
718 {
719 QUIT;
720 elt = Fcar (varlist);
90165123 721 if (SYMBOLP (elt))
db9f0278 722 temps [argnum++] = Qnil;
08564963
JB
723 else if (! NILP (Fcdr (Fcdr (elt))))
724 Fsignal (Qerror,
725 Fcons (build_string ("`let' bindings can have only one value-form"),
726 elt));
db9f0278
JB
727 else
728 temps [argnum++] = Feval (Fcar (Fcdr (elt)));
729 gcpro2.nvars = argnum;
730 }
731 UNGCPRO;
732
733 varlist = Fcar (args);
265a9e55 734 for (argnum = 0; !NILP (varlist); varlist = Fcdr (varlist))
db9f0278
JB
735 {
736 elt = Fcar (varlist);
737 tem = temps[argnum++];
90165123 738 if (SYMBOLP (elt))
db9f0278
JB
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
748DEFUN ("while", Fwhile, Swhile, 1, UNEVALLED, 0,
749 "(while TEST BODY...): if TEST yields non-nil, eval BODY... and repeat.\n\
750The order of execution is thus TEST, BODY, TEST, BODY and so on\n\
751until 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);
e3c24a74
RS
762 while (tem = Feval (test),
763 (!EQ (Vmocklisp_arguments, Qt) ? XINT (tem) : !NILP (tem)))
db9f0278
JB
764 {
765 QUIT;
766 Fprogn (body);
767 }
768
769 UNGCPRO;
770 return Qnil;
771}
772
773DEFUN ("macroexpand", Fmacroexpand, Smacroexpand, 1, 2, 0,
774 "Return result of expanding macros at top level of FORM.\n\
775If FORM is not a macro call, it is returned unchanged.\n\
776Otherwise, the macro is expanded and the expansion is considered\n\
777in place of FORM. When a non-macro-call results, it is returned.\n\n\
778The second optional arg ENVIRONMENT species an environment of macro\n\
779definitions to shadow the loaded ones for use in file byte-compilation.")
780 (form, env)
781 register Lisp_Object form;
782 Lisp_Object env;
783{
23d6b5a6 784 /* With cleanups from Hallvard Furuseth. */
db9f0278
JB
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. */
90165123 791 if (!CONSP (form))
db9f0278 792 break;
23d6b5a6
JB
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;
db9f0278
JB
796 /* Trace symbols aliases to other symbols
797 until we get a symbol that is not an alias. */
90165123 798 while (SYMBOLP (def))
db9f0278
JB
799 {
800 QUIT;
23d6b5a6 801 sym = def;
db9f0278 802 tem = Fassq (sym, env);
265a9e55 803 if (NILP (tem))
db9f0278
JB
804 {
805 def = XSYMBOL (sym)->function;
23d6b5a6
JB
806 if (!EQ (def, Qunbound))
807 continue;
db9f0278 808 }
23d6b5a6 809 break;
db9f0278
JB
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. */
265a9e55 813 if (NILP (tem))
db9f0278
JB
814 {
815 /* SYM is not mentioned in ENV.
816 Look at its function definition. */
90165123 817 if (EQ (def, Qunbound) || !CONSP (def))
db9f0278
JB
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? */
ee9ee63c 823 tem = Fnth (make_number (4), def);
47ccd8b6 824 if (EQ (tem, Qt) || EQ (tem, Qmacro))
ee9ee63c
JB
825 /* Yes, load it and try again. */
826 {
827 do_autoload (def, sym);
828 continue;
829 }
830 else
db9f0278 831 break;
db9f0278
JB
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;
265a9e55 840 if (NILP (expander))
db9f0278
JB
841 break;
842 }
db9f0278
JB
843 form = apply1 (expander, XCONS (form)->cdr);
844 }
845 return form;
846}
847\f
848DEFUN ("catch", Fcatch, Scatch, 1, UNEVALLED, 0,
849 "(catch TAG BODY...): eval BODY allowing nonlocal exits using `throw'.\n\
850TAG is evalled to get the tag to use. Then the BODY is executed.\n\
851Within BODY, (throw TAG) with same tag exits BODY and exits this `catch'.\n\
852If no throw happens, `catch' returns the value of the last BODY form.\n\
853If 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
870Lisp_Object
871internal_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
ba410f40
JB
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.
db9f0278 902
ba410f40
JB
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.
db9f0278 906
ba410f40
JB
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. */
db9f0278
JB
915
916static void
ba410f40 917unwind_to_catch (catch, value)
db9f0278 918 struct catchtag *catch;
ba410f40 919 Lisp_Object value;
db9f0278
JB
920{
921 register int last_time;
922
ba410f40
JB
923 /* Save the value in the tag. */
924 catch->val = value;
925
82da7701 926 /* Restore the polling-suppression count. */
1cdc3155 927 set_poll_suppress_count (catch->poll_suppress_count);
82da7701 928
db9f0278
JB
929 do
930 {
931 last_time = catchlist == catch;
82da7701
JB
932
933 /* Unwind the specpdl stack, and then restore the proper set of
934 handlers. */
db9f0278
JB
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;
ba410f40
JB
944
945 _longjmp (catch->jmp, 1);
db9f0278
JB
946}
947
948DEFUN ("throw", Fthrow, Sthrow, 2, 2, 0,
949 "(throw TAG VALUE): throw to the catch for TAG and return VALUE from it.\n\
950Both 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 {
265a9e55 958 if (!NILP (tag))
db9f0278
JB
959 for (c = catchlist; c; c = c->next)
960 {
961 if (EQ (c->tag, tag))
ba410f40 962 unwind_to_catch (c, val);
db9f0278
JB
963 }
964 tag = Fsignal (Qno_catch, Fcons (tag, Fcons (val, Qnil)));
965 }
966}
967
968
969DEFUN ("unwind-protect", Funwind_protect, Sunwind_protect, 1, UNEVALLED, 0,
970 "Do BODYFORM, protecting with UNWINDFORMS.\n\
971Usage looks like (unwind-protect BODYFORM UNWINDFORMS...).\n\
972If BODYFORM completes normally, its value is returned\n\
973after executing the UNWINDFORMS.\n\
974If 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
992struct handler *handlerlist;
993
994DEFUN ("condition-case", Fcondition_case, Scondition_case, 2, UNEVALLED, 0,
995 "Regain control when an error is signaled.\n\
996Usage looks like (condition-case VAR BODYFORM HANDLERS...).\n\
997executes BODYFORM and returns its value if no error happens.\n\
998Each element of HANDLERS looks like (CONDITION-NAME BODY...)\n\
999where the BODY is made of Lisp expressions.\n\n\
1000A handler is applicable to an error\n\
1001if CONDITION-NAME is one of the error's condition names.\n\
1002If an error happens, the first applicable handler is run.\n\
1003\n\
633357d4
RS
1004The car of a handler may be a list of condition names\n\
1005instead of a single condition name.\n\
1006\n\
db9f0278
JB
1007When a handler handles an error,\n\
1008control returns to the condition-case and the handler BODY... is executed\n\
1009with VAR bound to (SIGNALED-CONDITIONS . SIGNAL-DATA).\n\
1010VAR may be nil; then you do not get access to the signal information.\n\
1011\n\
1012The value of the last BODY form is returned from the condition-case.\n\
1013See 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;
82da7701 1020 register Lisp_Object var, bodyform, handlers;
db9f0278 1021
82da7701
JB
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);
5f96776a
RS
1031 if (! (NILP (tem)
1032 || (CONSP (tem)
1033 && (SYMBOLP (XCONS (tem)->car)
1034 || CONSP (XCONS (tem)->car)))))
82da7701
JB
1035 error ("Invalid condition handler", tem);
1036 }
db9f0278
JB
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 {
265a9e55 1048 if (!NILP (h.var))
9d58218c
RS
1049 specbind (h.var, c.val);
1050 val = Fprogn (Fcdr (h.chosen_clause));
82da7701
JB
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. */
db9f0278
JB
1055 unbind_to (c.pdlcount, Qnil);
1056 return val;
1057 }
1058 c.next = catchlist;
1059 catchlist = &c;
db9f0278 1060
82da7701
JB
1061 h.var = var;
1062 h.handler = handlers;
db9f0278 1063 h.next = handlerlist;
db9f0278
JB
1064 h.tag = &c;
1065 handlerlist = &h;
1066
82da7701 1067 val = Feval (bodyform);
db9f0278
JB
1068 catchlist = c.next;
1069 handlerlist = h.next;
1070 return val;
1071}
1072
1073Lisp_Object
1074internal_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 {
9d58218c 1093 return (*hfun) (c.val);
db9f0278
JB
1094 }
1095 c.next = catchlist;
1096 catchlist = &c;
1097 h.handler = handlers;
1098 h.var = Qnil;
db9f0278
JB
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
d227775c
RS
1109Lisp_Object
1110internal_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 {
9d58218c 1130 return (*hfun) (c.val);
d227775c
RS
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
db9f0278
JB
1146static Lisp_Object find_handler_clause ();
1147
1148DEFUN ("signal", Fsignal, Ssignal, 2, 2, 0,
4200e719 1149 "Signal an error. Args are ERROR-SYMBOL and associated DATA.\n\
db9f0278 1150This function does not return.\n\n\
4200e719 1151An error symbol is a symbol with an `error-conditions' property\n\
db9f0278
JB
1152that is a list of condition names.\n\
1153A handler for any of those names will get to handle this signal.\n\
1154The symbol `error' should normally be one of them.\n\
1155\n\
1156DATA should be a list. Its elements are printed as part of the error message.\n\
1157If the signal is handled, DATA is made available to the handler.\n\
1158See also the function `condition-case'.")
4200e719
RS
1159 (error_symbol, data)
1160 Lisp_Object error_symbol, data;
db9f0278
JB
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
e5d77022 1173#ifdef HAVE_X_WINDOWS
db9f0278 1174 TOTALLY_UNBLOCK_INPUT;
e5d77022 1175#endif
db9f0278 1176
4200e719 1177 conditions = Fget (error_symbol, Qerror_conditions);
db9f0278
JB
1178
1179 for (; handlerlist; handlerlist = handlerlist->next)
1180 {
1181 register Lisp_Object clause;
1182 clause = find_handler_clause (handlerlist->handler, conditions,
4200e719 1183 error_symbol, data, &debugger_value);
db9f0278
JB
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))
82da7701
JB
1193 {
1194 /* We can't return values to code which signalled an error, but we
1195 can continue code which has signalled a quit. */
4200e719 1196 if (EQ (error_symbol, Qquit))
82da7701
JB
1197 return Qnil;
1198 else
d3e6f8be 1199 error ("Cannot return from the debugger in an error");
82da7701 1200 }
db9f0278
JB
1201#endif
1202
265a9e55 1203 if (!NILP (clause))
db9f0278 1204 {
9d58218c 1205 Lisp_Object unwind_data;
db9f0278 1206 struct handler *h = handlerlist;
9d58218c 1207
db9f0278 1208 handlerlist = allhandlers;
dff36a42 1209 if (EQ (data, memory_signal_data))
9d58218c
RS
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);
db9f0278
JB
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. */
4200e719 1221 find_handler_clause (Qerror, conditions, error_symbol, data, &debugger_value);
db9f0278
JB
1222 Fthrow (Qtop_level, Qt);
1223}
1224
128c0f66
RM
1225/* Return nonzero iff LIST is a non-nil atom or
1226 a list containing one of CONDITIONS. */
1227
1228static int
1229wants_debugger (list, conditions)
1230 Lisp_Object list, conditions;
1231{
4de86b16 1232 if (NILP (list))
128c0f66
RM
1233 return 0;
1234 if (! CONSP (list))
1235 return 1;
1236
ab67260b 1237 while (CONSP (conditions))
128c0f66 1238 {
ab67260b
RS
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))
128c0f66 1243 return 1;
128c0f66
RM
1244 conditions = XCONS (conditions)->cdr;
1245 }
ab67260b 1246 return 0;
128c0f66
RM
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. */
db9f0278
JB
1251
1252static Lisp_Object
1253find_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;
db9f0278
JB
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 {
128c0f66 1264 if (wants_debugger (Vstack_trace_on_error, conditions))
db9f0278 1265 internal_with_output_to_temp_buffer ("*Backtrace*", Fbacktrace, Qnil);
ba410f40
JB
1266 if ((EQ (sig, Qquit)
1267 ? debug_on_quit
1268 : wants_debugger (Vdebug_on_error, conditions))
1269 && when_entered_debugger < num_nonmacro_input_chars)
db9f0278
JB
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 {
5f96776a
RS
1283 Lisp_Object handler, condit;
1284
1285 handler = Fcar (h);
1286 if (!CONSP (handler))
db9f0278 1287 continue;
5f96776a
RS
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 }
db9f0278
JB
1307 }
1308 return Qnil;
1309}
1310
1311/* dump an error message; called like printf */
1312
1313/* VARARGS 1 */
1314void
1315error (m, a1, a2, a3)
1316 char *m;
9125da08 1317 char *a1, *a2, *a3;
db9f0278
JB
1318{
1319 char buf[200];
9125da08
RS
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);
db9f0278
JB
1332
1333 while (1)
9125da08
RS
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);
5ece1728
RS
1341 else
1342 {
1343 buffer = (char *) xmalloc (size);
1344 allocated = 1;
1345 }
9125da08
RS
1346 }
1347
1348 string = build_string (buf);
1349 if (allocated)
1350 free (buffer);
1351
1352 Fsignal (Qerror, Fcons (string, Qnil));
db9f0278
JB
1353}
1354\f
1355DEFUN ("commandp", Fcommandp, Scommandp, 1, 1, 0,
1356 "T if FUNCTION makes provisions for interactive calling.\n\
1357This means it contains a description for how to read arguments to give it.\n\
1358The value is nil for an invalid function or a symbol with no function\n\
1359definition.\n\
1360\n\
1361Interactively callable functions include strings and vectors (treated\n\
1362as keyboard macros), lambda-expressions that contain a top-level call\n\
1363to `interactive', autoload definitions made by `autoload' with non-nil\n\
1364fourth argument, and some of the built-in functions of Lisp.\n\
1365\n\
1366Also, 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
ffd56f97
JB
1377 fun = indirect_function (fun);
1378 if (EQ (fun, Qunbound))
1379 return Qnil;
db9f0278
JB
1380
1381 /* Emacs primitives are interactive if their DEFUN specifies an
1382 interactive spec. */
90165123 1383 if (SUBRP (fun))
db9f0278
JB
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. */
90165123 1394 else if (COMPILEDP (fun))
f9b4aacf 1395 return ((XVECTOR (fun)->size & PSEUDOVECTOR_SIZE_MASK) > COMPILED_INTERACTIVE
db9f0278
JB
1396 ? Qt : Qnil);
1397
1398 /* Strings and vectors are keyboard macros. */
90165123 1399 if (STRINGP (fun) || VECTORP (fun))
db9f0278
JB
1400 return Qt;
1401
1402 /* Lists may represent commands. */
1403 if (!CONSP (fun))
1404 return Qnil;
1405 funcar = Fcar (fun);
90165123 1406 if (!SYMBOLP (funcar))
db9f0278
JB
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 */
1419DEFUN ("autoload", Fautoload, Sautoload, 2, 5, 0,
1420 "Define FUNCTION to autoload from FILE.\n\
1421FUNCTION is a symbol; FILE is a file name string to pass to `load'.\n\
1422Third arg DOCSTRING is documentation for the function.\n\
1423Fourth arg INTERACTIVE if non-nil says function can be called interactively.\n\
ee9ee63c
JB
1424Fifth 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\
db9f0278
JB
1428Third through fifth args give info about the real definition.\n\
1429They default to nil.\n\
1430If FUNCTION is already defined other than as an autoload,\n\
1431this does nothing and returns nil.")
ee9ee63c
JB
1432 (function, file, docstring, interactive, type)
1433 Lisp_Object function, file, docstring, interactive, type;
db9f0278
JB
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)
90165123 1444 && !(CONSP (XSYMBOL (function)->function)
db9f0278
JB
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;
ee9ee63c 1452 args[3] = type;
db9f0278
JB
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
1460Lisp_Object
1461un_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
1484do_autoload (fundef, funname)
1485 Lisp_Object fundef, funname;
1486{
1487 int count = specpdl_ptr - specpdl;
2a49b6e5 1488 Lisp_Object fun, val, queue, first, second;
db9f0278
JB
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);
2a49b6e5
RS
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);
5739ce6b
ER
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))
03e267c2 1510 Fput (first, Qautoload, (Fcdr (second)));
5739ce6b 1511
2a49b6e5
RS
1512 queue = Fcdr (queue);
1513 }
1514
db9f0278
JB
1515 /* Once loading finishes, don't undo it. */
1516 Vautoload_queue = Qt;
1517 unbind_to (count, Qnil);
1518
ffd56f97
JB
1519 fun = Findirect_function (fun);
1520
76c2b0cc 1521 if (!NILP (Fequal (fun, fundef)))
db9f0278
JB
1522 error ("Autoloading failed to define function %s",
1523 XSYMBOL (funname)->name->data);
1524}
1525\f
1526DEFUN ("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
90165123 1536 if (SYMBOLP (form))
db9f0278
JB
1537 {
1538 if (EQ (Vmocklisp_arguments, Qt))
1539 return Fsymbol_value (form);
1540 val = Fsymbol_value (form);
265a9e55 1541 if (NILP (val))
a631e24c 1542 XSETFASTINT (val, 0);
db9f0278 1543 else if (EQ (val, Qt))
a631e24c 1544 XSETFASTINT (val, 1);
db9f0278
JB
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:
ffd56f97 1583 fun = Findirect_function (original_fun);
db9f0278 1584
90165123 1585 if (SUBRP (fun))
db9f0278
JB
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
265a9e55 1618 while (!NILP (args_left))
db9f0278
JB
1619 {
1620 vals[argnum++] = Feval (Fcar (args_left));
1621 args_left = Fcdr (args_left);
1622 gcpro3.nvars = argnum;
1623 }
db9f0278
JB
1624
1625 backtrace.args = vals;
1626 backtrace.nargs = XINT (numargs);
1627
1628 val = (*XSUBR (fun)->function) (XINT (numargs), vals);
a6e3fa71 1629 UNGCPRO;
db9f0278
JB
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;
15c65264
RS
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;
db9f0278
JB
1681
1682 default:
08564963
JB
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 ();
db9f0278
JB
1688 }
1689 }
90165123 1690 if (COMPILEDP (fun))
db9f0278
JB
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);
90165123 1697 if (!SYMBOLP (funcar))
db9f0278
JB
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 {
265a9e55 1716 if (NILP (val))
a631e24c 1717 XSETFASTINT (val, 0);
db9f0278 1718 else if (EQ (val, Qt))
a631e24c 1719 XSETFASTINT (val, 1);
db9f0278
JB
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
1728DEFUN ("apply", Fapply, Sapply, 2, MANY, 0,
1729 "Call FUNCTION with our remaining args, using our last arg as list of args.\n\
1730Thus, (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;
db9f0278 1738 Lisp_Object fun;
a6e3fa71 1739 struct gcpro gcpro1;
db9f0278
JB
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
a6e3fa71 1756 numargs += nargs - 2;
db9f0278 1757
ffd56f97
JB
1758 fun = indirect_function (fun);
1759 if (EQ (fun, Qunbound))
db9f0278 1760 {
ffd56f97
JB
1761 /* Let funcall get the error */
1762 fun = args[0];
1763 goto funcall;
db9f0278
JB
1764 }
1765
90165123 1766 if (SUBRP (fun))
db9f0278
JB
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;
a6e3fa71
JB
1779 GCPRO1 (*funcall_args);
1780 gcpro1.nvars = 1 + XSUBR (fun)->max_args;
db9f0278
JB
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)
a6e3fa71
JB
1787 {
1788 funcall_args = (Lisp_Object *) alloca ((1 + numargs)
1789 * sizeof (Lisp_Object));
1790 GCPRO1 (*funcall_args);
1791 gcpro1.nvars = 1 + numargs;
1792 }
1793
db9f0278
JB
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;
265a9e55 1798 while (!NILP (spread_arg))
db9f0278
JB
1799 {
1800 funcall_args [i++] = XCONS (spread_arg)->car;
1801 spread_arg = XCONS (spread_arg)->cdr;
1802 }
a6e3fa71
JB
1803
1804 RETURN_UNGCPRO (Ffuncall (gcpro1.nvars, funcall_args));
db9f0278
JB
1805}
1806\f
1807/* Apply fn to arg */
1808Lisp_Object
1809apply1 (fn, arg)
1810 Lisp_Object fn, arg;
1811{
a6e3fa71
JB
1812 struct gcpro gcpro1;
1813
1814 GCPRO1 (fn);
265a9e55 1815 if (NILP (arg))
a6e3fa71
JB
1816 RETURN_UNGCPRO (Ffuncall (1, &fn));
1817 gcpro1.nvars = 2;
db9f0278
JB
1818#ifdef NO_ARG_ARRAY
1819 {
1820 Lisp_Object args[2];
1821 args[0] = fn;
1822 args[1] = arg;
a6e3fa71
JB
1823 gcpro1.var = args;
1824 RETURN_UNGCPRO (Fapply (2, args));
db9f0278
JB
1825 }
1826#else /* not NO_ARG_ARRAY */
a6e3fa71 1827 RETURN_UNGCPRO (Fapply (2, &fn));
db9f0278
JB
1828#endif /* not NO_ARG_ARRAY */
1829}
1830
1831/* Call function fn on no arguments */
1832Lisp_Object
1833call0 (fn)
1834 Lisp_Object fn;
1835{
a6e3fa71
JB
1836 struct gcpro gcpro1;
1837
1838 GCPRO1 (fn);
1839 RETURN_UNGCPRO (Ffuncall (1, &fn));
db9f0278
JB
1840}
1841
15285f9f 1842/* Call function fn with 1 argument arg1 */
db9f0278
JB
1843/* ARGSUSED */
1844Lisp_Object
15285f9f
RS
1845call1 (fn, arg1)
1846 Lisp_Object fn, arg1;
db9f0278 1847{
a6e3fa71 1848 struct gcpro gcpro1;
db9f0278 1849#ifdef NO_ARG_ARRAY
a6e3fa71
JB
1850 Lisp_Object args[2];
1851
db9f0278 1852 args[0] = fn;
15285f9f 1853 args[1] = arg1;
a6e3fa71
JB
1854 GCPRO1 (args[0]);
1855 gcpro1.nvars = 2;
1856 RETURN_UNGCPRO (Ffuncall (2, args));
db9f0278 1857#else /* not NO_ARG_ARRAY */
a6e3fa71
JB
1858 GCPRO1 (fn);
1859 gcpro1.nvars = 2;
1860 RETURN_UNGCPRO (Ffuncall (2, &fn));
db9f0278
JB
1861#endif /* not NO_ARG_ARRAY */
1862}
1863
15285f9f 1864/* Call function fn with 2 arguments arg1, arg2 */
db9f0278
JB
1865/* ARGSUSED */
1866Lisp_Object
15285f9f
RS
1867call2 (fn, arg1, arg2)
1868 Lisp_Object fn, arg1, arg2;
db9f0278 1869{
a6e3fa71 1870 struct gcpro gcpro1;
db9f0278
JB
1871#ifdef NO_ARG_ARRAY
1872 Lisp_Object args[3];
1873 args[0] = fn;
15285f9f
RS
1874 args[1] = arg1;
1875 args[2] = arg2;
a6e3fa71
JB
1876 GCPRO1 (args[0]);
1877 gcpro1.nvars = 3;
1878 RETURN_UNGCPRO (Ffuncall (3, args));
db9f0278 1879#else /* not NO_ARG_ARRAY */
a6e3fa71
JB
1880 GCPRO1 (fn);
1881 gcpro1.nvars = 3;
1882 RETURN_UNGCPRO (Ffuncall (3, &fn));
db9f0278
JB
1883#endif /* not NO_ARG_ARRAY */
1884}
1885
15285f9f 1886/* Call function fn with 3 arguments arg1, arg2, arg3 */
db9f0278
JB
1887/* ARGSUSED */
1888Lisp_Object
15285f9f
RS
1889call3 (fn, arg1, arg2, arg3)
1890 Lisp_Object fn, arg1, arg2, arg3;
db9f0278 1891{
a6e3fa71 1892 struct gcpro gcpro1;
db9f0278
JB
1893#ifdef NO_ARG_ARRAY
1894 Lisp_Object args[4];
1895 args[0] = fn;
15285f9f
RS
1896 args[1] = arg1;
1897 args[2] = arg2;
1898 args[3] = arg3;
a6e3fa71
JB
1899 GCPRO1 (args[0]);
1900 gcpro1.nvars = 4;
1901 RETURN_UNGCPRO (Ffuncall (4, args));
db9f0278 1902#else /* not NO_ARG_ARRAY */
a6e3fa71
JB
1903 GCPRO1 (fn);
1904 gcpro1.nvars = 4;
1905 RETURN_UNGCPRO (Ffuncall (4, &fn));
db9f0278
JB
1906#endif /* not NO_ARG_ARRAY */
1907}
1908
15285f9f 1909/* Call function fn with 4 arguments arg1, arg2, arg3, arg4 */
a5a44b91
JB
1910/* ARGSUSED */
1911Lisp_Object
15285f9f
RS
1912call4 (fn, arg1, arg2, arg3, arg4)
1913 Lisp_Object fn, arg1, arg2, arg3, arg4;
a5a44b91
JB
1914{
1915 struct gcpro gcpro1;
1916#ifdef NO_ARG_ARRAY
1917 Lisp_Object args[5];
1918 args[0] = fn;
15285f9f
RS
1919 args[1] = arg1;
1920 args[2] = arg2;
1921 args[3] = arg3;
1922 args[4] = arg4;
a5a44b91
JB
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
15285f9f
RS
1933/* Call function fn with 5 arguments arg1, arg2, arg3, arg4, arg5 */
1934/* ARGSUSED */
1935Lisp_Object
1936call5 (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 */
1960Lisp_Object
1961call6 (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
db9f0278
JB
1984DEFUN ("funcall", Ffuncall, Sfuncall, 1, MANY, 0,
1985 "Call first argument as a function, passing remaining arguments to it.\n\
1986Thus, (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)
a6e3fa71 2002 Fgarbage_collect ();
db9f0278
JB
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];
ffd56f97
JB
2026
2027 fun = Findirect_function (fun);
db9f0278 2028
90165123 2029 if (SUBRP (fun))
db9f0278
JB
2030 {
2031 if (numargs < XSUBR (fun)->min_args
2032 || (XSUBR (fun)->max_args >= 0 && XSUBR (fun)->max_args < numargs))
2033 {
a631e24c 2034 XSETFASTINT (lisp_numargs, numargs);
db9f0278
JB
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;
15c65264
RS
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;
db9f0278
JB
2093
2094 default:
70ee42f7
JB
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 ();
db9f0278
JB
2100 }
2101 }
90165123 2102 if (COMPILEDP (fun))
db9f0278
JB
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);
90165123 2109 if (!SYMBOLP (funcar))
db9f0278
JB
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
2131Lisp_Object
2132apply_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
2180Lisp_Object
2181funcall_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
a631e24c 2196 XSETFASTINT (numargs, nargs);
db9f0278 2197
90165123 2198 if (CONSP (fun))
db9f0278 2199 syms_left = Fcar (Fcdr (fun));
90165123 2200 else if (COMPILEDP (fun))
db9f0278
JB
2201 syms_left = XVECTOR (fun)->contents[COMPILED_ARGLIST];
2202 else abort ();
2203
2204 i = 0;
265a9e55 2205 for (; !NILP (syms_left); syms_left = Fcdr (syms_left))
db9f0278
JB
2206 {
2207 QUIT;
2208 next = Fcar (syms_left);
90165123 2209 while (!SYMBOLP (next))
9ffa21d4 2210 next = Fsignal (Qinvalid_function, Fcons (fun, Qnil));
db9f0278
JB
2211 if (EQ (next, Qand_rest))
2212 rest = 1;
2213 else if (EQ (next, Qand_optional))
2214 optional = 1;
2215 else if (rest)
2216 {
9ffa21d4 2217 specbind (next, Flist (nargs - i, &arg_vector[i]));
db9f0278
JB
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
90165123 2234 if (CONSP (fun))
db9f0278
JB
2235 val = Fprogn (Fcdr (Fcdr (fun)));
2236 else
ca248607
RS
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 }
db9f0278
JB
2250 return unbind_to (count, val);
2251}
2252\f
2253void
2254grow_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 {
debee8fe
RS
2263 if (!NILP (Vdebug_on_error))
2264 /* Leave room for some specpdl in the debugger. */
2265 max_specpdl_size = specpdl_size + 100;
db9f0278
JB
2266 Fsignal (Qerror,
2267 Fcons (build_string ("Variable binding depth exceeds max-specpdl-size"), Qnil));
db9f0278
JB
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
2277void
2278specbind (symbol, value)
2279 Lisp_Object symbol, value;
2280{
db9f0278
JB
2281 Lisp_Object ovalue;
2282
9ffa21d4
JB
2283 CHECK_SYMBOL (symbol, 0);
2284
db9f0278
JB
2285 if (specpdl_ptr == specpdl + specpdl_size)
2286 grow_specpdl ();
2287 specpdl_ptr->symbol = symbol;
2288 specpdl_ptr->func = 0;
d0f7cdc8 2289 specpdl_ptr->old_value = ovalue = find_symbol_value (symbol);
db9f0278 2290 specpdl_ptr++;
3d8585a1 2291 if (BUFFER_OBJFWDP (ovalue) || KBOARD_OBJFWDP (ovalue))
db9f0278
JB
2292 store_symval_forwarding (symbol, ovalue, value);
2293 else
2294 Fset (symbol, value);
2295}
2296
2297void
2298record_unwind_protect (function, arg)
2299 Lisp_Object (*function)();
2300 Lisp_Object arg;
2301{
2302 if (specpdl_ptr == specpdl + specpdl_size)
2303 grow_specpdl ();
2304 specpdl_ptr->func = function;
2305 specpdl_ptr->symbol = Qnil;
2306 specpdl_ptr->old_value = arg;
2307 specpdl_ptr++;
2308}
2309
2310Lisp_Object
2311unbind_to (count, value)
2312 int count;
2313 Lisp_Object value;
2314{
265a9e55 2315 int quitf = !NILP (Vquit_flag);
db9f0278
JB
2316 struct gcpro gcpro1;
2317
2318 GCPRO1 (value);
2319
2320 Vquit_flag = Qnil;
2321
2322 while (specpdl_ptr != specpdl + count)
2323 {
2324 --specpdl_ptr;
2325 if (specpdl_ptr->func != 0)
2326 (*specpdl_ptr->func) (specpdl_ptr->old_value);
2327 /* Note that a "binding" of nil is really an unwind protect,
2328 so in that case the "old value" is a list of forms to evaluate. */
265a9e55 2329 else if (NILP (specpdl_ptr->symbol))
db9f0278
JB
2330 Fprogn (specpdl_ptr->old_value);
2331 else
2332 Fset (specpdl_ptr->symbol, specpdl_ptr->old_value);
2333 }
265a9e55 2334 if (NILP (Vquit_flag) && quitf) Vquit_flag = Qt;
db9f0278
JB
2335
2336 UNGCPRO;
2337
2338 return value;
2339}
2340\f
2341#if 0
2342
2343/* Get the value of symbol's global binding, even if that binding
2344 is not now dynamically visible. */
2345
2346Lisp_Object
2347top_level_value (symbol)
2348 Lisp_Object symbol;
2349{
2350 register struct specbinding *ptr = specpdl;
2351
2352 CHECK_SYMBOL (symbol, 0);
2353 for (; ptr != specpdl_ptr; ptr++)
2354 {
2355 if (EQ (ptr->symbol, symbol))
2356 return ptr->old_value;
2357 }
2358 return Fsymbol_value (symbol);
2359}
2360
2361Lisp_Object
2362top_level_set (symbol, newval)
2363 Lisp_Object symbol, newval;
2364{
2365 register struct specbinding *ptr = specpdl;
2366
2367 CHECK_SYMBOL (symbol, 0);
2368 for (; ptr != specpdl_ptr; ptr++)
2369 {
2370 if (EQ (ptr->symbol, symbol))
2371 {
2372 ptr->old_value = newval;
2373 return newval;
2374 }
2375 }
2376 return Fset (symbol, newval);
2377}
2378
2379#endif /* 0 */
2380\f
2381DEFUN ("backtrace-debug", Fbacktrace_debug, Sbacktrace_debug, 2, 2, 0,
2382 "Set the debug-on-exit flag of eval frame LEVEL levels down to FLAG.\n\
2383The debugger is entered when that frame exits, if the flag is non-nil.")
2384 (level, flag)
2385 Lisp_Object level, flag;
2386{
2387 register struct backtrace *backlist = backtrace_list;
2388 register int i;
2389
2390 CHECK_NUMBER (level, 0);
2391
2392 for (i = 0; backlist && i < XINT (level); i++)
2393 {
2394 backlist = backlist->next;
2395 }
2396
2397 if (backlist)
265a9e55 2398 backlist->debug_on_exit = !NILP (flag);
db9f0278
JB
2399
2400 return flag;
2401}
2402
2403DEFUN ("backtrace", Fbacktrace, Sbacktrace, 0, 0, "",
2404 "Print a trace of Lisp function calls currently active.\n\
2405Output stream used is value of `standard-output'.")
2406 ()
2407{
2408 register struct backtrace *backlist = backtrace_list;
2409 register int i;
2410 Lisp_Object tail;
2411 Lisp_Object tem;
2412 extern Lisp_Object Vprint_level;
2413 struct gcpro gcpro1;
2414
a631e24c 2415 XSETFASTINT (Vprint_level, 3);
db9f0278
JB
2416
2417 tail = Qnil;
2418 GCPRO1 (tail);
2419
2420 while (backlist)
2421 {
2422 write_string (backlist->debug_on_exit ? "* " : " ", 2);
2423 if (backlist->nargs == UNEVALLED)
2424 {
2425 Fprin1 (Fcons (*backlist->function, *backlist->args), Qnil);
b6703b02 2426 write_string ("\n", -1);
db9f0278
JB
2427 }
2428 else
2429 {
2430 tem = *backlist->function;
2431 Fprin1 (tem, Qnil); /* This can QUIT */
2432 write_string ("(", -1);
2433 if (backlist->nargs == MANY)
2434 {
2435 for (tail = *backlist->args, i = 0;
265a9e55 2436 !NILP (tail);
db9f0278
JB
2437 tail = Fcdr (tail), i++)
2438 {
2439 if (i) write_string (" ", -1);
2440 Fprin1 (Fcar (tail), Qnil);
2441 }
2442 }
2443 else
2444 {
2445 for (i = 0; i < backlist->nargs; i++)
2446 {
2447 if (i) write_string (" ", -1);
2448 Fprin1 (backlist->args[i], Qnil);
2449 }
2450 }
b6703b02 2451 write_string (")\n", -1);
db9f0278 2452 }
db9f0278
JB
2453 backlist = backlist->next;
2454 }
2455
2456 Vprint_level = Qnil;
2457 UNGCPRO;
2458 return Qnil;
2459}
2460
2461DEFUN ("backtrace-frame", Fbacktrace_frame, Sbacktrace_frame, 1, 1, "",
2462 "Return the function and arguments N frames up from current execution point.\n\
2463If that frame has not evaluated the arguments yet (or is a special form),\n\
2464the value is (nil FUNCTION ARG-FORMS...).\n\
2465If that frame has evaluated its arguments and called its function already,\n\
2466the value is (t FUNCTION ARG-VALUES...).\n\
2467A &rest arg is represented as the tail of the list ARG-VALUES.\n\
2468FUNCTION is whatever was supplied as car of evaluated list,\n\
2469or a lambda expression for macro calls.\n\
2470If N is more than the number of frames, the value is nil.")
2471 (nframes)
2472 Lisp_Object nframes;
2473{
2474 register struct backtrace *backlist = backtrace_list;
2475 register int i;
2476 Lisp_Object tem;
2477
2478 CHECK_NATNUM (nframes, 0);
2479
2480 /* Find the frame requested. */
b6703b02 2481 for (i = 0; backlist && i < XFASTINT (nframes); i++)
db9f0278
JB
2482 backlist = backlist->next;
2483
2484 if (!backlist)
2485 return Qnil;
2486 if (backlist->nargs == UNEVALLED)
2487 return Fcons (Qnil, Fcons (*backlist->function, *backlist->args));
2488 else
2489 {
2490 if (backlist->nargs == MANY)
2491 tem = *backlist->args;
2492 else
2493 tem = Flist (backlist->nargs, backlist->args);
2494
2495 return Fcons (Qt, Fcons (*backlist->function, tem));
2496 }
2497}
2498\f
2499syms_of_eval ()
2500{
2501 DEFVAR_INT ("max-specpdl-size", &max_specpdl_size,
2502 "Limit on number of Lisp variable bindings & unwind-protects before error.");
2503
2504 DEFVAR_INT ("max-lisp-eval-depth", &max_lisp_eval_depth,
2505 "Limit on depth in `eval', `apply' and `funcall' before error.\n\
2506This limit is to catch infinite recursions for you before they cause\n\
2507actual stack overflow in C, which would be fatal for Emacs.\n\
2508You can safely make it considerably larger than its default value,\n\
2509if that proves inconveniently small.");
2510
2511 DEFVAR_LISP ("quit-flag", &Vquit_flag,
2512 "Non-nil causes `eval' to abort, unless `inhibit-quit' is non-nil.\n\
d0b68896 2513Typing C-g sets `quit-flag' non-nil, regardless of `inhibit-quit'.");
db9f0278
JB
2514 Vquit_flag = Qnil;
2515
2516 DEFVAR_LISP ("inhibit-quit", &Vinhibit_quit,
2517 "Non-nil inhibits C-g quitting from happening immediately.\n\
2518Note that `quit-flag' will still be set by typing C-g,\n\
2519so a quit will be signalled as soon as `inhibit-quit' is nil.\n\
2520To prevent this happening, set `quit-flag' to nil\n\
2521before making `inhibit-quit' nil.");
2522 Vinhibit_quit = Qnil;
2523
ad236261
JB
2524 Qinhibit_quit = intern ("inhibit-quit");
2525 staticpro (&Qinhibit_quit);
2526
db9f0278
JB
2527 Qautoload = intern ("autoload");
2528 staticpro (&Qautoload);
2529
2530 Qdebug_on_error = intern ("debug-on-error");
2531 staticpro (&Qdebug_on_error);
2532
2533 Qmacro = intern ("macro");
2534 staticpro (&Qmacro);
2535
2536 /* Note that the process handling also uses Qexit, but we don't want
2537 to staticpro it twice, so we just do it here. */
2538 Qexit = intern ("exit");
2539 staticpro (&Qexit);
2540
2541 Qinteractive = intern ("interactive");
2542 staticpro (&Qinteractive);
2543
2544 Qcommandp = intern ("commandp");
2545 staticpro (&Qcommandp);
2546
2547 Qdefun = intern ("defun");
2548 staticpro (&Qdefun);
2549
2550 Qand_rest = intern ("&rest");
2551 staticpro (&Qand_rest);
2552
2553 Qand_optional = intern ("&optional");
2554 staticpro (&Qand_optional);
2555
128c0f66 2556 DEFVAR_LISP ("stack-trace-on-error", &Vstack_trace_on_error,
db9f0278 2557 "*Non-nil means automatically display a backtrace buffer\n\
128c0f66
RM
2558after any error that is handled by the editor command loop.\n\
2559If the value is a list, an error only means to display a backtrace\n\
2560if one of its condition symbols appears in the list.");
2561 Vstack_trace_on_error = Qnil;
db9f0278 2562
128c0f66 2563 DEFVAR_LISP ("debug-on-error", &Vdebug_on_error,
db9f0278
JB
2564 "*Non-nil means enter debugger if an error is signaled.\n\
2565Does not apply to errors handled by `condition-case'.\n\
128c0f66
RM
2566If the value is a list, an error only means to enter the debugger\n\
2567if one of its condition symbols appears in the list.\n\
db9f0278 2568See also variable `debug-on-quit'.");
128c0f66 2569 Vdebug_on_error = Qnil;
db9f0278
JB
2570
2571 DEFVAR_BOOL ("debug-on-quit", &debug_on_quit,
d0b68896 2572 "*Non-nil means enter debugger if quit is signaled (C-g, for example).\n\
1b7d8239 2573Does not apply if quit is handled by a `condition-case'.");
db9f0278
JB
2574 debug_on_quit = 0;
2575
2576 DEFVAR_BOOL ("debug-on-next-call", &debug_on_next_call,
2577 "Non-nil means enter debugger before next `eval', `apply' or `funcall'.");
2578
2579 DEFVAR_LISP ("debugger", &Vdebugger,
2580 "Function to call to invoke debugger.\n\
2581If due to frame exit, args are `exit' and the value being returned;\n\
2582 this function's value will be returned instead of that.\n\
2583If due to error, args are `error' and a list of the args to `signal'.\n\
2584If due to `apply' or `funcall' entry, one arg, `lambda'.\n\
2585If due to `eval' entry, one arg, t.");
2586 Vdebugger = Qnil;
2587
2588 Qmocklisp_arguments = intern ("mocklisp-arguments");
2589 staticpro (&Qmocklisp_arguments);
2590 DEFVAR_LISP ("mocklisp-arguments", &Vmocklisp_arguments,
2591 "While in a mocklisp function, the list of its unevaluated args.");
2592 Vmocklisp_arguments = Qt;
2593
2594 DEFVAR_LISP ("run-hooks", &Vrun_hooks,
2595 "Set to the function `run-hooks', if that function has been defined.\n\
2596Otherwise, nil (in a bare Emacs without preloaded Lisp code).");
db9f0278
JB
2597
2598 staticpro (&Vautoload_queue);
2599 Vautoload_queue = Qnil;
2600
2601 defsubr (&Sor);
2602 defsubr (&Sand);
2603 defsubr (&Sif);
2604 defsubr (&Scond);
2605 defsubr (&Sprogn);
2606 defsubr (&Sprog1);
2607 defsubr (&Sprog2);
2608 defsubr (&Ssetq);
2609 defsubr (&Squote);
2610 defsubr (&Sfunction);
2611 defsubr (&Sdefun);
2612 defsubr (&Sdefmacro);
2613 defsubr (&Sdefvar);
2614 defsubr (&Sdefconst);
2615 defsubr (&Suser_variable_p);
2616 defsubr (&Slet);
2617 defsubr (&SletX);
2618 defsubr (&Swhile);
2619 defsubr (&Smacroexpand);
2620 defsubr (&Scatch);
2621 defsubr (&Sthrow);
2622 defsubr (&Sunwind_protect);
2623 defsubr (&Scondition_case);
2624 defsubr (&Ssignal);
2625 defsubr (&Sinteractive_p);
2626 defsubr (&Scommandp);
2627 defsubr (&Sautoload);
2628 defsubr (&Seval);
2629 defsubr (&Sapply);
2630 defsubr (&Sfuncall);
2631 defsubr (&Sbacktrace_debug);
2632 defsubr (&Sbacktrace);
2633 defsubr (&Sbacktrace_frame);
2634}