(sit_for): Fix preempt condition.
[bpt/emacs.git] / src / eval.c
CommitLineData
db9f0278 1/* Evaluator for GNU Emacs Lisp interpreter.
f4cfd81a 2 Copyright (C) 1985, 1986, 1987, 1993, 1994, 1995, 1999, 2000, 2001,
aaef169d 3 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
db9f0278
JB
4
5This file is part of GNU Emacs.
6
7GNU Emacs is free software; you can redistribute it and/or modify
8it under the terms of the GNU General Public License as published by
96277b2d 9the Free Software Foundation; either version 2, or (at your option)
db9f0278
JB
10any later version.
11
12GNU Emacs is distributed in the hope that it will be useful,
13but WITHOUT ANY WARRANTY; without even the implied warranty of
14MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15GNU General Public License for more details.
16
17You should have received a copy of the GNU General Public License
18along with GNU Emacs; see the file COPYING. If not, write to
4fc5845f
LK
19the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
20Boston, MA 02110-1301, USA. */
db9f0278
JB
21
22
18160b98 23#include <config.h>
db9f0278 24#include "lisp.h"
9ac0d9e0 25#include "blockinput.h"
db9f0278 26#include "commands.h"
1f98fa48 27#include "keyboard.h"
3648c842 28#include "dispextern.h"
db9f0278
JB
29#include <setjmp.h>
30
31/* This definition is duplicated in alloc.c and keyboard.c */
32/* Putting it in lisp.h makes cc bomb out! */
33
34struct backtrace
4c576a83
GM
35{
36 struct backtrace *next;
37 Lisp_Object *function;
38 Lisp_Object *args; /* Points to vector of args. */
39 int nargs; /* Length of vector.
daa37602
JB
40 If nargs is UNEVALLED, args points to slot holding
41 list of unevalled args */
4c576a83
GM
42 char evalargs;
43 /* Nonzero means call value of debugger when done with this operation. */
44 char debug_on_exit;
45};
db9f0278
JB
46
47struct backtrace *backtrace_list;
48
82da7701
JB
49/* This structure helps implement the `catch' and `throw' control
50 structure. A struct catchtag contains all the information needed
51 to restore the state of the interpreter after a non-local jump.
52
53 Handlers for error conditions (represented by `struct handler'
54 structures) just point to a catch tag to do the cleanup required
55 for their jumps.
56
57 catchtag structures are chained together in the C calling stack;
58 the `next' member points to the next outer catchtag.
59
60 A call like (throw TAG VAL) searches for a catchtag whose `tag'
61 member is TAG, and then unbinds to it. The `val' member is used to
62 hold VAL while the stack is unwound; `val' is returned as the value
63 of the catch form.
64
65 All the other members are concerned with restoring the interpreter
66 state. */
4c576a83 67
db9f0278 68struct catchtag
4c576a83
GM
69{
70 Lisp_Object tag;
71 Lisp_Object val;
72 struct catchtag *next;
73 struct gcpro *gcpro;
74 jmp_buf jmp;
75 struct backtrace *backlist;
76 struct handler *handlerlist;
77 int lisp_eval_depth;
78 int pdlcount;
79 int poll_suppress_count;
2659a09f 80 int interrupt_input_blocked;
4c576a83
GM
81 struct byte_stack *byte_stack;
82};
db9f0278
JB
83
84struct catchtag *catchlist;
85
15934ffa
RS
86#ifdef DEBUG_GCPRO
87/* Count levels of GCPRO to detect failure to UNGCPRO. */
88int gcpro_level;
89#endif
90
6fd797f5 91Lisp_Object Qautoload, Qmacro, Qexit, Qinteractive, Qcommandp, Qdefun;
ad236261 92Lisp_Object Qinhibit_quit, Vinhibit_quit, Vquit_flag;
db9f0278
JB
93Lisp_Object Qand_rest, Qand_optional;
94Lisp_Object Qdebug_on_error;
d6edd563 95Lisp_Object Qdeclare;
db9f0278 96
6e6e9f08
RS
97/* This holds either the symbol `run-hooks' or nil.
98 It is nil at an early stage of startup, and when Emacs
99 is shutting down. */
4c576a83 100
db9f0278
JB
101Lisp_Object Vrun_hooks;
102
103/* Non-nil means record all fset's and provide's, to be undone
104 if the file being autoloaded is not fully loaded.
105 They are recorded by being consed onto the front of Vautoload_queue:
47b82df9 106 (FUN . ODEF) for a defun, (0 . OFEATURES) for a provide. */
db9f0278
JB
107
108Lisp_Object Vautoload_queue;
109
110/* Current number of specbindings allocated in specpdl. */
4c576a83 111
db9f0278
JB
112int specpdl_size;
113
114/* Pointer to beginning of specpdl. */
4c576a83 115
db9f0278
JB
116struct specbinding *specpdl;
117
118/* Pointer to first unused element in specpdl. */
4c576a83 119
ab837828 120struct specbinding *specpdl_ptr;
db9f0278
JB
121
122/* Maximum size allowed for specpdl allocation */
4c576a83 123
31ade731 124EMACS_INT max_specpdl_size;
db9f0278
JB
125
126/* Depth in Lisp evaluations and function calls. */
4c576a83 127
db9f0278
JB
128int lisp_eval_depth;
129
130/* Maximum allowed depth in Lisp evaluations and function calls. */
4c576a83 131
31ade731 132EMACS_INT max_lisp_eval_depth;
db9f0278
JB
133
134/* Nonzero means enter debugger before next function call */
4c576a83 135
db9f0278
JB
136int debug_on_next_call;
137
1b1acc13 138/* Non-zero means debugger may continue. This is zero when the
556d7314
GM
139 debugger is called during redisplay, where it might not be safe to
140 continue the interrupted redisplay. */
141
142int debugger_may_continue;
143
128c0f66 144/* List of conditions (non-nil atom means all) which cause a backtrace
4de86b16 145 if an error is handled by the command loop's error handler. */
4c576a83 146
128c0f66 147Lisp_Object Vstack_trace_on_error;
db9f0278 148
128c0f66 149/* List of conditions (non-nil atom means all) which enter the debugger
4de86b16 150 if an error is handled by the command loop's error handler. */
4c576a83 151
128c0f66 152Lisp_Object Vdebug_on_error;
db9f0278 153
fc950e09 154/* List of conditions and regexps specifying error messages which
1b1acc13 155 do not enter the debugger even if Vdebug_on_error says they should. */
4c576a83 156
fc950e09
KH
157Lisp_Object Vdebug_ignored_errors;
158
61ede770 159/* Non-nil means call the debugger even if the error will be handled. */
4c576a83 160
57a6e758 161Lisp_Object Vdebug_on_signal;
61ede770
RS
162
163/* Hook for edebug to use. */
4c576a83 164
61ede770
RS
165Lisp_Object Vsignal_hook_function;
166
db9f0278 167/* Nonzero means enter debugger if a quit signal
128c0f66 168 is handled by the command loop's error handler. */
4c576a83 169
db9f0278
JB
170int debug_on_quit;
171
be857679 172/* The value of num_nonmacro_input_events as of the last time we
82da7701 173 started to enter the debugger. If we decide to enter the debugger
be857679 174 again when this is still equal to num_nonmacro_input_events, then we
82da7701
JB
175 know that the debugger itself has an error, and we should just
176 signal the error instead of entering an infinite loop of debugger
177 invocations. */
4c576a83 178
82da7701 179int when_entered_debugger;
db9f0278
JB
180
181Lisp_Object Vdebugger;
182
a2ff3819
GM
183/* The function from which the last `signal' was called. Set in
184 Fsignal. */
185
186Lisp_Object Vsignaling_function;
187
4c576a83
GM
188/* Set to non-zero while processing X events. Checked in Feval to
189 make sure the Lisp interpreter isn't called from a signal handler,
190 which is unsafe because the interpreter isn't reentrant. */
191
192int handling_signal;
193
d6edd563
GM
194/* Function to process declarations in defmacro forms. */
195
196Lisp_Object Vmacro_declaration_function;
197
873759d5 198extern Lisp_Object Qrisky_local_variable;
d6edd563 199
2901f1d1 200static Lisp_Object funcall_lambda P_ ((Lisp_Object, int, Lisp_Object*));
873759d5 201\f
dfcf069d 202void
db9f0278
JB
203init_eval_once ()
204{
205 specpdl_size = 50;
716acfce 206 specpdl = (struct specbinding *) xmalloc (specpdl_size * sizeof (struct specbinding));
270e8074 207 specpdl_ptr = specpdl;
6588243d 208 /* Don't forget to update docs (lispref node "Local Variables"). */
a4547405 209 max_specpdl_size = 1000;
969f5145 210 max_lisp_eval_depth = 300;
34d470ba
RS
211
212 Vrun_hooks = Qnil;
db9f0278
JB
213}
214
dfcf069d 215void
db9f0278
JB
216init_eval ()
217{
218 specpdl_ptr = specpdl;
219 catchlist = 0;
220 handlerlist = 0;
221 backtrace_list = 0;
222 Vquit_flag = Qnil;
223 debug_on_next_call = 0;
224 lisp_eval_depth = 0;
87e21fbd 225#ifdef DEBUG_GCPRO
15934ffa 226 gcpro_level = 0;
87e21fbd 227#endif
be857679 228 /* This is less than the initial value of num_nonmacro_input_events. */
b5b911f9 229 when_entered_debugger = -1;
db9f0278
JB
230}
231
9f5903bb
RS
232/* unwind-protect function used by call_debugger. */
233
234static Lisp_Object
235restore_stack_limits (data)
236 Lisp_Object data;
237{
238 max_specpdl_size = XINT (XCAR (data));
239 max_lisp_eval_depth = XINT (XCDR (data));
538f78c3 240 return Qnil;
9f5903bb
RS
241}
242
243/* Call the Lisp debugger, giving it argument ARG. */
244
db9f0278
JB
245Lisp_Object
246call_debugger (arg)
247 Lisp_Object arg;
248{
3648c842 249 int debug_while_redisplaying;
aed13378 250 int count = SPECPDL_INDEX ();
3648c842 251 Lisp_Object val;
9f5903bb 252 int old_max = max_specpdl_size;
177c0ea7 253
9f5903bb
RS
254 /* Temporarily bump up the stack limits,
255 so the debugger won't run out of stack. */
177c0ea7 256
9f5903bb
RS
257 max_specpdl_size += 1;
258 record_unwind_protect (restore_stack_limits,
259 Fcons (make_number (old_max),
260 make_number (max_lisp_eval_depth)));
261 max_specpdl_size = old_max;
262
263 if (lisp_eval_depth + 40 > max_lisp_eval_depth)
264 max_lisp_eval_depth = lisp_eval_depth + 40;
265
266 if (SPECPDL_INDEX () + 100 > max_specpdl_size)
267 max_specpdl_size = SPECPDL_INDEX () + 100;
177c0ea7 268
237c23b0 269#ifdef HAVE_X_WINDOWS
df6c90d8
GM
270 if (display_hourglass_p)
271 cancel_hourglass ();
237c23b0
GM
272#endif
273
db9f0278 274 debug_on_next_call = 0;
be857679 275 when_entered_debugger = num_nonmacro_input_events;
3648c842
GM
276
277 /* Resetting redisplaying_p to 0 makes sure that debug output is
278 displayed if the debugger is invoked during redisplay. */
279 debug_while_redisplaying = redisplaying_p;
280 redisplaying_p = 0;
556d7314
GM
281 specbind (intern ("debugger-may-continue"),
282 debug_while_redisplaying ? Qnil : Qt);
8efb6cc7 283 specbind (Qinhibit_redisplay, Qnil);
9f5903bb 284 specbind (Qdebug_on_error, Qnil);
9db6f6b4
GM
285
286#if 0 /* Binding this prevents execution of Lisp code during
287 redisplay, which necessarily leads to display problems. */
8efb6cc7 288 specbind (Qinhibit_eval_during_redisplay, Qt);
9db6f6b4 289#endif
177c0ea7 290
3648c842
GM
291 val = apply1 (Vdebugger, arg);
292
293 /* Interrupting redisplay and resuming it later is not safe under
294 all circumstances. So, when the debugger returns, abort the
1b1acc13 295 interrupted redisplay by going back to the top-level. */
3648c842
GM
296 if (debug_while_redisplaying)
297 Ftop_level ();
298
556d7314 299 return unbind_to (count, val);
db9f0278
JB
300}
301
dfcf069d 302void
db9f0278
JB
303do_debug_on_call (code)
304 Lisp_Object code;
305{
306 debug_on_next_call = 0;
307 backtrace_list->debug_on_exit = 1;
308 call_debugger (Fcons (code, Qnil));
309}
310\f
311/* NOTE!!! Every function that can call EVAL must protect its args
312 and temporaries from garbage collection while it needs them.
313 The definition of `For' shows what you have to do. */
314
315DEFUN ("or", For, Sor, 0, UNEVALLED, 0,
9dbc9081
PJ
316 doc: /* Eval args until one of them yields non-nil, then return that value.
317The remaining args are not evalled at all.
318If all args return nil, return nil.
7a25dc6d 319usage: (or CONDITIONS ...) */)
9dbc9081 320 (args)
db9f0278
JB
321 Lisp_Object args;
322{
e509f168 323 register Lisp_Object val = Qnil;
db9f0278
JB
324 struct gcpro gcpro1;
325
e509f168 326 GCPRO1 (args);
db9f0278 327
e509f168 328 while (CONSP (args))
db9f0278 329 {
e509f168 330 val = Feval (XCAR (args));
265a9e55 331 if (!NILP (val))
db9f0278 332 break;
e509f168 333 args = XCDR (args);
db9f0278 334 }
db9f0278
JB
335
336 UNGCPRO;
337 return val;
338}
339
340DEFUN ("and", Fand, Sand, 0, UNEVALLED, 0,
b8de5714 341 doc: /* Eval args until one of them yields nil, then return nil.
9dbc9081
PJ
342The remaining args are not evalled at all.
343If no arg yields nil, return the last arg's value.
7a25dc6d 344usage: (and CONDITIONS ...) */)
9dbc9081 345 (args)
db9f0278
JB
346 Lisp_Object args;
347{
e509f168 348 register Lisp_Object val = Qt;
db9f0278
JB
349 struct gcpro gcpro1;
350
e509f168 351 GCPRO1 (args);
db9f0278 352
e509f168 353 while (CONSP (args))
db9f0278 354 {
e509f168 355 val = Feval (XCAR (args));
265a9e55 356 if (NILP (val))
db9f0278 357 break;
e509f168 358 args = XCDR (args);
db9f0278 359 }
db9f0278
JB
360
361 UNGCPRO;
362 return val;
363}
364
365DEFUN ("if", Fif, Sif, 2, UNEVALLED, 0,
b8de5714 366 doc: /* If COND yields non-nil, do THEN, else do ELSE...
9dbc9081
PJ
367Returns the value of THEN or the value of the last of the ELSE's.
368THEN must be one expression, but ELSE... can be zero or more expressions.
369If COND yields nil, and there are no ELSE's, the value is nil.
7a25dc6d 370usage: (if COND THEN ELSE...) */)
9dbc9081 371 (args)
db9f0278
JB
372 Lisp_Object args;
373{
374 register Lisp_Object cond;
375 struct gcpro gcpro1;
376
377 GCPRO1 (args);
378 cond = Feval (Fcar (args));
379 UNGCPRO;
380
265a9e55 381 if (!NILP (cond))
db9f0278
JB
382 return Feval (Fcar (Fcdr (args)));
383 return Fprogn (Fcdr (Fcdr (args)));
384}
385
386DEFUN ("cond", Fcond, Scond, 0, UNEVALLED, 0,
9dbc9081
PJ
387 doc: /* Try each clause until one succeeds.
388Each clause looks like (CONDITION BODY...). CONDITION is evaluated
389and, if the value is non-nil, this clause succeeds:
390then the expressions in BODY are evaluated and the last one's
391value is the value of the cond-form.
392If no clause succeeds, cond returns nil.
393If a clause has one element, as in (CONDITION),
394CONDITION's value if non-nil is returned from the cond-form.
7a25dc6d 395usage: (cond CLAUSES...) */)
9dbc9081 396 (args)
db9f0278
JB
397 Lisp_Object args;
398{
399 register Lisp_Object clause, val;
400 struct gcpro gcpro1;
401
402 val = Qnil;
403 GCPRO1 (args);
265a9e55 404 while (!NILP (args))
db9f0278
JB
405 {
406 clause = Fcar (args);
407 val = Feval (Fcar (clause));
265a9e55 408 if (!NILP (val))
db9f0278 409 {
03699b14
KR
410 if (!EQ (XCDR (clause), Qnil))
411 val = Fprogn (XCDR (clause));
db9f0278
JB
412 break;
413 }
03699b14 414 args = XCDR (args);
db9f0278
JB
415 }
416 UNGCPRO;
417
418 return val;
419}
420
421DEFUN ("progn", Fprogn, Sprogn, 0, UNEVALLED, 0,
9dbc9081 422 doc: /* Eval BODY forms sequentially and return value of last one.
7a25dc6d 423usage: (progn BODY ...) */)
9dbc9081 424 (args)
db9f0278
JB
425 Lisp_Object args;
426{
e509f168 427 register Lisp_Object val = Qnil;
db9f0278
JB
428 struct gcpro gcpro1;
429
e509f168 430 GCPRO1 (args);
db9f0278 431
e509f168 432 while (CONSP (args))
db9f0278 433 {
e509f168
SM
434 val = Feval (XCAR (args));
435 args = XCDR (args);
db9f0278 436 }
db9f0278
JB
437
438 UNGCPRO;
439 return val;
440}
441
442DEFUN ("prog1", Fprog1, Sprog1, 1, UNEVALLED, 0,
9dbc9081
PJ
443 doc: /* Eval FIRST and BODY sequentially; value from FIRST.
444The value of FIRST is saved during the evaluation of the remaining args,
445whose values are discarded.
7a25dc6d 446usage: (prog1 FIRST BODY...) */)
9dbc9081 447 (args)
db9f0278
JB
448 Lisp_Object args;
449{
450 Lisp_Object val;
451 register Lisp_Object args_left;
452 struct gcpro gcpro1, gcpro2;
453 register int argnum = 0;
454
265a9e55 455 if (NILP(args))
db9f0278
JB
456 return Qnil;
457
458 args_left = args;
459 val = Qnil;
460 GCPRO2 (args, val);
461
462 do
463 {
464 if (!(argnum++))
465 val = Feval (Fcar (args_left));
466 else
467 Feval (Fcar (args_left));
468 args_left = Fcdr (args_left);
469 }
265a9e55 470 while (!NILP(args_left));
db9f0278
JB
471
472 UNGCPRO;
473 return val;
474}
475
476DEFUN ("prog2", Fprog2, Sprog2, 2, UNEVALLED, 0,
82fc29a1
JB
477 doc: /* Eval FORM1, FORM2 and BODY sequentially; value from FORM2.
478The value of FORM2 is saved during the evaluation of the
479remaining args, whose values are discarded.
480usage: (prog2 FORM1 FORM2 BODY...) */)
9dbc9081 481 (args)
db9f0278
JB
482 Lisp_Object args;
483{
484 Lisp_Object val;
485 register Lisp_Object args_left;
486 struct gcpro gcpro1, gcpro2;
487 register int argnum = -1;
488
489 val = Qnil;
490
87d238ba 491 if (NILP (args))
db9f0278
JB
492 return Qnil;
493
494 args_left = args;
495 val = Qnil;
496 GCPRO2 (args, val);
497
498 do
499 {
500 if (!(argnum++))
501 val = Feval (Fcar (args_left));
502 else
503 Feval (Fcar (args_left));
504 args_left = Fcdr (args_left);
505 }
87d238ba 506 while (!NILP (args_left));
db9f0278
JB
507
508 UNGCPRO;
509 return val;
510}
511
512DEFUN ("setq", Fsetq, Ssetq, 0, UNEVALLED, 0,
9dbc9081
PJ
513 doc: /* Set each SYM to the value of its VAL.
514The symbols SYM are variables; they are literal (not evaluated).
515The values VAL are expressions; they are evaluated.
516Thus, (setq x (1+ y)) sets `x' to the value of `(1+ y)'.
517The second VAL is not computed until after the first SYM is set, and so on;
518each VAL can use the new value of variables set earlier in the `setq'.
519The return value of the `setq' form is the value of the last VAL.
520usage: (setq SYM VAL SYM VAL ...) */)
521 (args)
db9f0278
JB
522 Lisp_Object args;
523{
524 register Lisp_Object args_left;
525 register Lisp_Object val, sym;
526 struct gcpro gcpro1;
527
265a9e55 528 if (NILP(args))
db9f0278
JB
529 return Qnil;
530
531 args_left = args;
532 GCPRO1 (args);
533
534 do
535 {
536 val = Feval (Fcar (Fcdr (args_left)));
537 sym = Fcar (args_left);
538 Fset (sym, val);
539 args_left = Fcdr (Fcdr (args_left));
540 }
265a9e55 541 while (!NILP(args_left));
db9f0278
JB
542
543 UNGCPRO;
544 return val;
545}
177c0ea7 546
db9f0278 547DEFUN ("quote", Fquote, Squote, 1, UNEVALLED, 0,
9dbc9081
PJ
548 doc: /* Return the argument, without evaluating it. `(quote x)' yields `x'.
549usage: (quote ARG) */)
550 (args)
db9f0278
JB
551 Lisp_Object args;
552{
553 return Fcar (args);
554}
177c0ea7 555
db9f0278 556DEFUN ("function", Ffunction, Sfunction, 1, UNEVALLED, 0,
9dbc9081
PJ
557 doc: /* Like `quote', but preferred for objects which are functions.
558In byte compilation, `function' causes its argument to be compiled.
559`quote' cannot do that.
560usage: (function ARG) */)
561 (args)
db9f0278
JB
562 Lisp_Object args;
563{
564 return Fcar (args);
565}
566
e0f331ab 567
db9f0278 568DEFUN ("interactive-p", Finteractive_p, Sinteractive_p, 0, 0, 0,
c63df42b 569 doc: /* Return t if the function was run directly by user input.
82fc29a1
JB
570This means that the function was called with `call-interactively'
571\(which includes being called as the binding of a key)
c63df42b
RS
572and input is currently coming from the keyboard (not in keyboard macro),
573and Emacs is not running in batch mode (`noninteractive' is nil).
574
575The only known proper use of `interactive-p' is in deciding whether to
576display a helpful message, or how to display it. If you're thinking
577of using it for any other purpose, it is quite likely that you're
578making a mistake. Think: what do you want to do when the command is
579called from a keyboard macro?
580
581If you want to test whether your function was called with
582`call-interactively', the way to do that is by adding an extra
583optional argument, and making the `interactive' spec specify non-nil
584unconditionally for that argument. (`p' is a good way to do this.) */)
9dbc9081 585 ()
db9f0278 586{
c63df42b 587 return (INTERACTIVE && interactive_p (1)) ? Qt : Qnil;
e0f331ab
GM
588}
589
590
4b664e76 591DEFUN ("called-interactively-p", Fcalled_interactively_p, Scalled_interactively_p, 0, 0, 0,
82fc29a1 592 doc: /* Return t if the function using this was called with `call-interactively'.
c63df42b
RS
593This is used for implementing advice and other function-modifying
594features of Emacs.
595
596The cleanest way to test whether your function was called with
82fc29a1
JB
597`call-interactively' is by adding an extra optional argument,
598and making the `interactive' spec specify non-nil unconditionally
599for that argument. (`p' is a good way to do this.) */)
c63df42b
RS
600 ()
601{
0b31741c 602 return interactive_p (1) ? Qt : Qnil;
c63df42b
RS
603}
604
605
606/* Return 1 if function in which this appears was called using
607 call-interactively.
e0f331ab
GM
608
609 EXCLUDE_SUBRS_P non-zero means always return 0 if the function
610 called is a built-in. */
611
612int
613interactive_p (exclude_subrs_p)
614 int exclude_subrs_p;
615{
616 struct backtrace *btp;
617 Lisp_Object fun;
db9f0278 618
db9f0278 619 btp = backtrace_list;
daa37602
JB
620
621 /* If this isn't a byte-compiled function, there may be a frame at
e0f331ab 622 the top for Finteractive_p. If so, skip it. */
a7f96a35 623 fun = Findirect_function (*btp->function, Qnil);
0b31741c
RS
624 if (SUBRP (fun) && (XSUBR (fun) == &Sinteractive_p
625 || XSUBR (fun) == &Scalled_interactively_p))
db9f0278 626 btp = btp->next;
daa37602
JB
627
628 /* If we're running an Emacs 18-style byte-compiled function, there
4402a9ed
RS
629 may be a frame for Fbytecode at the top level. In any version of
630 Emacs there can be Fbytecode frames for subexpressions evaluated
631 inside catch and condition-case. Skip past them.
daa37602 632
4402a9ed 633 If this isn't a byte-compiled function, then we may now be
daa37602 634 looking at several frames for special forms. Skip past them. */
4402a9ed
RS
635 while (btp
636 && (EQ (*btp->function, Qbytecode)
637 || btp->nargs == UNEVALLED))
a6e3fa71
JB
638 btp = btp->next;
639
daa37602
JB
640 /* btp now points at the frame of the innermost function that isn't
641 a special form, ignoring frames for Finteractive_p and/or
642 Fbytecode at the top. If this frame is for a built-in function
643 (such as load or eval-region) return nil. */
a7f96a35 644 fun = Findirect_function (*btp->function, Qnil);
e0f331ab
GM
645 if (exclude_subrs_p && SUBRP (fun))
646 return 0;
177c0ea7 647
db9f0278
JB
648 /* btp points to the frame of a Lisp function that called interactive-p.
649 Return t if that function was called interactively. */
650 if (btp && btp->next && EQ (*btp->next->function, Qcall_interactively))
e0f331ab
GM
651 return 1;
652 return 0;
db9f0278
JB
653}
654
e0f331ab 655
db9f0278 656DEFUN ("defun", Fdefun, Sdefun, 2, UNEVALLED, 0,
9dbc9081
PJ
657 doc: /* Define NAME as a function.
658The definition is (lambda ARGLIST [DOCSTRING] BODY...).
659See also the function `interactive'.
7a25dc6d 660usage: (defun NAME ARGLIST [DOCSTRING] BODY...) */)
9dbc9081 661 (args)
db9f0278
JB
662 Lisp_Object args;
663{
664 register Lisp_Object fn_name;
665 register Lisp_Object defn;
666
667 fn_name = Fcar (args);
6992a868 668 CHECK_SYMBOL (fn_name);
db9f0278 669 defn = Fcons (Qlambda, Fcdr (args));
265a9e55 670 if (!NILP (Vpurify_flag))
db9f0278 671 defn = Fpurecopy (defn);
f58e9f8c
RS
672 if (CONSP (XSYMBOL (fn_name)->function)
673 && EQ (XCAR (XSYMBOL (fn_name)->function), Qautoload))
674 LOADHIST_ATTACH (Fcons (Qt, fn_name));
db9f0278 675 Ffset (fn_name, defn);
6fd797f5 676 LOADHIST_ATTACH (Fcons (Qdefun, fn_name));
db9f0278
JB
677 return fn_name;
678}
679
680DEFUN ("defmacro", Fdefmacro, Sdefmacro, 2, UNEVALLED, 0,
9dbc9081 681 doc: /* Define NAME as a macro.
0654d6e3
RS
682The actual definition looks like
683 (macro lambda ARGLIST [DOCSTRING] [DECL] BODY...).
9dbc9081
PJ
684When the macro is called, as in (NAME ARGS...),
685the function (lambda ARGLIST BODY...) is applied to
686the list ARGS... as it appears in the expression,
687and the result should be a form to be evaluated instead of the original.
0654d6e3
RS
688
689DECL is a declaration, optional, which can specify how to indent
690calls to this macro and how Edebug should handle it. It looks like this:
691 (declare SPECS...)
692The elements can look like this:
693 (indent INDENT)
694 Set NAME's `lisp-indent-function' property to INDENT.
695
e509f168 696 (debug DEBUG)
0654d6e3 697 Set NAME's `edebug-form-spec' property to DEBUG. (This is
7d5c86e5 698 equivalent to writing a `def-edebug-spec' for the macro.)
0654d6e3 699usage: (defmacro NAME ARGLIST [DOCSTRING] [DECL] BODY...) */)
9dbc9081 700 (args)
db9f0278
JB
701 Lisp_Object args;
702{
703 register Lisp_Object fn_name;
704 register Lisp_Object defn;
d6edd563 705 Lisp_Object lambda_list, doc, tail;
db9f0278
JB
706
707 fn_name = Fcar (args);
8e975df9 708 CHECK_SYMBOL (fn_name);
d6edd563
GM
709 lambda_list = Fcar (Fcdr (args));
710 tail = Fcdr (Fcdr (args));
711
712 doc = Qnil;
713 if (STRINGP (Fcar (tail)))
714 {
e509f168
SM
715 doc = XCAR (tail);
716 tail = XCDR (tail);
d6edd563
GM
717 }
718
719 while (CONSP (Fcar (tail))
720 && EQ (Fcar (Fcar (tail)), Qdeclare))
721 {
722 if (!NILP (Vmacro_declaration_function))
723 {
724 struct gcpro gcpro1;
725 GCPRO1 (args);
726 call2 (Vmacro_declaration_function, fn_name, Fcar (tail));
727 UNGCPRO;
728 }
177c0ea7 729
d6edd563
GM
730 tail = Fcdr (tail);
731 }
732
733 if (NILP (doc))
734 tail = Fcons (lambda_list, tail);
735 else
736 tail = Fcons (lambda_list, Fcons (doc, tail));
737 defn = Fcons (Qmacro, Fcons (Qlambda, tail));
177c0ea7 738
265a9e55 739 if (!NILP (Vpurify_flag))
db9f0278 740 defn = Fpurecopy (defn);
f58e9f8c
RS
741 if (CONSP (XSYMBOL (fn_name)->function)
742 && EQ (XCAR (XSYMBOL (fn_name)->function), Qautoload))
743 LOADHIST_ATTACH (Fcons (Qt, fn_name));
db9f0278 744 Ffset (fn_name, defn);
6fd797f5 745 LOADHIST_ATTACH (Fcons (Qdefun, fn_name));
db9f0278
JB
746 return fn_name;
747}
748
19cebf5a 749
1848d15d 750DEFUN ("defvaralias", Fdefvaralias, Sdefvaralias, 2, 3, 0,
4a9308b8
JB
751 doc: /* Make NEW-ALIAS a variable alias for symbol BASE-VARIABLE.
752Setting the value of NEW-ALIAS will subsequently set the value of BASE-VARIABLE,
753 and getting the value of NEW-ALIAS will return the value BASE-VARIABLE has.
754Third arg DOCSTRING, if non-nil, is documentation for NEW-ALIAS. If it is
755 omitted or nil, NEW-ALIAS gets the documentation string of BASE-VARIABLE,
756 or of the variable at the end of the chain of aliases, if BASE-VARIABLE is
757 itself an alias.
758The return value is BASE-VARIABLE. */)
759 (new_alias, base_variable, docstring)
760 Lisp_Object new_alias, base_variable, docstring;
19cebf5a
GM
761{
762 struct Lisp_Symbol *sym;
1848d15d 763
4a9308b8
JB
764 CHECK_SYMBOL (new_alias);
765 CHECK_SYMBOL (base_variable);
19cebf5a 766
4a9308b8 767 if (SYMBOL_CONSTANT_P (new_alias))
19cebf5a
GM
768 error ("Cannot make a constant an alias");
769
4a9308b8 770 sym = XSYMBOL (new_alias);
19cebf5a 771 sym->indirect_variable = 1;
4a9308b8
JB
772 sym->value = base_variable;
773 sym->constant = SYMBOL_CONSTANT_P (base_variable);
774 LOADHIST_ATTACH (new_alias);
1848d15d 775 if (!NILP (docstring))
4a9308b8 776 Fput (new_alias, Qvariable_documentation, docstring);
bd81fcf8 777 else
4a9308b8 778 Fput (new_alias, Qvariable_documentation, Qnil);
1848d15d 779
4a9308b8 780 return base_variable;
19cebf5a
GM
781}
782
783
db9f0278 784DEFUN ("defvar", Fdefvar, Sdefvar, 1, UNEVALLED, 0,
29357847 785 doc: /* Define SYMBOL as a variable, and return SYMBOL.
9dbc9081
PJ
786You are not required to define a variable in order to use it,
787but the definition can supply documentation and an initial value
788in a way that tags can recognize.
789
790INITVALUE is evaluated, and used to set SYMBOL, only if SYMBOL's value is void.
791If SYMBOL is buffer-local, its default value is what is set;
792 buffer-local values are not affected.
793INITVALUE and DOCSTRING are optional.
794If DOCSTRING starts with *, this variable is identified as a user option.
795 This means that M-x set-variable recognizes it.
796 See also `user-variable-p'.
797If INITVALUE is missing, SYMBOL's value is not set.
733f68b6
LT
798
799If SYMBOL has a local binding, then this form affects the local
800binding. This is usually not what you want. Thus, if you need to
801load a file defining variables, with this form or with `defconst' or
802`defcustom', you should always load that file _outside_ any bindings
803for these variables. \(`defconst' and `defcustom' behave similarly in
804this respect.)
2df5238c 805usage: (defvar SYMBOL &optional INITVALUE DOCSTRING) */)
9dbc9081 806 (args)
db9f0278
JB
807 Lisp_Object args;
808{
a42ba017 809 register Lisp_Object sym, tem, tail;
db9f0278
JB
810
811 sym = Fcar (args);
a42ba017
RS
812 tail = Fcdr (args);
813 if (!NILP (Fcdr (Fcdr (tail))))
921baa95 814 error ("Too many arguments");
a42ba017 815
33568849 816 tem = Fdefault_boundp (sym);
a42ba017 817 if (!NILP (tail))
db9f0278 818 {
1c9916a1
SM
819 if (SYMBOL_CONSTANT_P (sym))
820 {
821 /* For upward compatibility, allow (defvar :foo (quote :foo)). */
822 Lisp_Object tem = Fcar (tail);
823 if (! (CONSP (tem)
824 && EQ (XCAR (tem), Qquote)
825 && CONSP (XCDR (tem))
826 && EQ (XCAR (XCDR (tem)), sym)))
827 error ("Constant symbol `%s' specified in defvar",
828 SDATA (SYMBOL_NAME (sym)));
829 }
830
265a9e55 831 if (NILP (tem))
33568849 832 Fset_default (sym, Feval (Fcar (tail)));
d0bce91e
SM
833 else
834 { /* Check if there is really a global binding rather than just a let
835 binding that shadows the global unboundness of the var. */
b28d0d9a 836 volatile struct specbinding *pdl = specpdl_ptr;
d0bce91e
SM
837 while (--pdl >= specpdl)
838 {
839 if (EQ (pdl->symbol, sym) && !pdl->func
840 && EQ (pdl->old_value, Qunbound))
841 {
842 message_with_string ("Warning: defvar ignored because %s is let-bound",
843 SYMBOL_NAME (sym), 1);
844 break;
845 }
846 }
847 }
33568849 848 tail = Fcdr (tail);
e509f168
SM
849 tem = Fcar (tail);
850 if (!NILP (tem))
33568849 851 {
33568849
SM
852 if (!NILP (Vpurify_flag))
853 tem = Fpurecopy (tem);
854 Fput (sym, Qvariable_documentation, tem);
855 }
6fd797f5 856 LOADHIST_ATTACH (sym);
db9f0278 857 }
33568849 858 else
d7c1d0fc
RS
859 /* Simple (defvar <var>) should not count as a definition at all.
860 It could get in the way of other definitions, and unloading this
861 package could try to make the variable unbound. */
addf35fd
AS
862 ;
863
db9f0278
JB
864 return sym;
865}
866
867DEFUN ("defconst", Fdefconst, Sdefconst, 2, UNEVALLED, 0,
9dbc9081
PJ
868 doc: /* Define SYMBOL as a constant variable.
869The intent is that neither programs nor users should ever change this value.
870Always sets the value of SYMBOL to the result of evalling INITVALUE.
871If SYMBOL is buffer-local, its default value is what is set;
872 buffer-local values are not affected.
873DOCSTRING is optional.
733f68b6
LT
874
875If SYMBOL has a local binding, then this form sets the local binding's
876value. However, you should normally not make local bindings for
877variables defined with this form.
7a25dc6d 878usage: (defconst SYMBOL INITVALUE [DOCSTRING]) */)
9dbc9081 879 (args)
db9f0278
JB
880 Lisp_Object args;
881{
882 register Lisp_Object sym, tem;
883
884 sym = Fcar (args);
a42ba017 885 if (!NILP (Fcdr (Fcdr (Fcdr (args)))))
921baa95 886 error ("Too many arguments");
a42ba017 887
1182a7cb
DL
888 tem = Feval (Fcar (Fcdr (args)));
889 if (!NILP (Vpurify_flag))
890 tem = Fpurecopy (tem);
891 Fset_default (sym, tem);
db9f0278 892 tem = Fcar (Fcdr (Fcdr (args)));
265a9e55 893 if (!NILP (tem))
db9f0278 894 {
265a9e55 895 if (!NILP (Vpurify_flag))
db9f0278
JB
896 tem = Fpurecopy (tem);
897 Fput (sym, Qvariable_documentation, tem);
898 }
873759d5 899 Fput (sym, Qrisky_local_variable, Qt);
6fd797f5 900 LOADHIST_ATTACH (sym);
db9f0278
JB
901 return sym;
902}
903
606cdb89
JB
904/* Error handler used in Fuser_variable_p. */
905static Lisp_Object
906user_variable_p_eh (ignore)
907 Lisp_Object ignore;
908{
909 return Qnil;
910}
911
db9f0278 912DEFUN ("user-variable-p", Fuser_variable_p, Suser_variable_p, 1, 1, 0,
606cdb89 913 doc: /* Return t if VARIABLE is intended to be set and modified by users.
9dbc9081 914\(The alternative is a variable used internally in a Lisp program.)
606cdb89
JB
915A variable is a user variable if
916\(1) the first character of its documentation is `*', or
917\(2) it is customizable (its property list contains a non-nil value
918 of `standard-value' or `custom-autoload'), or
919\(3) it is an alias for another user variable.
920Return nil if VARIABLE is an alias and there is a loop in the
921chain of symbols. */)
9dbc9081 922 (variable)
db9f0278
JB
923 Lisp_Object variable;
924{
925 Lisp_Object documentation;
177c0ea7 926
5e78e475
RS
927 if (!SYMBOLP (variable))
928 return Qnil;
929
606cdb89
JB
930 /* If indirect and there's an alias loop, don't check anything else. */
931 if (XSYMBOL (variable)->indirect_variable
932 && NILP (internal_condition_case_1 (indirect_variable, variable,
933 Qt, user_variable_p_eh)))
934 return Qnil;
935
936 while (1)
937 {
938 documentation = Fget (variable, Qvariable_documentation);
939 if (INTEGERP (documentation) && XINT (documentation) < 0)
940 return Qt;
941 if (STRINGP (documentation)
942 && ((unsigned char) SREF (documentation, 0) == '*'))
943 return Qt;
944 /* If it is (STRING . INTEGER), a negative integer means a user variable. */
945 if (CONSP (documentation)
946 && STRINGP (XCAR (documentation))
947 && INTEGERP (XCDR (documentation))
948 && XINT (XCDR (documentation)) < 0)
949 return Qt;
950 /* Customizable? See `custom-variable-p'. */
951 if ((!NILP (Fget (variable, intern ("standard-value"))))
952 || (!NILP (Fget (variable, intern ("custom-autoload")))))
953 return Qt;
954
955 if (!XSYMBOL (variable)->indirect_variable)
956 return Qnil;
957
958 /* An indirect variable? Let's follow the chain. */
959 variable = XSYMBOL (variable)->value;
960 }
177c0ea7 961}
db9f0278
JB
962\f
963DEFUN ("let*", FletX, SletX, 1, UNEVALLED, 0,
9dbc9081
PJ
964 doc: /* Bind variables according to VARLIST then eval BODY.
965The value of the last form in BODY is returned.
966Each element of VARLIST is a symbol (which is bound to nil)
967or a list (SYMBOL VALUEFORM) (which binds SYMBOL to the value of VALUEFORM).
968Each VALUEFORM can refer to the symbols already bound by this VARLIST.
7a25dc6d 969usage: (let* VARLIST BODY...) */)
9dbc9081 970 (args)
db9f0278
JB
971 Lisp_Object args;
972{
973 Lisp_Object varlist, val, elt;
aed13378 974 int count = SPECPDL_INDEX ();
db9f0278
JB
975 struct gcpro gcpro1, gcpro2, gcpro3;
976
977 GCPRO3 (args, elt, varlist);
978
979 varlist = Fcar (args);
265a9e55 980 while (!NILP (varlist))
db9f0278
JB
981 {
982 QUIT;
983 elt = Fcar (varlist);
90165123 984 if (SYMBOLP (elt))
db9f0278 985 specbind (elt, Qnil);
08564963
JB
986 else if (! NILP (Fcdr (Fcdr (elt))))
987 Fsignal (Qerror,
988 Fcons (build_string ("`let' bindings can have only one value-form"),
989 elt));
db9f0278
JB
990 else
991 {
992 val = Feval (Fcar (Fcdr (elt)));
993 specbind (Fcar (elt), val);
994 }
995 varlist = Fcdr (varlist);
996 }
997 UNGCPRO;
998 val = Fprogn (Fcdr (args));
999 return unbind_to (count, val);
1000}
1001
1002DEFUN ("let", Flet, Slet, 1, UNEVALLED, 0,
9dbc9081
PJ
1003 doc: /* Bind variables according to VARLIST then eval BODY.
1004The value of the last form in BODY is returned.
1005Each element of VARLIST is a symbol (which is bound to nil)
1006or a list (SYMBOL VALUEFORM) (which binds SYMBOL to the value of VALUEFORM).
1007All the VALUEFORMs are evalled before any symbols are bound.
7a25dc6d 1008usage: (let VARLIST BODY...) */)
9dbc9081 1009 (args)
db9f0278
JB
1010 Lisp_Object args;
1011{
1012 Lisp_Object *temps, tem;
1013 register Lisp_Object elt, varlist;
aed13378 1014 int count = SPECPDL_INDEX ();
db9f0278
JB
1015 register int argnum;
1016 struct gcpro gcpro1, gcpro2;
1017
1018 varlist = Fcar (args);
1019
1020 /* Make space to hold the values to give the bound variables */
1021 elt = Flength (varlist);
1022 temps = (Lisp_Object *) alloca (XFASTINT (elt) * sizeof (Lisp_Object));
1023
1024 /* Compute the values and store them in `temps' */
1025
1026 GCPRO2 (args, *temps);
1027 gcpro2.nvars = 0;
1028
265a9e55 1029 for (argnum = 0; !NILP (varlist); varlist = Fcdr (varlist))
db9f0278
JB
1030 {
1031 QUIT;
1032 elt = Fcar (varlist);
90165123 1033 if (SYMBOLP (elt))
db9f0278 1034 temps [argnum++] = Qnil;
08564963
JB
1035 else if (! NILP (Fcdr (Fcdr (elt))))
1036 Fsignal (Qerror,
1037 Fcons (build_string ("`let' bindings can have only one value-form"),
1038 elt));
db9f0278
JB
1039 else
1040 temps [argnum++] = Feval (Fcar (Fcdr (elt)));
1041 gcpro2.nvars = argnum;
1042 }
1043 UNGCPRO;
1044
1045 varlist = Fcar (args);
265a9e55 1046 for (argnum = 0; !NILP (varlist); varlist = Fcdr (varlist))
db9f0278
JB
1047 {
1048 elt = Fcar (varlist);
1049 tem = temps[argnum++];
90165123 1050 if (SYMBOLP (elt))
db9f0278
JB
1051 specbind (elt, tem);
1052 else
1053 specbind (Fcar (elt), tem);
1054 }
1055
1056 elt = Fprogn (Fcdr (args));
1057 return unbind_to (count, elt);
1058}
1059
1060DEFUN ("while", Fwhile, Swhile, 1, UNEVALLED, 0,
9dbc9081
PJ
1061 doc: /* If TEST yields non-nil, eval BODY... and repeat.
1062The order of execution is thus TEST, BODY, TEST, BODY and so on
1063until TEST returns nil.
7a25dc6d 1064usage: (while TEST BODY...) */)
9dbc9081 1065 (args)
db9f0278
JB
1066 Lisp_Object args;
1067{
2b9bde76 1068 Lisp_Object test, body;
db9f0278
JB
1069 struct gcpro gcpro1, gcpro2;
1070
1071 GCPRO2 (test, body);
1072
1073 test = Fcar (args);
1074 body = Fcdr (args);
2b9bde76 1075 while (!NILP (Feval (test)))
db9f0278
JB
1076 {
1077 QUIT;
1078 Fprogn (body);
1079 }
1080
1081 UNGCPRO;
1082 return Qnil;
1083}
1084
1085DEFUN ("macroexpand", Fmacroexpand, Smacroexpand, 1, 2, 0,
9dbc9081
PJ
1086 doc: /* Return result of expanding macros at top level of FORM.
1087If FORM is not a macro call, it is returned unchanged.
1088Otherwise, the macro is expanded and the expansion is considered
1089in place of FORM. When a non-macro-call results, it is returned.
1090
1091The second optional arg ENVIRONMENT specifies an environment of macro
1092definitions to shadow the loaded ones for use in file byte-compilation. */)
1093 (form, environment)
2e267a2e 1094 Lisp_Object form;
79e8bfbf 1095 Lisp_Object environment;
db9f0278 1096{
23d6b5a6 1097 /* With cleanups from Hallvard Furuseth. */
db9f0278
JB
1098 register Lisp_Object expander, sym, def, tem;
1099
1100 while (1)
1101 {
1102 /* Come back here each time we expand a macro call,
1103 in case it expands into another macro call. */
90165123 1104 if (!CONSP (form))
db9f0278 1105 break;
23d6b5a6 1106 /* Set SYM, give DEF and TEM right values in case SYM is not a symbol. */
03699b14 1107 def = sym = XCAR (form);
23d6b5a6 1108 tem = Qnil;
db9f0278
JB
1109 /* Trace symbols aliases to other symbols
1110 until we get a symbol that is not an alias. */
90165123 1111 while (SYMBOLP (def))
db9f0278
JB
1112 {
1113 QUIT;
23d6b5a6 1114 sym = def;
79e8bfbf 1115 tem = Fassq (sym, environment);
265a9e55 1116 if (NILP (tem))
db9f0278
JB
1117 {
1118 def = XSYMBOL (sym)->function;
23d6b5a6
JB
1119 if (!EQ (def, Qunbound))
1120 continue;
db9f0278 1121 }
23d6b5a6 1122 break;
db9f0278 1123 }
79e8bfbf 1124 /* Right now TEM is the result from SYM in ENVIRONMENT,
db9f0278 1125 and if TEM is nil then DEF is SYM's function definition. */
265a9e55 1126 if (NILP (tem))
db9f0278 1127 {
79e8bfbf 1128 /* SYM is not mentioned in ENVIRONMENT.
db9f0278 1129 Look at its function definition. */
90165123 1130 if (EQ (def, Qunbound) || !CONSP (def))
db9f0278
JB
1131 /* Not defined or definition not suitable */
1132 break;
03699b14 1133 if (EQ (XCAR (def), Qautoload))
db9f0278
JB
1134 {
1135 /* Autoloading function: will it be a macro when loaded? */
ee9ee63c 1136 tem = Fnth (make_number (4), def);
47ccd8b6 1137 if (EQ (tem, Qt) || EQ (tem, Qmacro))
ee9ee63c
JB
1138 /* Yes, load it and try again. */
1139 {
ca20916b
RS
1140 struct gcpro gcpro1;
1141 GCPRO1 (form);
ee9ee63c 1142 do_autoload (def, sym);
ca20916b 1143 UNGCPRO;
ee9ee63c
JB
1144 continue;
1145 }
1146 else
db9f0278 1147 break;
db9f0278 1148 }
03699b14 1149 else if (!EQ (XCAR (def), Qmacro))
db9f0278 1150 break;
03699b14 1151 else expander = XCDR (def);
db9f0278
JB
1152 }
1153 else
1154 {
03699b14 1155 expander = XCDR (tem);
265a9e55 1156 if (NILP (expander))
db9f0278
JB
1157 break;
1158 }
03699b14 1159 form = apply1 (expander, XCDR (form));
db9f0278
JB
1160 }
1161 return form;
1162}
1163\f
1164DEFUN ("catch", Fcatch, Scatch, 1, UNEVALLED, 0,
9dbc9081
PJ
1165 doc: /* Eval BODY allowing nonlocal exits using `throw'.
1166TAG is evalled to get the tag to use; it must not be nil.
1167
1168Then the BODY is executed.
1169Within BODY, (throw TAG) with same tag exits BODY and exits this `catch'.
1170If no throw happens, `catch' returns the value of the last BODY form.
1171If a throw happens, it specifies the value to return from `catch'.
7a25dc6d 1172usage: (catch TAG BODY...) */)
9dbc9081 1173 (args)
db9f0278
JB
1174 Lisp_Object args;
1175{
1176 register Lisp_Object tag;
1177 struct gcpro gcpro1;
1178
1179 GCPRO1 (args);
1180 tag = Feval (Fcar (args));
1181 UNGCPRO;
1182 return internal_catch (tag, Fprogn, Fcdr (args));
1183}
1184
1185/* Set up a catch, then call C function FUNC on argument ARG.
1186 FUNC should return a Lisp_Object.
1187 This is how catches are done from within C code. */
1188
1189Lisp_Object
1190internal_catch (tag, func, arg)
1191 Lisp_Object tag;
1192 Lisp_Object (*func) ();
1193 Lisp_Object arg;
1194{
1195 /* This structure is made part of the chain `catchlist'. */
1196 struct catchtag c;
1197
1198 /* Fill in the components of c, and put it on the list. */
1199 c.next = catchlist;
1200 c.tag = tag;
1201 c.val = Qnil;
1202 c.backlist = backtrace_list;
1203 c.handlerlist = handlerlist;
1204 c.lisp_eval_depth = lisp_eval_depth;
aed13378 1205 c.pdlcount = SPECPDL_INDEX ();
db9f0278 1206 c.poll_suppress_count = poll_suppress_count;
2659a09f 1207 c.interrupt_input_blocked = interrupt_input_blocked;
db9f0278 1208 c.gcpro = gcprolist;
bcf28080 1209 c.byte_stack = byte_stack_list;
db9f0278
JB
1210 catchlist = &c;
1211
1212 /* Call FUNC. */
1213 if (! _setjmp (c.jmp))
1214 c.val = (*func) (arg);
1215
1216 /* Throw works by a longjmp that comes right here. */
1217 catchlist = c.next;
1218 return c.val;
1219}
1220
ba410f40
JB
1221/* Unwind the specbind, catch, and handler stacks back to CATCH, and
1222 jump to that CATCH, returning VALUE as the value of that catch.
db9f0278 1223
ba410f40
JB
1224 This is the guts Fthrow and Fsignal; they differ only in the way
1225 they choose the catch tag to throw to. A catch tag for a
1226 condition-case form has a TAG of Qnil.
db9f0278 1227
ba410f40
JB
1228 Before each catch is discarded, unbind all special bindings and
1229 execute all unwind-protect clauses made above that catch. Unwind
1230 the handler stack as we go, so that the proper handlers are in
1231 effect for each unwind-protect clause we run. At the end, restore
1232 some static info saved in CATCH, and longjmp to the location
1233 specified in the
1234
1235 This is used for correct unwinding in Fthrow and Fsignal. */
db9f0278
JB
1236
1237static void
ba410f40 1238unwind_to_catch (catch, value)
db9f0278 1239 struct catchtag *catch;
ba410f40 1240 Lisp_Object value;
db9f0278
JB
1241{
1242 register int last_time;
1243
ba410f40
JB
1244 /* Save the value in the tag. */
1245 catch->val = value;
1246
0b31741c 1247 /* Restore certain special C variables. */
1cdc3155 1248 set_poll_suppress_count (catch->poll_suppress_count);
c1788fbc 1249 UNBLOCK_INPUT_TO (catch->interrupt_input_blocked);
0b31741c 1250 handling_signal = 0;
69bbd6bd 1251 immediate_quit = 0;
82da7701 1252
db9f0278
JB
1253 do
1254 {
1255 last_time = catchlist == catch;
82da7701
JB
1256
1257 /* Unwind the specpdl stack, and then restore the proper set of
1258 handlers. */
db9f0278
JB
1259 unbind_to (catchlist->pdlcount, Qnil);
1260 handlerlist = catchlist->handlerlist;
1261 catchlist = catchlist->next;
1262 }
1263 while (! last_time);
1264
a2a103bb 1265#if HAVE_X_WINDOWS
88019a63
RS
1266 /* If x_catch_errors was done, turn it off now.
1267 (First we give unbind_to a chance to do that.) */
1268 x_fully_uncatch_errors ();
a2a103bb 1269#endif
88019a63 1270
bcf28080 1271 byte_stack_list = catch->byte_stack;
db9f0278 1272 gcprolist = catch->gcpro;
15934ffa
RS
1273#ifdef DEBUG_GCPRO
1274 if (gcprolist != 0)
1275 gcpro_level = gcprolist->level + 1;
1276 else
1277 gcpro_level = 0;
1278#endif
db9f0278
JB
1279 backtrace_list = catch->backlist;
1280 lisp_eval_depth = catch->lisp_eval_depth;
177c0ea7 1281
ba410f40 1282 _longjmp (catch->jmp, 1);
db9f0278
JB
1283}
1284
1285DEFUN ("throw", Fthrow, Sthrow, 2, 2, 0,
9dbc9081
PJ
1286 doc: /* Throw to the catch for TAG and return VALUE from it.
1287Both TAG and VALUE are evalled. */)
1288 (tag, value)
79e8bfbf 1289 register Lisp_Object tag, value;
db9f0278
JB
1290{
1291 register struct catchtag *c;
1292
1293 while (1)
1294 {
265a9e55 1295 if (!NILP (tag))
db9f0278
JB
1296 for (c = catchlist; c; c = c->next)
1297 {
1298 if (EQ (c->tag, tag))
79e8bfbf 1299 unwind_to_catch (c, value);
db9f0278 1300 }
79e8bfbf 1301 tag = Fsignal (Qno_catch, Fcons (tag, Fcons (value, Qnil)));
db9f0278
JB
1302 }
1303}
1304
1305
1306DEFUN ("unwind-protect", Funwind_protect, Sunwind_protect, 1, UNEVALLED, 0,
9dbc9081
PJ
1307 doc: /* Do BODYFORM, protecting with UNWINDFORMS.
1308If BODYFORM completes normally, its value is returned
1309after executing the UNWINDFORMS.
1310If BODYFORM exits nonlocally, the UNWINDFORMS are executed anyway.
7a25dc6d 1311usage: (unwind-protect BODYFORM UNWINDFORMS...) */)
9dbc9081 1312 (args)
db9f0278
JB
1313 Lisp_Object args;
1314{
1315 Lisp_Object val;
aed13378 1316 int count = SPECPDL_INDEX ();
db9f0278 1317
04b28167 1318 record_unwind_protect (Fprogn, Fcdr (args));
db9f0278 1319 val = Feval (Fcar (args));
177c0ea7 1320 return unbind_to (count, val);
db9f0278
JB
1321}
1322\f
1323/* Chain of condition handlers currently in effect.
1324 The elements of this chain are contained in the stack frames
1325 of Fcondition_case and internal_condition_case.
1326 When an error is signaled (by calling Fsignal, below),
1327 this chain is searched for an element that applies. */
1328
1329struct handler *handlerlist;
1330
1331DEFUN ("condition-case", Fcondition_case, Scondition_case, 2, UNEVALLED, 0,
9dbc9081 1332 doc: /* Regain control when an error is signaled.
1b1acc13 1333Executes BODYFORM and returns its value if no error happens.
9dbc9081
PJ
1334Each element of HANDLERS looks like (CONDITION-NAME BODY...)
1335where the BODY is made of Lisp expressions.
1336
1337A handler is applicable to an error
1338if CONDITION-NAME is one of the error's condition names.
1339If an error happens, the first applicable handler is run.
1340
1341The car of a handler may be a list of condition names
1342instead of a single condition name.
1343
1344When a handler handles an error,
1345control returns to the condition-case and the handler BODY... is executed
1346with VAR bound to (SIGNALED-CONDITIONS . SIGNAL-DATA).
1347VAR may be nil; then you do not get access to the signal information.
1348
1349The value of the last BODY form is returned from the condition-case.
1350See also the function `signal' for more info.
2b47b74d 1351usage: (condition-case VAR BODYFORM &rest HANDLERS) */)
9dbc9081 1352 (args)
db9f0278
JB
1353 Lisp_Object args;
1354{
17401c97
GM
1355 register Lisp_Object bodyform, handlers;
1356 volatile Lisp_Object var;
db9f0278 1357
82da7701
JB
1358 var = Fcar (args);
1359 bodyform = Fcar (Fcdr (args));
1360 handlers = Fcdr (Fcdr (args));
ee830945
RS
1361
1362 return internal_lisp_condition_case (var, bodyform, handlers);
1363}
1364
1365/* Like Fcondition_case, but the args are separate
1366 rather than passed in a list. Used by Fbyte_code. */
1367
1368Lisp_Object
1369internal_lisp_condition_case (var, bodyform, handlers)
1370 volatile Lisp_Object var;
1371 Lisp_Object bodyform, handlers;
1372{
1373 Lisp_Object val;
1374 struct catchtag c;
1375 struct handler h;
1376
b7826503 1377 CHECK_SYMBOL (var);
82da7701 1378
2b47b74d 1379 for (val = handlers; CONSP (val); val = XCDR (val))
82da7701
JB
1380 {
1381 Lisp_Object tem;
2b47b74d 1382 tem = XCAR (val);
5f96776a
RS
1383 if (! (NILP (tem)
1384 || (CONSP (tem)
03699b14
KR
1385 && (SYMBOLP (XCAR (tem))
1386 || CONSP (XCAR (tem))))))
82da7701
JB
1387 error ("Invalid condition handler", tem);
1388 }
db9f0278
JB
1389
1390 c.tag = Qnil;
1391 c.val = Qnil;
1392 c.backlist = backtrace_list;
1393 c.handlerlist = handlerlist;
1394 c.lisp_eval_depth = lisp_eval_depth;
aed13378 1395 c.pdlcount = SPECPDL_INDEX ();
db9f0278 1396 c.poll_suppress_count = poll_suppress_count;
2659a09f 1397 c.interrupt_input_blocked = interrupt_input_blocked;
db9f0278 1398 c.gcpro = gcprolist;
bcf28080 1399 c.byte_stack = byte_stack_list;
db9f0278
JB
1400 if (_setjmp (c.jmp))
1401 {
265a9e55 1402 if (!NILP (h.var))
9d58218c
RS
1403 specbind (h.var, c.val);
1404 val = Fprogn (Fcdr (h.chosen_clause));
82da7701
JB
1405
1406 /* Note that this just undoes the binding of h.var; whoever
1407 longjumped to us unwound the stack to c.pdlcount before
1408 throwing. */
db9f0278
JB
1409 unbind_to (c.pdlcount, Qnil);
1410 return val;
1411 }
1412 c.next = catchlist;
1413 catchlist = &c;
177c0ea7 1414
82da7701
JB
1415 h.var = var;
1416 h.handler = handlers;
db9f0278 1417 h.next = handlerlist;
db9f0278
JB
1418 h.tag = &c;
1419 handlerlist = &h;
1420
82da7701 1421 val = Feval (bodyform);
db9f0278
JB
1422 catchlist = c.next;
1423 handlerlist = h.next;
1424 return val;
1425}
1426
f029ca5f
RS
1427/* Call the function BFUN with no arguments, catching errors within it
1428 according to HANDLERS. If there is an error, call HFUN with
1429 one argument which is the data that describes the error:
1430 (SIGNALNAME . DATA)
1431
1432 HANDLERS can be a list of conditions to catch.
1433 If HANDLERS is Qt, catch all errors.
1434 If HANDLERS is Qerror, catch all errors
1435 but allow the debugger to run if that is enabled. */
1436
db9f0278
JB
1437Lisp_Object
1438internal_condition_case (bfun, handlers, hfun)
1439 Lisp_Object (*bfun) ();
1440 Lisp_Object handlers;
1441 Lisp_Object (*hfun) ();
1442{
1443 Lisp_Object val;
1444 struct catchtag c;
1445 struct handler h;
1446
88019a63
RS
1447 /* Since Fsignal will close off all calls to x_catch_errors,
1448 we will get the wrong results if some are not closed now. */
a2a103bb 1449#if HAVE_X_WINDOWS
88019a63 1450 if (x_catching_errors ())
01591d17 1451 abort ();
a2a103bb 1452#endif
01591d17 1453
db9f0278
JB
1454 c.tag = Qnil;
1455 c.val = Qnil;
1456 c.backlist = backtrace_list;
1457 c.handlerlist = handlerlist;
1458 c.lisp_eval_depth = lisp_eval_depth;
aed13378 1459 c.pdlcount = SPECPDL_INDEX ();
db9f0278 1460 c.poll_suppress_count = poll_suppress_count;
2659a09f 1461 c.interrupt_input_blocked = interrupt_input_blocked;
db9f0278 1462 c.gcpro = gcprolist;
bcf28080 1463 c.byte_stack = byte_stack_list;
db9f0278
JB
1464 if (_setjmp (c.jmp))
1465 {
9d58218c 1466 return (*hfun) (c.val);
db9f0278
JB
1467 }
1468 c.next = catchlist;
1469 catchlist = &c;
1470 h.handler = handlers;
1471 h.var = Qnil;
db9f0278
JB
1472 h.next = handlerlist;
1473 h.tag = &c;
1474 handlerlist = &h;
1475
1476 val = (*bfun) ();
1477 catchlist = c.next;
1478 handlerlist = h.next;
1479 return val;
1480}
1481
2659a09f 1482/* Like internal_condition_case but call BFUN with ARG as its argument. */
f029ca5f 1483
d227775c
RS
1484Lisp_Object
1485internal_condition_case_1 (bfun, arg, handlers, hfun)
1486 Lisp_Object (*bfun) ();
1487 Lisp_Object arg;
1488 Lisp_Object handlers;
1489 Lisp_Object (*hfun) ();
1490{
1491 Lisp_Object val;
1492 struct catchtag c;
1493 struct handler h;
1494
88019a63
RS
1495 /* Since Fsignal will close off all calls to x_catch_errors,
1496 we will get the wrong results if some are not closed now. */
a2a103bb 1497#if HAVE_X_WINDOWS
88019a63
RS
1498 if (x_catching_errors ())
1499 abort ();
a2a103bb 1500#endif
88019a63 1501
d227775c
RS
1502 c.tag = Qnil;
1503 c.val = Qnil;
1504 c.backlist = backtrace_list;
1505 c.handlerlist = handlerlist;
1506 c.lisp_eval_depth = lisp_eval_depth;
aed13378 1507 c.pdlcount = SPECPDL_INDEX ();
d227775c 1508 c.poll_suppress_count = poll_suppress_count;
2659a09f 1509 c.interrupt_input_blocked = interrupt_input_blocked;
d227775c 1510 c.gcpro = gcprolist;
bcf28080 1511 c.byte_stack = byte_stack_list;
d227775c
RS
1512 if (_setjmp (c.jmp))
1513 {
9d58218c 1514 return (*hfun) (c.val);
d227775c
RS
1515 }
1516 c.next = catchlist;
1517 catchlist = &c;
1518 h.handler = handlers;
1519 h.var = Qnil;
1520 h.next = handlerlist;
1521 h.tag = &c;
1522 handlerlist = &h;
1523
1524 val = (*bfun) (arg);
1525 catchlist = c.next;
1526 handlerlist = h.next;
1527 return val;
1528}
10b29d41
GM
1529
1530
2659a09f 1531/* Like internal_condition_case but call BFUN with NARGS as first,
10b29d41
GM
1532 and ARGS as second argument. */
1533
1534Lisp_Object
1535internal_condition_case_2 (bfun, nargs, args, handlers, hfun)
1536 Lisp_Object (*bfun) ();
1537 int nargs;
1538 Lisp_Object *args;
1539 Lisp_Object handlers;
1540 Lisp_Object (*hfun) ();
1541{
1542 Lisp_Object val;
1543 struct catchtag c;
1544 struct handler h;
1545
88019a63
RS
1546 /* Since Fsignal will close off all calls to x_catch_errors,
1547 we will get the wrong results if some are not closed now. */
a2a103bb 1548#if HAVE_X_WINDOWS
88019a63
RS
1549 if (x_catching_errors ())
1550 abort ();
a2a103bb 1551#endif
88019a63 1552
10b29d41
GM
1553 c.tag = Qnil;
1554 c.val = Qnil;
1555 c.backlist = backtrace_list;
1556 c.handlerlist = handlerlist;
1557 c.lisp_eval_depth = lisp_eval_depth;
aed13378 1558 c.pdlcount = SPECPDL_INDEX ();
10b29d41 1559 c.poll_suppress_count = poll_suppress_count;
2659a09f 1560 c.interrupt_input_blocked = interrupt_input_blocked;
10b29d41
GM
1561 c.gcpro = gcprolist;
1562 c.byte_stack = byte_stack_list;
1563 if (_setjmp (c.jmp))
1564 {
1565 return (*hfun) (c.val);
1566 }
1567 c.next = catchlist;
1568 catchlist = &c;
1569 h.handler = handlers;
1570 h.var = Qnil;
1571 h.next = handlerlist;
1572 h.tag = &c;
1573 handlerlist = &h;
1574
1575 val = (*bfun) (nargs, args);
1576 catchlist = c.next;
1577 handlerlist = h.next;
1578 return val;
1579}
1580
d227775c 1581\f
2901f1d1
SM
1582static Lisp_Object find_handler_clause P_ ((Lisp_Object, Lisp_Object,
1583 Lisp_Object, Lisp_Object,
1584 Lisp_Object *));
db9f0278
JB
1585
1586DEFUN ("signal", Fsignal, Ssignal, 2, 2, 0,
9dbc9081
PJ
1587 doc: /* Signal an error. Args are ERROR-SYMBOL and associated DATA.
1588This function does not return.
1589
1590An error symbol is a symbol with an `error-conditions' property
1591that is a list of condition names.
1592A handler for any of those names will get to handle this signal.
1593The symbol `error' should normally be one of them.
1594
1595DATA should be a list. Its elements are printed as part of the error message.
3297ec22
LT
1596See Info anchor `(elisp)Definition of signal' for some details on how this
1597error message is constructed.
9dbc9081
PJ
1598If the signal is handled, DATA is made available to the handler.
1599See also the function `condition-case'. */)
1600 (error_symbol, data)
4200e719 1601 Lisp_Object error_symbol, data;
db9f0278 1602{
bfa8ca43 1603 /* When memory is full, ERROR-SYMBOL is nil,
26631f2b
RS
1604 and DATA is (REAL-ERROR-SYMBOL . REAL-DATA).
1605 That is a special case--don't do this in other situations. */
db9f0278
JB
1606 register struct handler *allhandlers = handlerlist;
1607 Lisp_Object conditions;
1608 extern int gc_in_progress;
1609 extern int waiting_for_input;
1610 Lisp_Object debugger_value;
c11d3d17 1611 Lisp_Object string;
1ea9dec4 1612 Lisp_Object real_error_symbol;
a2ff3819 1613 struct backtrace *bp;
db9f0278 1614
346598f1 1615 immediate_quit = handling_signal = 0;
d063129f 1616 abort_on_gc = 0;
db9f0278
JB
1617 if (gc_in_progress || waiting_for_input)
1618 abort ();
1619
1ea9dec4
RS
1620 if (NILP (error_symbol))
1621 real_error_symbol = Fcar (data);
1622 else
1623 real_error_symbol = error_symbol;
1624
26631f2b
RS
1625#if 0 /* rms: I don't know why this was here,
1626 but it is surely wrong for an error that is handled. */
48f8dfa3 1627#ifdef HAVE_X_WINDOWS
df6c90d8
GM
1628 if (display_hourglass_p)
1629 cancel_hourglass ();
48f8dfa3 1630#endif
177c0ea7 1631#endif
48f8dfa3 1632
61ede770 1633 /* This hook is used by edebug. */
26631f2b
RS
1634 if (! NILP (Vsignal_hook_function)
1635 && ! NILP (error_symbol))
9f5903bb
RS
1636 {
1637 /* Edebug takes care of restoring these variables when it exits. */
1638 if (lisp_eval_depth + 20 > max_lisp_eval_depth)
1639 max_lisp_eval_depth = lisp_eval_depth + 20;
1640
1641 if (SPECPDL_INDEX () + 40 > max_specpdl_size)
1642 max_specpdl_size = SPECPDL_INDEX () + 40;
1643
1644 call2 (Vsignal_hook_function, error_symbol, data);
1645 }
61ede770 1646
1ea9dec4 1647 conditions = Fget (real_error_symbol, Qerror_conditions);
db9f0278 1648
a2ff3819
GM
1649 /* Remember from where signal was called. Skip over the frame for
1650 `signal' itself. If a frame for `error' follows, skip that,
26631f2b
RS
1651 too. Don't do this when ERROR_SYMBOL is nil, because that
1652 is a memory-full error. */
090a072f 1653 Vsignaling_function = Qnil;
26631f2b 1654 if (backtrace_list && !NILP (error_symbol))
090a072f
GM
1655 {
1656 bp = backtrace_list->next;
1657 if (bp && bp->function && EQ (*bp->function, Qerror))
1658 bp = bp->next;
1659 if (bp && bp->function)
1660 Vsignaling_function = *bp->function;
1661 }
a2ff3819 1662
db9f0278
JB
1663 for (; handlerlist; handlerlist = handlerlist->next)
1664 {
1665 register Lisp_Object clause;
177c0ea7 1666
db9f0278 1667 clause = find_handler_clause (handlerlist->handler, conditions,
4200e719 1668 error_symbol, data, &debugger_value);
db9f0278 1669
db9f0278 1670 if (EQ (clause, Qlambda))
82da7701 1671 {
690337b7
KH
1672 /* We can't return values to code which signaled an error, but we
1673 can continue code which has signaled a quit. */
1ea9dec4 1674 if (EQ (real_error_symbol, Qquit))
82da7701
JB
1675 return Qnil;
1676 else
d3e6f8be 1677 error ("Cannot return from the debugger in an error");
82da7701 1678 }
db9f0278 1679
265a9e55 1680 if (!NILP (clause))
db9f0278 1681 {
9d58218c 1682 Lisp_Object unwind_data;
db9f0278 1683 struct handler *h = handlerlist;
9d58218c 1684
db9f0278 1685 handlerlist = allhandlers;
1ea9dec4
RS
1686
1687 if (NILP (error_symbol))
1688 unwind_data = data;
9d58218c
RS
1689 else
1690 unwind_data = Fcons (error_symbol, data);
1691 h->chosen_clause = clause;
1692 unwind_to_catch (h->tag, unwind_data);
db9f0278
JB
1693 }
1694 }
1695
1696 handlerlist = allhandlers;
1697 /* If no handler is present now, try to run the debugger,
1698 and if that fails, throw to top level. */
4200e719 1699 find_handler_clause (Qerror, conditions, error_symbol, data, &debugger_value);
c11d3d17
RS
1700 if (catchlist != 0)
1701 Fthrow (Qtop_level, Qt);
1702
1ea9dec4 1703 if (! NILP (error_symbol))
c11d3d17
RS
1704 data = Fcons (error_symbol, data);
1705
1706 string = Ferror_message_string (data);
d5db4077 1707 fatal ("%s", SDATA (string), 0);
db9f0278
JB
1708}
1709
128c0f66
RM
1710/* Return nonzero iff LIST is a non-nil atom or
1711 a list containing one of CONDITIONS. */
1712
1713static int
1714wants_debugger (list, conditions)
1715 Lisp_Object list, conditions;
1716{
4de86b16 1717 if (NILP (list))
128c0f66
RM
1718 return 0;
1719 if (! CONSP (list))
1720 return 1;
1721
ab67260b 1722 while (CONSP (conditions))
128c0f66 1723 {
ab67260b 1724 Lisp_Object this, tail;
03699b14
KR
1725 this = XCAR (conditions);
1726 for (tail = list; CONSP (tail); tail = XCDR (tail))
1727 if (EQ (XCAR (tail), this))
128c0f66 1728 return 1;
03699b14 1729 conditions = XCDR (conditions);
128c0f66 1730 }
ab67260b 1731 return 0;
128c0f66
RM
1732}
1733
fc950e09
KH
1734/* Return 1 if an error with condition-symbols CONDITIONS,
1735 and described by SIGNAL-DATA, should skip the debugger
1b1acc13 1736 according to debugger-ignored-errors. */
fc950e09
KH
1737
1738static int
1739skip_debugger (conditions, data)
1740 Lisp_Object conditions, data;
1741{
1742 Lisp_Object tail;
1743 int first_string = 1;
1744 Lisp_Object error_message;
1745
17401c97
GM
1746 error_message = Qnil;
1747 for (tail = Vdebug_ignored_errors; CONSP (tail); tail = XCDR (tail))
fc950e09 1748 {
03699b14 1749 if (STRINGP (XCAR (tail)))
fc950e09
KH
1750 {
1751 if (first_string)
1752 {
1753 error_message = Ferror_message_string (data);
1754 first_string = 0;
1755 }
177c0ea7 1756
03699b14 1757 if (fast_string_match (XCAR (tail), error_message) >= 0)
fc950e09
KH
1758 return 1;
1759 }
1760 else
1761 {
1762 Lisp_Object contail;
1763
17401c97 1764 for (contail = conditions; CONSP (contail); contail = XCDR (contail))
03699b14 1765 if (EQ (XCAR (tail), XCAR (contail)))
fc950e09
KH
1766 return 1;
1767 }
1768 }
1769
1770 return 0;
1771}
1772
128c0f66 1773/* Value of Qlambda means we have called debugger and user has continued.
1ea9dec4 1774 There are two ways to pass SIG and DATA:
9b942ebd 1775 = SIG is the error symbol, and DATA is the rest of the data.
1ea9dec4 1776 = SIG is nil, and DATA is (SYMBOL . REST-OF-DATA).
9b942ebd 1777 This is for memory-full errors only.
1ea9dec4 1778
9f5903bb
RS
1779 Store value returned from debugger into *DEBUGGER_VALUE_PTR.
1780
1781 We need to increase max_specpdl_size temporarily around
1782 anything we do that can push on the specpdl, so as not to get
1783 a second error here in case we're handling specpdl overflow. */
db9f0278
JB
1784
1785static Lisp_Object
1786find_handler_clause (handlers, conditions, sig, data, debugger_value_ptr)
1787 Lisp_Object handlers, conditions, sig, data;
1788 Lisp_Object *debugger_value_ptr;
1789{
1790 register Lisp_Object h;
1791 register Lisp_Object tem;
db9f0278
JB
1792
1793 if (EQ (handlers, Qt)) /* t is used by handlers for all conditions, set up by C code. */
1794 return Qt;
61ede770
RS
1795 /* error is used similarly, but means print an error message
1796 and run the debugger if that is enabled. */
1797 if (EQ (handlers, Qerror)
57a6e758
RS
1798 || !NILP (Vdebug_on_signal)) /* This says call debugger even if
1799 there is a handler. */
db9f0278 1800 {
61ede770 1801 int debugger_called = 0;
1ea9dec4 1802 Lisp_Object sig_symbol, combined_data;
9b942ebd
RS
1803 /* This is set to 1 if we are handling a memory-full error,
1804 because these must not run the debugger.
1805 (There is no room in memory to do that!) */
1806 int no_debugger = 0;
1ea9dec4
RS
1807
1808 if (NILP (sig))
1809 {
1810 combined_data = data;
1811 sig_symbol = Fcar (data);
9b942ebd 1812 no_debugger = 1;
1ea9dec4
RS
1813 }
1814 else
1815 {
1816 combined_data = Fcons (sig, data);
1817 sig_symbol = sig;
1818 }
61ede770 1819
128c0f66 1820 if (wants_debugger (Vstack_trace_on_error, conditions))
88817f3b 1821 {
9f5903bb 1822 max_specpdl_size++;
b369fa65 1823#ifdef PROTOTYPES
88817f3b
RS
1824 internal_with_output_to_temp_buffer ("*Backtrace*",
1825 (Lisp_Object (*) (Lisp_Object)) Fbacktrace,
1826 Qnil);
1827#else
1828 internal_with_output_to_temp_buffer ("*Backtrace*",
1829 Fbacktrace, Qnil);
1830#endif
9f5903bb 1831 max_specpdl_size--;
88817f3b 1832 }
9b942ebd
RS
1833 if (! no_debugger
1834 && (EQ (sig_symbol, Qquit)
1835 ? debug_on_quit
1836 : wants_debugger (Vdebug_on_error, conditions))
1ea9dec4 1837 && ! skip_debugger (conditions, combined_data)
be857679 1838 && when_entered_debugger < num_nonmacro_input_events)
db9f0278 1839 {
fc950e09
KH
1840 *debugger_value_ptr
1841 = call_debugger (Fcons (Qerror,
1ea9dec4 1842 Fcons (combined_data, Qnil)));
61ede770
RS
1843 debugger_called = 1;
1844 }
1845 /* If there is no handler, return saying whether we ran the debugger. */
1846 if (EQ (handlers, Qerror))
1847 {
1848 if (debugger_called)
9f5903bb 1849 return Qlambda;
61ede770 1850 return Qt;
db9f0278 1851 }
db9f0278
JB
1852 }
1853 for (h = handlers; CONSP (h); h = Fcdr (h))
1854 {
5f96776a
RS
1855 Lisp_Object handler, condit;
1856
1857 handler = Fcar (h);
1858 if (!CONSP (handler))
db9f0278 1859 continue;
5f96776a
RS
1860 condit = Fcar (handler);
1861 /* Handle a single condition name in handler HANDLER. */
1862 if (SYMBOLP (condit))
1863 {
1864 tem = Fmemq (Fcar (handler), conditions);
1865 if (!NILP (tem))
1866 return handler;
1867 }
1868 /* Handle a list of condition names in handler HANDLER. */
1869 else if (CONSP (condit))
1870 {
1871 while (CONSP (condit))
1872 {
1873 tem = Fmemq (Fcar (condit), conditions);
1874 if (!NILP (tem))
1875 return handler;
03699b14 1876 condit = XCDR (condit);
5f96776a
RS
1877 }
1878 }
db9f0278
JB
1879 }
1880 return Qnil;
1881}
1882
1883/* dump an error message; called like printf */
1884
1885/* VARARGS 1 */
1886void
1887error (m, a1, a2, a3)
1888 char *m;
9125da08 1889 char *a1, *a2, *a3;
db9f0278
JB
1890{
1891 char buf[200];
9125da08
RS
1892 int size = 200;
1893 int mlen;
1894 char *buffer = buf;
1895 char *args[3];
1896 int allocated = 0;
1897 Lisp_Object string;
1898
1899 args[0] = a1;
1900 args[1] = a2;
1901 args[2] = a3;
1902
1903 mlen = strlen (m);
db9f0278
JB
1904
1905 while (1)
9125da08 1906 {
955f3ff9 1907 int used = doprnt (buffer, size, m, m + mlen, 3, args);
9125da08
RS
1908 if (used < size)
1909 break;
1910 size *= 2;
1911 if (allocated)
1912 buffer = (char *) xrealloc (buffer, size);
5ece1728
RS
1913 else
1914 {
1915 buffer = (char *) xmalloc (size);
1916 allocated = 1;
1917 }
9125da08
RS
1918 }
1919
955f3ff9 1920 string = build_string (buffer);
9125da08 1921 if (allocated)
9ae6734f 1922 xfree (buffer);
9125da08
RS
1923
1924 Fsignal (Qerror, Fcons (string, Qnil));
9402dba5 1925 abort ();
db9f0278
JB
1926}
1927\f
e72706be 1928DEFUN ("commandp", Fcommandp, Scommandp, 1, 2, 0,
9dbc9081
PJ
1929 doc: /* Non-nil if FUNCTION makes provisions for interactive calling.
1930This means it contains a description for how to read arguments to give it.
1931The value is nil for an invalid function or a symbol with no function
1932definition.
1933
1934Interactively callable functions include strings and vectors (treated
1935as keyboard macros), lambda-expressions that contain a top-level call
1936to `interactive', autoload definitions made by `autoload' with non-nil
1937fourth argument, and some of the built-in functions of Lisp.
1938
e72706be
RS
1939Also, a symbol satisfies `commandp' if its function definition does so.
1940
1941If the optional argument FOR-CALL-INTERACTIVELY is non-nil,
769b4fb2 1942then strings and vectors are not accepted. */)
e72706be
RS
1943 (function, for_call_interactively)
1944 Lisp_Object function, for_call_interactively;
db9f0278
JB
1945{
1946 register Lisp_Object fun;
1947 register Lisp_Object funcar;
db9f0278
JB
1948
1949 fun = function;
1950
ffd56f97
JB
1951 fun = indirect_function (fun);
1952 if (EQ (fun, Qunbound))
1953 return Qnil;
db9f0278
JB
1954
1955 /* Emacs primitives are interactive if their DEFUN specifies an
1956 interactive spec. */
90165123 1957 if (SUBRP (fun))
db9f0278
JB
1958 {
1959 if (XSUBR (fun)->prompt)
1960 return Qt;
1961 else
1962 return Qnil;
1963 }
1964
1965 /* Bytecode objects are interactive if they are long enough to
1966 have an element whose index is COMPILED_INTERACTIVE, which is
1967 where the interactive spec is stored. */
90165123 1968 else if (COMPILEDP (fun))
845975f5 1969 return ((ASIZE (fun) & PSEUDOVECTOR_SIZE_MASK) > COMPILED_INTERACTIVE
db9f0278
JB
1970 ? Qt : Qnil);
1971
1972 /* Strings and vectors are keyboard macros. */
e72706be 1973 if (NILP (for_call_interactively) && (STRINGP (fun) || VECTORP (fun)))
db9f0278
JB
1974 return Qt;
1975
1976 /* Lists may represent commands. */
1977 if (!CONSP (fun))
1978 return Qnil;
ed16fb98 1979 funcar = XCAR (fun);
db9f0278 1980 if (EQ (funcar, Qlambda))
ed16fb98 1981 return Fassq (Qinteractive, Fcdr (XCDR (fun)));
db9f0278 1982 if (EQ (funcar, Qautoload))
ed16fb98 1983 return Fcar (Fcdr (Fcdr (XCDR (fun))));
db9f0278
JB
1984 else
1985 return Qnil;
1986}
1987
1988/* ARGSUSED */
1989DEFUN ("autoload", Fautoload, Sautoload, 2, 5, 0,
9dbc9081
PJ
1990 doc: /* Define FUNCTION to autoload from FILE.
1991FUNCTION is a symbol; FILE is a file name string to pass to `load'.
1992Third arg DOCSTRING is documentation for the function.
1993Fourth arg INTERACTIVE if non-nil says function can be called interactively.
1994Fifth arg TYPE indicates the type of the object:
1995 nil or omitted says FUNCTION is a function,
1996 `keymap' says FUNCTION is really a keymap, and
1997 `macro' or t says FUNCTION is really a macro.
1998Third through fifth args give info about the real definition.
1999They default to nil.
2000If FUNCTION is already defined other than as an autoload,
2001this does nothing and returns nil. */)
2002 (function, file, docstring, interactive, type)
ee9ee63c 2003 Lisp_Object function, file, docstring, interactive, type;
db9f0278
JB
2004{
2005#ifdef NO_ARG_ARRAY
2006 Lisp_Object args[4];
2007#endif
2008
b7826503
PJ
2009 CHECK_SYMBOL (function);
2010 CHECK_STRING (file);
db9f0278
JB
2011
2012 /* If function is defined and not as an autoload, don't override */
2013 if (!EQ (XSYMBOL (function)->function, Qunbound)
90165123 2014 && !(CONSP (XSYMBOL (function)->function)
03699b14 2015 && EQ (XCAR (XSYMBOL (function)->function), Qautoload)))
db9f0278
JB
2016 return Qnil;
2017
7973e637
SM
2018 if (NILP (Vpurify_flag))
2019 /* Only add entries after dumping, because the ones before are
2020 not useful and else we get loads of them from the loaddefs.el. */
2021 LOADHIST_ATTACH (Fcons (Qautoload, function));
2022
db9f0278
JB
2023#ifdef NO_ARG_ARRAY
2024 args[0] = file;
2025 args[1] = docstring;
2026 args[2] = interactive;
ee9ee63c 2027 args[3] = type;
db9f0278
JB
2028
2029 return Ffset (function, Fcons (Qautoload, Flist (4, &args[0])));
2030#else /* NO_ARG_ARRAY */
2031 return Ffset (function, Fcons (Qautoload, Flist (4, &file)));
2032#endif /* not NO_ARG_ARRAY */
2033}
2034
2035Lisp_Object
2036un_autoload (oldqueue)
2037 Lisp_Object oldqueue;
2038{
2039 register Lisp_Object queue, first, second;
2040
2041 /* Queue to unwind is current value of Vautoload_queue.
2042 oldqueue is the shadowed value to leave in Vautoload_queue. */
2043 queue = Vautoload_queue;
2044 Vautoload_queue = oldqueue;
2045 while (CONSP (queue))
2046 {
e509f168 2047 first = XCAR (queue);
db9f0278
JB
2048 second = Fcdr (first);
2049 first = Fcar (first);
47b82df9
RS
2050 if (EQ (first, make_number (0)))
2051 Vfeatures = second;
db9f0278
JB
2052 else
2053 Ffset (first, second);
e509f168 2054 queue = XCDR (queue);
db9f0278
JB
2055 }
2056 return Qnil;
2057}
2058
ca20916b
RS
2059/* Load an autoloaded function.
2060 FUNNAME is the symbol which is the function's name.
2061 FUNDEF is the autoload definition (a list). */
2062
045ba794 2063void
db9f0278
JB
2064do_autoload (fundef, funname)
2065 Lisp_Object fundef, funname;
2066{
aed13378 2067 int count = SPECPDL_INDEX ();
cb81ac97 2068 Lisp_Object fun, queue, first, second;
ca20916b 2069 struct gcpro gcpro1, gcpro2, gcpro3;
db9f0278 2070
aea6173f
RS
2071 /* This is to make sure that loadup.el gives a clear picture
2072 of what files are preloaded and when. */
ab4db096
RS
2073 if (! NILP (Vpurify_flag))
2074 error ("Attempt to autoload %s while preparing to dump",
d5db4077 2075 SDATA (SYMBOL_NAME (funname)));
ab4db096 2076
db9f0278 2077 fun = funname;
b7826503 2078 CHECK_SYMBOL (funname);
ca20916b 2079 GCPRO3 (fun, funname, fundef);
db9f0278 2080
f87740dc 2081 /* Preserve the match data. */
89f2614d 2082 record_unwind_save_match_data ();
177c0ea7 2083
f87740dc 2084 /* Value saved here is to be restored into Vautoload_queue. */
db9f0278
JB
2085 record_unwind_protect (un_autoload, Vautoload_queue);
2086 Vautoload_queue = Qt;
4aac2302 2087 Fload (Fcar (Fcdr (fundef)), Qnil, noninteractive ? Qt : Qnil, Qnil, Qt);
2a49b6e5 2088
f87740dc 2089 /* Save the old autoloads, in case we ever do an unload. */
2a49b6e5
RS
2090 queue = Vautoload_queue;
2091 while (CONSP (queue))
2092 {
e509f168 2093 first = XCAR (queue);
2a49b6e5
RS
2094 second = Fcdr (first);
2095 first = Fcar (first);
5739ce6b 2096
fe5195e8 2097 if (SYMBOLP (first) && CONSP (second) && EQ (XCAR (second), Qautoload))
e509f168 2098 Fput (first, Qautoload, (XCDR (second)));
5739ce6b 2099
e509f168 2100 queue = XCDR (queue);
2a49b6e5
RS
2101 }
2102
db9f0278
JB
2103 /* Once loading finishes, don't undo it. */
2104 Vautoload_queue = Qt;
2105 unbind_to (count, Qnil);
2106
a7f96a35 2107 fun = Findirect_function (fun, Qnil);
ffd56f97 2108
76c2b0cc 2109 if (!NILP (Fequal (fun, fundef)))
db9f0278 2110 error ("Autoloading failed to define function %s",
d5db4077 2111 SDATA (SYMBOL_NAME (funname)));
ca20916b 2112 UNGCPRO;
db9f0278 2113}
4c576a83 2114
db9f0278
JB
2115\f
2116DEFUN ("eval", Feval, Seval, 1, 1, 0,
9dbc9081
PJ
2117 doc: /* Evaluate FORM and return its value. */)
2118 (form)
db9f0278
JB
2119 Lisp_Object form;
2120{
2121 Lisp_Object fun, val, original_fun, original_args;
2122 Lisp_Object funcar;
2123 struct backtrace backtrace;
2124 struct gcpro gcpro1, gcpro2, gcpro3;
2125
df470e3b 2126 if (handling_signal)
48f8dfa3 2127 abort ();
177c0ea7 2128
90165123 2129 if (SYMBOLP (form))
2b9bde76 2130 return Fsymbol_value (form);
db9f0278
JB
2131 if (!CONSP (form))
2132 return form;
2133
2134 QUIT;
ee830945
RS
2135 if ((consing_since_gc > gc_cons_threshold
2136 && consing_since_gc > gc_relative_threshold)
2137 ||
2138 (!NILP (Vmemory_full) && consing_since_gc > memory_full_cons_threshold))
db9f0278
JB
2139 {
2140 GCPRO1 (form);
2141 Fgarbage_collect ();
2142 UNGCPRO;
2143 }
2144
2145 if (++lisp_eval_depth > max_lisp_eval_depth)
2146 {
2147 if (max_lisp_eval_depth < 100)
2148 max_lisp_eval_depth = 100;
2149 if (lisp_eval_depth > max_lisp_eval_depth)
921baa95 2150 error ("Lisp nesting exceeds `max-lisp-eval-depth'");
db9f0278
JB
2151 }
2152
2153 original_fun = Fcar (form);
2154 original_args = Fcdr (form);
2155
2156 backtrace.next = backtrace_list;
2157 backtrace_list = &backtrace;
2158 backtrace.function = &original_fun; /* This also protects them from gc */
2159 backtrace.args = &original_args;
2160 backtrace.nargs = UNEVALLED;
2161 backtrace.evalargs = 1;
2162 backtrace.debug_on_exit = 0;
2163
2164 if (debug_on_next_call)
2165 do_debug_on_call (Qt);
2166
2167 /* At this point, only original_fun and original_args
2168 have values that will be used below */
2169 retry:
a7f96a35 2170 fun = Findirect_function (original_fun, Qnil);
db9f0278 2171
90165123 2172 if (SUBRP (fun))
db9f0278
JB
2173 {
2174 Lisp_Object numargs;
166c822d 2175 Lisp_Object argvals[8];
db9f0278
JB
2176 Lisp_Object args_left;
2177 register int i, maxargs;
2178
2179 args_left = original_args;
2180 numargs = Flength (args_left);
2181
c1788fbc
RS
2182 CHECK_CONS_LIST ();
2183
db9f0278
JB
2184 if (XINT (numargs) < XSUBR (fun)->min_args ||
2185 (XSUBR (fun)->max_args >= 0 && XSUBR (fun)->max_args < XINT (numargs)))
2186 return Fsignal (Qwrong_number_of_arguments, Fcons (fun, Fcons (numargs, Qnil)));
2187
2188 if (XSUBR (fun)->max_args == UNEVALLED)
2189 {
2190 backtrace.evalargs = 0;
2191 val = (*XSUBR (fun)->function) (args_left);
2192 goto done;
2193 }
2194
2195 if (XSUBR (fun)->max_args == MANY)
2196 {
2197 /* Pass a vector of evaluated arguments */
2198 Lisp_Object *vals;
2199 register int argnum = 0;
2200
2201 vals = (Lisp_Object *) alloca (XINT (numargs) * sizeof (Lisp_Object));
2202
2203 GCPRO3 (args_left, fun, fun);
2204 gcpro3.var = vals;
2205 gcpro3.nvars = 0;
2206
265a9e55 2207 while (!NILP (args_left))
db9f0278
JB
2208 {
2209 vals[argnum++] = Feval (Fcar (args_left));
2210 args_left = Fcdr (args_left);
2211 gcpro3.nvars = argnum;
2212 }
db9f0278
JB
2213
2214 backtrace.args = vals;
2215 backtrace.nargs = XINT (numargs);
2216
2217 val = (*XSUBR (fun)->function) (XINT (numargs), vals);
a6e3fa71 2218 UNGCPRO;
db9f0278
JB
2219 goto done;
2220 }
2221
2222 GCPRO3 (args_left, fun, fun);
2223 gcpro3.var = argvals;
2224 gcpro3.nvars = 0;
2225
2226 maxargs = XSUBR (fun)->max_args;
2227 for (i = 0; i < maxargs; args_left = Fcdr (args_left))
2228 {
2229 argvals[i] = Feval (Fcar (args_left));
2230 gcpro3.nvars = ++i;
2231 }
2232
2233 UNGCPRO;
2234
2235 backtrace.args = argvals;
2236 backtrace.nargs = XINT (numargs);
2237
2238 switch (i)
2239 {
2240 case 0:
2241 val = (*XSUBR (fun)->function) ();
2242 goto done;
2243 case 1:
2244 val = (*XSUBR (fun)->function) (argvals[0]);
2245 goto done;
2246 case 2:
2247 val = (*XSUBR (fun)->function) (argvals[0], argvals[1]);
2248 goto done;
2249 case 3:
2250 val = (*XSUBR (fun)->function) (argvals[0], argvals[1],
2251 argvals[2]);
2252 goto done;
2253 case 4:
2254 val = (*XSUBR (fun)->function) (argvals[0], argvals[1],
2255 argvals[2], argvals[3]);
2256 goto done;
2257 case 5:
2258 val = (*XSUBR (fun)->function) (argvals[0], argvals[1], argvals[2],
2259 argvals[3], argvals[4]);
2260 goto done;
2261 case 6:
2262 val = (*XSUBR (fun)->function) (argvals[0], argvals[1], argvals[2],
2263 argvals[3], argvals[4], argvals[5]);
2264 goto done;
15c65264
RS
2265 case 7:
2266 val = (*XSUBR (fun)->function) (argvals[0], argvals[1], argvals[2],
2267 argvals[3], argvals[4], argvals[5],
2268 argvals[6]);
2269 goto done;
db9f0278 2270
166c822d
KH
2271 case 8:
2272 val = (*XSUBR (fun)->function) (argvals[0], argvals[1], argvals[2],
2273 argvals[3], argvals[4], argvals[5],
2274 argvals[6], argvals[7]);
2275 goto done;
2276
db9f0278 2277 default:
08564963
JB
2278 /* Someone has created a subr that takes more arguments than
2279 is supported by this code. We need to either rewrite the
2280 subr to use a different argument protocol, or add more
2281 cases to this switch. */
2282 abort ();
db9f0278
JB
2283 }
2284 }
90165123 2285 if (COMPILEDP (fun))
db9f0278
JB
2286 val = apply_lambda (fun, original_args, 1);
2287 else
2288 {
2289 if (!CONSP (fun))
2290 return Fsignal (Qinvalid_function, Fcons (fun, Qnil));
2291 funcar = Fcar (fun);
90165123 2292 if (!SYMBOLP (funcar))
db9f0278
JB
2293 return Fsignal (Qinvalid_function, Fcons (fun, Qnil));
2294 if (EQ (funcar, Qautoload))
2295 {
2296 do_autoload (fun, original_fun);
2297 goto retry;
2298 }
2299 if (EQ (funcar, Qmacro))
2300 val = Feval (apply1 (Fcdr (fun), original_args));
2301 else if (EQ (funcar, Qlambda))
2302 val = apply_lambda (fun, original_args, 1);
db9f0278
JB
2303 else
2304 return Fsignal (Qinvalid_function, Fcons (fun, Qnil));
2305 }
2306 done:
c1788fbc
RS
2307 CHECK_CONS_LIST ();
2308
db9f0278
JB
2309 lisp_eval_depth--;
2310 if (backtrace.debug_on_exit)
2311 val = call_debugger (Fcons (Qexit, Fcons (val, Qnil)));
2312 backtrace_list = backtrace.next;
824eb35e 2313
db9f0278
JB
2314 return val;
2315}
2316\f
2317DEFUN ("apply", Fapply, Sapply, 2, MANY, 0,
9dbc9081
PJ
2318 doc: /* Call FUNCTION with our remaining args, using our last arg as list of args.
2319Then return the value FUNCTION returns.
2320Thus, (apply '+ 1 2 '(3 4)) returns 10.
2321usage: (apply FUNCTION &rest ARGUMENTS) */)
2322 (nargs, args)
db9f0278
JB
2323 int nargs;
2324 Lisp_Object *args;
2325{
2326 register int i, numargs;
2327 register Lisp_Object spread_arg;
2328 register Lisp_Object *funcall_args;
db9f0278 2329 Lisp_Object fun;
96d44c64 2330 struct gcpro gcpro1;
db9f0278
JB
2331
2332 fun = args [0];
2333 funcall_args = 0;
2334 spread_arg = args [nargs - 1];
b7826503 2335 CHECK_LIST (spread_arg);
177c0ea7 2336
db9f0278
JB
2337 numargs = XINT (Flength (spread_arg));
2338
2339 if (numargs == 0)
2340 return Ffuncall (nargs - 1, args);
2341 else if (numargs == 1)
2342 {
03699b14 2343 args [nargs - 1] = XCAR (spread_arg);
db9f0278
JB
2344 return Ffuncall (nargs, args);
2345 }
2346
a6e3fa71 2347 numargs += nargs - 2;
db9f0278 2348
ffd56f97
JB
2349 fun = indirect_function (fun);
2350 if (EQ (fun, Qunbound))
db9f0278 2351 {
ffd56f97
JB
2352 /* Let funcall get the error */
2353 fun = args[0];
2354 goto funcall;
db9f0278
JB
2355 }
2356
90165123 2357 if (SUBRP (fun))
db9f0278
JB
2358 {
2359 if (numargs < XSUBR (fun)->min_args
2360 || (XSUBR (fun)->max_args >= 0 && XSUBR (fun)->max_args < numargs))
2361 goto funcall; /* Let funcall get the error */
2362 else if (XSUBR (fun)->max_args > numargs)
2363 {
2364 /* Avoid making funcall cons up a yet another new vector of arguments
2365 by explicitly supplying nil's for optional values */
2366 funcall_args = (Lisp_Object *) alloca ((1 + XSUBR (fun)->max_args)
2367 * sizeof (Lisp_Object));
2368 for (i = numargs; i < XSUBR (fun)->max_args;)
2369 funcall_args[++i] = Qnil;
96d44c64
SM
2370 GCPRO1 (*funcall_args);
2371 gcpro1.nvars = 1 + XSUBR (fun)->max_args;
db9f0278
JB
2372 }
2373 }
2374 funcall:
2375 /* We add 1 to numargs because funcall_args includes the
2376 function itself as well as its arguments. */
2377 if (!funcall_args)
a6e3fa71
JB
2378 {
2379 funcall_args = (Lisp_Object *) alloca ((1 + numargs)
2380 * sizeof (Lisp_Object));
96d44c64
SM
2381 GCPRO1 (*funcall_args);
2382 gcpro1.nvars = 1 + numargs;
a6e3fa71
JB
2383 }
2384
db9f0278
JB
2385 bcopy (args, funcall_args, nargs * sizeof (Lisp_Object));
2386 /* Spread the last arg we got. Its first element goes in
2387 the slot that it used to occupy, hence this value of I. */
2388 i = nargs - 1;
265a9e55 2389 while (!NILP (spread_arg))
db9f0278 2390 {
03699b14
KR
2391 funcall_args [i++] = XCAR (spread_arg);
2392 spread_arg = XCDR (spread_arg);
db9f0278 2393 }
a6e3fa71 2394
96d44c64
SM
2395 /* By convention, the caller needs to gcpro Ffuncall's args. */
2396 RETURN_UNGCPRO (Ffuncall (gcpro1.nvars, funcall_args));
db9f0278
JB
2397}
2398\f
ff936e53
SM
2399/* Run hook variables in various ways. */
2400
2401enum run_hooks_condition {to_completion, until_success, until_failure};
2901f1d1
SM
2402static Lisp_Object run_hook_with_args P_ ((int, Lisp_Object *,
2403 enum run_hooks_condition));
ff936e53 2404
8b5176cd 2405DEFUN ("run-hooks", Frun_hooks, Srun_hooks, 0, MANY, 0,
9f685258 2406 doc: /* Run each hook in HOOKS.
9dbc9081
PJ
2407Each argument should be a symbol, a hook variable.
2408These symbols are processed in the order specified.
2409If a hook symbol has a non-nil value, that value may be a function
2410or a list of functions to be called to run the hook.
2411If the value is a function, it is called with no arguments.
2412If it is a list, the elements are called, in order, with no arguments.
2413
9f685258
LK
2414Major modes should not use this function directly to run their mode
2415hook; they should use `run-mode-hooks' instead.
2416
72e85d5d
RS
2417Do not use `make-local-variable' to make a hook variable buffer-local.
2418Instead, use `add-hook' and specify t for the LOCAL argument.
9dbc9081
PJ
2419usage: (run-hooks &rest HOOKS) */)
2420 (nargs, args)
ff936e53
SM
2421 int nargs;
2422 Lisp_Object *args;
2423{
2424 Lisp_Object hook[1];
2425 register int i;
2426
2427 for (i = 0; i < nargs; i++)
2428 {
2429 hook[0] = args[i];
2430 run_hook_with_args (1, hook, to_completion);
2431 }
2432
2433 return Qnil;
2434}
177c0ea7 2435
a0d76c27 2436DEFUN ("run-hook-with-args", Frun_hook_with_args,
9dbc9081
PJ
2437 Srun_hook_with_args, 1, MANY, 0,
2438 doc: /* Run HOOK with the specified arguments ARGS.
2439HOOK should be a symbol, a hook variable. If HOOK has a non-nil
2440value, that value may be a function or a list of functions to be
2441called to run the hook. If the value is a function, it is called with
2442the given arguments and its return value is returned. If it is a list
2443of functions, those functions are called, in order,
2444with the given arguments ARGS.
d5e2c90c 2445It is best not to depend on the value returned by `run-hook-with-args',
9dbc9081
PJ
2446as that may change.
2447
72e85d5d
RS
2448Do not use `make-local-variable' to make a hook variable buffer-local.
2449Instead, use `add-hook' and specify t for the LOCAL argument.
9dbc9081
PJ
2450usage: (run-hook-with-args HOOK &rest ARGS) */)
2451 (nargs, args)
ff936e53
SM
2452 int nargs;
2453 Lisp_Object *args;
2454{
2455 return run_hook_with_args (nargs, args, to_completion);
2456}
2457
a0d76c27 2458DEFUN ("run-hook-with-args-until-success", Frun_hook_with_args_until_success,
9dbc9081
PJ
2459 Srun_hook_with_args_until_success, 1, MANY, 0,
2460 doc: /* Run HOOK with the specified arguments ARGS.
d5e2c90c
RS
2461HOOK should be a symbol, a hook variable. If HOOK has a non-nil
2462value, that value may be a function or a list of functions to be
2463called to run the hook. If the value is a function, it is called with
2464the given arguments and its return value is returned.
2465If it is a list of functions, those functions are called, in order,
2466with the given arguments ARGS, until one of them
9dbc9081 2467returns a non-nil value. Then we return that value.
d5e2c90c 2468However, if they all return nil, we return nil.
9dbc9081 2469
72e85d5d
RS
2470Do not use `make-local-variable' to make a hook variable buffer-local.
2471Instead, use `add-hook' and specify t for the LOCAL argument.
9dbc9081
PJ
2472usage: (run-hook-with-args-until-success HOOK &rest ARGS) */)
2473 (nargs, args)
b0b667cb
KH
2474 int nargs;
2475 Lisp_Object *args;
2476{
ff936e53
SM
2477 return run_hook_with_args (nargs, args, until_success);
2478}
2479
a0d76c27 2480DEFUN ("run-hook-with-args-until-failure", Frun_hook_with_args_until_failure,
9dbc9081
PJ
2481 Srun_hook_with_args_until_failure, 1, MANY, 0,
2482 doc: /* Run HOOK with the specified arguments ARGS.
d5e2c90c
RS
2483HOOK should be a symbol, a hook variable. If HOOK has a non-nil
2484value, that value may be a function or a list of functions to be
2485called to run the hook. If the value is a function, it is called with
2486the given arguments and its return value is returned.
2487If it is a list of functions, those functions are called, in order,
2488with the given arguments ARGS, until one of them returns nil.
2489Then we return nil. However, if they all return non-nil, we return non-nil.
9dbc9081 2490
72e85d5d
RS
2491Do not use `make-local-variable' to make a hook variable buffer-local.
2492Instead, use `add-hook' and specify t for the LOCAL argument.
9dbc9081
PJ
2493usage: (run-hook-with-args-until-failure HOOK &rest ARGS) */)
2494 (nargs, args)
ff936e53
SM
2495 int nargs;
2496 Lisp_Object *args;
2497{
2498 return run_hook_with_args (nargs, args, until_failure);
2499}
2500
c933ea05
RS
2501/* ARGS[0] should be a hook symbol.
2502 Call each of the functions in the hook value, passing each of them
2503 as arguments all the rest of ARGS (all NARGS - 1 elements).
2504 COND specifies a condition to test after each call
2505 to decide whether to stop.
2506 The caller (or its caller, etc) must gcpro all of ARGS,
2507 except that it isn't necessary to gcpro ARGS[0]. */
2508
2901f1d1 2509static Lisp_Object
ff936e53
SM
2510run_hook_with_args (nargs, args, cond)
2511 int nargs;
2512 Lisp_Object *args;
2513 enum run_hooks_condition cond;
2514{
2515 Lisp_Object sym, val, ret;
fada05d6
KH
2516 Lisp_Object globals;
2517 struct gcpro gcpro1, gcpro2, gcpro3;
b0b667cb 2518
f029ca5f
RS
2519 /* If we are dying or still initializing,
2520 don't do anything--it would probably crash if we tried. */
2521 if (NILP (Vrun_hooks))
caff32a7 2522 return Qnil;
f029ca5f 2523
b0b667cb 2524 sym = args[0];
aa681b51 2525 val = find_symbol_value (sym);
ff936e53
SM
2526 ret = (cond == until_failure ? Qt : Qnil);
2527
b0b667cb 2528 if (EQ (val, Qunbound) || NILP (val))
ff936e53 2529 return ret;
03699b14 2530 else if (!CONSP (val) || EQ (XCAR (val), Qlambda))
b0b667cb
KH
2531 {
2532 args[0] = val;
2533 return Ffuncall (nargs, args);
2534 }
2535 else
2536 {
fada05d6
KH
2537 globals = Qnil;
2538 GCPRO3 (sym, val, globals);
cb9d21f8 2539
ff936e53
SM
2540 for (;
2541 CONSP (val) && ((cond == to_completion)
2542 || (cond == until_success ? NILP (ret)
2543 : !NILP (ret)));
03699b14 2544 val = XCDR (val))
b0b667cb 2545 {
03699b14 2546 if (EQ (XCAR (val), Qt))
b0b667cb
KH
2547 {
2548 /* t indicates this hook has a local binding;
2549 it means to run the global binding too. */
b0b667cb 2550
ff936e53
SM
2551 for (globals = Fdefault_value (sym);
2552 CONSP (globals) && ((cond == to_completion)
2553 || (cond == until_success ? NILP (ret)
2554 : !NILP (ret)));
03699b14 2555 globals = XCDR (globals))
b0b667cb 2556 {
03699b14 2557 args[0] = XCAR (globals);
77d92e05
RS
2558 /* In a global value, t should not occur. If it does, we
2559 must ignore it to avoid an endless loop. */
2560 if (!EQ (args[0], Qt))
2561 ret = Ffuncall (nargs, args);
b0b667cb
KH
2562 }
2563 }
2564 else
2565 {
03699b14 2566 args[0] = XCAR (val);
ff936e53 2567 ret = Ffuncall (nargs, args);
b0b667cb
KH
2568 }
2569 }
cb9d21f8
RS
2570
2571 UNGCPRO;
ff936e53 2572 return ret;
b0b667cb
KH
2573 }
2574}
c933ea05
RS
2575
2576/* Run a hook symbol ARGS[0], but use FUNLIST instead of the actual
2577 present value of that symbol.
2578 Call each element of FUNLIST,
2579 passing each of them the rest of ARGS.
2580 The caller (or its caller, etc) must gcpro all of ARGS,
2581 except that it isn't necessary to gcpro ARGS[0]. */
2582
2583Lisp_Object
2584run_hook_list_with_args (funlist, nargs, args)
2585 Lisp_Object funlist;
2586 int nargs;
2587 Lisp_Object *args;
2588{
2589 Lisp_Object sym;
2590 Lisp_Object val;
fada05d6
KH
2591 Lisp_Object globals;
2592 struct gcpro gcpro1, gcpro2, gcpro3;
c933ea05
RS
2593
2594 sym = args[0];
fada05d6
KH
2595 globals = Qnil;
2596 GCPRO3 (sym, val, globals);
c933ea05 2597
03699b14 2598 for (val = funlist; CONSP (val); val = XCDR (val))
c933ea05 2599 {
03699b14 2600 if (EQ (XCAR (val), Qt))
c933ea05
RS
2601 {
2602 /* t indicates this hook has a local binding;
2603 it means to run the global binding too. */
c933ea05
RS
2604
2605 for (globals = Fdefault_value (sym);
2606 CONSP (globals);
03699b14 2607 globals = XCDR (globals))
c933ea05 2608 {
03699b14 2609 args[0] = XCAR (globals);
77d92e05
RS
2610 /* In a global value, t should not occur. If it does, we
2611 must ignore it to avoid an endless loop. */
2612 if (!EQ (args[0], Qt))
2613 Ffuncall (nargs, args);
c933ea05
RS
2614 }
2615 }
2616 else
2617 {
03699b14 2618 args[0] = XCAR (val);
c933ea05
RS
2619 Ffuncall (nargs, args);
2620 }
2621 }
2622 UNGCPRO;
2623 return Qnil;
2624}
7d48558f
RS
2625
2626/* Run the hook HOOK, giving each function the two args ARG1 and ARG2. */
2627
2628void
2629run_hook_with_args_2 (hook, arg1, arg2)
2630 Lisp_Object hook, arg1, arg2;
2631{
2632 Lisp_Object temp[3];
2633 temp[0] = hook;
2634 temp[1] = arg1;
2635 temp[2] = arg2;
2636
2637 Frun_hook_with_args (3, temp);
2638}
ff936e53 2639\f
db9f0278
JB
2640/* Apply fn to arg */
2641Lisp_Object
2642apply1 (fn, arg)
2643 Lisp_Object fn, arg;
2644{
a6e3fa71
JB
2645 struct gcpro gcpro1;
2646
2647 GCPRO1 (fn);
265a9e55 2648 if (NILP (arg))
a6e3fa71
JB
2649 RETURN_UNGCPRO (Ffuncall (1, &fn));
2650 gcpro1.nvars = 2;
db9f0278
JB
2651#ifdef NO_ARG_ARRAY
2652 {
2653 Lisp_Object args[2];
2654 args[0] = fn;
2655 args[1] = arg;
a6e3fa71
JB
2656 gcpro1.var = args;
2657 RETURN_UNGCPRO (Fapply (2, args));
db9f0278
JB
2658 }
2659#else /* not NO_ARG_ARRAY */
a6e3fa71 2660 RETURN_UNGCPRO (Fapply (2, &fn));
db9f0278
JB
2661#endif /* not NO_ARG_ARRAY */
2662}
2663
2664/* Call function fn on no arguments */
2665Lisp_Object
2666call0 (fn)
2667 Lisp_Object fn;
2668{
a6e3fa71
JB
2669 struct gcpro gcpro1;
2670
2671 GCPRO1 (fn);
2672 RETURN_UNGCPRO (Ffuncall (1, &fn));
db9f0278
JB
2673}
2674
15285f9f 2675/* Call function fn with 1 argument arg1 */
db9f0278
JB
2676/* ARGSUSED */
2677Lisp_Object
15285f9f
RS
2678call1 (fn, arg1)
2679 Lisp_Object fn, arg1;
db9f0278 2680{
a6e3fa71 2681 struct gcpro gcpro1;
db9f0278 2682#ifdef NO_ARG_ARRAY
177c0ea7 2683 Lisp_Object args[2];
a6e3fa71 2684
db9f0278 2685 args[0] = fn;
15285f9f 2686 args[1] = arg1;
a6e3fa71
JB
2687 GCPRO1 (args[0]);
2688 gcpro1.nvars = 2;
2689 RETURN_UNGCPRO (Ffuncall (2, args));
db9f0278 2690#else /* not NO_ARG_ARRAY */
a6e3fa71
JB
2691 GCPRO1 (fn);
2692 gcpro1.nvars = 2;
2693 RETURN_UNGCPRO (Ffuncall (2, &fn));
db9f0278
JB
2694#endif /* not NO_ARG_ARRAY */
2695}
2696
15285f9f 2697/* Call function fn with 2 arguments arg1, arg2 */
db9f0278
JB
2698/* ARGSUSED */
2699Lisp_Object
15285f9f
RS
2700call2 (fn, arg1, arg2)
2701 Lisp_Object fn, arg1, arg2;
db9f0278 2702{
a6e3fa71 2703 struct gcpro gcpro1;
db9f0278
JB
2704#ifdef NO_ARG_ARRAY
2705 Lisp_Object args[3];
2706 args[0] = fn;
15285f9f
RS
2707 args[1] = arg1;
2708 args[2] = arg2;
a6e3fa71
JB
2709 GCPRO1 (args[0]);
2710 gcpro1.nvars = 3;
2711 RETURN_UNGCPRO (Ffuncall (3, args));
db9f0278 2712#else /* not NO_ARG_ARRAY */
a6e3fa71
JB
2713 GCPRO1 (fn);
2714 gcpro1.nvars = 3;
2715 RETURN_UNGCPRO (Ffuncall (3, &fn));
db9f0278
JB
2716#endif /* not NO_ARG_ARRAY */
2717}
2718
15285f9f 2719/* Call function fn with 3 arguments arg1, arg2, arg3 */
db9f0278
JB
2720/* ARGSUSED */
2721Lisp_Object
15285f9f
RS
2722call3 (fn, arg1, arg2, arg3)
2723 Lisp_Object fn, arg1, arg2, arg3;
db9f0278 2724{
a6e3fa71 2725 struct gcpro gcpro1;
db9f0278
JB
2726#ifdef NO_ARG_ARRAY
2727 Lisp_Object args[4];
2728 args[0] = fn;
15285f9f
RS
2729 args[1] = arg1;
2730 args[2] = arg2;
2731 args[3] = arg3;
a6e3fa71
JB
2732 GCPRO1 (args[0]);
2733 gcpro1.nvars = 4;
2734 RETURN_UNGCPRO (Ffuncall (4, args));
db9f0278 2735#else /* not NO_ARG_ARRAY */
a6e3fa71
JB
2736 GCPRO1 (fn);
2737 gcpro1.nvars = 4;
2738 RETURN_UNGCPRO (Ffuncall (4, &fn));
db9f0278
JB
2739#endif /* not NO_ARG_ARRAY */
2740}
2741
15285f9f 2742/* Call function fn with 4 arguments arg1, arg2, arg3, arg4 */
a5a44b91
JB
2743/* ARGSUSED */
2744Lisp_Object
15285f9f
RS
2745call4 (fn, arg1, arg2, arg3, arg4)
2746 Lisp_Object fn, arg1, arg2, arg3, arg4;
a5a44b91
JB
2747{
2748 struct gcpro gcpro1;
2749#ifdef NO_ARG_ARRAY
2750 Lisp_Object args[5];
2751 args[0] = fn;
15285f9f
RS
2752 args[1] = arg1;
2753 args[2] = arg2;
2754 args[3] = arg3;
2755 args[4] = arg4;
a5a44b91
JB
2756 GCPRO1 (args[0]);
2757 gcpro1.nvars = 5;
2758 RETURN_UNGCPRO (Ffuncall (5, args));
2759#else /* not NO_ARG_ARRAY */
2760 GCPRO1 (fn);
2761 gcpro1.nvars = 5;
2762 RETURN_UNGCPRO (Ffuncall (5, &fn));
2763#endif /* not NO_ARG_ARRAY */
2764}
2765
15285f9f
RS
2766/* Call function fn with 5 arguments arg1, arg2, arg3, arg4, arg5 */
2767/* ARGSUSED */
2768Lisp_Object
2769call5 (fn, arg1, arg2, arg3, arg4, arg5)
2770 Lisp_Object fn, arg1, arg2, arg3, arg4, arg5;
2771{
2772 struct gcpro gcpro1;
2773#ifdef NO_ARG_ARRAY
2774 Lisp_Object args[6];
2775 args[0] = fn;
2776 args[1] = arg1;
2777 args[2] = arg2;
2778 args[3] = arg3;
2779 args[4] = arg4;
2780 args[5] = arg5;
2781 GCPRO1 (args[0]);
2782 gcpro1.nvars = 6;
2783 RETURN_UNGCPRO (Ffuncall (6, args));
2784#else /* not NO_ARG_ARRAY */
2785 GCPRO1 (fn);
2786 gcpro1.nvars = 6;
2787 RETURN_UNGCPRO (Ffuncall (6, &fn));
2788#endif /* not NO_ARG_ARRAY */
2789}
2790
2791/* Call function fn with 6 arguments arg1, arg2, arg3, arg4, arg5, arg6 */
2792/* ARGSUSED */
2793Lisp_Object
2794call6 (fn, arg1, arg2, arg3, arg4, arg5, arg6)
2795 Lisp_Object fn, arg1, arg2, arg3, arg4, arg5, arg6;
2796{
2797 struct gcpro gcpro1;
2798#ifdef NO_ARG_ARRAY
2799 Lisp_Object args[7];
2800 args[0] = fn;
2801 args[1] = arg1;
2802 args[2] = arg2;
2803 args[3] = arg3;
2804 args[4] = arg4;
2805 args[5] = arg5;
2806 args[6] = arg6;
2807 GCPRO1 (args[0]);
2808 gcpro1.nvars = 7;
2809 RETURN_UNGCPRO (Ffuncall (7, args));
2810#else /* not NO_ARG_ARRAY */
2811 GCPRO1 (fn);
2812 gcpro1.nvars = 7;
2813 RETURN_UNGCPRO (Ffuncall (7, &fn));
2814#endif /* not NO_ARG_ARRAY */
2815}
2816
6c2ef893
RS
2817/* The caller should GCPRO all the elements of ARGS. */
2818
db9f0278 2819DEFUN ("funcall", Ffuncall, Sfuncall, 1, MANY, 0,
9dbc9081
PJ
2820 doc: /* Call first argument as a function, passing remaining arguments to it.
2821Return the value that function returns.
2822Thus, (funcall 'cons 'x 'y) returns (x . y).
2823usage: (funcall FUNCTION &rest ARGUMENTS) */)
2824 (nargs, args)
db9f0278
JB
2825 int nargs;
2826 Lisp_Object *args;
2827{
2828 Lisp_Object fun;
2829 Lisp_Object funcar;
2830 int numargs = nargs - 1;
2831 Lisp_Object lisp_numargs;
2832 Lisp_Object val;
2833 struct backtrace backtrace;
2834 register Lisp_Object *internal_args;
2835 register int i;
2836
2837 QUIT;
ee830945
RS
2838 if ((consing_since_gc > gc_cons_threshold
2839 && consing_since_gc > gc_relative_threshold)
2840 ||
2841 (!NILP (Vmemory_full) && consing_since_gc > memory_full_cons_threshold))
a6e3fa71 2842 Fgarbage_collect ();
db9f0278
JB
2843
2844 if (++lisp_eval_depth > max_lisp_eval_depth)
2845 {
2846 if (max_lisp_eval_depth < 100)
2847 max_lisp_eval_depth = 100;
2848 if (lisp_eval_depth > max_lisp_eval_depth)
921baa95 2849 error ("Lisp nesting exceeds `max-lisp-eval-depth'");
db9f0278
JB
2850 }
2851
2852 backtrace.next = backtrace_list;
2853 backtrace_list = &backtrace;
2854 backtrace.function = &args[0];
2855 backtrace.args = &args[1];
2856 backtrace.nargs = nargs - 1;
2857 backtrace.evalargs = 0;
2858 backtrace.debug_on_exit = 0;
2859
2860 if (debug_on_next_call)
2861 do_debug_on_call (Qlambda);
2862
fff3ff9c
KS
2863 CHECK_CONS_LIST ();
2864
db9f0278
JB
2865 retry:
2866
2867 fun = args[0];
ffd56f97 2868
a7f96a35 2869 fun = Findirect_function (fun, Qnil);
db9f0278 2870
90165123 2871 if (SUBRP (fun))
db9f0278 2872 {
fff3ff9c 2873 if (numargs < XSUBR (fun)->min_args
db9f0278
JB
2874 || (XSUBR (fun)->max_args >= 0 && XSUBR (fun)->max_args < numargs))
2875 {
a631e24c 2876 XSETFASTINT (lisp_numargs, numargs);
db9f0278
JB
2877 return Fsignal (Qwrong_number_of_arguments, Fcons (fun, Fcons (lisp_numargs, Qnil)));
2878 }
2879
2880 if (XSUBR (fun)->max_args == UNEVALLED)
2881 return Fsignal (Qinvalid_function, Fcons (fun, Qnil));
2882
2883 if (XSUBR (fun)->max_args == MANY)
2884 {
2885 val = (*XSUBR (fun)->function) (numargs, args + 1);
2886 goto done;
2887 }
2888
2889 if (XSUBR (fun)->max_args > numargs)
2890 {
2891 internal_args = (Lisp_Object *) alloca (XSUBR (fun)->max_args * sizeof (Lisp_Object));
2892 bcopy (args + 1, internal_args, numargs * sizeof (Lisp_Object));
2893 for (i = numargs; i < XSUBR (fun)->max_args; i++)
2894 internal_args[i] = Qnil;
2895 }
2896 else
2897 internal_args = args + 1;
2898 switch (XSUBR (fun)->max_args)
2899 {
2900 case 0:
2901 val = (*XSUBR (fun)->function) ();
2902 goto done;
2903 case 1:
2904 val = (*XSUBR (fun)->function) (internal_args[0]);
2905 goto done;
2906 case 2:
82fc29a1 2907 val = (*XSUBR (fun)->function) (internal_args[0], internal_args[1]);
db9f0278
JB
2908 goto done;
2909 case 3:
2910 val = (*XSUBR (fun)->function) (internal_args[0], internal_args[1],
2911 internal_args[2]);
2912 goto done;
2913 case 4:
2914 val = (*XSUBR (fun)->function) (internal_args[0], internal_args[1],
82fc29a1 2915 internal_args[2], internal_args[3]);
db9f0278
JB
2916 goto done;
2917 case 5:
2918 val = (*XSUBR (fun)->function) (internal_args[0], internal_args[1],
2919 internal_args[2], internal_args[3],
2920 internal_args[4]);
2921 goto done;
2922 case 6:
2923 val = (*XSUBR (fun)->function) (internal_args[0], internal_args[1],
2924 internal_args[2], internal_args[3],
2925 internal_args[4], internal_args[5]);
2926 goto done;
15c65264
RS
2927 case 7:
2928 val = (*XSUBR (fun)->function) (internal_args[0], internal_args[1],
2929 internal_args[2], internal_args[3],
2930 internal_args[4], internal_args[5],
2931 internal_args[6]);
2932 goto done;
db9f0278 2933
166c822d
KH
2934 case 8:
2935 val = (*XSUBR (fun)->function) (internal_args[0], internal_args[1],
2936 internal_args[2], internal_args[3],
2937 internal_args[4], internal_args[5],
2938 internal_args[6], internal_args[7]);
2939 goto done;
2940
db9f0278 2941 default:
70ee42f7 2942
166c822d 2943 /* If a subr takes more than 8 arguments without using MANY
177c0ea7 2944 or UNEVALLED, we need to extend this function to support it.
70ee42f7
JB
2945 Until this is done, there is no way to call the function. */
2946 abort ();
db9f0278
JB
2947 }
2948 }
90165123 2949 if (COMPILEDP (fun))
db9f0278
JB
2950 val = funcall_lambda (fun, numargs, args + 1);
2951 else
2952 {
2953 if (!CONSP (fun))
2954 return Fsignal (Qinvalid_function, Fcons (fun, Qnil));
2955 funcar = Fcar (fun);
90165123 2956 if (!SYMBOLP (funcar))
db9f0278
JB
2957 return Fsignal (Qinvalid_function, Fcons (fun, Qnil));
2958 if (EQ (funcar, Qlambda))
2959 val = funcall_lambda (fun, numargs, args + 1);
db9f0278
JB
2960 else if (EQ (funcar, Qautoload))
2961 {
2962 do_autoload (fun, args[0]);
fff3ff9c 2963 CHECK_CONS_LIST ();
db9f0278
JB
2964 goto retry;
2965 }
2966 else
2967 return Fsignal (Qinvalid_function, Fcons (fun, Qnil));
2968 }
2969 done:
c1788fbc 2970 CHECK_CONS_LIST ();
db9f0278
JB
2971 lisp_eval_depth--;
2972 if (backtrace.debug_on_exit)
2973 val = call_debugger (Fcons (Qexit, Fcons (val, Qnil)));
2974 backtrace_list = backtrace.next;
2975 return val;
2976}
2977\f
2978Lisp_Object
2979apply_lambda (fun, args, eval_flag)
2980 Lisp_Object fun, args;
2981 int eval_flag;
2982{
2983 Lisp_Object args_left;
2984 Lisp_Object numargs;
2985 register Lisp_Object *arg_vector;
2986 struct gcpro gcpro1, gcpro2, gcpro3;
2987 register int i;
2988 register Lisp_Object tem;
2989
2990 numargs = Flength (args);
2991 arg_vector = (Lisp_Object *) alloca (XINT (numargs) * sizeof (Lisp_Object));
2992 args_left = args;
2993
2994 GCPRO3 (*arg_vector, args_left, fun);
2995 gcpro1.nvars = 0;
2996
2997 for (i = 0; i < XINT (numargs);)
2998 {
2999 tem = Fcar (args_left), args_left = Fcdr (args_left);
3000 if (eval_flag) tem = Feval (tem);
3001 arg_vector[i++] = tem;
3002 gcpro1.nvars = i;
3003 }
3004
3005 UNGCPRO;
3006
3007 if (eval_flag)
3008 {
3009 backtrace_list->args = arg_vector;
3010 backtrace_list->nargs = i;
3011 }
3012 backtrace_list->evalargs = 0;
3013 tem = funcall_lambda (fun, XINT (numargs), arg_vector);
3014
3015 /* Do the debug-on-exit now, while arg_vector still exists. */
3016 if (backtrace_list->debug_on_exit)
3017 tem = call_debugger (Fcons (Qexit, Fcons (tem, Qnil)));
3018 /* Don't do it again when we return to eval. */
3019 backtrace_list->debug_on_exit = 0;
3020 return tem;
3021}
3022
3023/* Apply a Lisp function FUN to the NARGS evaluated arguments in ARG_VECTOR
3024 and return the result of evaluation.
3025 FUN must be either a lambda-expression or a compiled-code object. */
3026
2901f1d1 3027static Lisp_Object
db9f0278
JB
3028funcall_lambda (fun, nargs, arg_vector)
3029 Lisp_Object fun;
3030 int nargs;
3031 register Lisp_Object *arg_vector;
3032{
9ab90667 3033 Lisp_Object val, syms_left, next;
aed13378 3034 int count = SPECPDL_INDEX ();
9ab90667 3035 int i, optional, rest;
db9f0278 3036
90165123 3037 if (CONSP (fun))
9ab90667
GM
3038 {
3039 syms_left = XCDR (fun);
3040 if (CONSP (syms_left))
3041 syms_left = XCAR (syms_left);
3042 else
3043 return Fsignal (Qinvalid_function, Fcons (fun, Qnil));
3044 }
90165123 3045 else if (COMPILEDP (fun))
845975f5 3046 syms_left = AREF (fun, COMPILED_ARGLIST);
9ab90667
GM
3047 else
3048 abort ();
db9f0278 3049
9ab90667
GM
3050 i = optional = rest = 0;
3051 for (; CONSP (syms_left); syms_left = XCDR (syms_left))
db9f0278
JB
3052 {
3053 QUIT;
177c0ea7 3054
9ab90667 3055 next = XCAR (syms_left);
90165123 3056 while (!SYMBOLP (next))
9ffa21d4 3057 next = Fsignal (Qinvalid_function, Fcons (fun, Qnil));
177c0ea7 3058
db9f0278
JB
3059 if (EQ (next, Qand_rest))
3060 rest = 1;
3061 else if (EQ (next, Qand_optional))
3062 optional = 1;
3063 else if (rest)
3064 {
9ffa21d4 3065 specbind (next, Flist (nargs - i, &arg_vector[i]));
db9f0278
JB
3066 i = nargs;
3067 }
3068 else if (i < nargs)
9ab90667 3069 specbind (next, arg_vector[i++]);
db9f0278 3070 else if (!optional)
9ab90667
GM
3071 return Fsignal (Qwrong_number_of_arguments,
3072 Fcons (fun, Fcons (make_number (nargs), Qnil)));
db9f0278
JB
3073 else
3074 specbind (next, Qnil);
3075 }
3076
9ab90667
GM
3077 if (!NILP (syms_left))
3078 return Fsignal (Qinvalid_function, Fcons (fun, Qnil));
3079 else if (i < nargs)
3080 return Fsignal (Qwrong_number_of_arguments,
3081 Fcons (fun, Fcons (make_number (nargs), Qnil)));
db9f0278 3082
90165123 3083 if (CONSP (fun))
9ab90667 3084 val = Fprogn (XCDR (XCDR (fun)));
db9f0278 3085 else
ca248607
RS
3086 {
3087 /* If we have not actually read the bytecode string
3088 and constants vector yet, fetch them from the file. */
845975f5 3089 if (CONSP (AREF (fun, COMPILED_BYTECODE)))
661c7d6e 3090 Ffetch_bytecode (fun);
845975f5
SM
3091 val = Fbyte_code (AREF (fun, COMPILED_BYTECODE),
3092 AREF (fun, COMPILED_CONSTANTS),
3093 AREF (fun, COMPILED_STACK_DEPTH));
ca248607 3094 }
177c0ea7 3095
db9f0278
JB
3096 return unbind_to (count, val);
3097}
661c7d6e
KH
3098
3099DEFUN ("fetch-bytecode", Ffetch_bytecode, Sfetch_bytecode,
9dbc9081
PJ
3100 1, 1, 0,
3101 doc: /* If byte-compiled OBJECT is lazy-loaded, fetch it now. */)
3102 (object)
661c7d6e
KH
3103 Lisp_Object object;
3104{
3105 Lisp_Object tem;
3106
845975f5 3107 if (COMPILEDP (object) && CONSP (AREF (object, COMPILED_BYTECODE)))
661c7d6e 3108 {
845975f5 3109 tem = read_doc_string (AREF (object, COMPILED_BYTECODE));
5bbdb090 3110 if (!CONSP (tem))
845975f5
SM
3111 {
3112 tem = AREF (object, COMPILED_BYTECODE);
3113 if (CONSP (tem) && STRINGP (XCAR (tem)))
d5db4077 3114 error ("Invalid byte code in %s", SDATA (XCAR (tem)));
845975f5
SM
3115 else
3116 error ("Invalid byte code");
3117 }
3118 AREF (object, COMPILED_BYTECODE) = XCAR (tem);
3119 AREF (object, COMPILED_CONSTANTS) = XCDR (tem);
661c7d6e
KH
3120 }
3121 return object;
3122}
db9f0278
JB
3123\f
3124void
3125grow_specpdl ()
3126{
aed13378 3127 register int count = SPECPDL_INDEX ();
db9f0278
JB
3128 if (specpdl_size >= max_specpdl_size)
3129 {
3130 if (max_specpdl_size < 400)
3131 max_specpdl_size = 400;
3132 if (specpdl_size >= max_specpdl_size)
9f5903bb
RS
3133 Fsignal (Qerror,
3134 Fcons (build_string ("Variable binding depth exceeds max-specpdl-size"), Qnil));
db9f0278
JB
3135 }
3136 specpdl_size *= 2;
3137 if (specpdl_size > max_specpdl_size)
3138 specpdl_size = max_specpdl_size;
3139 specpdl = (struct specbinding *) xrealloc (specpdl, specpdl_size * sizeof (struct specbinding));
3140 specpdl_ptr = specpdl + count;
3141}
3142
3143void
3144specbind (symbol, value)
3145 Lisp_Object symbol, value;
3146{
db9f0278 3147 Lisp_Object ovalue;
19cebf5a 3148 Lisp_Object valcontents;
db9f0278 3149
b7826503 3150 CHECK_SYMBOL (symbol);
db9f0278
JB
3151 if (specpdl_ptr == specpdl + specpdl_size)
3152 grow_specpdl ();
719177b3 3153
19cebf5a
GM
3154 /* The most common case is that of a non-constant symbol with a
3155 trivial value. Make that as fast as we can. */
3156 valcontents = SYMBOL_VALUE (symbol);
3157 if (!MISCP (valcontents) && !SYMBOL_CONSTANT_P (symbol))
719177b3 3158 {
9ab90667 3159 specpdl_ptr->symbol = symbol;
19cebf5a 3160 specpdl_ptr->old_value = valcontents;
9ab90667
GM
3161 specpdl_ptr->func = NULL;
3162 ++specpdl_ptr;
19cebf5a 3163 SET_SYMBOL_VALUE (symbol, value);
719177b3
RS
3164 }
3165 else
9ab90667 3166 {
eb700b82 3167 Lisp_Object valcontents;
177c0ea7 3168
9ab90667
GM
3169 ovalue = find_symbol_value (symbol);
3170 specpdl_ptr->func = 0;
3171 specpdl_ptr->old_value = ovalue;
719177b3 3172
eb700b82
GM
3173 valcontents = XSYMBOL (symbol)->value;
3174
3175 if (BUFFER_LOCAL_VALUEP (valcontents)
3176 || SOME_BUFFER_LOCAL_VALUEP (valcontents)
3177 || BUFFER_OBJFWDP (valcontents))
9ab90667 3178 {
0967b4b0
GM
3179 Lisp_Object where, current_buffer;
3180
3181 current_buffer = Fcurrent_buffer ();
177c0ea7 3182
9ab90667 3183 /* For a local variable, record both the symbol and which
eb700b82
GM
3184 buffer's or frame's value we are saving. */
3185 if (!NILP (Flocal_variable_p (symbol, Qnil)))
0967b4b0 3186 where = current_buffer;
eb700b82
GM
3187 else if (!BUFFER_OBJFWDP (valcontents)
3188 && XBUFFER_LOCAL_VALUE (valcontents)->found_for_frame)
3189 where = XBUFFER_LOCAL_VALUE (valcontents)->frame;
3190 else
3191 where = Qnil;
3192
3193 /* We're not using the `unused' slot in the specbinding
3194 structure because this would mean we have to do more
3195 work for simple variables. */
0967b4b0 3196 specpdl_ptr->symbol = Fcons (symbol, Fcons (where, current_buffer));
06bccf8e
GM
3197
3198 /* If SYMBOL is a per-buffer variable which doesn't have a
3199 buffer-local value here, make the `let' change the global
3200 value by changing the value of SYMBOL in all buffers not
3201 having their own value. This is consistent with what
3202 happens with other buffer-local variables. */
eb700b82
GM
3203 if (NILP (where)
3204 && BUFFER_OBJFWDP (valcontents))
06bccf8e
GM
3205 {
3206 ++specpdl_ptr;
3207 Fset_default (symbol, value);
3208 return;
3209 }
9ab90667
GM
3210 }
3211 else
3212 specpdl_ptr->symbol = symbol;
3213
3214 specpdl_ptr++;
3215 if (BUFFER_OBJFWDP (ovalue) || KBOARD_OBJFWDP (ovalue))
eae0e123 3216 store_symval_forwarding (symbol, ovalue, value, NULL);
9ab90667
GM
3217 else
3218 set_internal (symbol, value, 0, 1);
3219 }
db9f0278
JB
3220}
3221
3222void
3223record_unwind_protect (function, arg)
1d159538 3224 Lisp_Object (*function) P_ ((Lisp_Object));
db9f0278
JB
3225 Lisp_Object arg;
3226{
9ba8e10d
CY
3227 eassert (!handling_signal);
3228
db9f0278
JB
3229 if (specpdl_ptr == specpdl + specpdl_size)
3230 grow_specpdl ();
3231 specpdl_ptr->func = function;
3232 specpdl_ptr->symbol = Qnil;
3233 specpdl_ptr->old_value = arg;
3234 specpdl_ptr++;
3235}
3236
3237Lisp_Object
3238unbind_to (count, value)
3239 int count;
3240 Lisp_Object value;
3241{
5a073f50
KS
3242 Lisp_Object quitf = Vquit_flag;
3243 struct gcpro gcpro1, gcpro2;
db9f0278 3244
5a073f50 3245 GCPRO2 (value, quitf);
db9f0278
JB
3246 Vquit_flag = Qnil;
3247
3248 while (specpdl_ptr != specpdl + count)
3249 {
611a8f8c
RS
3250 /* Copy the binding, and decrement specpdl_ptr, before we do
3251 the work to unbind it. We decrement first
3252 so that an error in unbinding won't try to unbind
3253 the same entry again, and we copy the binding first
3254 in case more bindings are made during some of the code we run. */
eb700b82 3255
45f266dc
DL
3256 struct specbinding this_binding;
3257 this_binding = *--specpdl_ptr;
611a8f8c
RS
3258
3259 if (this_binding.func != 0)
3260 (*this_binding.func) (this_binding.old_value);
0967b4b0
GM
3261 /* If the symbol is a list, it is really (SYMBOL WHERE
3262 . CURRENT-BUFFER) where WHERE is either nil, a buffer, or a
3263 frame. If WHERE is a buffer or frame, this indicates we
1b1acc13
PJ
3264 bound a variable that had a buffer-local or frame-local
3265 binding. WHERE nil means that the variable had the default
0967b4b0
GM
3266 value when it was bound. CURRENT-BUFFER is the buffer that
3267 was current when the variable was bound. */
611a8f8c 3268 else if (CONSP (this_binding.symbol))
719177b3 3269 {
eb700b82 3270 Lisp_Object symbol, where;
719177b3 3271
611a8f8c
RS
3272 symbol = XCAR (this_binding.symbol);
3273 where = XCAR (XCDR (this_binding.symbol));
719177b3 3274
eb700b82 3275 if (NILP (where))
611a8f8c 3276 Fset_default (symbol, this_binding.old_value);
eb700b82 3277 else if (BUFFERP (where))
611a8f8c 3278 set_internal (symbol, this_binding.old_value, XBUFFER (where), 1);
177c0ea7 3279 else
611a8f8c 3280 set_internal (symbol, this_binding.old_value, NULL, 1);
719177b3 3281 }
db9f0278 3282 else
9ab90667
GM
3283 {
3284 /* If variable has a trivial value (no forwarding), we can
3285 just set it. No need to check for constant symbols here,
3286 since that was already done by specbind. */
611a8f8c
RS
3287 if (!MISCP (SYMBOL_VALUE (this_binding.symbol)))
3288 SET_SYMBOL_VALUE (this_binding.symbol, this_binding.old_value);
9ab90667 3289 else
611a8f8c 3290 set_internal (this_binding.symbol, this_binding.old_value, 0, 1);
9ab90667 3291 }
db9f0278 3292 }
177c0ea7 3293
5a073f50
KS
3294 if (NILP (Vquit_flag) && !NILP (quitf))
3295 Vquit_flag = quitf;
db9f0278
JB
3296
3297 UNGCPRO;
db9f0278
JB
3298 return value;
3299}
3300\f
db9f0278 3301DEFUN ("backtrace-debug", Fbacktrace_debug, Sbacktrace_debug, 2, 2, 0,
9dbc9081
PJ
3302 doc: /* Set the debug-on-exit flag of eval frame LEVEL levels down to FLAG.
3303The debugger is entered when that frame exits, if the flag is non-nil. */)
3304 (level, flag)
db9f0278
JB
3305 Lisp_Object level, flag;
3306{
3307 register struct backtrace *backlist = backtrace_list;
3308 register int i;
3309
b7826503 3310 CHECK_NUMBER (level);
db9f0278
JB
3311
3312 for (i = 0; backlist && i < XINT (level); i++)
3313 {
3314 backlist = backlist->next;
3315 }
3316
3317 if (backlist)
265a9e55 3318 backlist->debug_on_exit = !NILP (flag);
db9f0278
JB
3319
3320 return flag;
3321}
3322
3323DEFUN ("backtrace", Fbacktrace, Sbacktrace, 0, 0, "",
9dbc9081
PJ
3324 doc: /* Print a trace of Lisp function calls currently active.
3325Output stream used is value of `standard-output'. */)
3326 ()
db9f0278
JB
3327{
3328 register struct backtrace *backlist = backtrace_list;
3329 register int i;
3330 Lisp_Object tail;
3331 Lisp_Object tem;
3332 extern Lisp_Object Vprint_level;
3333 struct gcpro gcpro1;
3334
a631e24c 3335 XSETFASTINT (Vprint_level, 3);
db9f0278
JB
3336
3337 tail = Qnil;
3338 GCPRO1 (tail);
3339
3340 while (backlist)
3341 {
3342 write_string (backlist->debug_on_exit ? "* " : " ", 2);
3343 if (backlist->nargs == UNEVALLED)
3344 {
3345 Fprin1 (Fcons (*backlist->function, *backlist->args), Qnil);
b6703b02 3346 write_string ("\n", -1);
db9f0278
JB
3347 }
3348 else
3349 {
3350 tem = *backlist->function;
3351 Fprin1 (tem, Qnil); /* This can QUIT */
3352 write_string ("(", -1);
3353 if (backlist->nargs == MANY)
3354 {
3355 for (tail = *backlist->args, i = 0;
265a9e55 3356 !NILP (tail);
db9f0278
JB
3357 tail = Fcdr (tail), i++)
3358 {
3359 if (i) write_string (" ", -1);
3360 Fprin1 (Fcar (tail), Qnil);
3361 }
3362 }
3363 else
3364 {
3365 for (i = 0; i < backlist->nargs; i++)
3366 {
3367 if (i) write_string (" ", -1);
3368 Fprin1 (backlist->args[i], Qnil);
3369 }
3370 }
b6703b02 3371 write_string (")\n", -1);
db9f0278 3372 }
db9f0278
JB
3373 backlist = backlist->next;
3374 }
3375
3376 Vprint_level = Qnil;
3377 UNGCPRO;
3378 return Qnil;
3379}
3380
17401c97 3381DEFUN ("backtrace-frame", Fbacktrace_frame, Sbacktrace_frame, 1, 1, NULL,
9dbc9081
PJ
3382 doc: /* Return the function and arguments NFRAMES up from current execution point.
3383If that frame has not evaluated the arguments yet (or is a special form),
3384the value is (nil FUNCTION ARG-FORMS...).
3385If that frame has evaluated its arguments and called its function already,
3386the value is (t FUNCTION ARG-VALUES...).
3387A &rest arg is represented as the tail of the list ARG-VALUES.
3388FUNCTION is whatever was supplied as car of evaluated list,
3389or a lambda expression for macro calls.
3390If NFRAMES is more than the number of frames, the value is nil. */)
3391 (nframes)
db9f0278
JB
3392 Lisp_Object nframes;
3393{
3394 register struct backtrace *backlist = backtrace_list;
3395 register int i;
3396 Lisp_Object tem;
3397
b7826503 3398 CHECK_NATNUM (nframes);
db9f0278
JB
3399
3400 /* Find the frame requested. */
b6703b02 3401 for (i = 0; backlist && i < XFASTINT (nframes); i++)
db9f0278
JB
3402 backlist = backlist->next;
3403
3404 if (!backlist)
3405 return Qnil;
3406 if (backlist->nargs == UNEVALLED)
3407 return Fcons (Qnil, Fcons (*backlist->function, *backlist->args));
3408 else
3409 {
3410 if (backlist->nargs == MANY)
3411 tem = *backlist->args;
3412 else
3413 tem = Flist (backlist->nargs, backlist->args);
3414
3415 return Fcons (Qt, Fcons (*backlist->function, tem));
3416 }
3417}
a2ff3819 3418
db9f0278 3419\f
4ce0541e
SM
3420void
3421mark_backtrace ()
3422{
3423 register struct backtrace *backlist;
3424 register int i;
3425
3426 for (backlist = backtrace_list; backlist; backlist = backlist->next)
3427 {
3428 mark_object (*backlist->function);
3429
3430 if (backlist->nargs == UNEVALLED || backlist->nargs == MANY)
3431 i = 0;
3432 else
3433 i = backlist->nargs - 1;
3434 for (; i >= 0; i--)
3435 mark_object (backlist->args[i]);
3436 }
3437}
3438
dfcf069d 3439void
db9f0278
JB
3440syms_of_eval ()
3441{
3442 DEFVAR_INT ("max-specpdl-size", &max_specpdl_size,
82fc29a1 3443 doc: /* *Limit on number of Lisp variable bindings and `unwind-protect's.
9f5903bb 3444If Lisp code tries to increase the total number past this amount,
2520dc0c
RS
3445an error is signaled.
3446You can safely use a value considerably larger than the default value,
3447if that proves inconveniently small. However, if you increase it too far,
3448Emacs could run out of memory trying to make the stack bigger. */);
db9f0278
JB
3449
3450 DEFVAR_INT ("max-lisp-eval-depth", &max_lisp_eval_depth,
9dbc9081 3451 doc: /* *Limit on depth in `eval', `apply' and `funcall' before error.
2520dc0c
RS
3452
3453This limit serves to catch infinite recursions for you before they cause
9dbc9081
PJ
3454actual stack overflow in C, which would be fatal for Emacs.
3455You can safely make it considerably larger than its default value,
2520dc0c
RS
3456if that proves inconveniently small. However, if you increase it too far,
3457Emacs could overflow the real C stack, and crash. */);
db9f0278
JB
3458
3459 DEFVAR_LISP ("quit-flag", &Vquit_flag,
9dbc9081 3460 doc: /* Non-nil causes `eval' to abort, unless `inhibit-quit' is non-nil.
42ed718e
RS
3461If the value is t, that means do an ordinary quit.
3462If the value equals `throw-on-input', that means quit by throwing
3463to the tag specified in `throw-on-input'; it's for handling `while-no-input'.
3464Typing C-g sets `quit-flag' to t, regardless of `inhibit-quit',
3465but `inhibit-quit' non-nil prevents anything from taking notice of that. */);
db9f0278
JB
3466 Vquit_flag = Qnil;
3467
3468 DEFVAR_LISP ("inhibit-quit", &Vinhibit_quit,
9dbc9081
PJ
3469 doc: /* Non-nil inhibits C-g quitting from happening immediately.
3470Note that `quit-flag' will still be set by typing C-g,
3471so a quit will be signaled as soon as `inhibit-quit' is nil.
3472To prevent this happening, set `quit-flag' to nil
3473before making `inhibit-quit' nil. */);
db9f0278
JB
3474 Vinhibit_quit = Qnil;
3475
ad236261
JB
3476 Qinhibit_quit = intern ("inhibit-quit");
3477 staticpro (&Qinhibit_quit);
3478
db9f0278
JB
3479 Qautoload = intern ("autoload");
3480 staticpro (&Qautoload);
3481
3482 Qdebug_on_error = intern ("debug-on-error");
3483 staticpro (&Qdebug_on_error);
3484
3485 Qmacro = intern ("macro");
3486 staticpro (&Qmacro);
3487
d6edd563
GM
3488 Qdeclare = intern ("declare");
3489 staticpro (&Qdeclare);
177c0ea7 3490
db9f0278
JB
3491 /* Note that the process handling also uses Qexit, but we don't want
3492 to staticpro it twice, so we just do it here. */
3493 Qexit = intern ("exit");
3494 staticpro (&Qexit);
3495
3496 Qinteractive = intern ("interactive");
3497 staticpro (&Qinteractive);
3498
3499 Qcommandp = intern ("commandp");
3500 staticpro (&Qcommandp);
3501
3502 Qdefun = intern ("defun");
3503 staticpro (&Qdefun);
3504
3505 Qand_rest = intern ("&rest");
3506 staticpro (&Qand_rest);
3507
3508 Qand_optional = intern ("&optional");
3509 staticpro (&Qand_optional);
3510
128c0f66 3511 DEFVAR_LISP ("stack-trace-on-error", &Vstack_trace_on_error,
704788b3
RS
3512 doc: /* *Non-nil means errors display a backtrace buffer.
3513More precisely, this happens for any error that is handled
3514by the editor command loop.
9dbc9081
PJ
3515If the value is a list, an error only means to display a backtrace
3516if one of its condition symbols appears in the list. */);
128c0f66 3517 Vstack_trace_on_error = Qnil;
db9f0278 3518
128c0f66 3519 DEFVAR_LISP ("debug-on-error", &Vdebug_on_error,
9dbc9081
PJ
3520 doc: /* *Non-nil means enter debugger if an error is signaled.
3521Does not apply to errors handled by `condition-case' or those
3522matched by `debug-ignored-errors'.
3523If the value is a list, an error only means to enter the debugger
3524if one of its condition symbols appears in the list.
3525When you evaluate an expression interactively, this variable
3526is temporarily non-nil if `eval-expression-debug-on-error' is non-nil.
3527See also variable `debug-on-quit'. */);
128c0f66 3528 Vdebug_on_error = Qnil;
db9f0278 3529
fc950e09 3530 DEFVAR_LISP ("debug-ignored-errors", &Vdebug_ignored_errors,
9dbc9081
PJ
3531 doc: /* *List of errors for which the debugger should not be called.
3532Each element may be a condition-name or a regexp that matches error messages.
3533If any element applies to a given error, that error skips the debugger
3534and just returns to top level.
3535This overrides the variable `debug-on-error'.
3536It does not apply to errors handled by `condition-case'. */);
fc950e09
KH
3537 Vdebug_ignored_errors = Qnil;
3538
db9f0278 3539 DEFVAR_BOOL ("debug-on-quit", &debug_on_quit,
82fc29a1
JB
3540 doc: /* *Non-nil means enter debugger if quit is signaled (C-g, for example).
3541Does not apply if quit is handled by a `condition-case'. */);
db9f0278
JB
3542 debug_on_quit = 0;
3543
3544 DEFVAR_BOOL ("debug-on-next-call", &debug_on_next_call,
9dbc9081 3545 doc: /* Non-nil means enter debugger before next `eval', `apply' or `funcall'. */);
db9f0278 3546
556d7314 3547 DEFVAR_BOOL ("debugger-may-continue", &debugger_may_continue,
9dbc9081
PJ
3548 doc: /* Non-nil means debugger may continue execution.
3549This is nil when the debugger is called under circumstances where it
3550might not be safe to continue. */);
dac204bc 3551 debugger_may_continue = 1;
556d7314 3552
db9f0278 3553 DEFVAR_LISP ("debugger", &Vdebugger,
9dbc9081
PJ
3554 doc: /* Function to call to invoke debugger.
3555If due to frame exit, args are `exit' and the value being returned;
3556 this function's value will be returned instead of that.
3557If due to error, args are `error' and a list of the args to `signal'.
3558If due to `apply' or `funcall' entry, one arg, `lambda'.
3559If due to `eval' entry, one arg, t. */);
db9f0278
JB
3560 Vdebugger = Qnil;
3561
61ede770 3562 DEFVAR_LISP ("signal-hook-function", &Vsignal_hook_function,
9dbc9081
PJ
3563 doc: /* If non-nil, this is a function for `signal' to call.
3564It receives the same arguments that `signal' was given.
3565The Edebug package uses this to regain control. */);
61ede770
RS
3566 Vsignal_hook_function = Qnil;
3567
57a6e758 3568 DEFVAR_LISP ("debug-on-signal", &Vdebug_on_signal,
9dbc9081
PJ
3569 doc: /* *Non-nil means call the debugger regardless of condition handlers.
3570Note that `debug-on-error', `debug-on-quit' and friends
3571still determine whether to handle the particular condition. */);
57a6e758 3572 Vdebug_on_signal = Qnil;
61ede770 3573
d6edd563
GM
3574 DEFVAR_LISP ("macro-declaration-function", &Vmacro_declaration_function,
3575 doc: /* Function to process declarations in a macro definition.
3576The function will be called with two args MACRO and DECL.
3577MACRO is the name of the macro being defined.
3578DECL is a list `(declare ...)' containing the declarations.
3579The value the function returns is not used. */);
3580 Vmacro_declaration_function = Qnil;
3581
6e6e9f08
RS
3582 Vrun_hooks = intern ("run-hooks");
3583 staticpro (&Vrun_hooks);
db9f0278
JB
3584
3585 staticpro (&Vautoload_queue);
3586 Vautoload_queue = Qnil;
a2ff3819
GM
3587 staticpro (&Vsignaling_function);
3588 Vsignaling_function = Qnil;
db9f0278
JB
3589
3590 defsubr (&Sor);
3591 defsubr (&Sand);
3592 defsubr (&Sif);
3593 defsubr (&Scond);
3594 defsubr (&Sprogn);
3595 defsubr (&Sprog1);
3596 defsubr (&Sprog2);
3597 defsubr (&Ssetq);
3598 defsubr (&Squote);
3599 defsubr (&Sfunction);
3600 defsubr (&Sdefun);
3601 defsubr (&Sdefmacro);
3602 defsubr (&Sdefvar);
19cebf5a 3603 defsubr (&Sdefvaralias);
db9f0278
JB
3604 defsubr (&Sdefconst);
3605 defsubr (&Suser_variable_p);
3606 defsubr (&Slet);
3607 defsubr (&SletX);
3608 defsubr (&Swhile);
3609 defsubr (&Smacroexpand);
3610 defsubr (&Scatch);
3611 defsubr (&Sthrow);
3612 defsubr (&Sunwind_protect);
3613 defsubr (&Scondition_case);
3614 defsubr (&Ssignal);
3615 defsubr (&Sinteractive_p);
4b664e76 3616 defsubr (&Scalled_interactively_p);
db9f0278
JB
3617 defsubr (&Scommandp);
3618 defsubr (&Sautoload);
3619 defsubr (&Seval);
3620 defsubr (&Sapply);
3621 defsubr (&Sfuncall);
ff936e53
SM
3622 defsubr (&Srun_hooks);
3623 defsubr (&Srun_hook_with_args);
3624 defsubr (&Srun_hook_with_args_until_success);
3625 defsubr (&Srun_hook_with_args_until_failure);
661c7d6e 3626 defsubr (&Sfetch_bytecode);
db9f0278
JB
3627 defsubr (&Sbacktrace_debug);
3628 defsubr (&Sbacktrace);
3629 defsubr (&Sbacktrace_frame);
3630}
ab5796a9
MB
3631
3632/* arch-tag: 014a07aa-33ab-4a8f-a3d2-ee8a4a9ff7fb
3633 (do not change this comment) */