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