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