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