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