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