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