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