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