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