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