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