Mercurial > emacs
annotate src/eval.c @ 5594:f97415a8cf41
(request_sigio, unrequest_sigio): Add new versions of
these routines for the CX/UX operating system.
(sys_signal) [SA_RESTART]: Set this flag.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Sat, 15 Jan 1994 13:04:09 +0000 |
parents | c61f49e4283a |
children | cc9d9ab24008 |
rev | line source |
---|---|
272 | 1 /* Evaluator for GNU Emacs Lisp interpreter. |
2961 | 2 Copyright (C) 1985, 1986, 1987, 1993 Free Software Foundation, Inc. |
272 | 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 1, or (at your option) | |
9 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; see the file COPYING. If not, write to | |
18 the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ | |
19 | |
20 | |
4696
1fc792473491
Include <config.h> instead of "config.h".
Roland McGrath <roland@gnu.org>
parents:
4474
diff
changeset
|
21 #include <config.h> |
272 | 22 #include "lisp.h" |
2439
b6c62e4abf59
Put interrupt input blocking in a separate file from xterm.h.
Jim Blandy <jimb@redhat.com>
parents:
1564
diff
changeset
|
23 #include "blockinput.h" |
272 | 24 |
25 #ifndef standalone | |
26 #include "commands.h" | |
515 | 27 #include "keyboard.h" |
272 | 28 #else |
29 #define INTERACTIVE 1 | |
30 #endif | |
31 | |
32 #include <setjmp.h> | |
33 | |
34 /* This definition is duplicated in alloc.c and keyboard.c */ | |
35 /* Putting it in lisp.h makes cc bomb out! */ | |
36 | |
37 struct backtrace | |
38 { | |
39 struct backtrace *next; | |
40 Lisp_Object *function; | |
41 Lisp_Object *args; /* Points to vector of args. */ | |
727 | 42 int nargs; /* Length of vector. |
43 If nargs is UNEVALLED, args points to slot holding | |
44 list of unevalled args */ | |
272 | 45 char evalargs; |
46 /* Nonzero means call value of debugger when done with this operation. */ | |
47 char debug_on_exit; | |
48 }; | |
49 | |
50 struct backtrace *backtrace_list; | |
51 | |
1196
65e2edefe748
* eval.c (Fcondition_case): Rearranged for clarity. Don't worry
Jim Blandy <jimb@redhat.com>
parents:
940
diff
changeset
|
52 /* This structure helps implement the `catch' and `throw' control |
65e2edefe748
* eval.c (Fcondition_case): Rearranged for clarity. Don't worry
Jim Blandy <jimb@redhat.com>
parents:
940
diff
changeset
|
53 structure. A struct catchtag contains all the information needed |
65e2edefe748
* eval.c (Fcondition_case): Rearranged for clarity. Don't worry
Jim Blandy <jimb@redhat.com>
parents:
940
diff
changeset
|
54 to restore the state of the interpreter after a non-local jump. |
65e2edefe748
* eval.c (Fcondition_case): Rearranged for clarity. Don't worry
Jim Blandy <jimb@redhat.com>
parents:
940
diff
changeset
|
55 |
65e2edefe748
* eval.c (Fcondition_case): Rearranged for clarity. Don't worry
Jim Blandy <jimb@redhat.com>
parents:
940
diff
changeset
|
56 Handlers for error conditions (represented by `struct handler' |
65e2edefe748
* eval.c (Fcondition_case): Rearranged for clarity. Don't worry
Jim Blandy <jimb@redhat.com>
parents:
940
diff
changeset
|
57 structures) just point to a catch tag to do the cleanup required |
65e2edefe748
* eval.c (Fcondition_case): Rearranged for clarity. Don't worry
Jim Blandy <jimb@redhat.com>
parents:
940
diff
changeset
|
58 for their jumps. |
65e2edefe748
* eval.c (Fcondition_case): Rearranged for clarity. Don't worry
Jim Blandy <jimb@redhat.com>
parents:
940
diff
changeset
|
59 |
65e2edefe748
* eval.c (Fcondition_case): Rearranged for clarity. Don't worry
Jim Blandy <jimb@redhat.com>
parents:
940
diff
changeset
|
60 catchtag structures are chained together in the C calling stack; |
65e2edefe748
* eval.c (Fcondition_case): Rearranged for clarity. Don't worry
Jim Blandy <jimb@redhat.com>
parents:
940
diff
changeset
|
61 the `next' member points to the next outer catchtag. |
65e2edefe748
* eval.c (Fcondition_case): Rearranged for clarity. Don't worry
Jim Blandy <jimb@redhat.com>
parents:
940
diff
changeset
|
62 |
65e2edefe748
* eval.c (Fcondition_case): Rearranged for clarity. Don't worry
Jim Blandy <jimb@redhat.com>
parents:
940
diff
changeset
|
63 A call like (throw TAG VAL) searches for a catchtag whose `tag' |
65e2edefe748
* eval.c (Fcondition_case): Rearranged for clarity. Don't worry
Jim Blandy <jimb@redhat.com>
parents:
940
diff
changeset
|
64 member is TAG, and then unbinds to it. The `val' member is used to |
65e2edefe748
* eval.c (Fcondition_case): Rearranged for clarity. Don't worry
Jim Blandy <jimb@redhat.com>
parents:
940
diff
changeset
|
65 hold VAL while the stack is unwound; `val' is returned as the value |
65e2edefe748
* eval.c (Fcondition_case): Rearranged for clarity. Don't worry
Jim Blandy <jimb@redhat.com>
parents:
940
diff
changeset
|
66 of the catch form. |
65e2edefe748
* eval.c (Fcondition_case): Rearranged for clarity. Don't worry
Jim Blandy <jimb@redhat.com>
parents:
940
diff
changeset
|
67 |
65e2edefe748
* eval.c (Fcondition_case): Rearranged for clarity. Don't worry
Jim Blandy <jimb@redhat.com>
parents:
940
diff
changeset
|
68 All the other members are concerned with restoring the interpreter |
65e2edefe748
* eval.c (Fcondition_case): Rearranged for clarity. Don't worry
Jim Blandy <jimb@redhat.com>
parents:
940
diff
changeset
|
69 state. */ |
272 | 70 struct catchtag |
71 { | |
72 Lisp_Object tag; | |
73 Lisp_Object val; | |
74 struct catchtag *next; | |
75 struct gcpro *gcpro; | |
76 jmp_buf jmp; | |
77 struct backtrace *backlist; | |
78 struct handler *handlerlist; | |
79 int lisp_eval_depth; | |
80 int pdlcount; | |
81 int poll_suppress_count; | |
82 }; | |
83 | |
84 struct catchtag *catchlist; | |
85 | |
86 Lisp_Object Qautoload, Qmacro, Qexit, Qinteractive, Qcommandp, Qdefun; | |
381 | 87 Lisp_Object Qinhibit_quit, Vinhibit_quit, Vquit_flag; |
272 | 88 Lisp_Object Qmocklisp_arguments, Vmocklisp_arguments, Qmocklisp; |
89 Lisp_Object Qand_rest, Qand_optional; | |
90 Lisp_Object Qdebug_on_error; | |
91 | |
92 Lisp_Object Vrun_hooks; | |
93 | |
94 /* Non-nil means record all fset's and provide's, to be undone | |
95 if the file being autoloaded is not fully loaded. | |
96 They are recorded by being consed onto the front of Vautoload_queue: | |
97 (FUN . ODEF) for a defun, (OFEATURES . nil) for a provide. */ | |
98 | |
99 Lisp_Object Vautoload_queue; | |
100 | |
101 /* Current number of specbindings allocated in specpdl. */ | |
102 int specpdl_size; | |
103 | |
104 /* Pointer to beginning of specpdl. */ | |
105 struct specbinding *specpdl; | |
106 | |
107 /* Pointer to first unused element in specpdl. */ | |
108 struct specbinding *specpdl_ptr; | |
109 | |
110 /* Maximum size allowed for specpdl allocation */ | |
111 int max_specpdl_size; | |
112 | |
113 /* Depth in Lisp evaluations and function calls. */ | |
114 int lisp_eval_depth; | |
115 | |
116 /* Maximum allowed depth in Lisp evaluations and function calls. */ | |
117 int max_lisp_eval_depth; | |
118 | |
119 /* Nonzero means enter debugger before next function call */ | |
120 int debug_on_next_call; | |
121 | |
684 | 122 /* List of conditions (non-nil atom means all) which cause a backtrace |
706
86cb5db0b6c3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
687
diff
changeset
|
123 if an error is handled by the command loop's error handler. */ |
684 | 124 Lisp_Object Vstack_trace_on_error; |
272 | 125 |
684 | 126 /* List of conditions (non-nil atom means all) which enter the debugger |
706
86cb5db0b6c3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
687
diff
changeset
|
127 if an error is handled by the command loop's error handler. */ |
684 | 128 Lisp_Object Vdebug_on_error; |
272 | 129 |
130 /* Nonzero means enter debugger if a quit signal | |
684 | 131 is handled by the command loop's error handler. */ |
272 | 132 int debug_on_quit; |
133 | |
1196
65e2edefe748
* eval.c (Fcondition_case): Rearranged for clarity. Don't worry
Jim Blandy <jimb@redhat.com>
parents:
940
diff
changeset
|
134 /* The value of num_nonmacro_input_chars as of the last time we |
65e2edefe748
* eval.c (Fcondition_case): Rearranged for clarity. Don't worry
Jim Blandy <jimb@redhat.com>
parents:
940
diff
changeset
|
135 started to enter the debugger. If we decide to enter the debugger |
65e2edefe748
* eval.c (Fcondition_case): Rearranged for clarity. Don't worry
Jim Blandy <jimb@redhat.com>
parents:
940
diff
changeset
|
136 again when this is still equal to num_nonmacro_input_chars, then we |
65e2edefe748
* eval.c (Fcondition_case): Rearranged for clarity. Don't worry
Jim Blandy <jimb@redhat.com>
parents:
940
diff
changeset
|
137 know that the debugger itself has an error, and we should just |
65e2edefe748
* eval.c (Fcondition_case): Rearranged for clarity. Don't worry
Jim Blandy <jimb@redhat.com>
parents:
940
diff
changeset
|
138 signal the error instead of entering an infinite loop of debugger |
65e2edefe748
* eval.c (Fcondition_case): Rearranged for clarity. Don't worry
Jim Blandy <jimb@redhat.com>
parents:
940
diff
changeset
|
139 invocations. */ |
65e2edefe748
* eval.c (Fcondition_case): Rearranged for clarity. Don't worry
Jim Blandy <jimb@redhat.com>
parents:
940
diff
changeset
|
140 int when_entered_debugger; |
272 | 141 |
142 Lisp_Object Vdebugger; | |
143 | |
144 void specbind (), record_unwind_protect (); | |
145 | |
146 Lisp_Object funcall_lambda (); | |
147 extern Lisp_Object ml_apply (); /* Apply a mocklisp function to unevaluated argument list */ | |
148 | |
149 init_eval_once () | |
150 { | |
151 specpdl_size = 50; | |
152 specpdl = (struct specbinding *) malloc (specpdl_size * sizeof (struct specbinding)); | |
153 max_specpdl_size = 600; | |
154 max_lisp_eval_depth = 200; | |
155 } | |
156 | |
157 init_eval () | |
158 { | |
159 specpdl_ptr = specpdl; | |
160 catchlist = 0; | |
161 handlerlist = 0; | |
162 backtrace_list = 0; | |
163 Vquit_flag = Qnil; | |
164 debug_on_next_call = 0; | |
165 lisp_eval_depth = 0; | |
1196
65e2edefe748
* eval.c (Fcondition_case): Rearranged for clarity. Don't worry
Jim Blandy <jimb@redhat.com>
parents:
940
diff
changeset
|
166 when_entered_debugger = 0; |
272 | 167 } |
168 | |
169 Lisp_Object | |
170 call_debugger (arg) | |
171 Lisp_Object arg; | |
172 { | |
173 if (lisp_eval_depth + 20 > max_lisp_eval_depth) | |
174 max_lisp_eval_depth = lisp_eval_depth + 20; | |
175 if (specpdl_size + 40 > max_specpdl_size) | |
176 max_specpdl_size = specpdl_size + 40; | |
177 debug_on_next_call = 0; | |
1196
65e2edefe748
* eval.c (Fcondition_case): Rearranged for clarity. Don't worry
Jim Blandy <jimb@redhat.com>
parents:
940
diff
changeset
|
178 when_entered_debugger = num_nonmacro_input_chars; |
272 | 179 return apply1 (Vdebugger, arg); |
180 } | |
181 | |
182 do_debug_on_call (code) | |
183 Lisp_Object code; | |
184 { | |
185 debug_on_next_call = 0; | |
186 backtrace_list->debug_on_exit = 1; | |
187 call_debugger (Fcons (code, Qnil)); | |
188 } | |
189 | |
190 /* NOTE!!! Every function that can call EVAL must protect its args | |
191 and temporaries from garbage collection while it needs them. | |
192 The definition of `For' shows what you have to do. */ | |
193 | |
194 DEFUN ("or", For, Sor, 0, UNEVALLED, 0, | |
195 "Eval args until one of them yields non-nil, then return that value.\n\ | |
196 The remaining args are not evalled at all.\n\ | |
197 If all args return nil, return nil.") | |
198 (args) | |
199 Lisp_Object args; | |
200 { | |
201 register Lisp_Object val; | |
202 Lisp_Object args_left; | |
203 struct gcpro gcpro1; | |
204 | |
485 | 205 if (NILP(args)) |
272 | 206 return Qnil; |
207 | |
208 args_left = args; | |
209 GCPRO1 (args_left); | |
210 | |
211 do | |
212 { | |
213 val = Feval (Fcar (args_left)); | |
485 | 214 if (!NILP (val)) |
272 | 215 break; |
216 args_left = Fcdr (args_left); | |
217 } | |
485 | 218 while (!NILP(args_left)); |
272 | 219 |
220 UNGCPRO; | |
221 return val; | |
222 } | |
223 | |
224 DEFUN ("and", Fand, Sand, 0, UNEVALLED, 0, | |
225 "Eval args until one of them yields nil, then return nil.\n\ | |
226 The remaining args are not evalled at all.\n\ | |
227 If no arg yields nil, return the last arg's value.") | |
228 (args) | |
229 Lisp_Object args; | |
230 { | |
231 register Lisp_Object val; | |
232 Lisp_Object args_left; | |
233 struct gcpro gcpro1; | |
234 | |
485 | 235 if (NILP(args)) |
272 | 236 return Qt; |
237 | |
238 args_left = args; | |
239 GCPRO1 (args_left); | |
240 | |
241 do | |
242 { | |
243 val = Feval (Fcar (args_left)); | |
485 | 244 if (NILP (val)) |
272 | 245 break; |
246 args_left = Fcdr (args_left); | |
247 } | |
485 | 248 while (!NILP(args_left)); |
272 | 249 |
250 UNGCPRO; | |
251 return val; | |
252 } | |
253 | |
254 DEFUN ("if", Fif, Sif, 2, UNEVALLED, 0, | |
255 "(if COND THEN ELSE...): if COND yields non-nil, do THEN, else do ELSE...\n\ | |
256 Returns the value of THEN or the value of the last of the ELSE's.\n\ | |
257 THEN must be one expression, but ELSE... can be zero or more expressions.\n\ | |
258 If COND yields nil, and there are no ELSE's, the value is nil.") | |
259 (args) | |
260 Lisp_Object args; | |
261 { | |
262 register Lisp_Object cond; | |
263 struct gcpro gcpro1; | |
264 | |
265 GCPRO1 (args); | |
266 cond = Feval (Fcar (args)); | |
267 UNGCPRO; | |
268 | |
485 | 269 if (!NILP (cond)) |
272 | 270 return Feval (Fcar (Fcdr (args))); |
271 return Fprogn (Fcdr (Fcdr (args))); | |
272 } | |
273 | |
274 DEFUN ("cond", Fcond, Scond, 0, UNEVALLED, 0, | |
275 "(cond CLAUSES...): try each clause until one succeeds.\n\ | |
276 Each clause looks like (CONDITION BODY...). CONDITION is evaluated\n\ | |
277 and, if the value is non-nil, this clause succeeds:\n\ | |
278 then the expressions in BODY are evaluated and the last one's\n\ | |
279 value is the value of the cond-form.\n\ | |
280 If no clause succeeds, cond returns nil.\n\ | |
281 If a clause has one element, as in (CONDITION),\n\ | |
282 CONDITION's value if non-nil is returned from the cond-form.") | |
283 (args) | |
284 Lisp_Object args; | |
285 { | |
286 register Lisp_Object clause, val; | |
287 struct gcpro gcpro1; | |
288 | |
289 val = Qnil; | |
290 GCPRO1 (args); | |
485 | 291 while (!NILP (args)) |
272 | 292 { |
293 clause = Fcar (args); | |
294 val = Feval (Fcar (clause)); | |
485 | 295 if (!NILP (val)) |
272 | 296 { |
297 if (!EQ (XCONS (clause)->cdr, Qnil)) | |
298 val = Fprogn (XCONS (clause)->cdr); | |
299 break; | |
300 } | |
301 args = XCONS (args)->cdr; | |
302 } | |
303 UNGCPRO; | |
304 | |
305 return val; | |
306 } | |
307 | |
308 DEFUN ("progn", Fprogn, Sprogn, 0, UNEVALLED, 0, | |
309 "(progn BODY...): eval BODY forms sequentially and return value of last one.") | |
310 (args) | |
311 Lisp_Object args; | |
312 { | |
313 register Lisp_Object val, tem; | |
314 Lisp_Object args_left; | |
315 struct gcpro gcpro1; | |
316 | |
317 /* In Mocklisp code, symbols at the front of the progn arglist | |
318 are to be bound to zero. */ | |
319 if (!EQ (Vmocklisp_arguments, Qt)) | |
320 { | |
321 val = make_number (0); | |
485 | 322 while (!NILP (args) && (tem = Fcar (args), XTYPE (tem) == Lisp_Symbol)) |
272 | 323 { |
324 QUIT; | |
325 specbind (tem, val), args = Fcdr (args); | |
326 } | |
327 } | |
328 | |
485 | 329 if (NILP(args)) |
272 | 330 return Qnil; |
331 | |
332 args_left = args; | |
333 GCPRO1 (args_left); | |
334 | |
335 do | |
336 { | |
337 val = Feval (Fcar (args_left)); | |
338 args_left = Fcdr (args_left); | |
339 } | |
485 | 340 while (!NILP(args_left)); |
272 | 341 |
342 UNGCPRO; | |
343 return val; | |
344 } | |
345 | |
346 DEFUN ("prog1", Fprog1, Sprog1, 1, UNEVALLED, 0, | |
347 "(prog1 FIRST BODY...): eval FIRST and BODY sequentially; value from FIRST.\n\ | |
348 The value of FIRST is saved during the evaluation of the remaining args,\n\ | |
349 whose values are discarded.") | |
350 (args) | |
351 Lisp_Object args; | |
352 { | |
353 Lisp_Object val; | |
354 register Lisp_Object args_left; | |
355 struct gcpro gcpro1, gcpro2; | |
356 register int argnum = 0; | |
357 | |
485 | 358 if (NILP(args)) |
272 | 359 return Qnil; |
360 | |
361 args_left = args; | |
362 val = Qnil; | |
363 GCPRO2 (args, val); | |
364 | |
365 do | |
366 { | |
367 if (!(argnum++)) | |
368 val = Feval (Fcar (args_left)); | |
369 else | |
370 Feval (Fcar (args_left)); | |
371 args_left = Fcdr (args_left); | |
372 } | |
485 | 373 while (!NILP(args_left)); |
272 | 374 |
375 UNGCPRO; | |
376 return val; | |
377 } | |
378 | |
379 DEFUN ("prog2", Fprog2, Sprog2, 2, UNEVALLED, 0, | |
380 "(prog1 X Y BODY...): eval X, Y and BODY sequentially; value from Y.\n\ | |
381 The value of Y is saved during the evaluation of the remaining args,\n\ | |
382 whose values are discarded.") | |
383 (args) | |
384 Lisp_Object args; | |
385 { | |
386 Lisp_Object val; | |
387 register Lisp_Object args_left; | |
388 struct gcpro gcpro1, gcpro2; | |
389 register int argnum = -1; | |
390 | |
391 val = Qnil; | |
392 | |
485 | 393 if (NILP(args)) |
272 | 394 return Qnil; |
395 | |
396 args_left = args; | |
397 val = Qnil; | |
398 GCPRO2 (args, val); | |
399 | |
400 do | |
401 { | |
402 if (!(argnum++)) | |
403 val = Feval (Fcar (args_left)); | |
404 else | |
405 Feval (Fcar (args_left)); | |
406 args_left = Fcdr (args_left); | |
407 } | |
485 | 408 while (!NILP(args_left)); |
272 | 409 |
410 UNGCPRO; | |
411 return val; | |
412 } | |
413 | |
414 DEFUN ("setq", Fsetq, Ssetq, 0, UNEVALLED, 0, | |
415 "(setq SYM VAL SYM VAL ...): set each SYM to the value of its VAL.\n\ | |
416 The SYMs are not evaluated. Thus (setq x y) sets x to the value of y.\n\ | |
417 Each SYM is set before the next VAL is computed.") | |
418 (args) | |
419 Lisp_Object args; | |
420 { | |
421 register Lisp_Object args_left; | |
422 register Lisp_Object val, sym; | |
423 struct gcpro gcpro1; | |
424 | |
485 | 425 if (NILP(args)) |
272 | 426 return Qnil; |
427 | |
428 args_left = args; | |
429 GCPRO1 (args); | |
430 | |
431 do | |
432 { | |
433 val = Feval (Fcar (Fcdr (args_left))); | |
434 sym = Fcar (args_left); | |
435 Fset (sym, val); | |
436 args_left = Fcdr (Fcdr (args_left)); | |
437 } | |
485 | 438 while (!NILP(args_left)); |
272 | 439 |
440 UNGCPRO; | |
441 return val; | |
442 } | |
443 | |
444 DEFUN ("quote", Fquote, Squote, 1, UNEVALLED, 0, | |
445 "Return the argument, without evaluating it. `(quote x)' yields `x'.") | |
446 (args) | |
447 Lisp_Object args; | |
448 { | |
449 return Fcar (args); | |
450 } | |
451 | |
452 DEFUN ("function", Ffunction, Sfunction, 1, UNEVALLED, 0, | |
453 "Like `quote', but preferred for objects which are functions.\n\ | |
454 In byte compilation, `function' causes its argument to be compiled.\n\ | |
455 `quote' cannot do that.") | |
456 (args) | |
457 Lisp_Object args; | |
458 { | |
459 return Fcar (args); | |
460 } | |
461 | |
462 DEFUN ("interactive-p", Finteractive_p, Sinteractive_p, 0, 0, 0, | |
463 "Return t if function in which this appears was called interactively.\n\ | |
464 This means that the function was called with call-interactively (which\n\ | |
465 includes being called as the binding of a key)\n\ | |
466 and input is currently coming from the keyboard (not in keyboard macro).") | |
467 () | |
468 { | |
469 register struct backtrace *btp; | |
470 register Lisp_Object fun; | |
471 | |
472 if (!INTERACTIVE) | |
473 return Qnil; | |
474 | |
475 btp = backtrace_list; | |
727 | 476 |
477 /* If this isn't a byte-compiled function, there may be a frame at | |
478 the top for Finteractive_p itself. If so, skip it. */ | |
479 fun = Findirect_function (*btp->function); | |
480 if (XTYPE (fun) == Lisp_Subr | |
481 && (struct Lisp_Subr *) XPNTR (fun) == &Sinteractive_p) | |
323 | 482 btp = btp->next; |
483 | |
727 | 484 /* If we're running an Emacs 18-style byte-compiled function, there |
485 may be a frame for Fbytecode. Now, given the strictest | |
486 definition, this function isn't really being called | |
487 interactively, but because that's the way Emacs 18 always builds | |
488 byte-compiled functions, we'll accept it for now. */ | |
489 if (EQ (*btp->function, Qbytecode)) | |
490 btp = btp->next; | |
491 | |
492 /* If this isn't a byte-compiled function, then we may now be | |
493 looking at several frames for special forms. Skip past them. */ | |
494 while (btp && | |
495 btp->nargs == UNEVALLED) | |
496 btp = btp->next; | |
497 | |
498 /* btp now points at the frame of the innermost function that isn't | |
499 a special form, ignoring frames for Finteractive_p and/or | |
500 Fbytecode at the top. If this frame is for a built-in function | |
501 (such as load or eval-region) return nil. */ | |
648 | 502 fun = Findirect_function (*btp->function); |
272 | 503 if (XTYPE (fun) == Lisp_Subr) |
504 return Qnil; | |
505 /* btp points to the frame of a Lisp function that called interactive-p. | |
506 Return t if that function was called interactively. */ | |
507 if (btp && btp->next && EQ (*btp->next->function, Qcall_interactively)) | |
508 return Qt; | |
509 return Qnil; | |
510 } | |
511 | |
512 DEFUN ("defun", Fdefun, Sdefun, 2, UNEVALLED, 0, | |
513 "(defun NAME ARGLIST [DOCSTRING] BODY...): define NAME as a function.\n\ | |
514 The definition is (lambda ARGLIST [DOCSTRING] BODY...).\n\ | |
515 See also the function `interactive'.") | |
516 (args) | |
517 Lisp_Object args; | |
518 { | |
519 register Lisp_Object fn_name; | |
520 register Lisp_Object defn; | |
521 | |
522 fn_name = Fcar (args); | |
523 defn = Fcons (Qlambda, Fcdr (args)); | |
485 | 524 if (!NILP (Vpurify_flag)) |
272 | 525 defn = Fpurecopy (defn); |
526 Ffset (fn_name, defn); | |
2547
c73c68a87cd5
(defun, defmacro, defvar, defconst):
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
527 LOADHIST_ATTACH (fn_name); |
272 | 528 return fn_name; |
529 } | |
530 | |
531 DEFUN ("defmacro", Fdefmacro, Sdefmacro, 2, UNEVALLED, 0, | |
532 "(defmacro NAME ARGLIST [DOCSTRING] BODY...): define NAME as a macro.\n\ | |
533 The definition is (macro lambda ARGLIST [DOCSTRING] BODY...).\n\ | |
534 When the macro is called, as in (NAME ARGS...),\n\ | |
535 the function (lambda ARGLIST BODY...) is applied to\n\ | |
536 the list ARGS... as it appears in the expression,\n\ | |
537 and the result should be a form to be evaluated instead of the original.") | |
538 (args) | |
539 Lisp_Object args; | |
540 { | |
541 register Lisp_Object fn_name; | |
542 register Lisp_Object defn; | |
543 | |
544 fn_name = Fcar (args); | |
545 defn = Fcons (Qmacro, Fcons (Qlambda, Fcdr (args))); | |
485 | 546 if (!NILP (Vpurify_flag)) |
272 | 547 defn = Fpurecopy (defn); |
548 Ffset (fn_name, defn); | |
2547
c73c68a87cd5
(defun, defmacro, defvar, defconst):
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
549 LOADHIST_ATTACH (fn_name); |
272 | 550 return fn_name; |
551 } | |
552 | |
553 DEFUN ("defvar", Fdefvar, Sdefvar, 1, UNEVALLED, 0, | |
554 "(defvar SYMBOL INITVALUE DOCSTRING): define SYMBOL as a variable.\n\ | |
555 You are not required to define a variable in order to use it,\n\ | |
556 but the definition can supply documentation and an initial value\n\ | |
557 in a way that tags can recognize.\n\n\ | |
558 INITVALUE is evaluated, and used to set SYMBOL, only if SYMBOL's value is void.\n\ | |
687
e2b747dd6a6e
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
684
diff
changeset
|
559 If SYMBOL is buffer-local, its default value is what is set;\n\ |
e2b747dd6a6e
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
684
diff
changeset
|
560 buffer-local values are not affected.\n\ |
272 | 561 INITVALUE and DOCSTRING are optional.\n\ |
562 If DOCSTRING starts with *, this variable is identified as a user option.\n\ | |
563 This means that M-x set-variable and M-x edit-options recognize it.\n\ | |
564 If INITVALUE is missing, SYMBOL's value is not set.") | |
565 (args) | |
566 Lisp_Object args; | |
567 { | |
568 register Lisp_Object sym, tem; | |
569 | |
570 sym = Fcar (args); | |
571 tem = Fcdr (args); | |
485 | 572 if (!NILP (tem)) |
272 | 573 { |
574 tem = Fdefault_boundp (sym); | |
485 | 575 if (NILP (tem)) |
272 | 576 Fset_default (sym, Feval (Fcar (Fcdr (args)))); |
577 } | |
578 tem = Fcar (Fcdr (Fcdr (args))); | |
485 | 579 if (!NILP (tem)) |
272 | 580 { |
485 | 581 if (!NILP (Vpurify_flag)) |
272 | 582 tem = Fpurecopy (tem); |
583 Fput (sym, Qvariable_documentation, tem); | |
584 } | |
2547
c73c68a87cd5
(defun, defmacro, defvar, defconst):
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
585 LOADHIST_ATTACH (sym); |
272 | 586 return sym; |
587 } | |
588 | |
589 DEFUN ("defconst", Fdefconst, Sdefconst, 2, UNEVALLED, 0, | |
590 "(defconst SYMBOL INITVALUE DOCSTRING): define SYMBOL as a constant variable.\n\ | |
591 The intent is that programs do not change this value, but users may.\n\ | |
592 Always sets the value of SYMBOL to the result of evalling INITVALUE.\n\ | |
687
e2b747dd6a6e
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
684
diff
changeset
|
593 If SYMBOL is buffer-local, its default value is what is set;\n\ |
e2b747dd6a6e
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
684
diff
changeset
|
594 buffer-local values are not affected.\n\ |
272 | 595 DOCSTRING is optional.\n\ |
596 If DOCSTRING starts with *, this variable is identified as a user option.\n\ | |
597 This means that M-x set-variable and M-x edit-options recognize it.\n\n\ | |
598 Note: do not use `defconst' for user options in libraries that are not\n\ | |
599 normally loaded, since it is useful for users to be able to specify\n\ | |
600 their own values for such variables before loading the library.\n\ | |
601 Since `defconst' unconditionally assigns the variable,\n\ | |
602 it would override the user's choice.") | |
603 (args) | |
604 Lisp_Object args; | |
605 { | |
606 register Lisp_Object sym, tem; | |
607 | |
608 sym = Fcar (args); | |
609 Fset_default (sym, Feval (Fcar (Fcdr (args)))); | |
610 tem = Fcar (Fcdr (Fcdr (args))); | |
485 | 611 if (!NILP (tem)) |
272 | 612 { |
485 | 613 if (!NILP (Vpurify_flag)) |
272 | 614 tem = Fpurecopy (tem); |
615 Fput (sym, Qvariable_documentation, tem); | |
616 } | |
2547
c73c68a87cd5
(defun, defmacro, defvar, defconst):
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
617 LOADHIST_ATTACH (sym); |
272 | 618 return sym; |
619 } | |
620 | |
621 DEFUN ("user-variable-p", Fuser_variable_p, Suser_variable_p, 1, 1, 0, | |
622 "Returns t if VARIABLE is intended to be set and modified by users.\n\ | |
623 \(The alternative is a variable used internally in a Lisp program.)\n\ | |
624 Determined by whether the first character of the documentation\n\ | |
625 for the variable is \"*\"") | |
626 (variable) | |
627 Lisp_Object variable; | |
628 { | |
629 Lisp_Object documentation; | |
630 | |
631 documentation = Fget (variable, Qvariable_documentation); | |
632 if (XTYPE (documentation) == Lisp_Int && XINT (documentation) < 0) | |
633 return Qt; | |
634 if ((XTYPE (documentation) == Lisp_String) && | |
635 ((unsigned char) XSTRING (documentation)->data[0] == '*')) | |
636 return Qt; | |
637 return Qnil; | |
638 } | |
639 | |
640 DEFUN ("let*", FletX, SletX, 1, UNEVALLED, 0, | |
641 "(let* VARLIST BODY...): bind variables according to VARLIST then eval BODY.\n\ | |
642 The value of the last form in BODY is returned.\n\ | |
643 Each element of VARLIST is a symbol (which is bound to nil)\n\ | |
644 or a list (SYMBOL VALUEFORM) (which binds SYMBOL to the value of VALUEFORM).\n\ | |
645 Each VALUEFORM can refer to the symbols already bound by this VARLIST.") | |
646 (args) | |
647 Lisp_Object args; | |
648 { | |
649 Lisp_Object varlist, val, elt; | |
650 int count = specpdl_ptr - specpdl; | |
651 struct gcpro gcpro1, gcpro2, gcpro3; | |
652 | |
653 GCPRO3 (args, elt, varlist); | |
654 | |
655 varlist = Fcar (args); | |
485 | 656 while (!NILP (varlist)) |
272 | 657 { |
658 QUIT; | |
659 elt = Fcar (varlist); | |
660 if (XTYPE (elt) == Lisp_Symbol) | |
661 specbind (elt, Qnil); | |
604 | 662 else if (! NILP (Fcdr (Fcdr (elt)))) |
663 Fsignal (Qerror, | |
664 Fcons (build_string ("`let' bindings can have only one value-form"), | |
665 elt)); | |
272 | 666 else |
667 { | |
668 val = Feval (Fcar (Fcdr (elt))); | |
669 specbind (Fcar (elt), val); | |
670 } | |
671 varlist = Fcdr (varlist); | |
672 } | |
673 UNGCPRO; | |
674 val = Fprogn (Fcdr (args)); | |
675 return unbind_to (count, val); | |
676 } | |
677 | |
678 DEFUN ("let", Flet, Slet, 1, UNEVALLED, 0, | |
679 "(let VARLIST BODY...): bind variables according to VARLIST then eval BODY.\n\ | |
680 The value of the last form in BODY is returned.\n\ | |
681 Each element of VARLIST is a symbol (which is bound to nil)\n\ | |
682 or a list (SYMBOL VALUEFORM) (which binds SYMBOL to the value of VALUEFORM).\n\ | |
683 All the VALUEFORMs are evalled before any symbols are bound.") | |
684 (args) | |
685 Lisp_Object args; | |
686 { | |
687 Lisp_Object *temps, tem; | |
688 register Lisp_Object elt, varlist; | |
689 int count = specpdl_ptr - specpdl; | |
690 register int argnum; | |
691 struct gcpro gcpro1, gcpro2; | |
692 | |
693 varlist = Fcar (args); | |
694 | |
695 /* Make space to hold the values to give the bound variables */ | |
696 elt = Flength (varlist); | |
697 temps = (Lisp_Object *) alloca (XFASTINT (elt) * sizeof (Lisp_Object)); | |
698 | |
699 /* Compute the values and store them in `temps' */ | |
700 | |
701 GCPRO2 (args, *temps); | |
702 gcpro2.nvars = 0; | |
703 | |
485 | 704 for (argnum = 0; !NILP (varlist); varlist = Fcdr (varlist)) |
272 | 705 { |
706 QUIT; | |
707 elt = Fcar (varlist); | |
708 if (XTYPE (elt) == Lisp_Symbol) | |
709 temps [argnum++] = Qnil; | |
604 | 710 else if (! NILP (Fcdr (Fcdr (elt)))) |
711 Fsignal (Qerror, | |
712 Fcons (build_string ("`let' bindings can have only one value-form"), | |
713 elt)); | |
272 | 714 else |
715 temps [argnum++] = Feval (Fcar (Fcdr (elt))); | |
716 gcpro2.nvars = argnum; | |
717 } | |
718 UNGCPRO; | |
719 | |
720 varlist = Fcar (args); | |
485 | 721 for (argnum = 0; !NILP (varlist); varlist = Fcdr (varlist)) |
272 | 722 { |
723 elt = Fcar (varlist); | |
724 tem = temps[argnum++]; | |
725 if (XTYPE (elt) == Lisp_Symbol) | |
726 specbind (elt, tem); | |
727 else | |
728 specbind (Fcar (elt), tem); | |
729 } | |
730 | |
731 elt = Fprogn (Fcdr (args)); | |
732 return unbind_to (count, elt); | |
733 } | |
734 | |
735 DEFUN ("while", Fwhile, Swhile, 1, UNEVALLED, 0, | |
736 "(while TEST BODY...): if TEST yields non-nil, eval BODY... and repeat.\n\ | |
737 The order of execution is thus TEST, BODY, TEST, BODY and so on\n\ | |
738 until TEST returns nil.") | |
739 (args) | |
740 Lisp_Object args; | |
741 { | |
742 Lisp_Object test, body, tem; | |
743 struct gcpro gcpro1, gcpro2; | |
744 | |
745 GCPRO2 (test, body); | |
746 | |
747 test = Fcar (args); | |
748 body = Fcdr (args); | |
4167
f037b1f51320
(Fwhile): If mocklisp, test for nonzeroness.
Richard M. Stallman <rms@gnu.org>
parents:
3973
diff
changeset
|
749 while (tem = Feval (test), |
f037b1f51320
(Fwhile): If mocklisp, test for nonzeroness.
Richard M. Stallman <rms@gnu.org>
parents:
3973
diff
changeset
|
750 (!EQ (Vmocklisp_arguments, Qt) ? XINT (tem) : !NILP (tem))) |
272 | 751 { |
752 QUIT; | |
753 Fprogn (body); | |
754 } | |
755 | |
756 UNGCPRO; | |
757 return Qnil; | |
758 } | |
759 | |
760 DEFUN ("macroexpand", Fmacroexpand, Smacroexpand, 1, 2, 0, | |
761 "Return result of expanding macros at top level of FORM.\n\ | |
762 If FORM is not a macro call, it is returned unchanged.\n\ | |
763 Otherwise, the macro is expanded and the expansion is considered\n\ | |
764 in place of FORM. When a non-macro-call results, it is returned.\n\n\ | |
765 The second optional arg ENVIRONMENT species an environment of macro\n\ | |
766 definitions to shadow the loaded ones for use in file byte-compilation.") | |
767 (form, env) | |
768 register Lisp_Object form; | |
769 Lisp_Object env; | |
770 { | |
753 | 771 /* With cleanups from Hallvard Furuseth. */ |
272 | 772 register Lisp_Object expander, sym, def, tem; |
773 | |
774 while (1) | |
775 { | |
776 /* Come back here each time we expand a macro call, | |
777 in case it expands into another macro call. */ | |
778 if (XTYPE (form) != Lisp_Cons) | |
779 break; | |
753 | 780 /* Set SYM, give DEF and TEM right values in case SYM is not a symbol. */ |
781 def = sym = XCONS (form)->car; | |
782 tem = Qnil; | |
272 | 783 /* Trace symbols aliases to other symbols |
784 until we get a symbol that is not an alias. */ | |
753 | 785 while (XTYPE (def) == Lisp_Symbol) |
272 | 786 { |
787 QUIT; | |
753 | 788 sym = def; |
272 | 789 tem = Fassq (sym, env); |
485 | 790 if (NILP (tem)) |
272 | 791 { |
792 def = XSYMBOL (sym)->function; | |
753 | 793 if (!EQ (def, Qunbound)) |
794 continue; | |
272 | 795 } |
753 | 796 break; |
272 | 797 } |
798 /* Right now TEM is the result from SYM in ENV, | |
799 and if TEM is nil then DEF is SYM's function definition. */ | |
485 | 800 if (NILP (tem)) |
272 | 801 { |
802 /* SYM is not mentioned in ENV. | |
803 Look at its function definition. */ | |
804 if (EQ (def, Qunbound) | |
805 || XTYPE (def) != Lisp_Cons) | |
806 /* Not defined or definition not suitable */ | |
807 break; | |
808 if (EQ (XCONS (def)->car, Qautoload)) | |
809 { | |
810 /* Autoloading function: will it be a macro when loaded? */ | |
1564
b327816041d1
* eval.c (Fautoload): Renamed fifth argument TYPE. Document the
Jim Blandy <jimb@redhat.com>
parents:
1452
diff
changeset
|
811 tem = Fnth (make_number (4), def); |
5254
b38b74fe1722
(Fmacroexpand): For an autoload definition,
Richard M. Stallman <rms@gnu.org>
parents:
4782
diff
changeset
|
812 if (EQ (tem, Qt) || EQ (tem, Qmacro)) |
1564
b327816041d1
* eval.c (Fautoload): Renamed fifth argument TYPE. Document the
Jim Blandy <jimb@redhat.com>
parents:
1452
diff
changeset
|
813 /* Yes, load it and try again. */ |
b327816041d1
* eval.c (Fautoload): Renamed fifth argument TYPE. Document the
Jim Blandy <jimb@redhat.com>
parents:
1452
diff
changeset
|
814 { |
b327816041d1
* eval.c (Fautoload): Renamed fifth argument TYPE. Document the
Jim Blandy <jimb@redhat.com>
parents:
1452
diff
changeset
|
815 do_autoload (def, sym); |
b327816041d1
* eval.c (Fautoload): Renamed fifth argument TYPE. Document the
Jim Blandy <jimb@redhat.com>
parents:
1452
diff
changeset
|
816 continue; |
b327816041d1
* eval.c (Fautoload): Renamed fifth argument TYPE. Document the
Jim Blandy <jimb@redhat.com>
parents:
1452
diff
changeset
|
817 } |
b327816041d1
* eval.c (Fautoload): Renamed fifth argument TYPE. Document the
Jim Blandy <jimb@redhat.com>
parents:
1452
diff
changeset
|
818 else |
272 | 819 break; |
820 } | |
821 else if (!EQ (XCONS (def)->car, Qmacro)) | |
822 break; | |
823 else expander = XCONS (def)->cdr; | |
824 } | |
825 else | |
826 { | |
827 expander = XCONS (tem)->cdr; | |
485 | 828 if (NILP (expander)) |
272 | 829 break; |
830 } | |
831 form = apply1 (expander, XCONS (form)->cdr); | |
832 } | |
833 return form; | |
834 } | |
835 | |
836 DEFUN ("catch", Fcatch, Scatch, 1, UNEVALLED, 0, | |
837 "(catch TAG BODY...): eval BODY allowing nonlocal exits using `throw'.\n\ | |
838 TAG is evalled to get the tag to use. Then the BODY is executed.\n\ | |
839 Within BODY, (throw TAG) with same tag exits BODY and exits this `catch'.\n\ | |
840 If no throw happens, `catch' returns the value of the last BODY form.\n\ | |
841 If a throw happens, it specifies the value to return from `catch'.") | |
842 (args) | |
843 Lisp_Object args; | |
844 { | |
845 register Lisp_Object tag; | |
846 struct gcpro gcpro1; | |
847 | |
848 GCPRO1 (args); | |
849 tag = Feval (Fcar (args)); | |
850 UNGCPRO; | |
851 return internal_catch (tag, Fprogn, Fcdr (args)); | |
852 } | |
853 | |
854 /* Set up a catch, then call C function FUNC on argument ARG. | |
855 FUNC should return a Lisp_Object. | |
856 This is how catches are done from within C code. */ | |
857 | |
858 Lisp_Object | |
859 internal_catch (tag, func, arg) | |
860 Lisp_Object tag; | |
861 Lisp_Object (*func) (); | |
862 Lisp_Object arg; | |
863 { | |
864 /* This structure is made part of the chain `catchlist'. */ | |
865 struct catchtag c; | |
866 | |
867 /* Fill in the components of c, and put it on the list. */ | |
868 c.next = catchlist; | |
869 c.tag = tag; | |
870 c.val = Qnil; | |
871 c.backlist = backtrace_list; | |
872 c.handlerlist = handlerlist; | |
873 c.lisp_eval_depth = lisp_eval_depth; | |
874 c.pdlcount = specpdl_ptr - specpdl; | |
875 c.poll_suppress_count = poll_suppress_count; | |
876 c.gcpro = gcprolist; | |
877 catchlist = &c; | |
878 | |
879 /* Call FUNC. */ | |
880 if (! _setjmp (c.jmp)) | |
881 c.val = (*func) (arg); | |
882 | |
883 /* Throw works by a longjmp that comes right here. */ | |
884 catchlist = c.next; | |
885 return c.val; | |
886 } | |
887 | |
1199
ab2d88e2505b
* eval.c (unbind_catch): Do the long-jump here. Take a VALUE
Jim Blandy <jimb@redhat.com>
parents:
1196
diff
changeset
|
888 /* Unwind the specbind, catch, and handler stacks back to CATCH, and |
ab2d88e2505b
* eval.c (unbind_catch): Do the long-jump here. Take a VALUE
Jim Blandy <jimb@redhat.com>
parents:
1196
diff
changeset
|
889 jump to that CATCH, returning VALUE as the value of that catch. |
ab2d88e2505b
* eval.c (unbind_catch): Do the long-jump here. Take a VALUE
Jim Blandy <jimb@redhat.com>
parents:
1196
diff
changeset
|
890 |
ab2d88e2505b
* eval.c (unbind_catch): Do the long-jump here. Take a VALUE
Jim Blandy <jimb@redhat.com>
parents:
1196
diff
changeset
|
891 This is the guts Fthrow and Fsignal; they differ only in the way |
ab2d88e2505b
* eval.c (unbind_catch): Do the long-jump here. Take a VALUE
Jim Blandy <jimb@redhat.com>
parents:
1196
diff
changeset
|
892 they choose the catch tag to throw to. A catch tag for a |
ab2d88e2505b
* eval.c (unbind_catch): Do the long-jump here. Take a VALUE
Jim Blandy <jimb@redhat.com>
parents:
1196
diff
changeset
|
893 condition-case form has a TAG of Qnil. |
272 | 894 |
1199
ab2d88e2505b
* eval.c (unbind_catch): Do the long-jump here. Take a VALUE
Jim Blandy <jimb@redhat.com>
parents:
1196
diff
changeset
|
895 Before each catch is discarded, unbind all special bindings and |
ab2d88e2505b
* eval.c (unbind_catch): Do the long-jump here. Take a VALUE
Jim Blandy <jimb@redhat.com>
parents:
1196
diff
changeset
|
896 execute all unwind-protect clauses made above that catch. Unwind |
ab2d88e2505b
* eval.c (unbind_catch): Do the long-jump here. Take a VALUE
Jim Blandy <jimb@redhat.com>
parents:
1196
diff
changeset
|
897 the handler stack as we go, so that the proper handlers are in |
ab2d88e2505b
* eval.c (unbind_catch): Do the long-jump here. Take a VALUE
Jim Blandy <jimb@redhat.com>
parents:
1196
diff
changeset
|
898 effect for each unwind-protect clause we run. At the end, restore |
ab2d88e2505b
* eval.c (unbind_catch): Do the long-jump here. Take a VALUE
Jim Blandy <jimb@redhat.com>
parents:
1196
diff
changeset
|
899 some static info saved in CATCH, and longjmp to the location |
ab2d88e2505b
* eval.c (unbind_catch): Do the long-jump here. Take a VALUE
Jim Blandy <jimb@redhat.com>
parents:
1196
diff
changeset
|
900 specified in the |
272 | 901 |
1199
ab2d88e2505b
* eval.c (unbind_catch): Do the long-jump here. Take a VALUE
Jim Blandy <jimb@redhat.com>
parents:
1196
diff
changeset
|
902 This is used for correct unwinding in Fthrow and Fsignal. */ |
272 | 903 |
904 static void | |
1199
ab2d88e2505b
* eval.c (unbind_catch): Do the long-jump here. Take a VALUE
Jim Blandy <jimb@redhat.com>
parents:
1196
diff
changeset
|
905 unwind_to_catch (catch, value) |
272 | 906 struct catchtag *catch; |
1199
ab2d88e2505b
* eval.c (unbind_catch): Do the long-jump here. Take a VALUE
Jim Blandy <jimb@redhat.com>
parents:
1196
diff
changeset
|
907 Lisp_Object value; |
272 | 908 { |
909 register int last_time; | |
910 | |
1199
ab2d88e2505b
* eval.c (unbind_catch): Do the long-jump here. Take a VALUE
Jim Blandy <jimb@redhat.com>
parents:
1196
diff
changeset
|
911 /* Save the value in the tag. */ |
ab2d88e2505b
* eval.c (unbind_catch): Do the long-jump here. Take a VALUE
Jim Blandy <jimb@redhat.com>
parents:
1196
diff
changeset
|
912 catch->val = value; |
ab2d88e2505b
* eval.c (unbind_catch): Do the long-jump here. Take a VALUE
Jim Blandy <jimb@redhat.com>
parents:
1196
diff
changeset
|
913 |
1196
65e2edefe748
* eval.c (Fcondition_case): Rearranged for clarity. Don't worry
Jim Blandy <jimb@redhat.com>
parents:
940
diff
changeset
|
914 /* Restore the polling-suppression count. */ |
4474
23d5b09bd218
(unwind_to_catch): Call set_poll_suppress_count.
Richard M. Stallman <rms@gnu.org>
parents:
4462
diff
changeset
|
915 set_poll_suppress_count (catch->poll_suppress_count); |
1196
65e2edefe748
* eval.c (Fcondition_case): Rearranged for clarity. Don't worry
Jim Blandy <jimb@redhat.com>
parents:
940
diff
changeset
|
916 |
272 | 917 do |
918 { | |
919 last_time = catchlist == catch; | |
1196
65e2edefe748
* eval.c (Fcondition_case): Rearranged for clarity. Don't worry
Jim Blandy <jimb@redhat.com>
parents:
940
diff
changeset
|
920 |
65e2edefe748
* eval.c (Fcondition_case): Rearranged for clarity. Don't worry
Jim Blandy <jimb@redhat.com>
parents:
940
diff
changeset
|
921 /* Unwind the specpdl stack, and then restore the proper set of |
65e2edefe748
* eval.c (Fcondition_case): Rearranged for clarity. Don't worry
Jim Blandy <jimb@redhat.com>
parents:
940
diff
changeset
|
922 handlers. */ |
272 | 923 unbind_to (catchlist->pdlcount, Qnil); |
924 handlerlist = catchlist->handlerlist; | |
925 catchlist = catchlist->next; | |
926 } | |
927 while (! last_time); | |
928 | |
929 gcprolist = catch->gcpro; | |
930 backtrace_list = catch->backlist; | |
931 lisp_eval_depth = catch->lisp_eval_depth; | |
1199
ab2d88e2505b
* eval.c (unbind_catch): Do the long-jump here. Take a VALUE
Jim Blandy <jimb@redhat.com>
parents:
1196
diff
changeset
|
932 |
ab2d88e2505b
* eval.c (unbind_catch): Do the long-jump here. Take a VALUE
Jim Blandy <jimb@redhat.com>
parents:
1196
diff
changeset
|
933 _longjmp (catch->jmp, 1); |
272 | 934 } |
935 | |
936 DEFUN ("throw", Fthrow, Sthrow, 2, 2, 0, | |
937 "(throw TAG VALUE): throw to the catch for TAG and return VALUE from it.\n\ | |
938 Both TAG and VALUE are evalled.") | |
939 (tag, val) | |
940 register Lisp_Object tag, val; | |
941 { | |
942 register struct catchtag *c; | |
943 | |
944 while (1) | |
945 { | |
485 | 946 if (!NILP (tag)) |
272 | 947 for (c = catchlist; c; c = c->next) |
948 { | |
949 if (EQ (c->tag, tag)) | |
1199
ab2d88e2505b
* eval.c (unbind_catch): Do the long-jump here. Take a VALUE
Jim Blandy <jimb@redhat.com>
parents:
1196
diff
changeset
|
950 unwind_to_catch (c, val); |
272 | 951 } |
952 tag = Fsignal (Qno_catch, Fcons (tag, Fcons (val, Qnil))); | |
953 } | |
954 } | |
955 | |
956 | |
957 DEFUN ("unwind-protect", Funwind_protect, Sunwind_protect, 1, UNEVALLED, 0, | |
958 "Do BODYFORM, protecting with UNWINDFORMS.\n\ | |
959 Usage looks like (unwind-protect BODYFORM UNWINDFORMS...).\n\ | |
960 If BODYFORM completes normally, its value is returned\n\ | |
961 after executing the UNWINDFORMS.\n\ | |
962 If BODYFORM exits nonlocally, the UNWINDFORMS are executed anyway.") | |
963 (args) | |
964 Lisp_Object args; | |
965 { | |
966 Lisp_Object val; | |
967 int count = specpdl_ptr - specpdl; | |
968 | |
969 record_unwind_protect (0, Fcdr (args)); | |
970 val = Feval (Fcar (args)); | |
971 return unbind_to (count, val); | |
972 } | |
973 | |
974 /* Chain of condition handlers currently in effect. | |
975 The elements of this chain are contained in the stack frames | |
976 of Fcondition_case and internal_condition_case. | |
977 When an error is signaled (by calling Fsignal, below), | |
978 this chain is searched for an element that applies. */ | |
979 | |
980 struct handler *handlerlist; | |
981 | |
982 DEFUN ("condition-case", Fcondition_case, Scondition_case, 2, UNEVALLED, 0, | |
983 "Regain control when an error is signaled.\n\ | |
984 Usage looks like (condition-case VAR BODYFORM HANDLERS...).\n\ | |
985 executes BODYFORM and returns its value if no error happens.\n\ | |
986 Each element of HANDLERS looks like (CONDITION-NAME BODY...)\n\ | |
987 where the BODY is made of Lisp expressions.\n\n\ | |
988 A handler is applicable to an error\n\ | |
989 if CONDITION-NAME is one of the error's condition names.\n\ | |
990 If an error happens, the first applicable handler is run.\n\ | |
991 \n\ | |
5567
c61f49e4283a
(Fcondition_case): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
5566
diff
changeset
|
992 The car of a handler may be a list of condition names\n\ |
c61f49e4283a
(Fcondition_case): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
5566
diff
changeset
|
993 instead of a single condition name.\n\ |
c61f49e4283a
(Fcondition_case): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
5566
diff
changeset
|
994 \n\ |
272 | 995 When a handler handles an error,\n\ |
996 control returns to the condition-case and the handler BODY... is executed\n\ | |
997 with VAR bound to (SIGNALED-CONDITIONS . SIGNAL-DATA).\n\ | |
998 VAR may be nil; then you do not get access to the signal information.\n\ | |
999 \n\ | |
1000 The value of the last BODY form is returned from the condition-case.\n\ | |
1001 See also the function `signal' for more info.") | |
1002 (args) | |
1003 Lisp_Object args; | |
1004 { | |
1005 Lisp_Object val; | |
1006 struct catchtag c; | |
1007 struct handler h; | |
1196
65e2edefe748
* eval.c (Fcondition_case): Rearranged for clarity. Don't worry
Jim Blandy <jimb@redhat.com>
parents:
940
diff
changeset
|
1008 register Lisp_Object var, bodyform, handlers; |
65e2edefe748
* eval.c (Fcondition_case): Rearranged for clarity. Don't worry
Jim Blandy <jimb@redhat.com>
parents:
940
diff
changeset
|
1009 |
65e2edefe748
* eval.c (Fcondition_case): Rearranged for clarity. Don't worry
Jim Blandy <jimb@redhat.com>
parents:
940
diff
changeset
|
1010 var = Fcar (args); |
65e2edefe748
* eval.c (Fcondition_case): Rearranged for clarity. Don't worry
Jim Blandy <jimb@redhat.com>
parents:
940
diff
changeset
|
1011 bodyform = Fcar (Fcdr (args)); |
65e2edefe748
* eval.c (Fcondition_case): Rearranged for clarity. Don't worry
Jim Blandy <jimb@redhat.com>
parents:
940
diff
changeset
|
1012 handlers = Fcdr (Fcdr (args)); |
65e2edefe748
* eval.c (Fcondition_case): Rearranged for clarity. Don't worry
Jim Blandy <jimb@redhat.com>
parents:
940
diff
changeset
|
1013 CHECK_SYMBOL (var, 0); |
272 | 1014 |
1196
65e2edefe748
* eval.c (Fcondition_case): Rearranged for clarity. Don't worry
Jim Blandy <jimb@redhat.com>
parents:
940
diff
changeset
|
1015 for (val = handlers; ! NILP (val); val = Fcdr (val)) |
65e2edefe748
* eval.c (Fcondition_case): Rearranged for clarity. Don't worry
Jim Blandy <jimb@redhat.com>
parents:
940
diff
changeset
|
1016 { |
65e2edefe748
* eval.c (Fcondition_case): Rearranged for clarity. Don't worry
Jim Blandy <jimb@redhat.com>
parents:
940
diff
changeset
|
1017 Lisp_Object tem; |
65e2edefe748
* eval.c (Fcondition_case): Rearranged for clarity. Don't worry
Jim Blandy <jimb@redhat.com>
parents:
940
diff
changeset
|
1018 tem = Fcar (val); |
5563
50ada322de3e
(Fcondition_case): Allow a list of condition names in a handler.
Richard M. Stallman <rms@gnu.org>
parents:
5254
diff
changeset
|
1019 if (! (NILP (tem) |
50ada322de3e
(Fcondition_case): Allow a list of condition names in a handler.
Richard M. Stallman <rms@gnu.org>
parents:
5254
diff
changeset
|
1020 || (CONSP (tem) |
50ada322de3e
(Fcondition_case): Allow a list of condition names in a handler.
Richard M. Stallman <rms@gnu.org>
parents:
5254
diff
changeset
|
1021 && (SYMBOLP (XCONS (tem)->car) |
50ada322de3e
(Fcondition_case): Allow a list of condition names in a handler.
Richard M. Stallman <rms@gnu.org>
parents:
5254
diff
changeset
|
1022 || CONSP (XCONS (tem)->car))))) |
1196
65e2edefe748
* eval.c (Fcondition_case): Rearranged for clarity. Don't worry
Jim Blandy <jimb@redhat.com>
parents:
940
diff
changeset
|
1023 error ("Invalid condition handler", tem); |
65e2edefe748
* eval.c (Fcondition_case): Rearranged for clarity. Don't worry
Jim Blandy <jimb@redhat.com>
parents:
940
diff
changeset
|
1024 } |
272 | 1025 |
1026 c.tag = Qnil; | |
1027 c.val = Qnil; | |
1028 c.backlist = backtrace_list; | |
1029 c.handlerlist = handlerlist; | |
1030 c.lisp_eval_depth = lisp_eval_depth; | |
1031 c.pdlcount = specpdl_ptr - specpdl; | |
1032 c.poll_suppress_count = poll_suppress_count; | |
1033 c.gcpro = gcprolist; | |
1034 if (_setjmp (c.jmp)) | |
1035 { | |
485 | 1036 if (!NILP (h.var)) |
272 | 1037 specbind (h.var, Fcdr (c.val)); |
1038 val = Fprogn (Fcdr (Fcar (c.val))); | |
1196
65e2edefe748
* eval.c (Fcondition_case): Rearranged for clarity. Don't worry
Jim Blandy <jimb@redhat.com>
parents:
940
diff
changeset
|
1039 |
65e2edefe748
* eval.c (Fcondition_case): Rearranged for clarity. Don't worry
Jim Blandy <jimb@redhat.com>
parents:
940
diff
changeset
|
1040 /* Note that this just undoes the binding of h.var; whoever |
65e2edefe748
* eval.c (Fcondition_case): Rearranged for clarity. Don't worry
Jim Blandy <jimb@redhat.com>
parents:
940
diff
changeset
|
1041 longjumped to us unwound the stack to c.pdlcount before |
65e2edefe748
* eval.c (Fcondition_case): Rearranged for clarity. Don't worry
Jim Blandy <jimb@redhat.com>
parents:
940
diff
changeset
|
1042 throwing. */ |
272 | 1043 unbind_to (c.pdlcount, Qnil); |
1044 return val; | |
1045 } | |
1046 c.next = catchlist; | |
1047 catchlist = &c; | |
1048 | |
1196
65e2edefe748
* eval.c (Fcondition_case): Rearranged for clarity. Don't worry
Jim Blandy <jimb@redhat.com>
parents:
940
diff
changeset
|
1049 h.var = var; |
65e2edefe748
* eval.c (Fcondition_case): Rearranged for clarity. Don't worry
Jim Blandy <jimb@redhat.com>
parents:
940
diff
changeset
|
1050 h.handler = handlers; |
272 | 1051 h.next = handlerlist; |
1052 h.tag = &c; | |
1053 handlerlist = &h; | |
1054 | |
1196
65e2edefe748
* eval.c (Fcondition_case): Rearranged for clarity. Don't worry
Jim Blandy <jimb@redhat.com>
parents:
940
diff
changeset
|
1055 val = Feval (bodyform); |
272 | 1056 catchlist = c.next; |
1057 handlerlist = h.next; | |
1058 return val; | |
1059 } | |
1060 | |
1061 Lisp_Object | |
1062 internal_condition_case (bfun, handlers, hfun) | |
1063 Lisp_Object (*bfun) (); | |
1064 Lisp_Object handlers; | |
1065 Lisp_Object (*hfun) (); | |
1066 { | |
1067 Lisp_Object val; | |
1068 struct catchtag c; | |
1069 struct handler h; | |
1070 | |
1071 c.tag = Qnil; | |
1072 c.val = Qnil; | |
1073 c.backlist = backtrace_list; | |
1074 c.handlerlist = handlerlist; | |
1075 c.lisp_eval_depth = lisp_eval_depth; | |
1076 c.pdlcount = specpdl_ptr - specpdl; | |
1077 c.poll_suppress_count = poll_suppress_count; | |
1078 c.gcpro = gcprolist; | |
1079 if (_setjmp (c.jmp)) | |
1080 { | |
1081 return (*hfun) (Fcdr (c.val)); | |
1082 } | |
1083 c.next = catchlist; | |
1084 catchlist = &c; | |
1085 h.handler = handlers; | |
1086 h.var = Qnil; | |
1087 h.next = handlerlist; | |
1088 h.tag = &c; | |
1089 handlerlist = &h; | |
1090 | |
1091 val = (*bfun) (); | |
1092 catchlist = c.next; | |
1093 handlerlist = h.next; | |
1094 return val; | |
1095 } | |
1096 | |
1097 static Lisp_Object find_handler_clause (); | |
1098 | |
1099 DEFUN ("signal", Fsignal, Ssignal, 2, 2, 0, | |
5566
e2925466c923
(Fsignal): Rename 1st arg to error_symbol.
Richard M. Stallman <rms@gnu.org>
parents:
5563
diff
changeset
|
1100 "Signal an error. Args are ERROR-SYMBOL and associated DATA.\n\ |
272 | 1101 This function does not return.\n\n\ |
5566
e2925466c923
(Fsignal): Rename 1st arg to error_symbol.
Richard M. Stallman <rms@gnu.org>
parents:
5563
diff
changeset
|
1102 An error symbol is a symbol with an `error-conditions' property\n\ |
272 | 1103 that is a list of condition names.\n\ |
1104 A handler for any of those names will get to handle this signal.\n\ | |
1105 The symbol `error' should normally be one of them.\n\ | |
1106 \n\ | |
1107 DATA should be a list. Its elements are printed as part of the error message.\n\ | |
1108 If the signal is handled, DATA is made available to the handler.\n\ | |
1109 See also the function `condition-case'.") | |
5566
e2925466c923
(Fsignal): Rename 1st arg to error_symbol.
Richard M. Stallman <rms@gnu.org>
parents:
5563
diff
changeset
|
1110 (error_symbol, data) |
e2925466c923
(Fsignal): Rename 1st arg to error_symbol.
Richard M. Stallman <rms@gnu.org>
parents:
5563
diff
changeset
|
1111 Lisp_Object error_symbol, data; |
272 | 1112 { |
1113 register struct handler *allhandlers = handlerlist; | |
1114 Lisp_Object conditions; | |
1115 extern int gc_in_progress; | |
1116 extern int waiting_for_input; | |
1117 Lisp_Object debugger_value; | |
1118 | |
1119 quit_error_check (); | |
1120 immediate_quit = 0; | |
1121 if (gc_in_progress || waiting_for_input) | |
1122 abort (); | |
1123 | |
732 | 1124 #ifdef HAVE_X_WINDOWS |
272 | 1125 TOTALLY_UNBLOCK_INPUT; |
732 | 1126 #endif |
272 | 1127 |
5566
e2925466c923
(Fsignal): Rename 1st arg to error_symbol.
Richard M. Stallman <rms@gnu.org>
parents:
5563
diff
changeset
|
1128 conditions = Fget (error_symbol, Qerror_conditions); |
272 | 1129 |
1130 for (; handlerlist; handlerlist = handlerlist->next) | |
1131 { | |
1132 register Lisp_Object clause; | |
1133 clause = find_handler_clause (handlerlist->handler, conditions, | |
5566
e2925466c923
(Fsignal): Rename 1st arg to error_symbol.
Richard M. Stallman <rms@gnu.org>
parents:
5563
diff
changeset
|
1134 error_symbol, data, &debugger_value); |
272 | 1135 |
1136 #if 0 /* Most callers are not prepared to handle gc if this returns. | |
1137 So, since this feature is not very useful, take it out. */ | |
1138 /* If have called debugger and user wants to continue, | |
1139 just return nil. */ | |
1140 if (EQ (clause, Qlambda)) | |
1141 return debugger_value; | |
1142 #else | |
1143 if (EQ (clause, Qlambda)) | |
1196
65e2edefe748
* eval.c (Fcondition_case): Rearranged for clarity. Don't worry
Jim Blandy <jimb@redhat.com>
parents:
940
diff
changeset
|
1144 { |
65e2edefe748
* eval.c (Fcondition_case): Rearranged for clarity. Don't worry
Jim Blandy <jimb@redhat.com>
parents:
940
diff
changeset
|
1145 /* We can't return values to code which signalled an error, but we |
65e2edefe748
* eval.c (Fcondition_case): Rearranged for clarity. Don't worry
Jim Blandy <jimb@redhat.com>
parents:
940
diff
changeset
|
1146 can continue code which has signalled a quit. */ |
5566
e2925466c923
(Fsignal): Rename 1st arg to error_symbol.
Richard M. Stallman <rms@gnu.org>
parents:
5563
diff
changeset
|
1147 if (EQ (error_symbol, Qquit)) |
1196
65e2edefe748
* eval.c (Fcondition_case): Rearranged for clarity. Don't worry
Jim Blandy <jimb@redhat.com>
parents:
940
diff
changeset
|
1148 return Qnil; |
65e2edefe748
* eval.c (Fcondition_case): Rearranged for clarity. Don't worry
Jim Blandy <jimb@redhat.com>
parents:
940
diff
changeset
|
1149 else |
3973
ab06b106c490
(Fsignal): Clarify error message.
Richard M. Stallman <rms@gnu.org>
parents:
3703
diff
changeset
|
1150 error ("Cannot return from the debugger in an error"); |
1196
65e2edefe748
* eval.c (Fcondition_case): Rearranged for clarity. Don't worry
Jim Blandy <jimb@redhat.com>
parents:
940
diff
changeset
|
1151 } |
272 | 1152 #endif |
1153 | |
485 | 1154 if (!NILP (clause)) |
272 | 1155 { |
1156 struct handler *h = handlerlist; | |
1157 handlerlist = allhandlers; | |
5566
e2925466c923
(Fsignal): Rename 1st arg to error_symbol.
Richard M. Stallman <rms@gnu.org>
parents:
5563
diff
changeset
|
1158 unwind_to_catch (h->tag, Fcons (clause, Fcons (error_symbol, data))); |
272 | 1159 } |
1160 } | |
1161 | |
1162 handlerlist = allhandlers; | |
1163 /* If no handler is present now, try to run the debugger, | |
1164 and if that fails, throw to top level. */ | |
5566
e2925466c923
(Fsignal): Rename 1st arg to error_symbol.
Richard M. Stallman <rms@gnu.org>
parents:
5563
diff
changeset
|
1165 find_handler_clause (Qerror, conditions, error_symbol, data, &debugger_value); |
272 | 1166 Fthrow (Qtop_level, Qt); |
1167 } | |
1168 | |
684 | 1169 /* Return nonzero iff LIST is a non-nil atom or |
1170 a list containing one of CONDITIONS. */ | |
1171 | |
1172 static int | |
1173 wants_debugger (list, conditions) | |
1174 Lisp_Object list, conditions; | |
1175 { | |
706
86cb5db0b6c3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
687
diff
changeset
|
1176 if (NILP (list)) |
684 | 1177 return 0; |
1178 if (! CONSP (list)) | |
1179 return 1; | |
1180 | |
878
5b1c5b4286e7
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
863
diff
changeset
|
1181 while (CONSP (conditions)) |
684 | 1182 { |
878
5b1c5b4286e7
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
863
diff
changeset
|
1183 Lisp_Object this, tail; |
5b1c5b4286e7
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
863
diff
changeset
|
1184 this = XCONS (conditions)->car; |
5b1c5b4286e7
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
863
diff
changeset
|
1185 for (tail = list; CONSP (tail); tail = XCONS (tail)->cdr) |
5b1c5b4286e7
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
863
diff
changeset
|
1186 if (EQ (XCONS (tail)->car, this)) |
684 | 1187 return 1; |
1188 conditions = XCONS (conditions)->cdr; | |
1189 } | |
878
5b1c5b4286e7
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
863
diff
changeset
|
1190 return 0; |
684 | 1191 } |
1192 | |
1193 /* Value of Qlambda means we have called debugger and user has continued. | |
1194 Store value returned from debugger into *DEBUGGER_VALUE_PTR. */ | |
272 | 1195 |
1196 static Lisp_Object | |
1197 find_handler_clause (handlers, conditions, sig, data, debugger_value_ptr) | |
1198 Lisp_Object handlers, conditions, sig, data; | |
1199 Lisp_Object *debugger_value_ptr; | |
1200 { | |
1201 register Lisp_Object h; | |
1202 register Lisp_Object tem; | |
1203 | |
1204 if (EQ (handlers, Qt)) /* t is used by handlers for all conditions, set up by C code. */ | |
1205 return Qt; | |
1206 if (EQ (handlers, Qerror)) /* error is used similarly, but means display a backtrace too */ | |
1207 { | |
684 | 1208 if (wants_debugger (Vstack_trace_on_error, conditions)) |
272 | 1209 internal_with_output_to_temp_buffer ("*Backtrace*", Fbacktrace, Qnil); |
1199
ab2d88e2505b
* eval.c (unbind_catch): Do the long-jump here. Take a VALUE
Jim Blandy <jimb@redhat.com>
parents:
1196
diff
changeset
|
1210 if ((EQ (sig, Qquit) |
ab2d88e2505b
* eval.c (unbind_catch): Do the long-jump here. Take a VALUE
Jim Blandy <jimb@redhat.com>
parents:
1196
diff
changeset
|
1211 ? debug_on_quit |
ab2d88e2505b
* eval.c (unbind_catch): Do the long-jump here. Take a VALUE
Jim Blandy <jimb@redhat.com>
parents:
1196
diff
changeset
|
1212 : wants_debugger (Vdebug_on_error, conditions)) |
ab2d88e2505b
* eval.c (unbind_catch): Do the long-jump here. Take a VALUE
Jim Blandy <jimb@redhat.com>
parents:
1196
diff
changeset
|
1213 && when_entered_debugger < num_nonmacro_input_chars) |
272 | 1214 { |
1215 int count = specpdl_ptr - specpdl; | |
1216 specbind (Qdebug_on_error, Qnil); | |
1217 *debugger_value_ptr = | |
1218 call_debugger (Fcons (Qerror, | |
1219 Fcons (Fcons (sig, data), | |
1220 Qnil))); | |
1221 return unbind_to (count, Qlambda); | |
1222 } | |
1223 return Qt; | |
1224 } | |
1225 for (h = handlers; CONSP (h); h = Fcdr (h)) | |
1226 { | |
5563
50ada322de3e
(Fcondition_case): Allow a list of condition names in a handler.
Richard M. Stallman <rms@gnu.org>
parents:
5254
diff
changeset
|
1227 Lisp_Object handler, condit; |
50ada322de3e
(Fcondition_case): Allow a list of condition names in a handler.
Richard M. Stallman <rms@gnu.org>
parents:
5254
diff
changeset
|
1228 |
50ada322de3e
(Fcondition_case): Allow a list of condition names in a handler.
Richard M. Stallman <rms@gnu.org>
parents:
5254
diff
changeset
|
1229 handler = Fcar (h); |
50ada322de3e
(Fcondition_case): Allow a list of condition names in a handler.
Richard M. Stallman <rms@gnu.org>
parents:
5254
diff
changeset
|
1230 if (!CONSP (handler)) |
272 | 1231 continue; |
5563
50ada322de3e
(Fcondition_case): Allow a list of condition names in a handler.
Richard M. Stallman <rms@gnu.org>
parents:
5254
diff
changeset
|
1232 condit = Fcar (handler); |
50ada322de3e
(Fcondition_case): Allow a list of condition names in a handler.
Richard M. Stallman <rms@gnu.org>
parents:
5254
diff
changeset
|
1233 /* Handle a single condition name in handler HANDLER. */ |
50ada322de3e
(Fcondition_case): Allow a list of condition names in a handler.
Richard M. Stallman <rms@gnu.org>
parents:
5254
diff
changeset
|
1234 if (SYMBOLP (condit)) |
50ada322de3e
(Fcondition_case): Allow a list of condition names in a handler.
Richard M. Stallman <rms@gnu.org>
parents:
5254
diff
changeset
|
1235 { |
50ada322de3e
(Fcondition_case): Allow a list of condition names in a handler.
Richard M. Stallman <rms@gnu.org>
parents:
5254
diff
changeset
|
1236 tem = Fmemq (Fcar (handler), conditions); |
50ada322de3e
(Fcondition_case): Allow a list of condition names in a handler.
Richard M. Stallman <rms@gnu.org>
parents:
5254
diff
changeset
|
1237 if (!NILP (tem)) |
50ada322de3e
(Fcondition_case): Allow a list of condition names in a handler.
Richard M. Stallman <rms@gnu.org>
parents:
5254
diff
changeset
|
1238 return handler; |
50ada322de3e
(Fcondition_case): Allow a list of condition names in a handler.
Richard M. Stallman <rms@gnu.org>
parents:
5254
diff
changeset
|
1239 } |
50ada322de3e
(Fcondition_case): Allow a list of condition names in a handler.
Richard M. Stallman <rms@gnu.org>
parents:
5254
diff
changeset
|
1240 /* Handle a list of condition names in handler HANDLER. */ |
50ada322de3e
(Fcondition_case): Allow a list of condition names in a handler.
Richard M. Stallman <rms@gnu.org>
parents:
5254
diff
changeset
|
1241 else if (CONSP (condit)) |
50ada322de3e
(Fcondition_case): Allow a list of condition names in a handler.
Richard M. Stallman <rms@gnu.org>
parents:
5254
diff
changeset
|
1242 { |
50ada322de3e
(Fcondition_case): Allow a list of condition names in a handler.
Richard M. Stallman <rms@gnu.org>
parents:
5254
diff
changeset
|
1243 while (CONSP (condit)) |
50ada322de3e
(Fcondition_case): Allow a list of condition names in a handler.
Richard M. Stallman <rms@gnu.org>
parents:
5254
diff
changeset
|
1244 { |
50ada322de3e
(Fcondition_case): Allow a list of condition names in a handler.
Richard M. Stallman <rms@gnu.org>
parents:
5254
diff
changeset
|
1245 tem = Fmemq (Fcar (condit), conditions); |
50ada322de3e
(Fcondition_case): Allow a list of condition names in a handler.
Richard M. Stallman <rms@gnu.org>
parents:
5254
diff
changeset
|
1246 if (!NILP (tem)) |
50ada322de3e
(Fcondition_case): Allow a list of condition names in a handler.
Richard M. Stallman <rms@gnu.org>
parents:
5254
diff
changeset
|
1247 return handler; |
50ada322de3e
(Fcondition_case): Allow a list of condition names in a handler.
Richard M. Stallman <rms@gnu.org>
parents:
5254
diff
changeset
|
1248 condit = XCONS (condit)->cdr; |
50ada322de3e
(Fcondition_case): Allow a list of condition names in a handler.
Richard M. Stallman <rms@gnu.org>
parents:
5254
diff
changeset
|
1249 } |
50ada322de3e
(Fcondition_case): Allow a list of condition names in a handler.
Richard M. Stallman <rms@gnu.org>
parents:
5254
diff
changeset
|
1250 } |
272 | 1251 } |
1252 return Qnil; | |
1253 } | |
1254 | |
1255 /* dump an error message; called like printf */ | |
1256 | |
1257 /* VARARGS 1 */ | |
1258 void | |
1259 error (m, a1, a2, a3) | |
1260 char *m; | |
1261 { | |
1262 char buf[200]; | |
1263 sprintf (buf, m, a1, a2, a3); | |
1264 | |
1265 while (1) | |
1266 Fsignal (Qerror, Fcons (build_string (buf), Qnil)); | |
1267 } | |
1268 | |
1269 DEFUN ("commandp", Fcommandp, Scommandp, 1, 1, 0, | |
1270 "T if FUNCTION makes provisions for interactive calling.\n\ | |
1271 This means it contains a description for how to read arguments to give it.\n\ | |
1272 The value is nil for an invalid function or a symbol with no function\n\ | |
1273 definition.\n\ | |
1274 \n\ | |
1275 Interactively callable functions include strings and vectors (treated\n\ | |
1276 as keyboard macros), lambda-expressions that contain a top-level call\n\ | |
1277 to `interactive', autoload definitions made by `autoload' with non-nil\n\ | |
1278 fourth argument, and some of the built-in functions of Lisp.\n\ | |
1279 \n\ | |
1280 Also, a symbol satisfies `commandp' if its function definition does so.") | |
1281 (function) | |
1282 Lisp_Object function; | |
1283 { | |
1284 register Lisp_Object fun; | |
1285 register Lisp_Object funcar; | |
1286 register Lisp_Object tem; | |
1287 register int i = 0; | |
1288 | |
1289 fun = function; | |
1290 | |
648 | 1291 fun = indirect_function (fun); |
1292 if (EQ (fun, Qunbound)) | |
1293 return Qnil; | |
272 | 1294 |
1295 /* Emacs primitives are interactive if their DEFUN specifies an | |
1296 interactive spec. */ | |
1297 if (XTYPE (fun) == Lisp_Subr) | |
1298 { | |
1299 if (XSUBR (fun)->prompt) | |
1300 return Qt; | |
1301 else | |
1302 return Qnil; | |
1303 } | |
1304 | |
1305 /* Bytecode objects are interactive if they are long enough to | |
1306 have an element whose index is COMPILED_INTERACTIVE, which is | |
1307 where the interactive spec is stored. */ | |
1308 else if (XTYPE (fun) == Lisp_Compiled) | |
1309 return (XVECTOR (fun)->size > COMPILED_INTERACTIVE | |
1310 ? Qt : Qnil); | |
1311 | |
1312 /* Strings and vectors are keyboard macros. */ | |
1313 if (XTYPE (fun) == Lisp_String | |
1314 || XTYPE (fun) == Lisp_Vector) | |
1315 return Qt; | |
1316 | |
1317 /* Lists may represent commands. */ | |
1318 if (!CONSP (fun)) | |
1319 return Qnil; | |
1320 funcar = Fcar (fun); | |
1321 if (XTYPE (funcar) != Lisp_Symbol) | |
1322 return Fsignal (Qinvalid_function, Fcons (fun, Qnil)); | |
1323 if (EQ (funcar, Qlambda)) | |
1324 return Fassq (Qinteractive, Fcdr (Fcdr (fun))); | |
1325 if (EQ (funcar, Qmocklisp)) | |
1326 return Qt; /* All mocklisp functions can be called interactively */ | |
1327 if (EQ (funcar, Qautoload)) | |
1328 return Fcar (Fcdr (Fcdr (Fcdr (fun)))); | |
1329 else | |
1330 return Qnil; | |
1331 } | |
1332 | |
1333 /* ARGSUSED */ | |
1334 DEFUN ("autoload", Fautoload, Sautoload, 2, 5, 0, | |
1335 "Define FUNCTION to autoload from FILE.\n\ | |
1336 FUNCTION is a symbol; FILE is a file name string to pass to `load'.\n\ | |
1337 Third arg DOCSTRING is documentation for the function.\n\ | |
1338 Fourth arg INTERACTIVE if non-nil says function can be called interactively.\n\ | |
1564
b327816041d1
* eval.c (Fautoload): Renamed fifth argument TYPE. Document the
Jim Blandy <jimb@redhat.com>
parents:
1452
diff
changeset
|
1339 Fifth arg TYPE indicates the type of the object:\n\ |
b327816041d1
* eval.c (Fautoload): Renamed fifth argument TYPE. Document the
Jim Blandy <jimb@redhat.com>
parents:
1452
diff
changeset
|
1340 nil or omitted says FUNCTION is a function,\n\ |
b327816041d1
* eval.c (Fautoload): Renamed fifth argument TYPE. Document the
Jim Blandy <jimb@redhat.com>
parents:
1452
diff
changeset
|
1341 `keymap' says FUNCTION is really a keymap, and\n\ |
b327816041d1
* eval.c (Fautoload): Renamed fifth argument TYPE. Document the
Jim Blandy <jimb@redhat.com>
parents:
1452
diff
changeset
|
1342 `macro' or t says FUNCTION is really a macro.\n\ |
272 | 1343 Third through fifth args give info about the real definition.\n\ |
1344 They default to nil.\n\ | |
1345 If FUNCTION is already defined other than as an autoload,\n\ | |
1346 this does nothing and returns nil.") | |
1564
b327816041d1
* eval.c (Fautoload): Renamed fifth argument TYPE. Document the
Jim Blandy <jimb@redhat.com>
parents:
1452
diff
changeset
|
1347 (function, file, docstring, interactive, type) |
b327816041d1
* eval.c (Fautoload): Renamed fifth argument TYPE. Document the
Jim Blandy <jimb@redhat.com>
parents:
1452
diff
changeset
|
1348 Lisp_Object function, file, docstring, interactive, type; |
272 | 1349 { |
1350 #ifdef NO_ARG_ARRAY | |
1351 Lisp_Object args[4]; | |
1352 #endif | |
1353 | |
1354 CHECK_SYMBOL (function, 0); | |
1355 CHECK_STRING (file, 1); | |
1356 | |
1357 /* If function is defined and not as an autoload, don't override */ | |
1358 if (!EQ (XSYMBOL (function)->function, Qunbound) | |
1359 && !(XTYPE (XSYMBOL (function)->function) == Lisp_Cons | |
1360 && EQ (XCONS (XSYMBOL (function)->function)->car, Qautoload))) | |
1361 return Qnil; | |
1362 | |
1363 #ifdef NO_ARG_ARRAY | |
1364 args[0] = file; | |
1365 args[1] = docstring; | |
1366 args[2] = interactive; | |
1564
b327816041d1
* eval.c (Fautoload): Renamed fifth argument TYPE. Document the
Jim Blandy <jimb@redhat.com>
parents:
1452
diff
changeset
|
1367 args[3] = type; |
272 | 1368 |
1369 return Ffset (function, Fcons (Qautoload, Flist (4, &args[0]))); | |
1370 #else /* NO_ARG_ARRAY */ | |
1371 return Ffset (function, Fcons (Qautoload, Flist (4, &file))); | |
1372 #endif /* not NO_ARG_ARRAY */ | |
1373 } | |
1374 | |
1375 Lisp_Object | |
1376 un_autoload (oldqueue) | |
1377 Lisp_Object oldqueue; | |
1378 { | |
1379 register Lisp_Object queue, first, second; | |
1380 | |
1381 /* Queue to unwind is current value of Vautoload_queue. | |
1382 oldqueue is the shadowed value to leave in Vautoload_queue. */ | |
1383 queue = Vautoload_queue; | |
1384 Vautoload_queue = oldqueue; | |
1385 while (CONSP (queue)) | |
1386 { | |
1387 first = Fcar (queue); | |
1388 second = Fcdr (first); | |
1389 first = Fcar (first); | |
1390 if (EQ (second, Qnil)) | |
1391 Vfeatures = first; | |
1392 else | |
1393 Ffset (first, second); | |
1394 queue = Fcdr (queue); | |
1395 } | |
1396 return Qnil; | |
1397 } | |
1398 | |
1399 do_autoload (fundef, funname) | |
1400 Lisp_Object fundef, funname; | |
1401 { | |
1402 int count = specpdl_ptr - specpdl; | |
2547
c73c68a87cd5
(defun, defmacro, defvar, defconst):
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
1403 Lisp_Object fun, val, queue, first, second; |
272 | 1404 |
1405 fun = funname; | |
1406 CHECK_SYMBOL (funname, 0); | |
1407 | |
1408 /* Value saved here is to be restored into Vautoload_queue */ | |
1409 record_unwind_protect (un_autoload, Vautoload_queue); | |
1410 Vautoload_queue = Qt; | |
1411 Fload (Fcar (Fcdr (fundef)), Qnil, noninteractive ? Qt : Qnil, Qnil); | |
2547
c73c68a87cd5
(defun, defmacro, defvar, defconst):
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
1412 |
c73c68a87cd5
(defun, defmacro, defvar, defconst):
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
1413 /* Save the old autoloads, in case we ever do an unload. */ |
c73c68a87cd5
(defun, defmacro, defvar, defconst):
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
1414 queue = Vautoload_queue; |
c73c68a87cd5
(defun, defmacro, defvar, defconst):
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
1415 while (CONSP (queue)) |
c73c68a87cd5
(defun, defmacro, defvar, defconst):
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
1416 { |
c73c68a87cd5
(defun, defmacro, defvar, defconst):
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
1417 first = Fcar (queue); |
c73c68a87cd5
(defun, defmacro, defvar, defconst):
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
1418 second = Fcdr (first); |
c73c68a87cd5
(defun, defmacro, defvar, defconst):
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
1419 first = Fcar (first); |
2599
5122736c0a03
(do_autoload): Fixed the bug in the autoload-saving code.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2596
diff
changeset
|
1420 |
5122736c0a03
(do_autoload): Fixed the bug in the autoload-saving code.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2596
diff
changeset
|
1421 /* Note: This test is subtle. The cdr of an autoload-queue entry |
5122736c0a03
(do_autoload): Fixed the bug in the autoload-saving code.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2596
diff
changeset
|
1422 may be an atom if the autoload entry was generated by a defalias |
5122736c0a03
(do_autoload): Fixed the bug in the autoload-saving code.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2596
diff
changeset
|
1423 or fset. */ |
5122736c0a03
(do_autoload): Fixed the bug in the autoload-saving code.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2596
diff
changeset
|
1424 if (CONSP (second)) |
4782 | 1425 Fput (first, Qautoload, (Fcdr (second))); |
2599
5122736c0a03
(do_autoload): Fixed the bug in the autoload-saving code.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2596
diff
changeset
|
1426 |
2547
c73c68a87cd5
(defun, defmacro, defvar, defconst):
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
1427 queue = Fcdr (queue); |
c73c68a87cd5
(defun, defmacro, defvar, defconst):
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
1428 } |
c73c68a87cd5
(defun, defmacro, defvar, defconst):
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
1429 |
272 | 1430 /* Once loading finishes, don't undo it. */ |
1431 Vautoload_queue = Qt; | |
1432 unbind_to (count, Qnil); | |
1433 | |
648 | 1434 fun = Findirect_function (fun); |
1435 | |
4462
9fbc6c74cab5
(do_autoload): Don't report autoload failure
Richard M. Stallman <rms@gnu.org>
parents:
4167
diff
changeset
|
1436 if (!NILP (Fequal (fun, fundef))) |
272 | 1437 error ("Autoloading failed to define function %s", |
1438 XSYMBOL (funname)->name->data); | |
1439 } | |
1440 | |
1441 DEFUN ("eval", Feval, Seval, 1, 1, 0, | |
1442 "Evaluate FORM and return its value.") | |
1443 (form) | |
1444 Lisp_Object form; | |
1445 { | |
1446 Lisp_Object fun, val, original_fun, original_args; | |
1447 Lisp_Object funcar; | |
1448 struct backtrace backtrace; | |
1449 struct gcpro gcpro1, gcpro2, gcpro3; | |
1450 | |
1451 if (XTYPE (form) == Lisp_Symbol) | |
1452 { | |
1453 if (EQ (Vmocklisp_arguments, Qt)) | |
1454 return Fsymbol_value (form); | |
1455 val = Fsymbol_value (form); | |
485 | 1456 if (NILP (val)) |
272 | 1457 XFASTINT (val) = 0; |
1458 else if (EQ (val, Qt)) | |
1459 XFASTINT (val) = 1; | |
1460 return val; | |
1461 } | |
1462 if (!CONSP (form)) | |
1463 return form; | |
1464 | |
1465 QUIT; | |
1466 if (consing_since_gc > gc_cons_threshold) | |
1467 { | |
1468 GCPRO1 (form); | |
1469 Fgarbage_collect (); | |
1470 UNGCPRO; | |
1471 } | |
1472 | |
1473 if (++lisp_eval_depth > max_lisp_eval_depth) | |
1474 { | |
1475 if (max_lisp_eval_depth < 100) | |
1476 max_lisp_eval_depth = 100; | |
1477 if (lisp_eval_depth > max_lisp_eval_depth) | |
1478 error ("Lisp nesting exceeds max-lisp-eval-depth"); | |
1479 } | |
1480 | |
1481 original_fun = Fcar (form); | |
1482 original_args = Fcdr (form); | |
1483 | |
1484 backtrace.next = backtrace_list; | |
1485 backtrace_list = &backtrace; | |
1486 backtrace.function = &original_fun; /* This also protects them from gc */ | |
1487 backtrace.args = &original_args; | |
1488 backtrace.nargs = UNEVALLED; | |
1489 backtrace.evalargs = 1; | |
1490 backtrace.debug_on_exit = 0; | |
1491 | |
1492 if (debug_on_next_call) | |
1493 do_debug_on_call (Qt); | |
1494 | |
1495 /* At this point, only original_fun and original_args | |
1496 have values that will be used below */ | |
1497 retry: | |
648 | 1498 fun = Findirect_function (original_fun); |
272 | 1499 |
1500 if (XTYPE (fun) == Lisp_Subr) | |
1501 { | |
1502 Lisp_Object numargs; | |
1503 Lisp_Object argvals[7]; | |
1504 Lisp_Object args_left; | |
1505 register int i, maxargs; | |
1506 | |
1507 args_left = original_args; | |
1508 numargs = Flength (args_left); | |
1509 | |
1510 if (XINT (numargs) < XSUBR (fun)->min_args || | |
1511 (XSUBR (fun)->max_args >= 0 && XSUBR (fun)->max_args < XINT (numargs))) | |
1512 return Fsignal (Qwrong_number_of_arguments, Fcons (fun, Fcons (numargs, Qnil))); | |
1513 | |
1514 if (XSUBR (fun)->max_args == UNEVALLED) | |
1515 { | |
1516 backtrace.evalargs = 0; | |
1517 val = (*XSUBR (fun)->function) (args_left); | |
1518 goto done; | |
1519 } | |
1520 | |
1521 if (XSUBR (fun)->max_args == MANY) | |
1522 { | |
1523 /* Pass a vector of evaluated arguments */ | |
1524 Lisp_Object *vals; | |
1525 register int argnum = 0; | |
1526 | |
1527 vals = (Lisp_Object *) alloca (XINT (numargs) * sizeof (Lisp_Object)); | |
1528 | |
1529 GCPRO3 (args_left, fun, fun); | |
1530 gcpro3.var = vals; | |
1531 gcpro3.nvars = 0; | |
1532 | |
485 | 1533 while (!NILP (args_left)) |
272 | 1534 { |
1535 vals[argnum++] = Feval (Fcar (args_left)); | |
1536 args_left = Fcdr (args_left); | |
1537 gcpro3.nvars = argnum; | |
1538 } | |
1539 | |
1540 backtrace.args = vals; | |
1541 backtrace.nargs = XINT (numargs); | |
1542 | |
1543 val = (*XSUBR (fun)->function) (XINT (numargs), vals); | |
323 | 1544 UNGCPRO; |
272 | 1545 goto done; |
1546 } | |
1547 | |
1548 GCPRO3 (args_left, fun, fun); | |
1549 gcpro3.var = argvals; | |
1550 gcpro3.nvars = 0; | |
1551 | |
1552 maxargs = XSUBR (fun)->max_args; | |
1553 for (i = 0; i < maxargs; args_left = Fcdr (args_left)) | |
1554 { | |
1555 argvals[i] = Feval (Fcar (args_left)); | |
1556 gcpro3.nvars = ++i; | |
1557 } | |
1558 | |
1559 UNGCPRO; | |
1560 | |
1561 backtrace.args = argvals; | |
1562 backtrace.nargs = XINT (numargs); | |
1563 | |
1564 switch (i) | |
1565 { | |
1566 case 0: | |
1567 val = (*XSUBR (fun)->function) (); | |
1568 goto done; | |
1569 case 1: | |
1570 val = (*XSUBR (fun)->function) (argvals[0]); | |
1571 goto done; | |
1572 case 2: | |
1573 val = (*XSUBR (fun)->function) (argvals[0], argvals[1]); | |
1574 goto done; | |
1575 case 3: | |
1576 val = (*XSUBR (fun)->function) (argvals[0], argvals[1], | |
1577 argvals[2]); | |
1578 goto done; | |
1579 case 4: | |
1580 val = (*XSUBR (fun)->function) (argvals[0], argvals[1], | |
1581 argvals[2], argvals[3]); | |
1582 goto done; | |
1583 case 5: | |
1584 val = (*XSUBR (fun)->function) (argvals[0], argvals[1], argvals[2], | |
1585 argvals[3], argvals[4]); | |
1586 goto done; | |
1587 case 6: | |
1588 val = (*XSUBR (fun)->function) (argvals[0], argvals[1], argvals[2], | |
1589 argvals[3], argvals[4], argvals[5]); | |
1590 goto done; | |
863
427299469901
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
753
diff
changeset
|
1591 case 7: |
427299469901
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
753
diff
changeset
|
1592 val = (*XSUBR (fun)->function) (argvals[0], argvals[1], argvals[2], |
427299469901
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
753
diff
changeset
|
1593 argvals[3], argvals[4], argvals[5], |
427299469901
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
753
diff
changeset
|
1594 argvals[6]); |
427299469901
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
753
diff
changeset
|
1595 goto done; |
272 | 1596 |
1597 default: | |
604 | 1598 /* Someone has created a subr that takes more arguments than |
1599 is supported by this code. We need to either rewrite the | |
1600 subr to use a different argument protocol, or add more | |
1601 cases to this switch. */ | |
1602 abort (); | |
272 | 1603 } |
1604 } | |
1605 if (XTYPE (fun) == Lisp_Compiled) | |
1606 val = apply_lambda (fun, original_args, 1); | |
1607 else | |
1608 { | |
1609 if (!CONSP (fun)) | |
1610 return Fsignal (Qinvalid_function, Fcons (fun, Qnil)); | |
1611 funcar = Fcar (fun); | |
1612 if (XTYPE (funcar) != Lisp_Symbol) | |
1613 return Fsignal (Qinvalid_function, Fcons (fun, Qnil)); | |
1614 if (EQ (funcar, Qautoload)) | |
1615 { | |
1616 do_autoload (fun, original_fun); | |
1617 goto retry; | |
1618 } | |
1619 if (EQ (funcar, Qmacro)) | |
1620 val = Feval (apply1 (Fcdr (fun), original_args)); | |
1621 else if (EQ (funcar, Qlambda)) | |
1622 val = apply_lambda (fun, original_args, 1); | |
1623 else if (EQ (funcar, Qmocklisp)) | |
1624 val = ml_apply (fun, original_args); | |
1625 else | |
1626 return Fsignal (Qinvalid_function, Fcons (fun, Qnil)); | |
1627 } | |
1628 done: | |
1629 if (!EQ (Vmocklisp_arguments, Qt)) | |
1630 { | |
485 | 1631 if (NILP (val)) |
272 | 1632 XFASTINT (val) = 0; |
1633 else if (EQ (val, Qt)) | |
1634 XFASTINT (val) = 1; | |
1635 } | |
1636 lisp_eval_depth--; | |
1637 if (backtrace.debug_on_exit) | |
1638 val = call_debugger (Fcons (Qexit, Fcons (val, Qnil))); | |
1639 backtrace_list = backtrace.next; | |
1640 return val; | |
1641 } | |
1642 | |
1643 DEFUN ("apply", Fapply, Sapply, 2, MANY, 0, | |
1644 "Call FUNCTION with our remaining args, using our last arg as list of args.\n\ | |
1645 Thus, (apply '+ 1 2 '(3 4)) returns 10.") | |
1646 (nargs, args) | |
1647 int nargs; | |
1648 Lisp_Object *args; | |
1649 { | |
1650 register int i, numargs; | |
1651 register Lisp_Object spread_arg; | |
1652 register Lisp_Object *funcall_args; | |
1653 Lisp_Object fun; | |
323 | 1654 struct gcpro gcpro1; |
272 | 1655 |
1656 fun = args [0]; | |
1657 funcall_args = 0; | |
1658 spread_arg = args [nargs - 1]; | |
1659 CHECK_LIST (spread_arg, nargs); | |
1660 | |
1661 numargs = XINT (Flength (spread_arg)); | |
1662 | |
1663 if (numargs == 0) | |
1664 return Ffuncall (nargs - 1, args); | |
1665 else if (numargs == 1) | |
1666 { | |
1667 args [nargs - 1] = XCONS (spread_arg)->car; | |
1668 return Ffuncall (nargs, args); | |
1669 } | |
1670 | |
323 | 1671 numargs += nargs - 2; |
272 | 1672 |
648 | 1673 fun = indirect_function (fun); |
1674 if (EQ (fun, Qunbound)) | |
272 | 1675 { |
648 | 1676 /* Let funcall get the error */ |
1677 fun = args[0]; | |
1678 goto funcall; | |
272 | 1679 } |
1680 | |
1681 if (XTYPE (fun) == Lisp_Subr) | |
1682 { | |
1683 if (numargs < XSUBR (fun)->min_args | |
1684 || (XSUBR (fun)->max_args >= 0 && XSUBR (fun)->max_args < numargs)) | |
1685 goto funcall; /* Let funcall get the error */ | |
1686 else if (XSUBR (fun)->max_args > numargs) | |
1687 { | |
1688 /* Avoid making funcall cons up a yet another new vector of arguments | |
1689 by explicitly supplying nil's for optional values */ | |
1690 funcall_args = (Lisp_Object *) alloca ((1 + XSUBR (fun)->max_args) | |
1691 * sizeof (Lisp_Object)); | |
1692 for (i = numargs; i < XSUBR (fun)->max_args;) | |
1693 funcall_args[++i] = Qnil; | |
323 | 1694 GCPRO1 (*funcall_args); |
1695 gcpro1.nvars = 1 + XSUBR (fun)->max_args; | |
272 | 1696 } |
1697 } | |
1698 funcall: | |
1699 /* We add 1 to numargs because funcall_args includes the | |
1700 function itself as well as its arguments. */ | |
1701 if (!funcall_args) | |
323 | 1702 { |
1703 funcall_args = (Lisp_Object *) alloca ((1 + numargs) | |
1704 * sizeof (Lisp_Object)); | |
1705 GCPRO1 (*funcall_args); | |
1706 gcpro1.nvars = 1 + numargs; | |
1707 } | |
1708 | |
272 | 1709 bcopy (args, funcall_args, nargs * sizeof (Lisp_Object)); |
1710 /* Spread the last arg we got. Its first element goes in | |
1711 the slot that it used to occupy, hence this value of I. */ | |
1712 i = nargs - 1; | |
485 | 1713 while (!NILP (spread_arg)) |
272 | 1714 { |
1715 funcall_args [i++] = XCONS (spread_arg)->car; | |
1716 spread_arg = XCONS (spread_arg)->cdr; | |
1717 } | |
323 | 1718 |
1719 RETURN_UNGCPRO (Ffuncall (gcpro1.nvars, funcall_args)); | |
272 | 1720 } |
1721 | |
1722 /* Apply fn to arg */ | |
1723 Lisp_Object | |
1724 apply1 (fn, arg) | |
1725 Lisp_Object fn, arg; | |
1726 { | |
323 | 1727 struct gcpro gcpro1; |
1728 | |
1729 GCPRO1 (fn); | |
485 | 1730 if (NILP (arg)) |
323 | 1731 RETURN_UNGCPRO (Ffuncall (1, &fn)); |
1732 gcpro1.nvars = 2; | |
272 | 1733 #ifdef NO_ARG_ARRAY |
1734 { | |
1735 Lisp_Object args[2]; | |
1736 args[0] = fn; | |
1737 args[1] = arg; | |
323 | 1738 gcpro1.var = args; |
1739 RETURN_UNGCPRO (Fapply (2, args)); | |
272 | 1740 } |
1741 #else /* not NO_ARG_ARRAY */ | |
323 | 1742 RETURN_UNGCPRO (Fapply (2, &fn)); |
272 | 1743 #endif /* not NO_ARG_ARRAY */ |
1744 } | |
1745 | |
1746 /* Call function fn on no arguments */ | |
1747 Lisp_Object | |
1748 call0 (fn) | |
1749 Lisp_Object fn; | |
1750 { | |
323 | 1751 struct gcpro gcpro1; |
1752 | |
1753 GCPRO1 (fn); | |
1754 RETURN_UNGCPRO (Ffuncall (1, &fn)); | |
272 | 1755 } |
1756 | |
3703
6930e8f81c88
(call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
1757 /* Call function fn with 1 argument arg1 */ |
272 | 1758 /* ARGSUSED */ |
1759 Lisp_Object | |
3703
6930e8f81c88
(call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
1760 call1 (fn, arg1) |
6930e8f81c88
(call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
1761 Lisp_Object fn, arg1; |
272 | 1762 { |
323 | 1763 struct gcpro gcpro1; |
272 | 1764 #ifdef NO_ARG_ARRAY |
323 | 1765 Lisp_Object args[2]; |
1766 | |
272 | 1767 args[0] = fn; |
3703
6930e8f81c88
(call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
1768 args[1] = arg1; |
323 | 1769 GCPRO1 (args[0]); |
1770 gcpro1.nvars = 2; | |
1771 RETURN_UNGCPRO (Ffuncall (2, args)); | |
272 | 1772 #else /* not NO_ARG_ARRAY */ |
323 | 1773 GCPRO1 (fn); |
1774 gcpro1.nvars = 2; | |
1775 RETURN_UNGCPRO (Ffuncall (2, &fn)); | |
272 | 1776 #endif /* not NO_ARG_ARRAY */ |
1777 } | |
1778 | |
3703
6930e8f81c88
(call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
1779 /* Call function fn with 2 arguments arg1, arg2 */ |
272 | 1780 /* ARGSUSED */ |
1781 Lisp_Object | |
3703
6930e8f81c88
(call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
1782 call2 (fn, arg1, arg2) |
6930e8f81c88
(call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
1783 Lisp_Object fn, arg1, arg2; |
272 | 1784 { |
323 | 1785 struct gcpro gcpro1; |
272 | 1786 #ifdef NO_ARG_ARRAY |
1787 Lisp_Object args[3]; | |
1788 args[0] = fn; | |
3703
6930e8f81c88
(call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
1789 args[1] = arg1; |
6930e8f81c88
(call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
1790 args[2] = arg2; |
323 | 1791 GCPRO1 (args[0]); |
1792 gcpro1.nvars = 3; | |
1793 RETURN_UNGCPRO (Ffuncall (3, args)); | |
272 | 1794 #else /* not NO_ARG_ARRAY */ |
323 | 1795 GCPRO1 (fn); |
1796 gcpro1.nvars = 3; | |
1797 RETURN_UNGCPRO (Ffuncall (3, &fn)); | |
272 | 1798 #endif /* not NO_ARG_ARRAY */ |
1799 } | |
1800 | |
3703
6930e8f81c88
(call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
1801 /* Call function fn with 3 arguments arg1, arg2, arg3 */ |
272 | 1802 /* ARGSUSED */ |
1803 Lisp_Object | |
3703
6930e8f81c88
(call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
1804 call3 (fn, arg1, arg2, arg3) |
6930e8f81c88
(call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
1805 Lisp_Object fn, arg1, arg2, arg3; |
272 | 1806 { |
323 | 1807 struct gcpro gcpro1; |
272 | 1808 #ifdef NO_ARG_ARRAY |
1809 Lisp_Object args[4]; | |
1810 args[0] = fn; | |
3703
6930e8f81c88
(call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
1811 args[1] = arg1; |
6930e8f81c88
(call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
1812 args[2] = arg2; |
6930e8f81c88
(call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
1813 args[3] = arg3; |
323 | 1814 GCPRO1 (args[0]); |
1815 gcpro1.nvars = 4; | |
1816 RETURN_UNGCPRO (Ffuncall (4, args)); | |
272 | 1817 #else /* not NO_ARG_ARRAY */ |
323 | 1818 GCPRO1 (fn); |
1819 gcpro1.nvars = 4; | |
1820 RETURN_UNGCPRO (Ffuncall (4, &fn)); | |
272 | 1821 #endif /* not NO_ARG_ARRAY */ |
1822 } | |
1823 | |
3703
6930e8f81c88
(call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
1824 /* Call function fn with 4 arguments arg1, arg2, arg3, arg4 */ |
3598
3c4b5489d2b4
* fileio.c (Frename_file): Pass all arguments to the file name handler.
Jim Blandy <jimb@redhat.com>
parents:
2961
diff
changeset
|
1825 /* ARGSUSED */ |
3c4b5489d2b4
* fileio.c (Frename_file): Pass all arguments to the file name handler.
Jim Blandy <jimb@redhat.com>
parents:
2961
diff
changeset
|
1826 Lisp_Object |
3703
6930e8f81c88
(call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
1827 call4 (fn, arg1, arg2, arg3, arg4) |
6930e8f81c88
(call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
1828 Lisp_Object fn, arg1, arg2, arg3, arg4; |
3598
3c4b5489d2b4
* fileio.c (Frename_file): Pass all arguments to the file name handler.
Jim Blandy <jimb@redhat.com>
parents:
2961
diff
changeset
|
1829 { |
3c4b5489d2b4
* fileio.c (Frename_file): Pass all arguments to the file name handler.
Jim Blandy <jimb@redhat.com>
parents:
2961
diff
changeset
|
1830 struct gcpro gcpro1; |
3c4b5489d2b4
* fileio.c (Frename_file): Pass all arguments to the file name handler.
Jim Blandy <jimb@redhat.com>
parents:
2961
diff
changeset
|
1831 #ifdef NO_ARG_ARRAY |
3c4b5489d2b4
* fileio.c (Frename_file): Pass all arguments to the file name handler.
Jim Blandy <jimb@redhat.com>
parents:
2961
diff
changeset
|
1832 Lisp_Object args[5]; |
3c4b5489d2b4
* fileio.c (Frename_file): Pass all arguments to the file name handler.
Jim Blandy <jimb@redhat.com>
parents:
2961
diff
changeset
|
1833 args[0] = fn; |
3703
6930e8f81c88
(call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
1834 args[1] = arg1; |
6930e8f81c88
(call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
1835 args[2] = arg2; |
6930e8f81c88
(call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
1836 args[3] = arg3; |
6930e8f81c88
(call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
1837 args[4] = arg4; |
3598
3c4b5489d2b4
* fileio.c (Frename_file): Pass all arguments to the file name handler.
Jim Blandy <jimb@redhat.com>
parents:
2961
diff
changeset
|
1838 GCPRO1 (args[0]); |
3c4b5489d2b4
* fileio.c (Frename_file): Pass all arguments to the file name handler.
Jim Blandy <jimb@redhat.com>
parents:
2961
diff
changeset
|
1839 gcpro1.nvars = 5; |
3c4b5489d2b4
* fileio.c (Frename_file): Pass all arguments to the file name handler.
Jim Blandy <jimb@redhat.com>
parents:
2961
diff
changeset
|
1840 RETURN_UNGCPRO (Ffuncall (5, args)); |
3c4b5489d2b4
* fileio.c (Frename_file): Pass all arguments to the file name handler.
Jim Blandy <jimb@redhat.com>
parents:
2961
diff
changeset
|
1841 #else /* not NO_ARG_ARRAY */ |
3c4b5489d2b4
* fileio.c (Frename_file): Pass all arguments to the file name handler.
Jim Blandy <jimb@redhat.com>
parents:
2961
diff
changeset
|
1842 GCPRO1 (fn); |
3c4b5489d2b4
* fileio.c (Frename_file): Pass all arguments to the file name handler.
Jim Blandy <jimb@redhat.com>
parents:
2961
diff
changeset
|
1843 gcpro1.nvars = 5; |
3c4b5489d2b4
* fileio.c (Frename_file): Pass all arguments to the file name handler.
Jim Blandy <jimb@redhat.com>
parents:
2961
diff
changeset
|
1844 RETURN_UNGCPRO (Ffuncall (5, &fn)); |
3c4b5489d2b4
* fileio.c (Frename_file): Pass all arguments to the file name handler.
Jim Blandy <jimb@redhat.com>
parents:
2961
diff
changeset
|
1845 #endif /* not NO_ARG_ARRAY */ |
3c4b5489d2b4
* fileio.c (Frename_file): Pass all arguments to the file name handler.
Jim Blandy <jimb@redhat.com>
parents:
2961
diff
changeset
|
1846 } |
3c4b5489d2b4
* fileio.c (Frename_file): Pass all arguments to the file name handler.
Jim Blandy <jimb@redhat.com>
parents:
2961
diff
changeset
|
1847 |
3703
6930e8f81c88
(call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
1848 /* Call function fn with 5 arguments arg1, arg2, arg3, arg4, arg5 */ |
6930e8f81c88
(call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
1849 /* ARGSUSED */ |
6930e8f81c88
(call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
1850 Lisp_Object |
6930e8f81c88
(call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
1851 call5 (fn, arg1, arg2, arg3, arg4, arg5) |
6930e8f81c88
(call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
1852 Lisp_Object fn, arg1, arg2, arg3, arg4, arg5; |
6930e8f81c88
(call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
1853 { |
6930e8f81c88
(call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
1854 struct gcpro gcpro1; |
6930e8f81c88
(call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
1855 #ifdef NO_ARG_ARRAY |
6930e8f81c88
(call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
1856 Lisp_Object args[6]; |
6930e8f81c88
(call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
1857 args[0] = fn; |
6930e8f81c88
(call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
1858 args[1] = arg1; |
6930e8f81c88
(call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
1859 args[2] = arg2; |
6930e8f81c88
(call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
1860 args[3] = arg3; |
6930e8f81c88
(call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
1861 args[4] = arg4; |
6930e8f81c88
(call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
1862 args[5] = arg5; |
6930e8f81c88
(call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
1863 GCPRO1 (args[0]); |
6930e8f81c88
(call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
1864 gcpro1.nvars = 6; |
6930e8f81c88
(call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
1865 RETURN_UNGCPRO (Ffuncall (6, args)); |
6930e8f81c88
(call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
1866 #else /* not NO_ARG_ARRAY */ |
6930e8f81c88
(call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
1867 GCPRO1 (fn); |
6930e8f81c88
(call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
1868 gcpro1.nvars = 6; |
6930e8f81c88
(call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
1869 RETURN_UNGCPRO (Ffuncall (6, &fn)); |
6930e8f81c88
(call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
1870 #endif /* not NO_ARG_ARRAY */ |
6930e8f81c88
(call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
1871 } |
6930e8f81c88
(call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
1872 |
6930e8f81c88
(call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
1873 /* Call function fn with 6 arguments arg1, arg2, arg3, arg4, arg5, arg6 */ |
6930e8f81c88
(call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
1874 /* ARGSUSED */ |
6930e8f81c88
(call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
1875 Lisp_Object |
6930e8f81c88
(call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
1876 call6 (fn, arg1, arg2, arg3, arg4, arg5, arg6) |
6930e8f81c88
(call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
1877 Lisp_Object fn, arg1, arg2, arg3, arg4, arg5, arg6; |
6930e8f81c88
(call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
1878 { |
6930e8f81c88
(call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
1879 struct gcpro gcpro1; |
6930e8f81c88
(call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
1880 #ifdef NO_ARG_ARRAY |
6930e8f81c88
(call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
1881 Lisp_Object args[7]; |
6930e8f81c88
(call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
1882 args[0] = fn; |
6930e8f81c88
(call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
1883 args[1] = arg1; |
6930e8f81c88
(call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
1884 args[2] = arg2; |
6930e8f81c88
(call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
1885 args[3] = arg3; |
6930e8f81c88
(call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
1886 args[4] = arg4; |
6930e8f81c88
(call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
1887 args[5] = arg5; |
6930e8f81c88
(call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
1888 args[6] = arg6; |
6930e8f81c88
(call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
1889 GCPRO1 (args[0]); |
6930e8f81c88
(call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
1890 gcpro1.nvars = 7; |
6930e8f81c88
(call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
1891 RETURN_UNGCPRO (Ffuncall (7, args)); |
6930e8f81c88
(call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
1892 #else /* not NO_ARG_ARRAY */ |
6930e8f81c88
(call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
1893 GCPRO1 (fn); |
6930e8f81c88
(call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
1894 gcpro1.nvars = 7; |
6930e8f81c88
(call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
1895 RETURN_UNGCPRO (Ffuncall (7, &fn)); |
6930e8f81c88
(call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
1896 #endif /* not NO_ARG_ARRAY */ |
6930e8f81c88
(call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
1897 } |
6930e8f81c88
(call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
1898 |
272 | 1899 DEFUN ("funcall", Ffuncall, Sfuncall, 1, MANY, 0, |
1900 "Call first argument as a function, passing remaining arguments to it.\n\ | |
1901 Thus, (funcall 'cons 'x 'y) returns (x . y).") | |
1902 (nargs, args) | |
1903 int nargs; | |
1904 Lisp_Object *args; | |
1905 { | |
1906 Lisp_Object fun; | |
1907 Lisp_Object funcar; | |
1908 int numargs = nargs - 1; | |
1909 Lisp_Object lisp_numargs; | |
1910 Lisp_Object val; | |
1911 struct backtrace backtrace; | |
1912 register Lisp_Object *internal_args; | |
1913 register int i; | |
1914 | |
1915 QUIT; | |
1916 if (consing_since_gc > gc_cons_threshold) | |
323 | 1917 Fgarbage_collect (); |
272 | 1918 |
1919 if (++lisp_eval_depth > max_lisp_eval_depth) | |
1920 { | |
1921 if (max_lisp_eval_depth < 100) | |
1922 max_lisp_eval_depth = 100; | |
1923 if (lisp_eval_depth > max_lisp_eval_depth) | |
1924 error ("Lisp nesting exceeds max-lisp-eval-depth"); | |
1925 } | |
1926 | |
1927 backtrace.next = backtrace_list; | |
1928 backtrace_list = &backtrace; | |
1929 backtrace.function = &args[0]; | |
1930 backtrace.args = &args[1]; | |
1931 backtrace.nargs = nargs - 1; | |
1932 backtrace.evalargs = 0; | |
1933 backtrace.debug_on_exit = 0; | |
1934 | |
1935 if (debug_on_next_call) | |
1936 do_debug_on_call (Qlambda); | |
1937 | |
1938 retry: | |
1939 | |
1940 fun = args[0]; | |
648 | 1941 |
1942 fun = Findirect_function (fun); | |
272 | 1943 |
1944 if (XTYPE (fun) == Lisp_Subr) | |
1945 { | |
1946 if (numargs < XSUBR (fun)->min_args | |
1947 || (XSUBR (fun)->max_args >= 0 && XSUBR (fun)->max_args < numargs)) | |
1948 { | |
1949 XFASTINT (lisp_numargs) = numargs; | |
1950 return Fsignal (Qwrong_number_of_arguments, Fcons (fun, Fcons (lisp_numargs, Qnil))); | |
1951 } | |
1952 | |
1953 if (XSUBR (fun)->max_args == UNEVALLED) | |
1954 return Fsignal (Qinvalid_function, Fcons (fun, Qnil)); | |
1955 | |
1956 if (XSUBR (fun)->max_args == MANY) | |
1957 { | |
1958 val = (*XSUBR (fun)->function) (numargs, args + 1); | |
1959 goto done; | |
1960 } | |
1961 | |
1962 if (XSUBR (fun)->max_args > numargs) | |
1963 { | |
1964 internal_args = (Lisp_Object *) alloca (XSUBR (fun)->max_args * sizeof (Lisp_Object)); | |
1965 bcopy (args + 1, internal_args, numargs * sizeof (Lisp_Object)); | |
1966 for (i = numargs; i < XSUBR (fun)->max_args; i++) | |
1967 internal_args[i] = Qnil; | |
1968 } | |
1969 else | |
1970 internal_args = args + 1; | |
1971 switch (XSUBR (fun)->max_args) | |
1972 { | |
1973 case 0: | |
1974 val = (*XSUBR (fun)->function) (); | |
1975 goto done; | |
1976 case 1: | |
1977 val = (*XSUBR (fun)->function) (internal_args[0]); | |
1978 goto done; | |
1979 case 2: | |
1980 val = (*XSUBR (fun)->function) (internal_args[0], | |
1981 internal_args[1]); | |
1982 goto done; | |
1983 case 3: | |
1984 val = (*XSUBR (fun)->function) (internal_args[0], internal_args[1], | |
1985 internal_args[2]); | |
1986 goto done; | |
1987 case 4: | |
1988 val = (*XSUBR (fun)->function) (internal_args[0], internal_args[1], | |
1989 internal_args[2], | |
1990 internal_args[3]); | |
1991 goto done; | |
1992 case 5: | |
1993 val = (*XSUBR (fun)->function) (internal_args[0], internal_args[1], | |
1994 internal_args[2], internal_args[3], | |
1995 internal_args[4]); | |
1996 goto done; | |
1997 case 6: | |
1998 val = (*XSUBR (fun)->function) (internal_args[0], internal_args[1], | |
1999 internal_args[2], internal_args[3], | |
2000 internal_args[4], internal_args[5]); | |
2001 goto done; | |
863
427299469901
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
753
diff
changeset
|
2002 case 7: |
427299469901
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
753
diff
changeset
|
2003 val = (*XSUBR (fun)->function) (internal_args[0], internal_args[1], |
427299469901
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
753
diff
changeset
|
2004 internal_args[2], internal_args[3], |
427299469901
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
753
diff
changeset
|
2005 internal_args[4], internal_args[5], |
427299469901
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
753
diff
changeset
|
2006 internal_args[6]); |
427299469901
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
753
diff
changeset
|
2007 goto done; |
272 | 2008 |
2009 default: | |
573 | 2010 |
2011 /* If a subr takes more than 6 arguments without using MANY | |
2012 or UNEVALLED, we need to extend this function to support it. | |
2013 Until this is done, there is no way to call the function. */ | |
2014 abort (); | |
272 | 2015 } |
2016 } | |
2017 if (XTYPE (fun) == Lisp_Compiled) | |
2018 val = funcall_lambda (fun, numargs, args + 1); | |
2019 else | |
2020 { | |
2021 if (!CONSP (fun)) | |
2022 return Fsignal (Qinvalid_function, Fcons (fun, Qnil)); | |
2023 funcar = Fcar (fun); | |
2024 if (XTYPE (funcar) != Lisp_Symbol) | |
2025 return Fsignal (Qinvalid_function, Fcons (fun, Qnil)); | |
2026 if (EQ (funcar, Qlambda)) | |
2027 val = funcall_lambda (fun, numargs, args + 1); | |
2028 else if (EQ (funcar, Qmocklisp)) | |
2029 val = ml_apply (fun, Flist (numargs, args + 1)); | |
2030 else if (EQ (funcar, Qautoload)) | |
2031 { | |
2032 do_autoload (fun, args[0]); | |
2033 goto retry; | |
2034 } | |
2035 else | |
2036 return Fsignal (Qinvalid_function, Fcons (fun, Qnil)); | |
2037 } | |
2038 done: | |
2039 lisp_eval_depth--; | |
2040 if (backtrace.debug_on_exit) | |
2041 val = call_debugger (Fcons (Qexit, Fcons (val, Qnil))); | |
2042 backtrace_list = backtrace.next; | |
2043 return val; | |
2044 } | |
2045 | |
2046 Lisp_Object | |
2047 apply_lambda (fun, args, eval_flag) | |
2048 Lisp_Object fun, args; | |
2049 int eval_flag; | |
2050 { | |
2051 Lisp_Object args_left; | |
2052 Lisp_Object numargs; | |
2053 register Lisp_Object *arg_vector; | |
2054 struct gcpro gcpro1, gcpro2, gcpro3; | |
2055 register int i; | |
2056 register Lisp_Object tem; | |
2057 | |
2058 numargs = Flength (args); | |
2059 arg_vector = (Lisp_Object *) alloca (XINT (numargs) * sizeof (Lisp_Object)); | |
2060 args_left = args; | |
2061 | |
2062 GCPRO3 (*arg_vector, args_left, fun); | |
2063 gcpro1.nvars = 0; | |
2064 | |
2065 for (i = 0; i < XINT (numargs);) | |
2066 { | |
2067 tem = Fcar (args_left), args_left = Fcdr (args_left); | |
2068 if (eval_flag) tem = Feval (tem); | |
2069 arg_vector[i++] = tem; | |
2070 gcpro1.nvars = i; | |
2071 } | |
2072 | |
2073 UNGCPRO; | |
2074 | |
2075 if (eval_flag) | |
2076 { | |
2077 backtrace_list->args = arg_vector; | |
2078 backtrace_list->nargs = i; | |
2079 } | |
2080 backtrace_list->evalargs = 0; | |
2081 tem = funcall_lambda (fun, XINT (numargs), arg_vector); | |
2082 | |
2083 /* Do the debug-on-exit now, while arg_vector still exists. */ | |
2084 if (backtrace_list->debug_on_exit) | |
2085 tem = call_debugger (Fcons (Qexit, Fcons (tem, Qnil))); | |
2086 /* Don't do it again when we return to eval. */ | |
2087 backtrace_list->debug_on_exit = 0; | |
2088 return tem; | |
2089 } | |
2090 | |
2091 /* Apply a Lisp function FUN to the NARGS evaluated arguments in ARG_VECTOR | |
2092 and return the result of evaluation. | |
2093 FUN must be either a lambda-expression or a compiled-code object. */ | |
2094 | |
2095 Lisp_Object | |
2096 funcall_lambda (fun, nargs, arg_vector) | |
2097 Lisp_Object fun; | |
2098 int nargs; | |
2099 register Lisp_Object *arg_vector; | |
2100 { | |
2101 Lisp_Object val, tem; | |
2102 register Lisp_Object syms_left; | |
2103 Lisp_Object numargs; | |
2104 register Lisp_Object next; | |
2105 int count = specpdl_ptr - specpdl; | |
2106 register int i; | |
2107 int optional = 0, rest = 0; | |
2108 | |
2109 specbind (Qmocklisp_arguments, Qt); /* t means NOT mocklisp! */ | |
2110 | |
2111 XFASTINT (numargs) = nargs; | |
2112 | |
2113 if (XTYPE (fun) == Lisp_Cons) | |
2114 syms_left = Fcar (Fcdr (fun)); | |
2115 else if (XTYPE (fun) == Lisp_Compiled) | |
2116 syms_left = XVECTOR (fun)->contents[COMPILED_ARGLIST]; | |
2117 else abort (); | |
2118 | |
2119 i = 0; | |
485 | 2120 for (; !NILP (syms_left); syms_left = Fcdr (syms_left)) |
272 | 2121 { |
2122 QUIT; | |
2123 next = Fcar (syms_left); | |
431 | 2124 while (XTYPE (next) != Lisp_Symbol) |
2125 next = Fsignal (Qinvalid_function, Fcons (fun, Qnil)); | |
272 | 2126 if (EQ (next, Qand_rest)) |
2127 rest = 1; | |
2128 else if (EQ (next, Qand_optional)) | |
2129 optional = 1; | |
2130 else if (rest) | |
2131 { | |
431 | 2132 specbind (next, Flist (nargs - i, &arg_vector[i])); |
272 | 2133 i = nargs; |
2134 } | |
2135 else if (i < nargs) | |
2136 { | |
2137 tem = arg_vector[i++]; | |
2138 specbind (next, tem); | |
2139 } | |
2140 else if (!optional) | |
2141 return Fsignal (Qwrong_number_of_arguments, Fcons (fun, Fcons (numargs, Qnil))); | |
2142 else | |
2143 specbind (next, Qnil); | |
2144 } | |
2145 | |
2146 if (i < nargs) | |
2147 return Fsignal (Qwrong_number_of_arguments, Fcons (fun, Fcons (numargs, Qnil))); | |
2148 | |
2149 if (XTYPE (fun) == Lisp_Cons) | |
2150 val = Fprogn (Fcdr (Fcdr (fun))); | |
2151 else | |
2152 val = Fbyte_code (XVECTOR (fun)->contents[COMPILED_BYTECODE], | |
2153 XVECTOR (fun)->contents[COMPILED_CONSTANTS], | |
2154 XVECTOR (fun)->contents[COMPILED_STACK_DEPTH]); | |
2155 return unbind_to (count, val); | |
2156 } | |
2157 | |
2158 void | |
2159 grow_specpdl () | |
2160 { | |
2161 register int count = specpdl_ptr - specpdl; | |
2162 if (specpdl_size >= max_specpdl_size) | |
2163 { | |
2164 if (max_specpdl_size < 400) | |
2165 max_specpdl_size = 400; | |
2166 if (specpdl_size >= max_specpdl_size) | |
2167 { | |
1452
ed79bb8047e8
(grow_specpdl): Increase max_specpdl_size before Fsignal.
Richard M. Stallman <rms@gnu.org>
parents:
1199
diff
changeset
|
2168 if (!NILP (Vdebug_on_error)) |
ed79bb8047e8
(grow_specpdl): Increase max_specpdl_size before Fsignal.
Richard M. Stallman <rms@gnu.org>
parents:
1199
diff
changeset
|
2169 /* Leave room for some specpdl in the debugger. */ |
ed79bb8047e8
(grow_specpdl): Increase max_specpdl_size before Fsignal.
Richard M. Stallman <rms@gnu.org>
parents:
1199
diff
changeset
|
2170 max_specpdl_size = specpdl_size + 100; |
272 | 2171 Fsignal (Qerror, |
2172 Fcons (build_string ("Variable binding depth exceeds max-specpdl-size"), Qnil)); | |
2173 } | |
2174 } | |
2175 specpdl_size *= 2; | |
2176 if (specpdl_size > max_specpdl_size) | |
2177 specpdl_size = max_specpdl_size; | |
2178 specpdl = (struct specbinding *) xrealloc (specpdl, specpdl_size * sizeof (struct specbinding)); | |
2179 specpdl_ptr = specpdl + count; | |
2180 } | |
2181 | |
2182 void | |
2183 specbind (symbol, value) | |
2184 Lisp_Object symbol, value; | |
2185 { | |
2186 extern void store_symval_forwarding (); /* in eval.c */ | |
2187 Lisp_Object ovalue; | |
2188 | |
431 | 2189 CHECK_SYMBOL (symbol, 0); |
2190 | |
272 | 2191 if (specpdl_ptr == specpdl + specpdl_size) |
2192 grow_specpdl (); | |
2193 specpdl_ptr->symbol = symbol; | |
2194 specpdl_ptr->func = 0; | |
2195 ovalue = XSYMBOL (symbol)->value; | |
2196 specpdl_ptr->old_value = EQ (ovalue, Qunbound) ? Qunbound : Fsymbol_value (symbol); | |
2197 specpdl_ptr++; | |
2198 if (XTYPE (ovalue) == Lisp_Buffer_Objfwd) | |
2199 store_symval_forwarding (symbol, ovalue, value); | |
2200 else | |
2201 Fset (symbol, value); | |
2202 } | |
2203 | |
2204 void | |
2205 record_unwind_protect (function, arg) | |
2206 Lisp_Object (*function)(); | |
2207 Lisp_Object arg; | |
2208 { | |
2209 if (specpdl_ptr == specpdl + specpdl_size) | |
2210 grow_specpdl (); | |
2211 specpdl_ptr->func = function; | |
2212 specpdl_ptr->symbol = Qnil; | |
2213 specpdl_ptr->old_value = arg; | |
2214 specpdl_ptr++; | |
2215 } | |
2216 | |
2217 Lisp_Object | |
2218 unbind_to (count, value) | |
2219 int count; | |
2220 Lisp_Object value; | |
2221 { | |
485 | 2222 int quitf = !NILP (Vquit_flag); |
272 | 2223 struct gcpro gcpro1; |
2224 | |
2225 GCPRO1 (value); | |
2226 | |
2227 Vquit_flag = Qnil; | |
2228 | |
2229 while (specpdl_ptr != specpdl + count) | |
2230 { | |
2231 --specpdl_ptr; | |
2232 if (specpdl_ptr->func != 0) | |
2233 (*specpdl_ptr->func) (specpdl_ptr->old_value); | |
2234 /* Note that a "binding" of nil is really an unwind protect, | |
2235 so in that case the "old value" is a list of forms to evaluate. */ | |
485 | 2236 else if (NILP (specpdl_ptr->symbol)) |
272 | 2237 Fprogn (specpdl_ptr->old_value); |
2238 else | |
2239 Fset (specpdl_ptr->symbol, specpdl_ptr->old_value); | |
2240 } | |
485 | 2241 if (NILP (Vquit_flag) && quitf) Vquit_flag = Qt; |
272 | 2242 |
2243 UNGCPRO; | |
2244 | |
2245 return value; | |
2246 } | |
2247 | |
2248 #if 0 | |
2249 | |
2250 /* Get the value of symbol's global binding, even if that binding | |
2251 is not now dynamically visible. */ | |
2252 | |
2253 Lisp_Object | |
2254 top_level_value (symbol) | |
2255 Lisp_Object symbol; | |
2256 { | |
2257 register struct specbinding *ptr = specpdl; | |
2258 | |
2259 CHECK_SYMBOL (symbol, 0); | |
2260 for (; ptr != specpdl_ptr; ptr++) | |
2261 { | |
2262 if (EQ (ptr->symbol, symbol)) | |
2263 return ptr->old_value; | |
2264 } | |
2265 return Fsymbol_value (symbol); | |
2266 } | |
2267 | |
2268 Lisp_Object | |
2269 top_level_set (symbol, newval) | |
2270 Lisp_Object symbol, newval; | |
2271 { | |
2272 register struct specbinding *ptr = specpdl; | |
2273 | |
2274 CHECK_SYMBOL (symbol, 0); | |
2275 for (; ptr != specpdl_ptr; ptr++) | |
2276 { | |
2277 if (EQ (ptr->symbol, symbol)) | |
2278 { | |
2279 ptr->old_value = newval; | |
2280 return newval; | |
2281 } | |
2282 } | |
2283 return Fset (symbol, newval); | |
2284 } | |
2285 | |
2286 #endif /* 0 */ | |
2287 | |
2288 DEFUN ("backtrace-debug", Fbacktrace_debug, Sbacktrace_debug, 2, 2, 0, | |
2289 "Set the debug-on-exit flag of eval frame LEVEL levels down to FLAG.\n\ | |
2290 The debugger is entered when that frame exits, if the flag is non-nil.") | |
2291 (level, flag) | |
2292 Lisp_Object level, flag; | |
2293 { | |
2294 register struct backtrace *backlist = backtrace_list; | |
2295 register int i; | |
2296 | |
2297 CHECK_NUMBER (level, 0); | |
2298 | |
2299 for (i = 0; backlist && i < XINT (level); i++) | |
2300 { | |
2301 backlist = backlist->next; | |
2302 } | |
2303 | |
2304 if (backlist) | |
485 | 2305 backlist->debug_on_exit = !NILP (flag); |
272 | 2306 |
2307 return flag; | |
2308 } | |
2309 | |
2310 DEFUN ("backtrace", Fbacktrace, Sbacktrace, 0, 0, "", | |
2311 "Print a trace of Lisp function calls currently active.\n\ | |
2312 Output stream used is value of `standard-output'.") | |
2313 () | |
2314 { | |
2315 register struct backtrace *backlist = backtrace_list; | |
2316 register int i; | |
2317 Lisp_Object tail; | |
2318 Lisp_Object tem; | |
2319 extern Lisp_Object Vprint_level; | |
2320 struct gcpro gcpro1; | |
2321 | |
2322 XFASTINT (Vprint_level) = 3; | |
2323 | |
2324 tail = Qnil; | |
2325 GCPRO1 (tail); | |
2326 | |
2327 while (backlist) | |
2328 { | |
2329 write_string (backlist->debug_on_exit ? "* " : " ", 2); | |
2330 if (backlist->nargs == UNEVALLED) | |
2331 { | |
2332 Fprin1 (Fcons (*backlist->function, *backlist->args), Qnil); | |
2333 } | |
2334 else | |
2335 { | |
2336 tem = *backlist->function; | |
2337 Fprin1 (tem, Qnil); /* This can QUIT */ | |
2338 write_string ("(", -1); | |
2339 if (backlist->nargs == MANY) | |
2340 { | |
2341 for (tail = *backlist->args, i = 0; | |
485 | 2342 !NILP (tail); |
272 | 2343 tail = Fcdr (tail), i++) |
2344 { | |
2345 if (i) write_string (" ", -1); | |
2346 Fprin1 (Fcar (tail), Qnil); | |
2347 } | |
2348 } | |
2349 else | |
2350 { | |
2351 for (i = 0; i < backlist->nargs; i++) | |
2352 { | |
2353 if (i) write_string (" ", -1); | |
2354 Fprin1 (backlist->args[i], Qnil); | |
2355 } | |
2356 } | |
2357 } | |
2358 write_string (")\n", -1); | |
2359 backlist = backlist->next; | |
2360 } | |
2361 | |
2362 Vprint_level = Qnil; | |
2363 UNGCPRO; | |
2364 return Qnil; | |
2365 } | |
2366 | |
2367 DEFUN ("backtrace-frame", Fbacktrace_frame, Sbacktrace_frame, 1, 1, "", | |
2368 "Return the function and arguments N frames up from current execution point.\n\ | |
2369 If that frame has not evaluated the arguments yet (or is a special form),\n\ | |
2370 the value is (nil FUNCTION ARG-FORMS...).\n\ | |
2371 If that frame has evaluated its arguments and called its function already,\n\ | |
2372 the value is (t FUNCTION ARG-VALUES...).\n\ | |
2373 A &rest arg is represented as the tail of the list ARG-VALUES.\n\ | |
2374 FUNCTION is whatever was supplied as car of evaluated list,\n\ | |
2375 or a lambda expression for macro calls.\n\ | |
2376 If N is more than the number of frames, the value is nil.") | |
2377 (nframes) | |
2378 Lisp_Object nframes; | |
2379 { | |
2380 register struct backtrace *backlist = backtrace_list; | |
2381 register int i; | |
2382 Lisp_Object tem; | |
2383 | |
2384 CHECK_NATNUM (nframes, 0); | |
2385 | |
2386 /* Find the frame requested. */ | |
2387 for (i = 0; i < XFASTINT (nframes); i++) | |
2388 backlist = backlist->next; | |
2389 | |
2390 if (!backlist) | |
2391 return Qnil; | |
2392 if (backlist->nargs == UNEVALLED) | |
2393 return Fcons (Qnil, Fcons (*backlist->function, *backlist->args)); | |
2394 else | |
2395 { | |
2396 if (backlist->nargs == MANY) | |
2397 tem = *backlist->args; | |
2398 else | |
2399 tem = Flist (backlist->nargs, backlist->args); | |
2400 | |
2401 return Fcons (Qt, Fcons (*backlist->function, tem)); | |
2402 } | |
2403 } | |
2404 | |
2405 syms_of_eval () | |
2406 { | |
2407 DEFVAR_INT ("max-specpdl-size", &max_specpdl_size, | |
2408 "Limit on number of Lisp variable bindings & unwind-protects before error."); | |
2409 | |
2410 DEFVAR_INT ("max-lisp-eval-depth", &max_lisp_eval_depth, | |
2411 "Limit on depth in `eval', `apply' and `funcall' before error.\n\ | |
2412 This limit is to catch infinite recursions for you before they cause\n\ | |
2413 actual stack overflow in C, which would be fatal for Emacs.\n\ | |
2414 You can safely make it considerably larger than its default value,\n\ | |
2415 if that proves inconveniently small."); | |
2416 | |
2417 DEFVAR_LISP ("quit-flag", &Vquit_flag, | |
2418 "Non-nil causes `eval' to abort, unless `inhibit-quit' is non-nil.\n\ | |
2419 Typing C-G sets `quit-flag' non-nil, regardless of `inhibit-quit'."); | |
2420 Vquit_flag = Qnil; | |
2421 | |
2422 DEFVAR_LISP ("inhibit-quit", &Vinhibit_quit, | |
2423 "Non-nil inhibits C-g quitting from happening immediately.\n\ | |
2424 Note that `quit-flag' will still be set by typing C-g,\n\ | |
2425 so a quit will be signalled as soon as `inhibit-quit' is nil.\n\ | |
2426 To prevent this happening, set `quit-flag' to nil\n\ | |
2427 before making `inhibit-quit' nil."); | |
2428 Vinhibit_quit = Qnil; | |
2429 | |
381 | 2430 Qinhibit_quit = intern ("inhibit-quit"); |
2431 staticpro (&Qinhibit_quit); | |
2432 | |
272 | 2433 Qautoload = intern ("autoload"); |
2434 staticpro (&Qautoload); | |
2435 | |
2436 Qdebug_on_error = intern ("debug-on-error"); | |
2437 staticpro (&Qdebug_on_error); | |
2438 | |
2439 Qmacro = intern ("macro"); | |
2440 staticpro (&Qmacro); | |
2441 | |
2442 /* Note that the process handling also uses Qexit, but we don't want | |
2443 to staticpro it twice, so we just do it here. */ | |
2444 Qexit = intern ("exit"); | |
2445 staticpro (&Qexit); | |
2446 | |
2447 Qinteractive = intern ("interactive"); | |
2448 staticpro (&Qinteractive); | |
2449 | |
2450 Qcommandp = intern ("commandp"); | |
2451 staticpro (&Qcommandp); | |
2452 | |
2453 Qdefun = intern ("defun"); | |
2454 staticpro (&Qdefun); | |
2455 | |
2456 Qand_rest = intern ("&rest"); | |
2457 staticpro (&Qand_rest); | |
2458 | |
2459 Qand_optional = intern ("&optional"); | |
2460 staticpro (&Qand_optional); | |
2461 | |
684 | 2462 DEFVAR_LISP ("stack-trace-on-error", &Vstack_trace_on_error, |
272 | 2463 "*Non-nil means automatically display a backtrace buffer\n\ |
684 | 2464 after any error that is handled by the editor command loop.\n\ |
2465 If the value is a list, an error only means to display a backtrace\n\ | |
2466 if one of its condition symbols appears in the list."); | |
2467 Vstack_trace_on_error = Qnil; | |
272 | 2468 |
684 | 2469 DEFVAR_LISP ("debug-on-error", &Vdebug_on_error, |
272 | 2470 "*Non-nil means enter debugger if an error is signaled.\n\ |
2471 Does not apply to errors handled by `condition-case'.\n\ | |
684 | 2472 If the value is a list, an error only means to enter the debugger\n\ |
2473 if one of its condition symbols appears in the list.\n\ | |
272 | 2474 See also variable `debug-on-quit'."); |
684 | 2475 Vdebug_on_error = Qnil; |
272 | 2476 |
2477 DEFVAR_BOOL ("debug-on-quit", &debug_on_quit, | |
2478 "*Non-nil means enter debugger if quit is signaled (C-G, for example).\n\ | |
940 | 2479 Does not apply if quit is handled by a `condition-case'."); |
272 | 2480 debug_on_quit = 0; |
2481 | |
2482 DEFVAR_BOOL ("debug-on-next-call", &debug_on_next_call, | |
2483 "Non-nil means enter debugger before next `eval', `apply' or `funcall'."); | |
2484 | |
2485 DEFVAR_LISP ("debugger", &Vdebugger, | |
2486 "Function to call to invoke debugger.\n\ | |
2487 If due to frame exit, args are `exit' and the value being returned;\n\ | |
2488 this function's value will be returned instead of that.\n\ | |
2489 If due to error, args are `error' and a list of the args to `signal'.\n\ | |
2490 If due to `apply' or `funcall' entry, one arg, `lambda'.\n\ | |
2491 If due to `eval' entry, one arg, t."); | |
2492 Vdebugger = Qnil; | |
2493 | |
2494 Qmocklisp_arguments = intern ("mocklisp-arguments"); | |
2495 staticpro (&Qmocklisp_arguments); | |
2496 DEFVAR_LISP ("mocklisp-arguments", &Vmocklisp_arguments, | |
2497 "While in a mocklisp function, the list of its unevaluated args."); | |
2498 Vmocklisp_arguments = Qt; | |
2499 | |
2500 DEFVAR_LISP ("run-hooks", &Vrun_hooks, | |
2501 "Set to the function `run-hooks', if that function has been defined.\n\ | |
2502 Otherwise, nil (in a bare Emacs without preloaded Lisp code)."); | |
2503 Vrun_hooks = Qnil; | |
2504 | |
2505 staticpro (&Vautoload_queue); | |
2506 Vautoload_queue = Qnil; | |
2507 | |
2508 defsubr (&Sor); | |
2509 defsubr (&Sand); | |
2510 defsubr (&Sif); | |
2511 defsubr (&Scond); | |
2512 defsubr (&Sprogn); | |
2513 defsubr (&Sprog1); | |
2514 defsubr (&Sprog2); | |
2515 defsubr (&Ssetq); | |
2516 defsubr (&Squote); | |
2517 defsubr (&Sfunction); | |
2518 defsubr (&Sdefun); | |
2519 defsubr (&Sdefmacro); | |
2520 defsubr (&Sdefvar); | |
2521 defsubr (&Sdefconst); | |
2522 defsubr (&Suser_variable_p); | |
2523 defsubr (&Slet); | |
2524 defsubr (&SletX); | |
2525 defsubr (&Swhile); | |
2526 defsubr (&Smacroexpand); | |
2527 defsubr (&Scatch); | |
2528 defsubr (&Sthrow); | |
2529 defsubr (&Sunwind_protect); | |
2530 defsubr (&Scondition_case); | |
2531 defsubr (&Ssignal); | |
2532 defsubr (&Sinteractive_p); | |
2533 defsubr (&Scommandp); | |
2534 defsubr (&Sautoload); | |
2535 defsubr (&Seval); | |
2536 defsubr (&Sapply); | |
2537 defsubr (&Sfuncall); | |
2538 defsubr (&Sbacktrace_debug); | |
2539 defsubr (&Sbacktrace); | |
2540 defsubr (&Sbacktrace_frame); | |
2541 } |