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