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