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