(sit_for): Fix preempt condition.
[bpt/emacs.git] / src / eval.c
... / ...
CommitLineData
1/* Evaluator for GNU Emacs Lisp interpreter.
2 Copyright (C) 1985, 1986, 1987, 1993, 1994, 1995, 1999, 2000, 2001,
3 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
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
9the Free Software Foundation; either version 2, or (at your option)
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
19the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
20Boston, MA 02110-1301, USA. */
21
22
23#include <config.h>
24#include "lisp.h"
25#include "blockinput.h"
26#include "commands.h"
27#include "keyboard.h"
28#include "dispextern.h"
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
35{
36 struct backtrace *next;
37 Lisp_Object *function;
38 Lisp_Object *args; /* Points to vector of args. */
39 int nargs; /* Length of vector.
40 If nargs is UNEVALLED, args points to slot holding
41 list of unevalled args */
42 char evalargs;
43 /* Nonzero means call value of debugger when done with this operation. */
44 char debug_on_exit;
45};
46
47struct backtrace *backtrace_list;
48
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. */
67
68struct catchtag
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;
80 int interrupt_input_blocked;
81 struct byte_stack *byte_stack;
82};
83
84struct catchtag *catchlist;
85
86#ifdef DEBUG_GCPRO
87/* Count levels of GCPRO to detect failure to UNGCPRO. */
88int gcpro_level;
89#endif
90
91Lisp_Object Qautoload, Qmacro, Qexit, Qinteractive, Qcommandp, Qdefun;
92Lisp_Object Qinhibit_quit, Vinhibit_quit, Vquit_flag;
93Lisp_Object Qand_rest, Qand_optional;
94Lisp_Object Qdebug_on_error;
95Lisp_Object Qdeclare;
96
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. */
100
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:
106 (FUN . ODEF) for a defun, (0 . OFEATURES) for a provide. */
107
108Lisp_Object Vautoload_queue;
109
110/* Current number of specbindings allocated in specpdl. */
111
112int specpdl_size;
113
114/* Pointer to beginning of specpdl. */
115
116struct specbinding *specpdl;
117
118/* Pointer to first unused element in specpdl. */
119
120struct specbinding *specpdl_ptr;
121
122/* Maximum size allowed for specpdl allocation */
123
124EMACS_INT max_specpdl_size;
125
126/* Depth in Lisp evaluations and function calls. */
127
128int lisp_eval_depth;
129
130/* Maximum allowed depth in Lisp evaluations and function calls. */
131
132EMACS_INT max_lisp_eval_depth;
133
134/* Nonzero means enter debugger before next function call */
135
136int debug_on_next_call;
137
138/* Non-zero means debugger may continue. This is zero when the
139 debugger is called during redisplay, where it might not be safe to
140 continue the interrupted redisplay. */
141
142int debugger_may_continue;
143
144/* List of conditions (non-nil atom means all) which cause a backtrace
145 if an error is handled by the command loop's error handler. */
146
147Lisp_Object Vstack_trace_on_error;
148
149/* List of conditions (non-nil atom means all) which enter the debugger
150 if an error is handled by the command loop's error handler. */
151
152Lisp_Object Vdebug_on_error;
153
154/* List of conditions and regexps specifying error messages which
155 do not enter the debugger even if Vdebug_on_error says they should. */
156
157Lisp_Object Vdebug_ignored_errors;
158
159/* Non-nil means call the debugger even if the error will be handled. */
160
161Lisp_Object Vdebug_on_signal;
162
163/* Hook for edebug to use. */
164
165Lisp_Object Vsignal_hook_function;
166
167/* Nonzero means enter debugger if a quit signal
168 is handled by the command loop's error handler. */
169
170int debug_on_quit;
171
172/* The value of num_nonmacro_input_events as of the last time we
173 started to enter the debugger. If we decide to enter the debugger
174 again when this is still equal to num_nonmacro_input_events, then we
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. */
178
179int when_entered_debugger;
180
181Lisp_Object Vdebugger;
182
183/* The function from which the last `signal' was called. Set in
184 Fsignal. */
185
186Lisp_Object Vsignaling_function;
187
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
194/* Function to process declarations in defmacro forms. */
195
196Lisp_Object Vmacro_declaration_function;
197
198extern Lisp_Object Qrisky_local_variable;
199
200static Lisp_Object funcall_lambda P_ ((Lisp_Object, int, Lisp_Object*));
201\f
202void
203init_eval_once ()
204{
205 specpdl_size = 50;
206 specpdl = (struct specbinding *) xmalloc (specpdl_size * sizeof (struct specbinding));
207 specpdl_ptr = specpdl;
208 /* Don't forget to update docs (lispref node "Local Variables"). */
209 max_specpdl_size = 1000;
210 max_lisp_eval_depth = 300;
211
212 Vrun_hooks = Qnil;
213}
214
215void
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;
225#ifdef DEBUG_GCPRO
226 gcpro_level = 0;
227#endif
228 /* This is less than the initial value of num_nonmacro_input_events. */
229 when_entered_debugger = -1;
230}
231
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));
240 return Qnil;
241}
242
243/* Call the Lisp debugger, giving it argument ARG. */
244
245Lisp_Object
246call_debugger (arg)
247 Lisp_Object arg;
248{
249 int debug_while_redisplaying;
250 int count = SPECPDL_INDEX ();
251 Lisp_Object val;
252 int old_max = max_specpdl_size;
253
254 /* Temporarily bump up the stack limits,
255 so the debugger won't run out of stack. */
256
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;
268
269#ifdef HAVE_X_WINDOWS
270 if (display_hourglass_p)
271 cancel_hourglass ();
272#endif
273
274 debug_on_next_call = 0;
275 when_entered_debugger = num_nonmacro_input_events;
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;
281 specbind (intern ("debugger-may-continue"),
282 debug_while_redisplaying ? Qnil : Qt);
283 specbind (Qinhibit_redisplay, Qnil);
284 specbind (Qdebug_on_error, Qnil);
285
286#if 0 /* Binding this prevents execution of Lisp code during
287 redisplay, which necessarily leads to display problems. */
288 specbind (Qinhibit_eval_during_redisplay, Qt);
289#endif
290
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
295 interrupted redisplay by going back to the top-level. */
296 if (debug_while_redisplaying)
297 Ftop_level ();
298
299 return unbind_to (count, val);
300}
301
302void
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,
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.
319usage: (or CONDITIONS ...) */)
320 (args)
321 Lisp_Object args;
322{
323 register Lisp_Object val = Qnil;
324 struct gcpro gcpro1;
325
326 GCPRO1 (args);
327
328 while (CONSP (args))
329 {
330 val = Feval (XCAR (args));
331 if (!NILP (val))
332 break;
333 args = XCDR (args);
334 }
335
336 UNGCPRO;
337 return val;
338}
339
340DEFUN ("and", Fand, Sand, 0, UNEVALLED, 0,
341 doc: /* Eval args until one of them yields nil, then return nil.
342The remaining args are not evalled at all.
343If no arg yields nil, return the last arg's value.
344usage: (and CONDITIONS ...) */)
345 (args)
346 Lisp_Object args;
347{
348 register Lisp_Object val = Qt;
349 struct gcpro gcpro1;
350
351 GCPRO1 (args);
352
353 while (CONSP (args))
354 {
355 val = Feval (XCAR (args));
356 if (NILP (val))
357 break;
358 args = XCDR (args);
359 }
360
361 UNGCPRO;
362 return val;
363}
364
365DEFUN ("if", Fif, Sif, 2, UNEVALLED, 0,
366 doc: /* If COND yields non-nil, do THEN, else do ELSE...
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.
370usage: (if COND THEN ELSE...) */)
371 (args)
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
381 if (!NILP (cond))
382 return Feval (Fcar (Fcdr (args)));
383 return Fprogn (Fcdr (Fcdr (args)));
384}
385
386DEFUN ("cond", Fcond, Scond, 0, UNEVALLED, 0,
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.
395usage: (cond CLAUSES...) */)
396 (args)
397 Lisp_Object args;
398{
399 register Lisp_Object clause, val;
400 struct gcpro gcpro1;
401
402 val = Qnil;
403 GCPRO1 (args);
404 while (!NILP (args))
405 {
406 clause = Fcar (args);
407 val = Feval (Fcar (clause));
408 if (!NILP (val))
409 {
410 if (!EQ (XCDR (clause), Qnil))
411 val = Fprogn (XCDR (clause));
412 break;
413 }
414 args = XCDR (args);
415 }
416 UNGCPRO;
417
418 return val;
419}
420
421DEFUN ("progn", Fprogn, Sprogn, 0, UNEVALLED, 0,
422 doc: /* Eval BODY forms sequentially and return value of last one.
423usage: (progn BODY ...) */)
424 (args)
425 Lisp_Object args;
426{
427 register Lisp_Object val = Qnil;
428 struct gcpro gcpro1;
429
430 GCPRO1 (args);
431
432 while (CONSP (args))
433 {
434 val = Feval (XCAR (args));
435 args = XCDR (args);
436 }
437
438 UNGCPRO;
439 return val;
440}
441
442DEFUN ("prog1", Fprog1, Sprog1, 1, UNEVALLED, 0,
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.
446usage: (prog1 FIRST BODY...) */)
447 (args)
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
455 if (NILP(args))
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 }
470 while (!NILP(args_left));
471
472 UNGCPRO;
473 return val;
474}
475
476DEFUN ("prog2", Fprog2, Sprog2, 2, UNEVALLED, 0,
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...) */)
481 (args)
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
491 if (NILP (args))
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 }
506 while (!NILP (args_left));
507
508 UNGCPRO;
509 return val;
510}
511
512DEFUN ("setq", Fsetq, Ssetq, 0, UNEVALLED, 0,
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)
522 Lisp_Object args;
523{
524 register Lisp_Object args_left;
525 register Lisp_Object val, sym;
526 struct gcpro gcpro1;
527
528 if (NILP(args))
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 }
541 while (!NILP(args_left));
542
543 UNGCPRO;
544 return val;
545}
546
547DEFUN ("quote", Fquote, Squote, 1, UNEVALLED, 0,
548 doc: /* Return the argument, without evaluating it. `(quote x)' yields `x'.
549usage: (quote ARG) */)
550 (args)
551 Lisp_Object args;
552{
553 return Fcar (args);
554}
555
556DEFUN ("function", Ffunction, Sfunction, 1, UNEVALLED, 0,
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)
562 Lisp_Object args;
563{
564 return Fcar (args);
565}
566
567
568DEFUN ("interactive-p", Finteractive_p, Sinteractive_p, 0, 0, 0,
569 doc: /* Return t if the function was run directly by user input.
570This means that the function was called with `call-interactively'
571\(which includes being called as the binding of a key)
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.) */)
585 ()
586{
587 return (INTERACTIVE && interactive_p (1)) ? Qt : Qnil;
588}
589
590
591DEFUN ("called-interactively-p", Fcalled_interactively_p, Scalled_interactively_p, 0, 0, 0,
592 doc: /* Return t if the function using this was called with `call-interactively'.
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
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.) */)
600 ()
601{
602 return interactive_p (1) ? Qt : Qnil;
603}
604
605
606/* Return 1 if function in which this appears was called using
607 call-interactively.
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;
618
619 btp = backtrace_list;
620
621 /* If this isn't a byte-compiled function, there may be a frame at
622 the top for Finteractive_p. If so, skip it. */
623 fun = Findirect_function (*btp->function, Qnil);
624 if (SUBRP (fun) && (XSUBR (fun) == &Sinteractive_p
625 || XSUBR (fun) == &Scalled_interactively_p))
626 btp = btp->next;
627
628 /* If we're running an Emacs 18-style byte-compiled function, there
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.
632
633 If this isn't a byte-compiled function, then we may now be
634 looking at several frames for special forms. Skip past them. */
635 while (btp
636 && (EQ (*btp->function, Qbytecode)
637 || btp->nargs == UNEVALLED))
638 btp = btp->next;
639
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. */
644 fun = Findirect_function (*btp->function, Qnil);
645 if (exclude_subrs_p && SUBRP (fun))
646 return 0;
647
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))
651 return 1;
652 return 0;
653}
654
655
656DEFUN ("defun", Fdefun, Sdefun, 2, UNEVALLED, 0,
657 doc: /* Define NAME as a function.
658The definition is (lambda ARGLIST [DOCSTRING] BODY...).
659See also the function `interactive'.
660usage: (defun NAME ARGLIST [DOCSTRING] BODY...) */)
661 (args)
662 Lisp_Object args;
663{
664 register Lisp_Object fn_name;
665 register Lisp_Object defn;
666
667 fn_name = Fcar (args);
668 CHECK_SYMBOL (fn_name);
669 defn = Fcons (Qlambda, Fcdr (args));
670 if (!NILP (Vpurify_flag))
671 defn = Fpurecopy (defn);
672 if (CONSP (XSYMBOL (fn_name)->function)
673 && EQ (XCAR (XSYMBOL (fn_name)->function), Qautoload))
674 LOADHIST_ATTACH (Fcons (Qt, fn_name));
675 Ffset (fn_name, defn);
676 LOADHIST_ATTACH (Fcons (Qdefun, fn_name));
677 return fn_name;
678}
679
680DEFUN ("defmacro", Fdefmacro, Sdefmacro, 2, UNEVALLED, 0,
681 doc: /* Define NAME as a macro.
682The actual definition looks like
683 (macro lambda ARGLIST [DOCSTRING] [DECL] BODY...).
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.
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
696 (debug DEBUG)
697 Set NAME's `edebug-form-spec' property to DEBUG. (This is
698 equivalent to writing a `def-edebug-spec' for the macro.)
699usage: (defmacro NAME ARGLIST [DOCSTRING] [DECL] BODY...) */)
700 (args)
701 Lisp_Object args;
702{
703 register Lisp_Object fn_name;
704 register Lisp_Object defn;
705 Lisp_Object lambda_list, doc, tail;
706
707 fn_name = Fcar (args);
708 CHECK_SYMBOL (fn_name);
709 lambda_list = Fcar (Fcdr (args));
710 tail = Fcdr (Fcdr (args));
711
712 doc = Qnil;
713 if (STRINGP (Fcar (tail)))
714 {
715 doc = XCAR (tail);
716 tail = XCDR (tail);
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 }
729
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));
738
739 if (!NILP (Vpurify_flag))
740 defn = Fpurecopy (defn);
741 if (CONSP (XSYMBOL (fn_name)->function)
742 && EQ (XCAR (XSYMBOL (fn_name)->function), Qautoload))
743 LOADHIST_ATTACH (Fcons (Qt, fn_name));
744 Ffset (fn_name, defn);
745 LOADHIST_ATTACH (Fcons (Qdefun, fn_name));
746 return fn_name;
747}
748
749
750DEFUN ("defvaralias", Fdefvaralias, Sdefvaralias, 2, 3, 0,
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;
761{
762 struct Lisp_Symbol *sym;
763
764 CHECK_SYMBOL (new_alias);
765 CHECK_SYMBOL (base_variable);
766
767 if (SYMBOL_CONSTANT_P (new_alias))
768 error ("Cannot make a constant an alias");
769
770 sym = XSYMBOL (new_alias);
771 sym->indirect_variable = 1;
772 sym->value = base_variable;
773 sym->constant = SYMBOL_CONSTANT_P (base_variable);
774 LOADHIST_ATTACH (new_alias);
775 if (!NILP (docstring))
776 Fput (new_alias, Qvariable_documentation, docstring);
777 else
778 Fput (new_alias, Qvariable_documentation, Qnil);
779
780 return base_variable;
781}
782
783
784DEFUN ("defvar", Fdefvar, Sdefvar, 1, UNEVALLED, 0,
785 doc: /* Define SYMBOL as a variable, and return SYMBOL.
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.
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.)
805usage: (defvar SYMBOL &optional INITVALUE DOCSTRING) */)
806 (args)
807 Lisp_Object args;
808{
809 register Lisp_Object sym, tem, tail;
810
811 sym = Fcar (args);
812 tail = Fcdr (args);
813 if (!NILP (Fcdr (Fcdr (tail))))
814 error ("Too many arguments");
815
816 tem = Fdefault_boundp (sym);
817 if (!NILP (tail))
818 {
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
831 if (NILP (tem))
832 Fset_default (sym, Feval (Fcar (tail)));
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. */
836 volatile struct specbinding *pdl = specpdl_ptr;
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 }
848 tail = Fcdr (tail);
849 tem = Fcar (tail);
850 if (!NILP (tem))
851 {
852 if (!NILP (Vpurify_flag))
853 tem = Fpurecopy (tem);
854 Fput (sym, Qvariable_documentation, tem);
855 }
856 LOADHIST_ATTACH (sym);
857 }
858 else
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. */
862 ;
863
864 return sym;
865}
866
867DEFUN ("defconst", Fdefconst, Sdefconst, 2, UNEVALLED, 0,
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.
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.
878usage: (defconst SYMBOL INITVALUE [DOCSTRING]) */)
879 (args)
880 Lisp_Object args;
881{
882 register Lisp_Object sym, tem;
883
884 sym = Fcar (args);
885 if (!NILP (Fcdr (Fcdr (Fcdr (args)))))
886 error ("Too many arguments");
887
888 tem = Feval (Fcar (Fcdr (args)));
889 if (!NILP (Vpurify_flag))
890 tem = Fpurecopy (tem);
891 Fset_default (sym, tem);
892 tem = Fcar (Fcdr (Fcdr (args)));
893 if (!NILP (tem))
894 {
895 if (!NILP (Vpurify_flag))
896 tem = Fpurecopy (tem);
897 Fput (sym, Qvariable_documentation, tem);
898 }
899 Fput (sym, Qrisky_local_variable, Qt);
900 LOADHIST_ATTACH (sym);
901 return sym;
902}
903
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
912DEFUN ("user-variable-p", Fuser_variable_p, Suser_variable_p, 1, 1, 0,
913 doc: /* Return t if VARIABLE is intended to be set and modified by users.
914\(The alternative is a variable used internally in a Lisp program.)
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. */)
922 (variable)
923 Lisp_Object variable;
924{
925 Lisp_Object documentation;
926
927 if (!SYMBOLP (variable))
928 return Qnil;
929
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 }
961}
962\f
963DEFUN ("let*", FletX, SletX, 1, UNEVALLED, 0,
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.
969usage: (let* VARLIST BODY...) */)
970 (args)
971 Lisp_Object args;
972{
973 Lisp_Object varlist, val, elt;
974 int count = SPECPDL_INDEX ();
975 struct gcpro gcpro1, gcpro2, gcpro3;
976
977 GCPRO3 (args, elt, varlist);
978
979 varlist = Fcar (args);
980 while (!NILP (varlist))
981 {
982 QUIT;
983 elt = Fcar (varlist);
984 if (SYMBOLP (elt))
985 specbind (elt, Qnil);
986 else if (! NILP (Fcdr (Fcdr (elt))))
987 Fsignal (Qerror,
988 Fcons (build_string ("`let' bindings can have only one value-form"),
989 elt));
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,
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.
1008usage: (let VARLIST BODY...) */)
1009 (args)
1010 Lisp_Object args;
1011{
1012 Lisp_Object *temps, tem;
1013 register Lisp_Object elt, varlist;
1014 int count = SPECPDL_INDEX ();
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
1029 for (argnum = 0; !NILP (varlist); varlist = Fcdr (varlist))
1030 {
1031 QUIT;
1032 elt = Fcar (varlist);
1033 if (SYMBOLP (elt))
1034 temps [argnum++] = Qnil;
1035 else if (! NILP (Fcdr (Fcdr (elt))))
1036 Fsignal (Qerror,
1037 Fcons (build_string ("`let' bindings can have only one value-form"),
1038 elt));
1039 else
1040 temps [argnum++] = Feval (Fcar (Fcdr (elt)));
1041 gcpro2.nvars = argnum;
1042 }
1043 UNGCPRO;
1044
1045 varlist = Fcar (args);
1046 for (argnum = 0; !NILP (varlist); varlist = Fcdr (varlist))
1047 {
1048 elt = Fcar (varlist);
1049 tem = temps[argnum++];
1050 if (SYMBOLP (elt))
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,
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.
1064usage: (while TEST BODY...) */)
1065 (args)
1066 Lisp_Object args;
1067{
1068 Lisp_Object test, body;
1069 struct gcpro gcpro1, gcpro2;
1070
1071 GCPRO2 (test, body);
1072
1073 test = Fcar (args);
1074 body = Fcdr (args);
1075 while (!NILP (Feval (test)))
1076 {
1077 QUIT;
1078 Fprogn (body);
1079 }
1080
1081 UNGCPRO;
1082 return Qnil;
1083}
1084
1085DEFUN ("macroexpand", Fmacroexpand, Smacroexpand, 1, 2, 0,
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)
1094 Lisp_Object form;
1095 Lisp_Object environment;
1096{
1097 /* With cleanups from Hallvard Furuseth. */
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. */
1104 if (!CONSP (form))
1105 break;
1106 /* Set SYM, give DEF and TEM right values in case SYM is not a symbol. */
1107 def = sym = XCAR (form);
1108 tem = Qnil;
1109 /* Trace symbols aliases to other symbols
1110 until we get a symbol that is not an alias. */
1111 while (SYMBOLP (def))
1112 {
1113 QUIT;
1114 sym = def;
1115 tem = Fassq (sym, environment);
1116 if (NILP (tem))
1117 {
1118 def = XSYMBOL (sym)->function;
1119 if (!EQ (def, Qunbound))
1120 continue;
1121 }
1122 break;
1123 }
1124 /* Right now TEM is the result from SYM in ENVIRONMENT,
1125 and if TEM is nil then DEF is SYM's function definition. */
1126 if (NILP (tem))
1127 {
1128 /* SYM is not mentioned in ENVIRONMENT.
1129 Look at its function definition. */
1130 if (EQ (def, Qunbound) || !CONSP (def))
1131 /* Not defined or definition not suitable */
1132 break;
1133 if (EQ (XCAR (def), Qautoload))
1134 {
1135 /* Autoloading function: will it be a macro when loaded? */
1136 tem = Fnth (make_number (4), def);
1137 if (EQ (tem, Qt) || EQ (tem, Qmacro))
1138 /* Yes, load it and try again. */
1139 {
1140 struct gcpro gcpro1;
1141 GCPRO1 (form);
1142 do_autoload (def, sym);
1143 UNGCPRO;
1144 continue;
1145 }
1146 else
1147 break;
1148 }
1149 else if (!EQ (XCAR (def), Qmacro))
1150 break;
1151 else expander = XCDR (def);
1152 }
1153 else
1154 {
1155 expander = XCDR (tem);
1156 if (NILP (expander))
1157 break;
1158 }
1159 form = apply1 (expander, XCDR (form));
1160 }
1161 return form;
1162}
1163\f
1164DEFUN ("catch", Fcatch, Scatch, 1, UNEVALLED, 0,
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'.
1172usage: (catch TAG BODY...) */)
1173 (args)
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;
1205 c.pdlcount = SPECPDL_INDEX ();
1206 c.poll_suppress_count = poll_suppress_count;
1207 c.interrupt_input_blocked = interrupt_input_blocked;
1208 c.gcpro = gcprolist;
1209 c.byte_stack = byte_stack_list;
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
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.
1223
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.
1227
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. */
1236
1237static void
1238unwind_to_catch (catch, value)
1239 struct catchtag *catch;
1240 Lisp_Object value;
1241{
1242 register int last_time;
1243
1244 /* Save the value in the tag. */
1245 catch->val = value;
1246
1247 /* Restore certain special C variables. */
1248 set_poll_suppress_count (catch->poll_suppress_count);
1249 UNBLOCK_INPUT_TO (catch->interrupt_input_blocked);
1250 handling_signal = 0;
1251 immediate_quit = 0;
1252
1253 do
1254 {
1255 last_time = catchlist == catch;
1256
1257 /* Unwind the specpdl stack, and then restore the proper set of
1258 handlers. */
1259 unbind_to (catchlist->pdlcount, Qnil);
1260 handlerlist = catchlist->handlerlist;
1261 catchlist = catchlist->next;
1262 }
1263 while (! last_time);
1264
1265#if HAVE_X_WINDOWS
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 ();
1269#endif
1270
1271 byte_stack_list = catch->byte_stack;
1272 gcprolist = catch->gcpro;
1273#ifdef DEBUG_GCPRO
1274 if (gcprolist != 0)
1275 gcpro_level = gcprolist->level + 1;
1276 else
1277 gcpro_level = 0;
1278#endif
1279 backtrace_list = catch->backlist;
1280 lisp_eval_depth = catch->lisp_eval_depth;
1281
1282 _longjmp (catch->jmp, 1);
1283}
1284
1285DEFUN ("throw", Fthrow, Sthrow, 2, 2, 0,
1286 doc: /* Throw to the catch for TAG and return VALUE from it.
1287Both TAG and VALUE are evalled. */)
1288 (tag, value)
1289 register Lisp_Object tag, value;
1290{
1291 register struct catchtag *c;
1292
1293 while (1)
1294 {
1295 if (!NILP (tag))
1296 for (c = catchlist; c; c = c->next)
1297 {
1298 if (EQ (c->tag, tag))
1299 unwind_to_catch (c, value);
1300 }
1301 tag = Fsignal (Qno_catch, Fcons (tag, Fcons (value, Qnil)));
1302 }
1303}
1304
1305
1306DEFUN ("unwind-protect", Funwind_protect, Sunwind_protect, 1, UNEVALLED, 0,
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.
1311usage: (unwind-protect BODYFORM UNWINDFORMS...) */)
1312 (args)
1313 Lisp_Object args;
1314{
1315 Lisp_Object val;
1316 int count = SPECPDL_INDEX ();
1317
1318 record_unwind_protect (Fprogn, Fcdr (args));
1319 val = Feval (Fcar (args));
1320 return unbind_to (count, val);
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,
1332 doc: /* Regain control when an error is signaled.
1333Executes BODYFORM and returns its value if no error happens.
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.
1351usage: (condition-case VAR BODYFORM &rest HANDLERS) */)
1352 (args)
1353 Lisp_Object args;
1354{
1355 register Lisp_Object bodyform, handlers;
1356 volatile Lisp_Object var;
1357
1358 var = Fcar (args);
1359 bodyform = Fcar (Fcdr (args));
1360 handlers = Fcdr (Fcdr (args));
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
1377 CHECK_SYMBOL (var);
1378
1379 for (val = handlers; CONSP (val); val = XCDR (val))
1380 {
1381 Lisp_Object tem;
1382 tem = XCAR (val);
1383 if (! (NILP (tem)
1384 || (CONSP (tem)
1385 && (SYMBOLP (XCAR (tem))
1386 || CONSP (XCAR (tem))))))
1387 error ("Invalid condition handler", tem);
1388 }
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;
1395 c.pdlcount = SPECPDL_INDEX ();
1396 c.poll_suppress_count = poll_suppress_count;
1397 c.interrupt_input_blocked = interrupt_input_blocked;
1398 c.gcpro = gcprolist;
1399 c.byte_stack = byte_stack_list;
1400 if (_setjmp (c.jmp))
1401 {
1402 if (!NILP (h.var))
1403 specbind (h.var, c.val);
1404 val = Fprogn (Fcdr (h.chosen_clause));
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. */
1409 unbind_to (c.pdlcount, Qnil);
1410 return val;
1411 }
1412 c.next = catchlist;
1413 catchlist = &c;
1414
1415 h.var = var;
1416 h.handler = handlers;
1417 h.next = handlerlist;
1418 h.tag = &c;
1419 handlerlist = &h;
1420
1421 val = Feval (bodyform);
1422 catchlist = c.next;
1423 handlerlist = h.next;
1424 return val;
1425}
1426
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
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
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. */
1449#if HAVE_X_WINDOWS
1450 if (x_catching_errors ())
1451 abort ();
1452#endif
1453
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;
1459 c.pdlcount = SPECPDL_INDEX ();
1460 c.poll_suppress_count = poll_suppress_count;
1461 c.interrupt_input_blocked = interrupt_input_blocked;
1462 c.gcpro = gcprolist;
1463 c.byte_stack = byte_stack_list;
1464 if (_setjmp (c.jmp))
1465 {
1466 return (*hfun) (c.val);
1467 }
1468 c.next = catchlist;
1469 catchlist = &c;
1470 h.handler = handlers;
1471 h.var = Qnil;
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
1482/* Like internal_condition_case but call BFUN with ARG as its argument. */
1483
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
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. */
1497#if HAVE_X_WINDOWS
1498 if (x_catching_errors ())
1499 abort ();
1500#endif
1501
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;
1507 c.pdlcount = SPECPDL_INDEX ();
1508 c.poll_suppress_count = poll_suppress_count;
1509 c.interrupt_input_blocked = interrupt_input_blocked;
1510 c.gcpro = gcprolist;
1511 c.byte_stack = byte_stack_list;
1512 if (_setjmp (c.jmp))
1513 {
1514 return (*hfun) (c.val);
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}
1529
1530
1531/* Like internal_condition_case but call BFUN with NARGS as first,
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
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. */
1548#if HAVE_X_WINDOWS
1549 if (x_catching_errors ())
1550 abort ();
1551#endif
1552
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;
1558 c.pdlcount = SPECPDL_INDEX ();
1559 c.poll_suppress_count = poll_suppress_count;
1560 c.interrupt_input_blocked = interrupt_input_blocked;
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
1581\f
1582static Lisp_Object find_handler_clause P_ ((Lisp_Object, Lisp_Object,
1583 Lisp_Object, Lisp_Object,
1584 Lisp_Object *));
1585
1586DEFUN ("signal", Fsignal, Ssignal, 2, 2, 0,
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.
1596See Info anchor `(elisp)Definition of signal' for some details on how this
1597error message is constructed.
1598If the signal is handled, DATA is made available to the handler.
1599See also the function `condition-case'. */)
1600 (error_symbol, data)
1601 Lisp_Object error_symbol, data;
1602{
1603 /* When memory is full, ERROR-SYMBOL is nil,
1604 and DATA is (REAL-ERROR-SYMBOL . REAL-DATA).
1605 That is a special case--don't do this in other situations. */
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;
1611 Lisp_Object string;
1612 Lisp_Object real_error_symbol;
1613 struct backtrace *bp;
1614
1615 immediate_quit = handling_signal = 0;
1616 abort_on_gc = 0;
1617 if (gc_in_progress || waiting_for_input)
1618 abort ();
1619
1620 if (NILP (error_symbol))
1621 real_error_symbol = Fcar (data);
1622 else
1623 real_error_symbol = error_symbol;
1624
1625#if 0 /* rms: I don't know why this was here,
1626 but it is surely wrong for an error that is handled. */
1627#ifdef HAVE_X_WINDOWS
1628 if (display_hourglass_p)
1629 cancel_hourglass ();
1630#endif
1631#endif
1632
1633 /* This hook is used by edebug. */
1634 if (! NILP (Vsignal_hook_function)
1635 && ! NILP (error_symbol))
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 }
1646
1647 conditions = Fget (real_error_symbol, Qerror_conditions);
1648
1649 /* Remember from where signal was called. Skip over the frame for
1650 `signal' itself. If a frame for `error' follows, skip that,
1651 too. Don't do this when ERROR_SYMBOL is nil, because that
1652 is a memory-full error. */
1653 Vsignaling_function = Qnil;
1654 if (backtrace_list && !NILP (error_symbol))
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 }
1662
1663 for (; handlerlist; handlerlist = handlerlist->next)
1664 {
1665 register Lisp_Object clause;
1666
1667 clause = find_handler_clause (handlerlist->handler, conditions,
1668 error_symbol, data, &debugger_value);
1669
1670 if (EQ (clause, Qlambda))
1671 {
1672 /* We can't return values to code which signaled an error, but we
1673 can continue code which has signaled a quit. */
1674 if (EQ (real_error_symbol, Qquit))
1675 return Qnil;
1676 else
1677 error ("Cannot return from the debugger in an error");
1678 }
1679
1680 if (!NILP (clause))
1681 {
1682 Lisp_Object unwind_data;
1683 struct handler *h = handlerlist;
1684
1685 handlerlist = allhandlers;
1686
1687 if (NILP (error_symbol))
1688 unwind_data = data;
1689 else
1690 unwind_data = Fcons (error_symbol, data);
1691 h->chosen_clause = clause;
1692 unwind_to_catch (h->tag, unwind_data);
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. */
1699 find_handler_clause (Qerror, conditions, error_symbol, data, &debugger_value);
1700 if (catchlist != 0)
1701 Fthrow (Qtop_level, Qt);
1702
1703 if (! NILP (error_symbol))
1704 data = Fcons (error_symbol, data);
1705
1706 string = Ferror_message_string (data);
1707 fatal ("%s", SDATA (string), 0);
1708}
1709
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{
1717 if (NILP (list))
1718 return 0;
1719 if (! CONSP (list))
1720 return 1;
1721
1722 while (CONSP (conditions))
1723 {
1724 Lisp_Object this, tail;
1725 this = XCAR (conditions);
1726 for (tail = list; CONSP (tail); tail = XCDR (tail))
1727 if (EQ (XCAR (tail), this))
1728 return 1;
1729 conditions = XCDR (conditions);
1730 }
1731 return 0;
1732}
1733
1734/* Return 1 if an error with condition-symbols CONDITIONS,
1735 and described by SIGNAL-DATA, should skip the debugger
1736 according to debugger-ignored-errors. */
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
1746 error_message = Qnil;
1747 for (tail = Vdebug_ignored_errors; CONSP (tail); tail = XCDR (tail))
1748 {
1749 if (STRINGP (XCAR (tail)))
1750 {
1751 if (first_string)
1752 {
1753 error_message = Ferror_message_string (data);
1754 first_string = 0;
1755 }
1756
1757 if (fast_string_match (XCAR (tail), error_message) >= 0)
1758 return 1;
1759 }
1760 else
1761 {
1762 Lisp_Object contail;
1763
1764 for (contail = conditions; CONSP (contail); contail = XCDR (contail))
1765 if (EQ (XCAR (tail), XCAR (contail)))
1766 return 1;
1767 }
1768 }
1769
1770 return 0;
1771}
1772
1773/* Value of Qlambda means we have called debugger and user has continued.
1774 There are two ways to pass SIG and DATA:
1775 = SIG is the error symbol, and DATA is the rest of the data.
1776 = SIG is nil, and DATA is (SYMBOL . REST-OF-DATA).
1777 This is for memory-full errors only.
1778
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. */
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;
1792
1793 if (EQ (handlers, Qt)) /* t is used by handlers for all conditions, set up by C code. */
1794 return Qt;
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)
1798 || !NILP (Vdebug_on_signal)) /* This says call debugger even if
1799 there is a handler. */
1800 {
1801 int debugger_called = 0;
1802 Lisp_Object sig_symbol, combined_data;
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;
1807
1808 if (NILP (sig))
1809 {
1810 combined_data = data;
1811 sig_symbol = Fcar (data);
1812 no_debugger = 1;
1813 }
1814 else
1815 {
1816 combined_data = Fcons (sig, data);
1817 sig_symbol = sig;
1818 }
1819
1820 if (wants_debugger (Vstack_trace_on_error, conditions))
1821 {
1822 max_specpdl_size++;
1823#ifdef PROTOTYPES
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
1831 max_specpdl_size--;
1832 }
1833 if (! no_debugger
1834 && (EQ (sig_symbol, Qquit)
1835 ? debug_on_quit
1836 : wants_debugger (Vdebug_on_error, conditions))
1837 && ! skip_debugger (conditions, combined_data)
1838 && when_entered_debugger < num_nonmacro_input_events)
1839 {
1840 *debugger_value_ptr
1841 = call_debugger (Fcons (Qerror,
1842 Fcons (combined_data, Qnil)));
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)
1849 return Qlambda;
1850 return Qt;
1851 }
1852 }
1853 for (h = handlers; CONSP (h); h = Fcdr (h))
1854 {
1855 Lisp_Object handler, condit;
1856
1857 handler = Fcar (h);
1858 if (!CONSP (handler))
1859 continue;
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;
1876 condit = XCDR (condit);
1877 }
1878 }
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;
1889 char *a1, *a2, *a3;
1890{
1891 char buf[200];
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);
1904
1905 while (1)
1906 {
1907 int used = doprnt (buffer, size, m, m + mlen, 3, args);
1908 if (used < size)
1909 break;
1910 size *= 2;
1911 if (allocated)
1912 buffer = (char *) xrealloc (buffer, size);
1913 else
1914 {
1915 buffer = (char *) xmalloc (size);
1916 allocated = 1;
1917 }
1918 }
1919
1920 string = build_string (buffer);
1921 if (allocated)
1922 xfree (buffer);
1923
1924 Fsignal (Qerror, Fcons (string, Qnil));
1925 abort ();
1926}
1927\f
1928DEFUN ("commandp", Fcommandp, Scommandp, 1, 2, 0,
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
1939Also, a symbol satisfies `commandp' if its function definition does so.
1940
1941If the optional argument FOR-CALL-INTERACTIVELY is non-nil,
1942then strings and vectors are not accepted. */)
1943 (function, for_call_interactively)
1944 Lisp_Object function, for_call_interactively;
1945{
1946 register Lisp_Object fun;
1947 register Lisp_Object funcar;
1948
1949 fun = function;
1950
1951 fun = indirect_function (fun);
1952 if (EQ (fun, Qunbound))
1953 return Qnil;
1954
1955 /* Emacs primitives are interactive if their DEFUN specifies an
1956 interactive spec. */
1957 if (SUBRP (fun))
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. */
1968 else if (COMPILEDP (fun))
1969 return ((ASIZE (fun) & PSEUDOVECTOR_SIZE_MASK) > COMPILED_INTERACTIVE
1970 ? Qt : Qnil);
1971
1972 /* Strings and vectors are keyboard macros. */
1973 if (NILP (for_call_interactively) && (STRINGP (fun) || VECTORP (fun)))
1974 return Qt;
1975
1976 /* Lists may represent commands. */
1977 if (!CONSP (fun))
1978 return Qnil;
1979 funcar = XCAR (fun);
1980 if (EQ (funcar, Qlambda))
1981 return Fassq (Qinteractive, Fcdr (XCDR (fun)));
1982 if (EQ (funcar, Qautoload))
1983 return Fcar (Fcdr (Fcdr (XCDR (fun))));
1984 else
1985 return Qnil;
1986}
1987
1988/* ARGSUSED */
1989DEFUN ("autoload", Fautoload, Sautoload, 2, 5, 0,
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)
2003 Lisp_Object function, file, docstring, interactive, type;
2004{
2005#ifdef NO_ARG_ARRAY
2006 Lisp_Object args[4];
2007#endif
2008
2009 CHECK_SYMBOL (function);
2010 CHECK_STRING (file);
2011
2012 /* If function is defined and not as an autoload, don't override */
2013 if (!EQ (XSYMBOL (function)->function, Qunbound)
2014 && !(CONSP (XSYMBOL (function)->function)
2015 && EQ (XCAR (XSYMBOL (function)->function), Qautoload)))
2016 return Qnil;
2017
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
2023#ifdef NO_ARG_ARRAY
2024 args[0] = file;
2025 args[1] = docstring;
2026 args[2] = interactive;
2027 args[3] = type;
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 {
2047 first = XCAR (queue);
2048 second = Fcdr (first);
2049 first = Fcar (first);
2050 if (EQ (first, make_number (0)))
2051 Vfeatures = second;
2052 else
2053 Ffset (first, second);
2054 queue = XCDR (queue);
2055 }
2056 return Qnil;
2057}
2058
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
2063void
2064do_autoload (fundef, funname)
2065 Lisp_Object fundef, funname;
2066{
2067 int count = SPECPDL_INDEX ();
2068 Lisp_Object fun, queue, first, second;
2069 struct gcpro gcpro1, gcpro2, gcpro3;
2070
2071 /* This is to make sure that loadup.el gives a clear picture
2072 of what files are preloaded and when. */
2073 if (! NILP (Vpurify_flag))
2074 error ("Attempt to autoload %s while preparing to dump",
2075 SDATA (SYMBOL_NAME (funname)));
2076
2077 fun = funname;
2078 CHECK_SYMBOL (funname);
2079 GCPRO3 (fun, funname, fundef);
2080
2081 /* Preserve the match data. */
2082 record_unwind_save_match_data ();
2083
2084 /* Value saved here is to be restored into Vautoload_queue. */
2085 record_unwind_protect (un_autoload, Vautoload_queue);
2086 Vautoload_queue = Qt;
2087 Fload (Fcar (Fcdr (fundef)), Qnil, noninteractive ? Qt : Qnil, Qnil, Qt);
2088
2089 /* Save the old autoloads, in case we ever do an unload. */
2090 queue = Vautoload_queue;
2091 while (CONSP (queue))
2092 {
2093 first = XCAR (queue);
2094 second = Fcdr (first);
2095 first = Fcar (first);
2096
2097 if (SYMBOLP (first) && CONSP (second) && EQ (XCAR (second), Qautoload))
2098 Fput (first, Qautoload, (XCDR (second)));
2099
2100 queue = XCDR (queue);
2101 }
2102
2103 /* Once loading finishes, don't undo it. */
2104 Vautoload_queue = Qt;
2105 unbind_to (count, Qnil);
2106
2107 fun = Findirect_function (fun, Qnil);
2108
2109 if (!NILP (Fequal (fun, fundef)))
2110 error ("Autoloading failed to define function %s",
2111 SDATA (SYMBOL_NAME (funname)));
2112 UNGCPRO;
2113}
2114
2115\f
2116DEFUN ("eval", Feval, Seval, 1, 1, 0,
2117 doc: /* Evaluate FORM and return its value. */)
2118 (form)
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
2126 if (handling_signal)
2127 abort ();
2128
2129 if (SYMBOLP (form))
2130 return Fsymbol_value (form);
2131 if (!CONSP (form))
2132 return form;
2133
2134 QUIT;
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))
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)
2150 error ("Lisp nesting exceeds `max-lisp-eval-depth'");
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:
2170 fun = Findirect_function (original_fun, Qnil);
2171
2172 if (SUBRP (fun))
2173 {
2174 Lisp_Object numargs;
2175 Lisp_Object argvals[8];
2176 Lisp_Object args_left;
2177 register int i, maxargs;
2178
2179 args_left = original_args;
2180 numargs = Flength (args_left);
2181
2182 CHECK_CONS_LIST ();
2183
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
2207 while (!NILP (args_left))
2208 {
2209 vals[argnum++] = Feval (Fcar (args_left));
2210 args_left = Fcdr (args_left);
2211 gcpro3.nvars = argnum;
2212 }
2213
2214 backtrace.args = vals;
2215 backtrace.nargs = XINT (numargs);
2216
2217 val = (*XSUBR (fun)->function) (XINT (numargs), vals);
2218 UNGCPRO;
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;
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;
2270
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
2277 default:
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 ();
2283 }
2284 }
2285 if (COMPILEDP (fun))
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);
2292 if (!SYMBOLP (funcar))
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);
2303 else
2304 return Fsignal (Qinvalid_function, Fcons (fun, Qnil));
2305 }
2306 done:
2307 CHECK_CONS_LIST ();
2308
2309 lisp_eval_depth--;
2310 if (backtrace.debug_on_exit)
2311 val = call_debugger (Fcons (Qexit, Fcons (val, Qnil)));
2312 backtrace_list = backtrace.next;
2313
2314 return val;
2315}
2316\f
2317DEFUN ("apply", Fapply, Sapply, 2, MANY, 0,
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)
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;
2329 Lisp_Object fun;
2330 struct gcpro gcpro1;
2331
2332 fun = args [0];
2333 funcall_args = 0;
2334 spread_arg = args [nargs - 1];
2335 CHECK_LIST (spread_arg);
2336
2337 numargs = XINT (Flength (spread_arg));
2338
2339 if (numargs == 0)
2340 return Ffuncall (nargs - 1, args);
2341 else if (numargs == 1)
2342 {
2343 args [nargs - 1] = XCAR (spread_arg);
2344 return Ffuncall (nargs, args);
2345 }
2346
2347 numargs += nargs - 2;
2348
2349 fun = indirect_function (fun);
2350 if (EQ (fun, Qunbound))
2351 {
2352 /* Let funcall get the error */
2353 fun = args[0];
2354 goto funcall;
2355 }
2356
2357 if (SUBRP (fun))
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;
2370 GCPRO1 (*funcall_args);
2371 gcpro1.nvars = 1 + XSUBR (fun)->max_args;
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)
2378 {
2379 funcall_args = (Lisp_Object *) alloca ((1 + numargs)
2380 * sizeof (Lisp_Object));
2381 GCPRO1 (*funcall_args);
2382 gcpro1.nvars = 1 + numargs;
2383 }
2384
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;
2389 while (!NILP (spread_arg))
2390 {
2391 funcall_args [i++] = XCAR (spread_arg);
2392 spread_arg = XCDR (spread_arg);
2393 }
2394
2395 /* By convention, the caller needs to gcpro Ffuncall's args. */
2396 RETURN_UNGCPRO (Ffuncall (gcpro1.nvars, funcall_args));
2397}
2398\f
2399/* Run hook variables in various ways. */
2400
2401enum run_hooks_condition {to_completion, until_success, until_failure};
2402static Lisp_Object run_hook_with_args P_ ((int, Lisp_Object *,
2403 enum run_hooks_condition));
2404
2405DEFUN ("run-hooks", Frun_hooks, Srun_hooks, 0, MANY, 0,
2406 doc: /* Run each hook in HOOKS.
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
2414Major modes should not use this function directly to run their mode
2415hook; they should use `run-mode-hooks' instead.
2416
2417Do not use `make-local-variable' to make a hook variable buffer-local.
2418Instead, use `add-hook' and specify t for the LOCAL argument.
2419usage: (run-hooks &rest HOOKS) */)
2420 (nargs, args)
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}
2435
2436DEFUN ("run-hook-with-args", Frun_hook_with_args,
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.
2445It is best not to depend on the value returned by `run-hook-with-args',
2446as that may change.
2447
2448Do not use `make-local-variable' to make a hook variable buffer-local.
2449Instead, use `add-hook' and specify t for the LOCAL argument.
2450usage: (run-hook-with-args HOOK &rest ARGS) */)
2451 (nargs, args)
2452 int nargs;
2453 Lisp_Object *args;
2454{
2455 return run_hook_with_args (nargs, args, to_completion);
2456}
2457
2458DEFUN ("run-hook-with-args-until-success", Frun_hook_with_args_until_success,
2459 Srun_hook_with_args_until_success, 1, MANY, 0,
2460 doc: /* Run HOOK with the specified arguments ARGS.
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
2467returns a non-nil value. Then we return that value.
2468However, if they all return nil, we return nil.
2469
2470Do not use `make-local-variable' to make a hook variable buffer-local.
2471Instead, use `add-hook' and specify t for the LOCAL argument.
2472usage: (run-hook-with-args-until-success HOOK &rest ARGS) */)
2473 (nargs, args)
2474 int nargs;
2475 Lisp_Object *args;
2476{
2477 return run_hook_with_args (nargs, args, until_success);
2478}
2479
2480DEFUN ("run-hook-with-args-until-failure", Frun_hook_with_args_until_failure,
2481 Srun_hook_with_args_until_failure, 1, MANY, 0,
2482 doc: /* Run HOOK with the specified arguments ARGS.
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.
2490
2491Do not use `make-local-variable' to make a hook variable buffer-local.
2492Instead, use `add-hook' and specify t for the LOCAL argument.
2493usage: (run-hook-with-args-until-failure HOOK &rest ARGS) */)
2494 (nargs, args)
2495 int nargs;
2496 Lisp_Object *args;
2497{
2498 return run_hook_with_args (nargs, args, until_failure);
2499}
2500
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
2509static Lisp_Object
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;
2516 Lisp_Object globals;
2517 struct gcpro gcpro1, gcpro2, gcpro3;
2518
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))
2522 return Qnil;
2523
2524 sym = args[0];
2525 val = find_symbol_value (sym);
2526 ret = (cond == until_failure ? Qt : Qnil);
2527
2528 if (EQ (val, Qunbound) || NILP (val))
2529 return ret;
2530 else if (!CONSP (val) || EQ (XCAR (val), Qlambda))
2531 {
2532 args[0] = val;
2533 return Ffuncall (nargs, args);
2534 }
2535 else
2536 {
2537 globals = Qnil;
2538 GCPRO3 (sym, val, globals);
2539
2540 for (;
2541 CONSP (val) && ((cond == to_completion)
2542 || (cond == until_success ? NILP (ret)
2543 : !NILP (ret)));
2544 val = XCDR (val))
2545 {
2546 if (EQ (XCAR (val), Qt))
2547 {
2548 /* t indicates this hook has a local binding;
2549 it means to run the global binding too. */
2550
2551 for (globals = Fdefault_value (sym);
2552 CONSP (globals) && ((cond == to_completion)
2553 || (cond == until_success ? NILP (ret)
2554 : !NILP (ret)));
2555 globals = XCDR (globals))
2556 {
2557 args[0] = XCAR (globals);
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);
2562 }
2563 }
2564 else
2565 {
2566 args[0] = XCAR (val);
2567 ret = Ffuncall (nargs, args);
2568 }
2569 }
2570
2571 UNGCPRO;
2572 return ret;
2573 }
2574}
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;
2591 Lisp_Object globals;
2592 struct gcpro gcpro1, gcpro2, gcpro3;
2593
2594 sym = args[0];
2595 globals = Qnil;
2596 GCPRO3 (sym, val, globals);
2597
2598 for (val = funlist; CONSP (val); val = XCDR (val))
2599 {
2600 if (EQ (XCAR (val), Qt))
2601 {
2602 /* t indicates this hook has a local binding;
2603 it means to run the global binding too. */
2604
2605 for (globals = Fdefault_value (sym);
2606 CONSP (globals);
2607 globals = XCDR (globals))
2608 {
2609 args[0] = XCAR (globals);
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);
2614 }
2615 }
2616 else
2617 {
2618 args[0] = XCAR (val);
2619 Ffuncall (nargs, args);
2620 }
2621 }
2622 UNGCPRO;
2623 return Qnil;
2624}
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}
2639\f
2640/* Apply fn to arg */
2641Lisp_Object
2642apply1 (fn, arg)
2643 Lisp_Object fn, arg;
2644{
2645 struct gcpro gcpro1;
2646
2647 GCPRO1 (fn);
2648 if (NILP (arg))
2649 RETURN_UNGCPRO (Ffuncall (1, &fn));
2650 gcpro1.nvars = 2;
2651#ifdef NO_ARG_ARRAY
2652 {
2653 Lisp_Object args[2];
2654 args[0] = fn;
2655 args[1] = arg;
2656 gcpro1.var = args;
2657 RETURN_UNGCPRO (Fapply (2, args));
2658 }
2659#else /* not NO_ARG_ARRAY */
2660 RETURN_UNGCPRO (Fapply (2, &fn));
2661#endif /* not NO_ARG_ARRAY */
2662}
2663
2664/* Call function fn on no arguments */
2665Lisp_Object
2666call0 (fn)
2667 Lisp_Object fn;
2668{
2669 struct gcpro gcpro1;
2670
2671 GCPRO1 (fn);
2672 RETURN_UNGCPRO (Ffuncall (1, &fn));
2673}
2674
2675/* Call function fn with 1 argument arg1 */
2676/* ARGSUSED */
2677Lisp_Object
2678call1 (fn, arg1)
2679 Lisp_Object fn, arg1;
2680{
2681 struct gcpro gcpro1;
2682#ifdef NO_ARG_ARRAY
2683 Lisp_Object args[2];
2684
2685 args[0] = fn;
2686 args[1] = arg1;
2687 GCPRO1 (args[0]);
2688 gcpro1.nvars = 2;
2689 RETURN_UNGCPRO (Ffuncall (2, args));
2690#else /* not NO_ARG_ARRAY */
2691 GCPRO1 (fn);
2692 gcpro1.nvars = 2;
2693 RETURN_UNGCPRO (Ffuncall (2, &fn));
2694#endif /* not NO_ARG_ARRAY */
2695}
2696
2697/* Call function fn with 2 arguments arg1, arg2 */
2698/* ARGSUSED */
2699Lisp_Object
2700call2 (fn, arg1, arg2)
2701 Lisp_Object fn, arg1, arg2;
2702{
2703 struct gcpro gcpro1;
2704#ifdef NO_ARG_ARRAY
2705 Lisp_Object args[3];
2706 args[0] = fn;
2707 args[1] = arg1;
2708 args[2] = arg2;
2709 GCPRO1 (args[0]);
2710 gcpro1.nvars = 3;
2711 RETURN_UNGCPRO (Ffuncall (3, args));
2712#else /* not NO_ARG_ARRAY */
2713 GCPRO1 (fn);
2714 gcpro1.nvars = 3;
2715 RETURN_UNGCPRO (Ffuncall (3, &fn));
2716#endif /* not NO_ARG_ARRAY */
2717}
2718
2719/* Call function fn with 3 arguments arg1, arg2, arg3 */
2720/* ARGSUSED */
2721Lisp_Object
2722call3 (fn, arg1, arg2, arg3)
2723 Lisp_Object fn, arg1, arg2, arg3;
2724{
2725 struct gcpro gcpro1;
2726#ifdef NO_ARG_ARRAY
2727 Lisp_Object args[4];
2728 args[0] = fn;
2729 args[1] = arg1;
2730 args[2] = arg2;
2731 args[3] = arg3;
2732 GCPRO1 (args[0]);
2733 gcpro1.nvars = 4;
2734 RETURN_UNGCPRO (Ffuncall (4, args));
2735#else /* not NO_ARG_ARRAY */
2736 GCPRO1 (fn);
2737 gcpro1.nvars = 4;
2738 RETURN_UNGCPRO (Ffuncall (4, &fn));
2739#endif /* not NO_ARG_ARRAY */
2740}
2741
2742/* Call function fn with 4 arguments arg1, arg2, arg3, arg4 */
2743/* ARGSUSED */
2744Lisp_Object
2745call4 (fn, arg1, arg2, arg3, arg4)
2746 Lisp_Object fn, arg1, arg2, arg3, arg4;
2747{
2748 struct gcpro gcpro1;
2749#ifdef NO_ARG_ARRAY
2750 Lisp_Object args[5];
2751 args[0] = fn;
2752 args[1] = arg1;
2753 args[2] = arg2;
2754 args[3] = arg3;
2755 args[4] = arg4;
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
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
2817/* The caller should GCPRO all the elements of ARGS. */
2818
2819DEFUN ("funcall", Ffuncall, Sfuncall, 1, MANY, 0,
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)
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;
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))
2842 Fgarbage_collect ();
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)
2849 error ("Lisp nesting exceeds `max-lisp-eval-depth'");
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
2863 CHECK_CONS_LIST ();
2864
2865 retry:
2866
2867 fun = args[0];
2868
2869 fun = Findirect_function (fun, Qnil);
2870
2871 if (SUBRP (fun))
2872 {
2873 if (numargs < XSUBR (fun)->min_args
2874 || (XSUBR (fun)->max_args >= 0 && XSUBR (fun)->max_args < numargs))
2875 {
2876 XSETFASTINT (lisp_numargs, numargs);
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:
2907 val = (*XSUBR (fun)->function) (internal_args[0], internal_args[1]);
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],
2915 internal_args[2], internal_args[3]);
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;
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;
2933
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
2941 default:
2942
2943 /* If a subr takes more than 8 arguments without using MANY
2944 or UNEVALLED, we need to extend this function to support it.
2945 Until this is done, there is no way to call the function. */
2946 abort ();
2947 }
2948 }
2949 if (COMPILEDP (fun))
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);
2956 if (!SYMBOLP (funcar))
2957 return Fsignal (Qinvalid_function, Fcons (fun, Qnil));
2958 if (EQ (funcar, Qlambda))
2959 val = funcall_lambda (fun, numargs, args + 1);
2960 else if (EQ (funcar, Qautoload))
2961 {
2962 do_autoload (fun, args[0]);
2963 CHECK_CONS_LIST ();
2964 goto retry;
2965 }
2966 else
2967 return Fsignal (Qinvalid_function, Fcons (fun, Qnil));
2968 }
2969 done:
2970 CHECK_CONS_LIST ();
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
3027static Lisp_Object
3028funcall_lambda (fun, nargs, arg_vector)
3029 Lisp_Object fun;
3030 int nargs;
3031 register Lisp_Object *arg_vector;
3032{
3033 Lisp_Object val, syms_left, next;
3034 int count = SPECPDL_INDEX ();
3035 int i, optional, rest;
3036
3037 if (CONSP (fun))
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 }
3045 else if (COMPILEDP (fun))
3046 syms_left = AREF (fun, COMPILED_ARGLIST);
3047 else
3048 abort ();
3049
3050 i = optional = rest = 0;
3051 for (; CONSP (syms_left); syms_left = XCDR (syms_left))
3052 {
3053 QUIT;
3054
3055 next = XCAR (syms_left);
3056 while (!SYMBOLP (next))
3057 next = Fsignal (Qinvalid_function, Fcons (fun, Qnil));
3058
3059 if (EQ (next, Qand_rest))
3060 rest = 1;
3061 else if (EQ (next, Qand_optional))
3062 optional = 1;
3063 else if (rest)
3064 {
3065 specbind (next, Flist (nargs - i, &arg_vector[i]));
3066 i = nargs;
3067 }
3068 else if (i < nargs)
3069 specbind (next, arg_vector[i++]);
3070 else if (!optional)
3071 return Fsignal (Qwrong_number_of_arguments,
3072 Fcons (fun, Fcons (make_number (nargs), Qnil)));
3073 else
3074 specbind (next, Qnil);
3075 }
3076
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)));
3082
3083 if (CONSP (fun))
3084 val = Fprogn (XCDR (XCDR (fun)));
3085 else
3086 {
3087 /* If we have not actually read the bytecode string
3088 and constants vector yet, fetch them from the file. */
3089 if (CONSP (AREF (fun, COMPILED_BYTECODE)))
3090 Ffetch_bytecode (fun);
3091 val = Fbyte_code (AREF (fun, COMPILED_BYTECODE),
3092 AREF (fun, COMPILED_CONSTANTS),
3093 AREF (fun, COMPILED_STACK_DEPTH));
3094 }
3095
3096 return unbind_to (count, val);
3097}
3098
3099DEFUN ("fetch-bytecode", Ffetch_bytecode, Sfetch_bytecode,
3100 1, 1, 0,
3101 doc: /* If byte-compiled OBJECT is lazy-loaded, fetch it now. */)
3102 (object)
3103 Lisp_Object object;
3104{
3105 Lisp_Object tem;
3106
3107 if (COMPILEDP (object) && CONSP (AREF (object, COMPILED_BYTECODE)))
3108 {
3109 tem = read_doc_string (AREF (object, COMPILED_BYTECODE));
3110 if (!CONSP (tem))
3111 {
3112 tem = AREF (object, COMPILED_BYTECODE);
3113 if (CONSP (tem) && STRINGP (XCAR (tem)))
3114 error ("Invalid byte code in %s", SDATA (XCAR (tem)));
3115 else
3116 error ("Invalid byte code");
3117 }
3118 AREF (object, COMPILED_BYTECODE) = XCAR (tem);
3119 AREF (object, COMPILED_CONSTANTS) = XCDR (tem);
3120 }
3121 return object;
3122}
3123\f
3124void
3125grow_specpdl ()
3126{
3127 register int count = SPECPDL_INDEX ();
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)
3133 Fsignal (Qerror,
3134 Fcons (build_string ("Variable binding depth exceeds max-specpdl-size"), Qnil));
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{
3147 Lisp_Object ovalue;
3148 Lisp_Object valcontents;
3149
3150 CHECK_SYMBOL (symbol);
3151 if (specpdl_ptr == specpdl + specpdl_size)
3152 grow_specpdl ();
3153
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))
3158 {
3159 specpdl_ptr->symbol = symbol;
3160 specpdl_ptr->old_value = valcontents;
3161 specpdl_ptr->func = NULL;
3162 ++specpdl_ptr;
3163 SET_SYMBOL_VALUE (symbol, value);
3164 }
3165 else
3166 {
3167 Lisp_Object valcontents;
3168
3169 ovalue = find_symbol_value (symbol);
3170 specpdl_ptr->func = 0;
3171 specpdl_ptr->old_value = ovalue;
3172
3173 valcontents = XSYMBOL (symbol)->value;
3174
3175 if (BUFFER_LOCAL_VALUEP (valcontents)
3176 || SOME_BUFFER_LOCAL_VALUEP (valcontents)
3177 || BUFFER_OBJFWDP (valcontents))
3178 {
3179 Lisp_Object where, current_buffer;
3180
3181 current_buffer = Fcurrent_buffer ();
3182
3183 /* For a local variable, record both the symbol and which
3184 buffer's or frame's value we are saving. */
3185 if (!NILP (Flocal_variable_p (symbol, Qnil)))
3186 where = current_buffer;
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. */
3196 specpdl_ptr->symbol = Fcons (symbol, Fcons (where, current_buffer));
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. */
3203 if (NILP (where)
3204 && BUFFER_OBJFWDP (valcontents))
3205 {
3206 ++specpdl_ptr;
3207 Fset_default (symbol, value);
3208 return;
3209 }
3210 }
3211 else
3212 specpdl_ptr->symbol = symbol;
3213
3214 specpdl_ptr++;
3215 if (BUFFER_OBJFWDP (ovalue) || KBOARD_OBJFWDP (ovalue))
3216 store_symval_forwarding (symbol, ovalue, value, NULL);
3217 else
3218 set_internal (symbol, value, 0, 1);
3219 }
3220}
3221
3222void
3223record_unwind_protect (function, arg)
3224 Lisp_Object (*function) P_ ((Lisp_Object));
3225 Lisp_Object arg;
3226{
3227 eassert (!handling_signal);
3228
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{
3242 Lisp_Object quitf = Vquit_flag;
3243 struct gcpro gcpro1, gcpro2;
3244
3245 GCPRO2 (value, quitf);
3246 Vquit_flag = Qnil;
3247
3248 while (specpdl_ptr != specpdl + count)
3249 {
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. */
3255
3256 struct specbinding this_binding;
3257 this_binding = *--specpdl_ptr;
3258
3259 if (this_binding.func != 0)
3260 (*this_binding.func) (this_binding.old_value);
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
3264 bound a variable that had a buffer-local or frame-local
3265 binding. WHERE nil means that the variable had the default
3266 value when it was bound. CURRENT-BUFFER is the buffer that
3267 was current when the variable was bound. */
3268 else if (CONSP (this_binding.symbol))
3269 {
3270 Lisp_Object symbol, where;
3271
3272 symbol = XCAR (this_binding.symbol);
3273 where = XCAR (XCDR (this_binding.symbol));
3274
3275 if (NILP (where))
3276 Fset_default (symbol, this_binding.old_value);
3277 else if (BUFFERP (where))
3278 set_internal (symbol, this_binding.old_value, XBUFFER (where), 1);
3279 else
3280 set_internal (symbol, this_binding.old_value, NULL, 1);
3281 }
3282 else
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. */
3287 if (!MISCP (SYMBOL_VALUE (this_binding.symbol)))
3288 SET_SYMBOL_VALUE (this_binding.symbol, this_binding.old_value);
3289 else
3290 set_internal (this_binding.symbol, this_binding.old_value, 0, 1);
3291 }
3292 }
3293
3294 if (NILP (Vquit_flag) && !NILP (quitf))
3295 Vquit_flag = quitf;
3296
3297 UNGCPRO;
3298 return value;
3299}
3300\f
3301DEFUN ("backtrace-debug", Fbacktrace_debug, Sbacktrace_debug, 2, 2, 0,
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)
3305 Lisp_Object level, flag;
3306{
3307 register struct backtrace *backlist = backtrace_list;
3308 register int i;
3309
3310 CHECK_NUMBER (level);
3311
3312 for (i = 0; backlist && i < XINT (level); i++)
3313 {
3314 backlist = backlist->next;
3315 }
3316
3317 if (backlist)
3318 backlist->debug_on_exit = !NILP (flag);
3319
3320 return flag;
3321}
3322
3323DEFUN ("backtrace", Fbacktrace, Sbacktrace, 0, 0, "",
3324 doc: /* Print a trace of Lisp function calls currently active.
3325Output stream used is value of `standard-output'. */)
3326 ()
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
3335 XSETFASTINT (Vprint_level, 3);
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);
3346 write_string ("\n", -1);
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;
3356 !NILP (tail);
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 }
3371 write_string (")\n", -1);
3372 }
3373 backlist = backlist->next;
3374 }
3375
3376 Vprint_level = Qnil;
3377 UNGCPRO;
3378 return Qnil;
3379}
3380
3381DEFUN ("backtrace-frame", Fbacktrace_frame, Sbacktrace_frame, 1, 1, NULL,
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)
3392 Lisp_Object nframes;
3393{
3394 register struct backtrace *backlist = backtrace_list;
3395 register int i;
3396 Lisp_Object tem;
3397
3398 CHECK_NATNUM (nframes);
3399
3400 /* Find the frame requested. */
3401 for (i = 0; backlist && i < XFASTINT (nframes); i++)
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}
3418
3419\f
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
3439void
3440syms_of_eval ()
3441{
3442 DEFVAR_INT ("max-specpdl-size", &max_specpdl_size,
3443 doc: /* *Limit on number of Lisp variable bindings and `unwind-protect's.
3444If Lisp code tries to increase the total number past this amount,
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. */);
3449
3450 DEFVAR_INT ("max-lisp-eval-depth", &max_lisp_eval_depth,
3451 doc: /* *Limit on depth in `eval', `apply' and `funcall' before error.
3452
3453This limit serves to catch infinite recursions for you before they cause
3454actual stack overflow in C, which would be fatal for Emacs.
3455You can safely make it considerably larger than its default value,
3456if that proves inconveniently small. However, if you increase it too far,
3457Emacs could overflow the real C stack, and crash. */);
3458
3459 DEFVAR_LISP ("quit-flag", &Vquit_flag,
3460 doc: /* Non-nil causes `eval' to abort, unless `inhibit-quit' is non-nil.
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. */);
3466 Vquit_flag = Qnil;
3467
3468 DEFVAR_LISP ("inhibit-quit", &Vinhibit_quit,
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. */);
3474 Vinhibit_quit = Qnil;
3475
3476 Qinhibit_quit = intern ("inhibit-quit");
3477 staticpro (&Qinhibit_quit);
3478
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
3488 Qdeclare = intern ("declare");
3489 staticpro (&Qdeclare);
3490
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
3511 DEFVAR_LISP ("stack-trace-on-error", &Vstack_trace_on_error,
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.
3515If the value is a list, an error only means to display a backtrace
3516if one of its condition symbols appears in the list. */);
3517 Vstack_trace_on_error = Qnil;
3518
3519 DEFVAR_LISP ("debug-on-error", &Vdebug_on_error,
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'. */);
3528 Vdebug_on_error = Qnil;
3529
3530 DEFVAR_LISP ("debug-ignored-errors", &Vdebug_ignored_errors,
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'. */);
3537 Vdebug_ignored_errors = Qnil;
3538
3539 DEFVAR_BOOL ("debug-on-quit", &debug_on_quit,
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'. */);
3542 debug_on_quit = 0;
3543
3544 DEFVAR_BOOL ("debug-on-next-call", &debug_on_next_call,
3545 doc: /* Non-nil means enter debugger before next `eval', `apply' or `funcall'. */);
3546
3547 DEFVAR_BOOL ("debugger-may-continue", &debugger_may_continue,
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. */);
3551 debugger_may_continue = 1;
3552
3553 DEFVAR_LISP ("debugger", &Vdebugger,
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. */);
3560 Vdebugger = Qnil;
3561
3562 DEFVAR_LISP ("signal-hook-function", &Vsignal_hook_function,
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. */);
3566 Vsignal_hook_function = Qnil;
3567
3568 DEFVAR_LISP ("debug-on-signal", &Vdebug_on_signal,
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. */);
3572 Vdebug_on_signal = Qnil;
3573
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
3582 Vrun_hooks = intern ("run-hooks");
3583 staticpro (&Vrun_hooks);
3584
3585 staticpro (&Vautoload_queue);
3586 Vautoload_queue = Qnil;
3587 staticpro (&Vsignaling_function);
3588 Vsignaling_function = Qnil;
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);
3603 defsubr (&Sdefvaralias);
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);
3616 defsubr (&Scalled_interactively_p);
3617 defsubr (&Scommandp);
3618 defsubr (&Sautoload);
3619 defsubr (&Seval);
3620 defsubr (&Sapply);
3621 defsubr (&Sfuncall);
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);
3626 defsubr (&Sfetch_bytecode);
3627 defsubr (&Sbacktrace_debug);
3628 defsubr (&Sbacktrace);
3629 defsubr (&Sbacktrace_frame);
3630}
3631
3632/* arch-tag: 014a07aa-33ab-4a8f-a3d2-ee8a4a9ff7fb
3633 (do not change this comment) */