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