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