Mercurial > emacs
annotate src/eval.c @ 92633:ee38530c8cf3
*** empty log message ***
author | Glenn Morris <rgm@gnu.org> |
---|---|
date | Sat, 08 Mar 2008 20:22:36 +0000 |
parents | d1e53221c4aa |
children | 8bb58b63a5fd |
rev | line source |
---|---|
272 | 1 /* Evaluator for GNU Emacs Lisp interpreter. |
61901
787052160d87
(do_autoload): Record only autoloads in the autoload property of symbols.
Lute Kamstra <lute@gnu.org>
parents:
61250
diff
changeset
|
2 Copyright (C) 1985, 1986, 1987, 1993, 1994, 1995, 1999, 2000, 2001, |
79759 | 3 2002, 2003, 2004, 2005, 2006, 2007, 2008 |
4 Free Software Foundation, Inc. | |
272 | 5 |
6 This file is part of GNU Emacs. | |
7 | |
8 GNU Emacs is free software; you can redistribute it and/or modify | |
9 it under the terms of the GNU General Public License as published by | |
78260
922696f363b0
Switch license to GPLv3 or later.
Glenn Morris <rgm@gnu.org>
parents:
78153
diff
changeset
|
10 the Free Software Foundation; either version 3, or (at your option) |
272 | 11 any later version. |
12 | |
13 GNU Emacs is distributed in the hope that it will be useful, | |
14 but WITHOUT ANY WARRANTY; without even the implied warranty of | |
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
16 GNU General Public License for more details. | |
17 | |
18 You should have received a copy of the GNU General Public License | |
19 along with GNU Emacs; see the file COPYING. If not, write to | |
64084 | 20 the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
21 Boston, MA 02110-1301, USA. */ | |
272 | 22 |
23 | |
4696
1fc792473491
Include <config.h> instead of "config.h".
Roland McGrath <roland@gnu.org>
parents:
4474
diff
changeset
|
24 #include <config.h> |
272 | 25 #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
|
26 #include "blockinput.h" |
272 | 27 #include "commands.h" |
515 | 28 #include "keyboard.h" |
26764
9fd028e7872c
(call_debugger): When entering the debugger while redisplaying,
Gerd Moellmann <gerd@gnu.org>
parents:
26365
diff
changeset
|
29 #include "dispextern.h" |
272 | 30 #include <setjmp.h> |
31 | |
73323
d38d245297fa
Include xterm.h for x_fully_uncatch_errors and friends.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
72730
diff
changeset
|
32 #if HAVE_X_WINDOWS |
d38d245297fa
Include xterm.h for x_fully_uncatch_errors and friends.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
72730
diff
changeset
|
33 #include "xterm.h" |
d38d245297fa
Include xterm.h for x_fully_uncatch_errors and friends.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
72730
diff
changeset
|
34 #endif |
d38d245297fa
Include xterm.h for x_fully_uncatch_errors and friends.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
72730
diff
changeset
|
35 |
272 | 36 /* This definition is duplicated in alloc.c and keyboard.c */ |
37 /* Putting it in lisp.h makes cc bomb out! */ | |
38 | |
39 struct backtrace | |
30080
f8f9badf6750
(handling_signal): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30073
diff
changeset
|
40 { |
f8f9badf6750
(handling_signal): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30073
diff
changeset
|
41 struct backtrace *next; |
f8f9badf6750
(handling_signal): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30073
diff
changeset
|
42 Lisp_Object *function; |
f8f9badf6750
(handling_signal): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30073
diff
changeset
|
43 Lisp_Object *args; /* Points to vector of args. */ |
f8f9badf6750
(handling_signal): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30073
diff
changeset
|
44 int nargs; /* Length of vector. |
727 | 45 If nargs is UNEVALLED, args points to slot holding |
46 list of unevalled args */ | |
30080
f8f9badf6750
(handling_signal): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30073
diff
changeset
|
47 char evalargs; |
f8f9badf6750
(handling_signal): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30073
diff
changeset
|
48 /* 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
|
49 char debug_on_exit; |
f8f9badf6750
(handling_signal): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30073
diff
changeset
|
50 }; |
272 | 51 |
52 struct backtrace *backtrace_list; | |
53 | |
1196
65e2edefe748
* eval.c (Fcondition_case): Rearranged for clarity. Don't worry
Jim Blandy <jimb@redhat.com>
parents:
940
diff
changeset
|
54 /* 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
|
55 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
|
56 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
|
57 |
65e2edefe748
* eval.c (Fcondition_case): Rearranged for clarity. Don't worry
Jim Blandy <jimb@redhat.com>
parents:
940
diff
changeset
|
58 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
|
59 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
|
60 for their jumps. |
65e2edefe748
* eval.c (Fcondition_case): Rearranged for clarity. Don't worry
Jim Blandy <jimb@redhat.com>
parents:
940
diff
changeset
|
61 |
65e2edefe748
* eval.c (Fcondition_case): Rearranged for clarity. Don't worry
Jim Blandy <jimb@redhat.com>
parents:
940
diff
changeset
|
62 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
|
63 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
|
64 |
65e2edefe748
* eval.c (Fcondition_case): Rearranged for clarity. Don't worry
Jim Blandy <jimb@redhat.com>
parents:
940
diff
changeset
|
65 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
|
66 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
|
67 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
|
68 of the catch form. |
65e2edefe748
* eval.c (Fcondition_case): Rearranged for clarity. Don't worry
Jim Blandy <jimb@redhat.com>
parents:
940
diff
changeset
|
69 |
65e2edefe748
* eval.c (Fcondition_case): Rearranged for clarity. Don't worry
Jim Blandy <jimb@redhat.com>
parents:
940
diff
changeset
|
70 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
|
71 state. */ |
30080
f8f9badf6750
(handling_signal): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30073
diff
changeset
|
72 |
272 | 73 struct catchtag |
30080
f8f9badf6750
(handling_signal): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30073
diff
changeset
|
74 { |
f8f9badf6750
(handling_signal): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30073
diff
changeset
|
75 Lisp_Object tag; |
f8f9badf6750
(handling_signal): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30073
diff
changeset
|
76 Lisp_Object val; |
f8f9badf6750
(handling_signal): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30073
diff
changeset
|
77 struct catchtag *next; |
f8f9badf6750
(handling_signal): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30073
diff
changeset
|
78 struct gcpro *gcpro; |
f8f9badf6750
(handling_signal): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30073
diff
changeset
|
79 jmp_buf jmp; |
f8f9badf6750
(handling_signal): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30073
diff
changeset
|
80 struct backtrace *backlist; |
f8f9badf6750
(handling_signal): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30073
diff
changeset
|
81 struct handler *handlerlist; |
f8f9badf6750
(handling_signal): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30073
diff
changeset
|
82 int lisp_eval_depth; |
f8f9badf6750
(handling_signal): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30073
diff
changeset
|
83 int pdlcount; |
f8f9badf6750
(handling_signal): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30073
diff
changeset
|
84 int poll_suppress_count; |
48909
ac6f6d4b84ec
Errors and throws work right with interrupt blocking.
Richard M. Stallman <rms@gnu.org>
parents:
48742
diff
changeset
|
85 int interrupt_input_blocked; |
30080
f8f9badf6750
(handling_signal): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30073
diff
changeset
|
86 struct byte_stack *byte_stack; |
f8f9badf6750
(handling_signal): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30073
diff
changeset
|
87 }; |
272 | 88 |
89 struct catchtag *catchlist; | |
90 | |
26297
4d1e267efd41
[DEBUG_GCPRO] (gcpro_level): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
26088
diff
changeset
|
91 #ifdef DEBUG_GCPRO |
4d1e267efd41
[DEBUG_GCPRO] (gcpro_level): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
26088
diff
changeset
|
92 /* 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
|
93 int gcpro_level; |
4d1e267efd41
[DEBUG_GCPRO] (gcpro_level): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
26088
diff
changeset
|
94 #endif |
4d1e267efd41
[DEBUG_GCPRO] (gcpro_level): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
26088
diff
changeset
|
95 |
59109
0b61bbccc6e1
(Fdefun, Fdefmacro): Use (defun . FN_NAME) in LOADHIST_ATTACH.
Richard M. Stallman <rms@gnu.org>
parents:
59051
diff
changeset
|
96 Lisp_Object Qautoload, Qmacro, Qexit, Qinteractive, Qcommandp, Qdefun; |
381 | 97 Lisp_Object Qinhibit_quit, Vinhibit_quit, Vquit_flag; |
272 | 98 Lisp_Object Qand_rest, Qand_optional; |
99 Lisp_Object Qdebug_on_error; | |
44132
8b63b08a2619
(Qdeclare, Vmacro_declaration_function): New variables.
Gerd Moellmann <gerd@gnu.org>
parents:
43713
diff
changeset
|
100 Lisp_Object Qdeclare; |
78141 | 101 Lisp_Object Qdebug; |
272 | 102 |
16296
584310941e70
(syms_of_eval): Initialize Vrun_hooks here.
Richard M. Stallman <rms@gnu.org>
parents:
16113
diff
changeset
|
103 /* 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
|
104 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
|
105 is shutting down. */ |
30080
f8f9badf6750
(handling_signal): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30073
diff
changeset
|
106 |
272 | 107 Lisp_Object Vrun_hooks; |
108 | |
109 /* Non-nil means record all fset's and provide's, to be undone | |
110 if the file being autoloaded is not fully loaded. | |
111 They are recorded by being consed onto the front of Vautoload_queue: | |
67810
65be704fdaf2
(un_autoload): Expect (0 . OFEATURES) in Vautoload_queue to undo a `provide'.
Richard M. Stallman <rms@gnu.org>
parents:
66528
diff
changeset
|
112 (FUN . ODEF) for a defun, (0 . OFEATURES) for a provide. */ |
272 | 113 |
114 Lisp_Object Vautoload_queue; | |
115 | |
116 /* Current number of specbindings allocated in specpdl. */ | |
30080
f8f9badf6750
(handling_signal): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30073
diff
changeset
|
117 |
272 | 118 int specpdl_size; |
119 | |
120 /* Pointer to beginning of specpdl. */ | |
30080
f8f9badf6750
(handling_signal): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30073
diff
changeset
|
121 |
272 | 122 struct specbinding *specpdl; |
123 | |
124 /* Pointer to first unused element in specpdl. */ | |
30080
f8f9badf6750
(handling_signal): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30073
diff
changeset
|
125 |
69158
812b2bed63c2
(specpdl_ptr): Remove volatile qualifier for consistency with lisp.h.
Luc Teirlinck <teirllm@auburn.edu>
parents:
69152
diff
changeset
|
126 struct specbinding *specpdl_ptr; |
272 | 127 |
128 /* Maximum size allowed for specpdl allocation */ | |
30080
f8f9badf6750
(handling_signal): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30073
diff
changeset
|
129 |
43713
f92c4d87863a
Change defvar_int def and vars to use EMACS_INT instead of just int.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
43056
diff
changeset
|
130 EMACS_INT max_specpdl_size; |
272 | 131 |
132 /* Depth in Lisp evaluations and function calls. */ | |
30080
f8f9badf6750
(handling_signal): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30073
diff
changeset
|
133 |
272 | 134 int lisp_eval_depth; |
135 | |
136 /* Maximum allowed depth in Lisp evaluations and function calls. */ | |
30080
f8f9badf6750
(handling_signal): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30073
diff
changeset
|
137 |
43713
f92c4d87863a
Change defvar_int def and vars to use EMACS_INT instead of just int.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
43056
diff
changeset
|
138 EMACS_INT max_lisp_eval_depth; |
272 | 139 |
140 /* Nonzero means enter debugger before next function call */ | |
30080
f8f9badf6750
(handling_signal): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30073
diff
changeset
|
141 |
272 | 142 int debug_on_next_call; |
143 | |
40661
2677a5e901f8
(debugger_may_continue, Vdebug_ignored_errors, call_debugger,
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
144 /* Non-zero means debugger may continue. This is zero when the |
26947
7987a6499aaa
(debugger_may_continue): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
26764
diff
changeset
|
145 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
|
146 continue the interrupted redisplay. */ |
7987a6499aaa
(debugger_may_continue): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
26764
diff
changeset
|
147 |
7987a6499aaa
(debugger_may_continue): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
26764
diff
changeset
|
148 int debugger_may_continue; |
7987a6499aaa
(debugger_may_continue): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
26764
diff
changeset
|
149 |
684 | 150 /* 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
|
151 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
|
152 |
684 | 153 Lisp_Object Vstack_trace_on_error; |
272 | 154 |
684 | 155 /* 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
|
156 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
|
157 |
684 | 158 Lisp_Object Vdebug_on_error; |
272 | 159 |
13768 | 160 /* List of conditions and regexps specifying error messages which |
40661
2677a5e901f8
(debugger_may_continue, Vdebug_ignored_errors, call_debugger,
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
161 do not enter the debugger even if Vdebug_on_error says they should. */ |
30080
f8f9badf6750
(handling_signal): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30073
diff
changeset
|
162 |
13768 | 163 Lisp_Object Vdebug_ignored_errors; |
164 | |
16355
1d85b2698564
(Vdebug_force): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
16296
diff
changeset
|
165 /* 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
|
166 |
16443
0128b923d281
(Vdebug_on_signal): Renamed from Vdebug_force.
Richard M. Stallman <rms@gnu.org>
parents:
16355
diff
changeset
|
167 Lisp_Object Vdebug_on_signal; |
16355
1d85b2698564
(Vdebug_force): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
16296
diff
changeset
|
168 |
1d85b2698564
(Vdebug_force): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
16296
diff
changeset
|
169 /* Hook for edebug to use. */ |
30080
f8f9badf6750
(handling_signal): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30073
diff
changeset
|
170 |
16355
1d85b2698564
(Vdebug_force): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
16296
diff
changeset
|
171 Lisp_Object Vsignal_hook_function; |
1d85b2698564
(Vdebug_force): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
16296
diff
changeset
|
172 |
272 | 173 /* Nonzero means enter debugger if a quit signal |
684 | 174 is handled by the command loop's error handler. */ |
30080
f8f9badf6750
(handling_signal): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30073
diff
changeset
|
175 |
272 | 176 int debug_on_quit; |
177 | |
17872
31b2c6763574
(num_nonmacro_input_events):
Richard M. Stallman <rms@gnu.org>
parents:
17275
diff
changeset
|
178 /* 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
|
179 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
|
180 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
|
181 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
|
182 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
|
183 invocations. */ |
30080
f8f9badf6750
(handling_signal): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30073
diff
changeset
|
184 |
1196
65e2edefe748
* eval.c (Fcondition_case): Rearranged for clarity. Don't worry
Jim Blandy <jimb@redhat.com>
parents:
940
diff
changeset
|
185 int when_entered_debugger; |
272 | 186 |
187 Lisp_Object Vdebugger; | |
188 | |
30073
ed8f34a43649
(Vsignaling_function): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30058
diff
changeset
|
189 /* 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
|
190 Fsignal. */ |
ed8f34a43649
(Vsignaling_function): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30058
diff
changeset
|
191 |
ed8f34a43649
(Vsignaling_function): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30058
diff
changeset
|
192 Lisp_Object Vsignaling_function; |
ed8f34a43649
(Vsignaling_function): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30058
diff
changeset
|
193 |
30080
f8f9badf6750
(handling_signal): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30073
diff
changeset
|
194 /* 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
|
195 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
|
196 which is unsafe because the interpreter isn't reentrant. */ |
f8f9badf6750
(handling_signal): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30073
diff
changeset
|
197 |
f8f9badf6750
(handling_signal): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30073
diff
changeset
|
198 int handling_signal; |
f8f9badf6750
(handling_signal): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30073
diff
changeset
|
199 |
44132
8b63b08a2619
(Qdeclare, Vmacro_declaration_function): New variables.
Gerd Moellmann <gerd@gnu.org>
parents:
43713
diff
changeset
|
200 /* Function to process declarations in defmacro forms. */ |
8b63b08a2619
(Qdeclare, Vmacro_declaration_function): New variables.
Gerd Moellmann <gerd@gnu.org>
parents:
43713
diff
changeset
|
201 |
8b63b08a2619
(Qdeclare, Vmacro_declaration_function): New variables.
Gerd Moellmann <gerd@gnu.org>
parents:
43713
diff
changeset
|
202 Lisp_Object Vmacro_declaration_function; |
8b63b08a2619
(Qdeclare, Vmacro_declaration_function): New variables.
Gerd Moellmann <gerd@gnu.org>
parents:
43713
diff
changeset
|
203 |
71341
012bd1b59e70
(Fdefconst): Mark variable as risky.
Richard M. Stallman <rms@gnu.org>
parents:
70084
diff
changeset
|
204 extern Lisp_Object Qrisky_local_variable; |
44132
8b63b08a2619
(Qdeclare, Vmacro_declaration_function): New variables.
Gerd Moellmann <gerd@gnu.org>
parents:
43713
diff
changeset
|
205 |
82463
617c0965e1f4
(Ffunction, Fquote): Signal error if not 1 argument.
Richard M. Stallman <rms@gnu.org>
parents:
82404
diff
changeset
|
206 extern Lisp_Object Qfunction; |
617c0965e1f4
(Ffunction, Fquote): Signal error if not 1 argument.
Richard M. Stallman <rms@gnu.org>
parents:
82404
diff
changeset
|
207 |
41114
242c6928accc
(max_specpdl_size, max_lisp_eval_depth): Use EMACS_INT.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41029
diff
changeset
|
208 static Lisp_Object funcall_lambda P_ ((Lisp_Object, int, Lisp_Object*)); |
72005
da0099bc0ba4
* ebrowse.c (usage, version): Mark as NO_RETURN.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
71976
diff
changeset
|
209 static void unwind_to_catch P_ ((struct catchtag *, Lisp_Object)) NO_RETURN; |
72610
01fdc3c9ea0e
(apply1, call2) [__GNUC__]: Declare with `__attribute__((noinline))'.
Eli Zaretskii <eliz@gnu.org>
parents:
72005
diff
changeset
|
210 |
01fdc3c9ea0e
(apply1, call2) [__GNUC__]: Declare with `__attribute__((noinline))'.
Eli Zaretskii <eliz@gnu.org>
parents:
72005
diff
changeset
|
211 #if __GNUC__ |
01fdc3c9ea0e
(apply1, call2) [__GNUC__]: Declare with `__attribute__((noinline))'.
Eli Zaretskii <eliz@gnu.org>
parents:
72005
diff
changeset
|
212 /* "gcc -O3" enables automatic function inlining, which optimizes out |
01fdc3c9ea0e
(apply1, call2) [__GNUC__]: Declare with `__attribute__((noinline))'.
Eli Zaretskii <eliz@gnu.org>
parents:
72005
diff
changeset
|
213 the arguments for the invocations of these functions, whereas they |
01fdc3c9ea0e
(apply1, call2) [__GNUC__]: Declare with `__attribute__((noinline))'.
Eli Zaretskii <eliz@gnu.org>
parents:
72005
diff
changeset
|
214 expect these values on the stack. */ |
01fdc3c9ea0e
(apply1, call2) [__GNUC__]: Declare with `__attribute__((noinline))'.
Eli Zaretskii <eliz@gnu.org>
parents:
72005
diff
changeset
|
215 Lisp_Object apply1 () __attribute__((noinline)); |
01fdc3c9ea0e
(apply1, call2) [__GNUC__]: Declare with `__attribute__((noinline))'.
Eli Zaretskii <eliz@gnu.org>
parents:
72005
diff
changeset
|
216 Lisp_Object call2 () __attribute__((noinline)); |
01fdc3c9ea0e
(apply1, call2) [__GNUC__]: Declare with `__attribute__((noinline))'.
Eli Zaretskii <eliz@gnu.org>
parents:
72005
diff
changeset
|
217 #endif |
71341
012bd1b59e70
(Fdefconst): Mark variable as risky.
Richard M. Stallman <rms@gnu.org>
parents:
70084
diff
changeset
|
218 |
21514 | 219 void |
272 | 220 init_eval_once () |
221 { | |
222 specpdl_size = 50; | |
7885
bc6406a90796
(init_eval_once): Call xmalloc, not malloc.
Richard M. Stallman <rms@gnu.org>
parents:
7533
diff
changeset
|
223 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
|
224 specpdl_ptr = specpdl; |
70084
e15a29aaffbd
Comment munging wrt max-specpdl-size; nfc.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
69399
diff
changeset
|
225 /* Don't forget to update docs (lispref node "Local Variables"). */ |
58827
d118146048e5
(init_eval_once): Increase max_specpdl_size to 1000.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
58734
diff
changeset
|
226 max_specpdl_size = 1000; |
78359
2dd5d799a16d
* vc-git.el: (vc-directory-exclusion-list, vc-handled-backends):
Dan Nicolaescu <dann@ics.uci.edu>
parents:
78260
diff
changeset
|
227 max_lisp_eval_depth = 400; |
8980
e641b60610a1
(init_eval_once): Init Vrun_hooks here.
Richard M. Stallman <rms@gnu.org>
parents:
8902
diff
changeset
|
228 |
e641b60610a1
(init_eval_once): Init Vrun_hooks here.
Richard M. Stallman <rms@gnu.org>
parents:
8902
diff
changeset
|
229 Vrun_hooks = Qnil; |
272 | 230 } |
231 | |
21514 | 232 void |
272 | 233 init_eval () |
234 { | |
235 specpdl_ptr = specpdl; | |
236 catchlist = 0; | |
237 handlerlist = 0; | |
238 backtrace_list = 0; | |
239 Vquit_flag = Qnil; | |
240 debug_on_next_call = 0; | |
241 lisp_eval_depth = 0; | |
26307
155d5adcdff4
(init_eval): Conditionalize declaration of gcpro_level.
Dave Love <fx@gnu.org>
parents:
26297
diff
changeset
|
242 #ifdef DEBUG_GCPRO |
26297
4d1e267efd41
[DEBUG_GCPRO] (gcpro_level): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
26088
diff
changeset
|
243 gcpro_level = 0; |
26307
155d5adcdff4
(init_eval): Conditionalize declaration of gcpro_level.
Dave Love <fx@gnu.org>
parents:
26297
diff
changeset
|
244 #endif |
17872
31b2c6763574
(num_nonmacro_input_events):
Richard M. Stallman <rms@gnu.org>
parents:
17275
diff
changeset
|
245 /* 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
|
246 when_entered_debugger = -1; |
272 | 247 } |
248 | |
63767
60a9b2133cf1
(call_debugger): Take full care of extending stack limits
Richard M. Stallman <rms@gnu.org>
parents:
63697
diff
changeset
|
249 /* unwind-protect function used by call_debugger. */ |
60a9b2133cf1
(call_debugger): Take full care of extending stack limits
Richard M. Stallman <rms@gnu.org>
parents:
63697
diff
changeset
|
250 |
60a9b2133cf1
(call_debugger): Take full care of extending stack limits
Richard M. Stallman <rms@gnu.org>
parents:
63697
diff
changeset
|
251 static Lisp_Object |
60a9b2133cf1
(call_debugger): Take full care of extending stack limits
Richard M. Stallman <rms@gnu.org>
parents:
63697
diff
changeset
|
252 restore_stack_limits (data) |
60a9b2133cf1
(call_debugger): Take full care of extending stack limits
Richard M. Stallman <rms@gnu.org>
parents:
63697
diff
changeset
|
253 Lisp_Object data; |
60a9b2133cf1
(call_debugger): Take full care of extending stack limits
Richard M. Stallman <rms@gnu.org>
parents:
63697
diff
changeset
|
254 { |
60a9b2133cf1
(call_debugger): Take full care of extending stack limits
Richard M. Stallman <rms@gnu.org>
parents:
63697
diff
changeset
|
255 max_specpdl_size = XINT (XCAR (data)); |
60a9b2133cf1
(call_debugger): Take full care of extending stack limits
Richard M. Stallman <rms@gnu.org>
parents:
63697
diff
changeset
|
256 max_lisp_eval_depth = XINT (XCDR (data)); |
64568
72d33fd23736
(restore_stack_limits): Return a value.
Andreas Schwab <schwab@suse.de>
parents:
64540
diff
changeset
|
257 return Qnil; |
63767
60a9b2133cf1
(call_debugger): Take full care of extending stack limits
Richard M. Stallman <rms@gnu.org>
parents:
63697
diff
changeset
|
258 } |
60a9b2133cf1
(call_debugger): Take full care of extending stack limits
Richard M. Stallman <rms@gnu.org>
parents:
63697
diff
changeset
|
259 |
60a9b2133cf1
(call_debugger): Take full care of extending stack limits
Richard M. Stallman <rms@gnu.org>
parents:
63697
diff
changeset
|
260 /* Call the Lisp debugger, giving it argument ARG. */ |
60a9b2133cf1
(call_debugger): Take full care of extending stack limits
Richard M. Stallman <rms@gnu.org>
parents:
63697
diff
changeset
|
261 |
272 | 262 Lisp_Object |
263 call_debugger (arg) | |
264 Lisp_Object arg; | |
265 { | |
26764
9fd028e7872c
(call_debugger): When entering the debugger while redisplaying,
Gerd Moellmann <gerd@gnu.org>
parents:
26365
diff
changeset
|
266 int debug_while_redisplaying; |
46293
1fb8f75062c6
Use macro SPECPDL_INDEX.
Juanma Barranquero <lekktu@gmail.com>
parents:
46198
diff
changeset
|
267 int count = SPECPDL_INDEX (); |
26764
9fd028e7872c
(call_debugger): When entering the debugger while redisplaying,
Gerd Moellmann <gerd@gnu.org>
parents:
26365
diff
changeset
|
268 Lisp_Object val; |
63767
60a9b2133cf1
(call_debugger): Take full care of extending stack limits
Richard M. Stallman <rms@gnu.org>
parents:
63697
diff
changeset
|
269 int old_max = max_specpdl_size; |
60a9b2133cf1
(call_debugger): Take full care of extending stack limits
Richard M. Stallman <rms@gnu.org>
parents:
63697
diff
changeset
|
270 |
60a9b2133cf1
(call_debugger): Take full care of extending stack limits
Richard M. Stallman <rms@gnu.org>
parents:
63697
diff
changeset
|
271 /* Temporarily bump up the stack limits, |
60a9b2133cf1
(call_debugger): Take full care of extending stack limits
Richard M. Stallman <rms@gnu.org>
parents:
63697
diff
changeset
|
272 so the debugger won't run out of stack. */ |
60a9b2133cf1
(call_debugger): Take full care of extending stack limits
Richard M. Stallman <rms@gnu.org>
parents:
63697
diff
changeset
|
273 |
60a9b2133cf1
(call_debugger): Take full care of extending stack limits
Richard M. Stallman <rms@gnu.org>
parents:
63697
diff
changeset
|
274 max_specpdl_size += 1; |
60a9b2133cf1
(call_debugger): Take full care of extending stack limits
Richard M. Stallman <rms@gnu.org>
parents:
63697
diff
changeset
|
275 record_unwind_protect (restore_stack_limits, |
60a9b2133cf1
(call_debugger): Take full care of extending stack limits
Richard M. Stallman <rms@gnu.org>
parents:
63697
diff
changeset
|
276 Fcons (make_number (old_max), |
60a9b2133cf1
(call_debugger): Take full care of extending stack limits
Richard M. Stallman <rms@gnu.org>
parents:
63697
diff
changeset
|
277 make_number (max_lisp_eval_depth))); |
60a9b2133cf1
(call_debugger): Take full care of extending stack limits
Richard M. Stallman <rms@gnu.org>
parents:
63697
diff
changeset
|
278 max_specpdl_size = old_max; |
60a9b2133cf1
(call_debugger): Take full care of extending stack limits
Richard M. Stallman <rms@gnu.org>
parents:
63697
diff
changeset
|
279 |
60a9b2133cf1
(call_debugger): Take full care of extending stack limits
Richard M. Stallman <rms@gnu.org>
parents:
63697
diff
changeset
|
280 if (lisp_eval_depth + 40 > max_lisp_eval_depth) |
60a9b2133cf1
(call_debugger): Take full care of extending stack limits
Richard M. Stallman <rms@gnu.org>
parents:
63697
diff
changeset
|
281 max_lisp_eval_depth = lisp_eval_depth + 40; |
60a9b2133cf1
(call_debugger): Take full care of extending stack limits
Richard M. Stallman <rms@gnu.org>
parents:
63697
diff
changeset
|
282 |
60a9b2133cf1
(call_debugger): Take full care of extending stack limits
Richard M. Stallman <rms@gnu.org>
parents:
63697
diff
changeset
|
283 if (SPECPDL_INDEX () + 100 > max_specpdl_size) |
60a9b2133cf1
(call_debugger): Take full care of extending stack limits
Richard M. Stallman <rms@gnu.org>
parents:
63697
diff
changeset
|
284 max_specpdl_size = SPECPDL_INDEX () + 100; |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49105
diff
changeset
|
285 |
28383
55d5c0156349
(call_debugger): Cancel busy-cursor.
Gerd Moellmann <gerd@gnu.org>
parents:
28297
diff
changeset
|
286 #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
|
287 if (display_hourglass_p) |
e033d60bd048
Use display_hourglass_p, start_hourglass, cancel_hourglass instead of
Gerd Moellmann <gerd@gnu.org>
parents:
35774
diff
changeset
|
288 cancel_hourglass (); |
28383
55d5c0156349
(call_debugger): Cancel busy-cursor.
Gerd Moellmann <gerd@gnu.org>
parents:
28297
diff
changeset
|
289 #endif |
55d5c0156349
(call_debugger): Cancel busy-cursor.
Gerd Moellmann <gerd@gnu.org>
parents:
28297
diff
changeset
|
290 |
272 | 291 debug_on_next_call = 0; |
17872
31b2c6763574
(num_nonmacro_input_events):
Richard M. Stallman <rms@gnu.org>
parents:
17275
diff
changeset
|
292 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
|
293 |
9fd028e7872c
(call_debugger): When entering the debugger while redisplaying,
Gerd Moellmann <gerd@gnu.org>
parents:
26365
diff
changeset
|
294 /* 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
|
295 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
|
296 debug_while_redisplaying = redisplaying_p; |
9fd028e7872c
(call_debugger): When entering the debugger while redisplaying,
Gerd Moellmann <gerd@gnu.org>
parents:
26365
diff
changeset
|
297 redisplaying_p = 0; |
26947
7987a6499aaa
(debugger_may_continue): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
26764
diff
changeset
|
298 specbind (intern ("debugger-may-continue"), |
7987a6499aaa
(debugger_may_continue): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
26764
diff
changeset
|
299 debug_while_redisplaying ? Qnil : Qt); |
37043
451c5848dd13
(call_debugger): Bind `inhibit-redisplay' to nil, and
Gerd Moellmann <gerd@gnu.org>
parents:
36817
diff
changeset
|
300 specbind (Qinhibit_redisplay, Qnil); |
63767
60a9b2133cf1
(call_debugger): Take full care of extending stack limits
Richard M. Stallman <rms@gnu.org>
parents:
63697
diff
changeset
|
301 specbind (Qdebug_on_error, Qnil); |
37799
d10de887e52e
(call_debugger): Don't bind inhibit-eval-during-redisplay.
Gerd Moellmann <gerd@gnu.org>
parents:
37732
diff
changeset
|
302 |
d10de887e52e
(call_debugger): Don't bind inhibit-eval-during-redisplay.
Gerd Moellmann <gerd@gnu.org>
parents:
37732
diff
changeset
|
303 #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
|
304 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
|
305 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
|
306 #endif |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49105
diff
changeset
|
307 |
26764
9fd028e7872c
(call_debugger): When entering the debugger while redisplaying,
Gerd Moellmann <gerd@gnu.org>
parents:
26365
diff
changeset
|
308 val = apply1 (Vdebugger, arg); |
9fd028e7872c
(call_debugger): When entering the debugger while redisplaying,
Gerd Moellmann <gerd@gnu.org>
parents:
26365
diff
changeset
|
309 |
9fd028e7872c
(call_debugger): When entering the debugger while redisplaying,
Gerd Moellmann <gerd@gnu.org>
parents:
26365
diff
changeset
|
310 /* 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
|
311 all circumstances. So, when the debugger returns, abort the |
40661
2677a5e901f8
(debugger_may_continue, Vdebug_ignored_errors, call_debugger,
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
312 interrupted redisplay by going back to the top-level. */ |
26764
9fd028e7872c
(call_debugger): When entering the debugger while redisplaying,
Gerd Moellmann <gerd@gnu.org>
parents:
26365
diff
changeset
|
313 if (debug_while_redisplaying) |
9fd028e7872c
(call_debugger): When entering the debugger while redisplaying,
Gerd Moellmann <gerd@gnu.org>
parents:
26365
diff
changeset
|
314 Ftop_level (); |
9fd028e7872c
(call_debugger): When entering the debugger while redisplaying,
Gerd Moellmann <gerd@gnu.org>
parents:
26365
diff
changeset
|
315 |
26947
7987a6499aaa
(debugger_may_continue): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
26764
diff
changeset
|
316 return unbind_to (count, val); |
272 | 317 } |
318 | |
21514 | 319 void |
272 | 320 do_debug_on_call (code) |
321 Lisp_Object code; | |
322 { | |
323 debug_on_next_call = 0; | |
324 backtrace_list->debug_on_exit = 1; | |
325 call_debugger (Fcons (code, Qnil)); | |
326 } | |
327 | |
328 /* NOTE!!! Every function that can call EVAL must protect its args | |
329 and temporaries from garbage collection while it needs them. | |
330 The definition of `For' shows what you have to do. */ | |
331 | |
332 DEFUN ("or", For, Sor, 0, UNEVALLED, 0, | |
40570 | 333 doc: /* Eval args until one of them yields non-nil, then return that value. |
334 The remaining args are not evalled at all. | |
335 If all args return nil, return nil. | |
78153
fb666c8f678a
(For, Fand, Fprogn): Doc fixes.
Juanma Barranquero <lekktu@gmail.com>
parents:
78141
diff
changeset
|
336 usage: (or CONDITIONS...) */) |
40570 | 337 (args) |
272 | 338 Lisp_Object args; |
339 { | |
50630
dfbdcffdcfc9
(For, Fand, Fprogn, un_autoload, do_autoload): Use XCDR, XCAR, CONSP.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49752
diff
changeset
|
340 register Lisp_Object val = Qnil; |
272 | 341 struct gcpro gcpro1; |
342 | |
50630
dfbdcffdcfc9
(For, Fand, Fprogn, un_autoload, do_autoload): Use XCDR, XCAR, CONSP.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49752
diff
changeset
|
343 GCPRO1 (args); |
dfbdcffdcfc9
(For, Fand, Fprogn, un_autoload, do_autoload): Use XCDR, XCAR, CONSP.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49752
diff
changeset
|
344 |
dfbdcffdcfc9
(For, Fand, Fprogn, un_autoload, do_autoload): Use XCDR, XCAR, CONSP.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49752
diff
changeset
|
345 while (CONSP (args)) |
272 | 346 { |
50630
dfbdcffdcfc9
(For, Fand, Fprogn, un_autoload, do_autoload): Use XCDR, XCAR, CONSP.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49752
diff
changeset
|
347 val = Feval (XCAR (args)); |
485 | 348 if (!NILP (val)) |
272 | 349 break; |
50630
dfbdcffdcfc9
(For, Fand, Fprogn, un_autoload, do_autoload): Use XCDR, XCAR, CONSP.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49752
diff
changeset
|
350 args = XCDR (args); |
272 | 351 } |
352 | |
353 UNGCPRO; | |
354 return val; | |
355 } | |
356 | |
357 DEFUN ("and", Fand, Sand, 0, UNEVALLED, 0, | |
40983 | 358 doc: /* Eval args until one of them yields nil, then return nil. |
40570 | 359 The remaining args are not evalled at all. |
360 If no arg yields nil, return the last arg's value. | |
78153
fb666c8f678a
(For, Fand, Fprogn): Doc fixes.
Juanma Barranquero <lekktu@gmail.com>
parents:
78141
diff
changeset
|
361 usage: (and CONDITIONS...) */) |
40570 | 362 (args) |
272 | 363 Lisp_Object args; |
364 { | |
50630
dfbdcffdcfc9
(For, Fand, Fprogn, un_autoload, do_autoload): Use XCDR, XCAR, CONSP.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49752
diff
changeset
|
365 register Lisp_Object val = Qt; |
272 | 366 struct gcpro gcpro1; |
367 | |
50630
dfbdcffdcfc9
(For, Fand, Fprogn, un_autoload, do_autoload): Use XCDR, XCAR, CONSP.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49752
diff
changeset
|
368 GCPRO1 (args); |
dfbdcffdcfc9
(For, Fand, Fprogn, un_autoload, do_autoload): Use XCDR, XCAR, CONSP.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49752
diff
changeset
|
369 |
dfbdcffdcfc9
(For, Fand, Fprogn, un_autoload, do_autoload): Use XCDR, XCAR, CONSP.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49752
diff
changeset
|
370 while (CONSP (args)) |
272 | 371 { |
50630
dfbdcffdcfc9
(For, Fand, Fprogn, un_autoload, do_autoload): Use XCDR, XCAR, CONSP.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49752
diff
changeset
|
372 val = Feval (XCAR (args)); |
485 | 373 if (NILP (val)) |
272 | 374 break; |
50630
dfbdcffdcfc9
(For, Fand, Fprogn, un_autoload, do_autoload): Use XCDR, XCAR, CONSP.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49752
diff
changeset
|
375 args = XCDR (args); |
272 | 376 } |
377 | |
378 UNGCPRO; | |
379 return val; | |
380 } | |
381 | |
382 DEFUN ("if", Fif, Sif, 2, UNEVALLED, 0, | |
40983 | 383 doc: /* If COND yields non-nil, do THEN, else do ELSE... |
40570 | 384 Returns the value of THEN or the value of the last of the ELSE's. |
385 THEN must be one expression, but ELSE... can be zero or more expressions. | |
386 If COND yields nil, and there are no ELSE's, the value is nil. | |
41846
680de0f18330
Undo last change. Consistency doesn't seem to be desired.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41822
diff
changeset
|
387 usage: (if COND THEN ELSE...) */) |
40570 | 388 (args) |
272 | 389 Lisp_Object args; |
390 { | |
391 register Lisp_Object cond; | |
392 struct gcpro gcpro1; | |
393 | |
394 GCPRO1 (args); | |
395 cond = Feval (Fcar (args)); | |
396 UNGCPRO; | |
397 | |
485 | 398 if (!NILP (cond)) |
272 | 399 return Feval (Fcar (Fcdr (args))); |
400 return Fprogn (Fcdr (Fcdr (args))); | |
401 } | |
402 | |
403 DEFUN ("cond", Fcond, Scond, 0, UNEVALLED, 0, | |
40570 | 404 doc: /* Try each clause until one succeeds. |
405 Each clause looks like (CONDITION BODY...). CONDITION is evaluated | |
406 and, if the value is non-nil, this clause succeeds: | |
407 then the expressions in BODY are evaluated and the last one's | |
408 value is the value of the cond-form. | |
409 If no clause succeeds, cond returns nil. | |
410 If a clause has one element, as in (CONDITION), | |
411 CONDITION's value if non-nil is returned from the cond-form. | |
41846
680de0f18330
Undo last change. Consistency doesn't seem to be desired.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41822
diff
changeset
|
412 usage: (cond CLAUSES...) */) |
40570 | 413 (args) |
272 | 414 Lisp_Object args; |
415 { | |
416 register Lisp_Object clause, val; | |
417 struct gcpro gcpro1; | |
418 | |
419 val = Qnil; | |
420 GCPRO1 (args); | |
485 | 421 while (!NILP (args)) |
272 | 422 { |
423 clause = Fcar (args); | |
424 val = Feval (Fcar (clause)); | |
485 | 425 if (!NILP (val)) |
272 | 426 { |
25662
0a7261c1d487
Use XCAR, XCDR, and XFLOAT_DATA instead of explicit member access.
Ken Raeburn <raeburn@raeburn.org>
parents:
25314
diff
changeset
|
427 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
|
428 val = Fprogn (XCDR (clause)); |
272 | 429 break; |
430 } | |
25662
0a7261c1d487
Use XCAR, XCDR, and XFLOAT_DATA instead of explicit member access.
Ken Raeburn <raeburn@raeburn.org>
parents:
25314
diff
changeset
|
431 args = XCDR (args); |
272 | 432 } |
433 UNGCPRO; | |
434 | |
435 return val; | |
436 } | |
437 | |
438 DEFUN ("progn", Fprogn, Sprogn, 0, UNEVALLED, 0, | |
40570 | 439 doc: /* Eval BODY forms sequentially and return value of last one. |
78153
fb666c8f678a
(For, Fand, Fprogn): Doc fixes.
Juanma Barranquero <lekktu@gmail.com>
parents:
78141
diff
changeset
|
440 usage: (progn BODY...) */) |
40570 | 441 (args) |
272 | 442 Lisp_Object args; |
443 { | |
50630
dfbdcffdcfc9
(For, Fand, Fprogn, un_autoload, do_autoload): Use XCDR, XCAR, CONSP.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49752
diff
changeset
|
444 register Lisp_Object val = Qnil; |
272 | 445 struct gcpro gcpro1; |
446 | |
50630
dfbdcffdcfc9
(For, Fand, Fprogn, un_autoload, do_autoload): Use XCDR, XCAR, CONSP.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49752
diff
changeset
|
447 GCPRO1 (args); |
dfbdcffdcfc9
(For, Fand, Fprogn, un_autoload, do_autoload): Use XCDR, XCAR, CONSP.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49752
diff
changeset
|
448 |
dfbdcffdcfc9
(For, Fand, Fprogn, un_autoload, do_autoload): Use XCDR, XCAR, CONSP.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49752
diff
changeset
|
449 while (CONSP (args)) |
272 | 450 { |
50630
dfbdcffdcfc9
(For, Fand, Fprogn, un_autoload, do_autoload): Use XCDR, XCAR, CONSP.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49752
diff
changeset
|
451 val = Feval (XCAR (args)); |
dfbdcffdcfc9
(For, Fand, Fprogn, un_autoload, do_autoload): Use XCDR, XCAR, CONSP.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49752
diff
changeset
|
452 args = XCDR (args); |
272 | 453 } |
454 | |
455 UNGCPRO; | |
456 return val; | |
457 } | |
458 | |
459 DEFUN ("prog1", Fprog1, Sprog1, 1, UNEVALLED, 0, | |
40570 | 460 doc: /* Eval FIRST and BODY sequentially; value from FIRST. |
461 The value of FIRST is saved during the evaluation of the remaining args, | |
462 whose values are discarded. | |
41846
680de0f18330
Undo last change. Consistency doesn't seem to be desired.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41822
diff
changeset
|
463 usage: (prog1 FIRST BODY...) */) |
40570 | 464 (args) |
272 | 465 Lisp_Object args; |
466 { | |
467 Lisp_Object val; | |
468 register Lisp_Object args_left; | |
469 struct gcpro gcpro1, gcpro2; | |
470 register int argnum = 0; | |
471 | |
79082
b27741b11f5a
(do_autoload): Don't save autoloads.
Juanma Barranquero <lekktu@gmail.com>
parents:
78664
diff
changeset
|
472 if (NILP (args)) |
272 | 473 return Qnil; |
474 | |
475 args_left = args; | |
476 val = Qnil; | |
477 GCPRO2 (args, val); | |
478 | |
479 do | |
480 { | |
481 if (!(argnum++)) | |
482 val = Feval (Fcar (args_left)); | |
483 else | |
484 Feval (Fcar (args_left)); | |
485 args_left = Fcdr (args_left); | |
486 } | |
485 | 487 while (!NILP(args_left)); |
272 | 488 |
489 UNGCPRO; | |
490 return val; | |
491 } | |
492 | |
493 DEFUN ("prog2", Fprog2, Sprog2, 2, UNEVALLED, 0, | |
64499
34bf5187c5aa
(Fprog2, Fcalled_interactively_p), (syms_of_eval) <debug-on-quit>: Doc fixes.
Juanma Barranquero <lekktu@gmail.com>
parents:
64271
diff
changeset
|
494 doc: /* Eval FORM1, FORM2 and BODY sequentially; value from FORM2. |
34bf5187c5aa
(Fprog2, Fcalled_interactively_p), (syms_of_eval) <debug-on-quit>: Doc fixes.
Juanma Barranquero <lekktu@gmail.com>
parents:
64271
diff
changeset
|
495 The value of FORM2 is saved during the evaluation of the |
34bf5187c5aa
(Fprog2, Fcalled_interactively_p), (syms_of_eval) <debug-on-quit>: Doc fixes.
Juanma Barranquero <lekktu@gmail.com>
parents:
64271
diff
changeset
|
496 remaining args, whose values are discarded. |
34bf5187c5aa
(Fprog2, Fcalled_interactively_p), (syms_of_eval) <debug-on-quit>: Doc fixes.
Juanma Barranquero <lekktu@gmail.com>
parents:
64271
diff
changeset
|
497 usage: (prog2 FORM1 FORM2 BODY...) */) |
40570 | 498 (args) |
272 | 499 Lisp_Object args; |
500 { | |
501 Lisp_Object val; | |
502 register Lisp_Object args_left; | |
503 struct gcpro gcpro1, gcpro2; | |
504 register int argnum = -1; | |
505 | |
506 val = Qnil; | |
507 | |
6803 | 508 if (NILP (args)) |
272 | 509 return Qnil; |
510 | |
511 args_left = args; | |
512 val = Qnil; | |
513 GCPRO2 (args, val); | |
514 | |
515 do | |
516 { | |
517 if (!(argnum++)) | |
518 val = Feval (Fcar (args_left)); | |
519 else | |
520 Feval (Fcar (args_left)); | |
521 args_left = Fcdr (args_left); | |
522 } | |
6803 | 523 while (!NILP (args_left)); |
272 | 524 |
525 UNGCPRO; | |
526 return val; | |
527 } | |
528 | |
529 DEFUN ("setq", Fsetq, Ssetq, 0, UNEVALLED, 0, | |
40570 | 530 doc: /* Set each SYM to the value of its VAL. |
531 The symbols SYM are variables; they are literal (not evaluated). | |
532 The values VAL are expressions; they are evaluated. | |
533 Thus, (setq x (1+ y)) sets `x' to the value of `(1+ y)'. | |
534 The second VAL is not computed until after the first SYM is set, and so on; | |
535 each VAL can use the new value of variables set earlier in the `setq'. | |
536 The return value of the `setq' form is the value of the last VAL. | |
78141 | 537 usage: (setq [SYM VAL]...) */) |
40570 | 538 (args) |
272 | 539 Lisp_Object args; |
540 { | |
541 register Lisp_Object args_left; | |
542 register Lisp_Object val, sym; | |
543 struct gcpro gcpro1; | |
544 | |
82463
617c0965e1f4
(Ffunction, Fquote): Signal error if not 1 argument.
Richard M. Stallman <rms@gnu.org>
parents:
82404
diff
changeset
|
545 if (NILP (args)) |
272 | 546 return Qnil; |
547 | |
548 args_left = args; | |
549 GCPRO1 (args); | |
550 | |
551 do | |
552 { | |
553 val = Feval (Fcar (Fcdr (args_left))); | |
554 sym = Fcar (args_left); | |
555 Fset (sym, val); | |
556 args_left = Fcdr (Fcdr (args_left)); | |
557 } | |
485 | 558 while (!NILP(args_left)); |
272 | 559 |
560 UNGCPRO; | |
561 return val; | |
562 } | |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49105
diff
changeset
|
563 |
272 | 564 DEFUN ("quote", Fquote, Squote, 1, UNEVALLED, 0, |
40570 | 565 doc: /* Return the argument, without evaluating it. `(quote x)' yields `x'. |
566 usage: (quote ARG) */) | |
567 (args) | |
272 | 568 Lisp_Object args; |
569 { | |
82463
617c0965e1f4
(Ffunction, Fquote): Signal error if not 1 argument.
Richard M. Stallman <rms@gnu.org>
parents:
82404
diff
changeset
|
570 if (!NILP (Fcdr (args))) |
617c0965e1f4
(Ffunction, Fquote): Signal error if not 1 argument.
Richard M. Stallman <rms@gnu.org>
parents:
82404
diff
changeset
|
571 xsignal2 (Qwrong_number_of_arguments, Qquote, Flength (args)); |
272 | 572 return Fcar (args); |
573 } | |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49105
diff
changeset
|
574 |
272 | 575 DEFUN ("function", Ffunction, Sfunction, 1, UNEVALLED, 0, |
40570 | 576 doc: /* Like `quote', but preferred for objects which are functions. |
577 In byte compilation, `function' causes its argument to be compiled. | |
578 `quote' cannot do that. | |
579 usage: (function ARG) */) | |
580 (args) | |
272 | 581 Lisp_Object args; |
582 { | |
82463
617c0965e1f4
(Ffunction, Fquote): Signal error if not 1 argument.
Richard M. Stallman <rms@gnu.org>
parents:
82404
diff
changeset
|
583 if (!NILP (Fcdr (args))) |
617c0965e1f4
(Ffunction, Fquote): Signal error if not 1 argument.
Richard M. Stallman <rms@gnu.org>
parents:
82404
diff
changeset
|
584 xsignal2 (Qwrong_number_of_arguments, Qfunction, Flength (args)); |
272 | 585 return Fcar (args); |
586 } | |
587 | |
35774
efc51d1a7b60
(interactive_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
35394
diff
changeset
|
588 |
272 | 589 DEFUN ("interactive-p", Finteractive_p, Sinteractive_p, 0, 0, 0, |
57873
7e43927b42a8
(Fcall_interactive_p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
56557
diff
changeset
|
590 doc: /* Return t if the function was run directly by user input. |
64499
34bf5187c5aa
(Fprog2, Fcalled_interactively_p), (syms_of_eval) <debug-on-quit>: Doc fixes.
Juanma Barranquero <lekktu@gmail.com>
parents:
64271
diff
changeset
|
591 This means that the function was called with `call-interactively' |
34bf5187c5aa
(Fprog2, Fcalled_interactively_p), (syms_of_eval) <debug-on-quit>: Doc fixes.
Juanma Barranquero <lekktu@gmail.com>
parents:
64271
diff
changeset
|
592 \(which includes being called as the binding of a key) |
57873
7e43927b42a8
(Fcall_interactive_p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
56557
diff
changeset
|
593 and input is currently coming from the keyboard (not in keyboard macro), |
7e43927b42a8
(Fcall_interactive_p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
56557
diff
changeset
|
594 and Emacs is not running in batch mode (`noninteractive' is nil). |
7e43927b42a8
(Fcall_interactive_p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
56557
diff
changeset
|
595 |
7e43927b42a8
(Fcall_interactive_p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
56557
diff
changeset
|
596 The only known proper use of `interactive-p' is in deciding whether to |
7e43927b42a8
(Fcall_interactive_p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
56557
diff
changeset
|
597 display a helpful message, or how to display it. If you're thinking |
7e43927b42a8
(Fcall_interactive_p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
56557
diff
changeset
|
598 of using it for any other purpose, it is quite likely that you're |
7e43927b42a8
(Fcall_interactive_p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
56557
diff
changeset
|
599 making a mistake. Think: what do you want to do when the command is |
7e43927b42a8
(Fcall_interactive_p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
56557
diff
changeset
|
600 called from a keyboard macro? |
7e43927b42a8
(Fcall_interactive_p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
56557
diff
changeset
|
601 |
7e43927b42a8
(Fcall_interactive_p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
56557
diff
changeset
|
602 If you want to test whether your function was called with |
7e43927b42a8
(Fcall_interactive_p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
56557
diff
changeset
|
603 `call-interactively', the way to do that is by adding an extra |
7e43927b42a8
(Fcall_interactive_p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
56557
diff
changeset
|
604 optional argument, and making the `interactive' spec specify non-nil |
7e43927b42a8
(Fcall_interactive_p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
56557
diff
changeset
|
605 unconditionally for that argument. (`p' is a good way to do this.) */) |
40570 | 606 () |
272 | 607 { |
57873
7e43927b42a8
(Fcall_interactive_p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
56557
diff
changeset
|
608 return (INTERACTIVE && interactive_p (1)) ? Qt : Qnil; |
35774
efc51d1a7b60
(interactive_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
35394
diff
changeset
|
609 } |
efc51d1a7b60
(interactive_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
35394
diff
changeset
|
610 |
efc51d1a7b60
(interactive_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
35394
diff
changeset
|
611 |
57889
d502896ff443
(Fcalled_interactively_p): Rename from Fcall_interactive_p.
Kim F. Storm <storm@cua.dk>
parents:
57873
diff
changeset
|
612 DEFUN ("called-interactively-p", Fcalled_interactively_p, Scalled_interactively_p, 0, 0, 0, |
64499
34bf5187c5aa
(Fprog2, Fcalled_interactively_p), (syms_of_eval) <debug-on-quit>: Doc fixes.
Juanma Barranquero <lekktu@gmail.com>
parents:
64271
diff
changeset
|
613 doc: /* Return t if the function using this was called with `call-interactively'. |
57873
7e43927b42a8
(Fcall_interactive_p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
56557
diff
changeset
|
614 This is used for implementing advice and other function-modifying |
7e43927b42a8
(Fcall_interactive_p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
56557
diff
changeset
|
615 features of Emacs. |
7e43927b42a8
(Fcall_interactive_p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
56557
diff
changeset
|
616 |
7e43927b42a8
(Fcall_interactive_p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
56557
diff
changeset
|
617 The cleanest way to test whether your function was called with |
64499
34bf5187c5aa
(Fprog2, Fcalled_interactively_p), (syms_of_eval) <debug-on-quit>: Doc fixes.
Juanma Barranquero <lekktu@gmail.com>
parents:
64271
diff
changeset
|
618 `call-interactively' is by adding an extra optional argument, |
34bf5187c5aa
(Fprog2, Fcalled_interactively_p), (syms_of_eval) <debug-on-quit>: Doc fixes.
Juanma Barranquero <lekktu@gmail.com>
parents:
64271
diff
changeset
|
619 and making the `interactive' spec specify non-nil unconditionally |
34bf5187c5aa
(Fprog2, Fcalled_interactively_p), (syms_of_eval) <debug-on-quit>: Doc fixes.
Juanma Barranquero <lekktu@gmail.com>
parents:
64271
diff
changeset
|
620 for that argument. (`p' is a good way to do this.) */) |
57873
7e43927b42a8
(Fcall_interactive_p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
56557
diff
changeset
|
621 () |
7e43927b42a8
(Fcall_interactive_p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
56557
diff
changeset
|
622 { |
58734
5bc7de720277
(Fcalled_interactively_p): Don't check INTERACTIVE.
Richard M. Stallman <rms@gnu.org>
parents:
58523
diff
changeset
|
623 return interactive_p (1) ? Qt : Qnil; |
57873
7e43927b42a8
(Fcall_interactive_p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
56557
diff
changeset
|
624 } |
7e43927b42a8
(Fcall_interactive_p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
56557
diff
changeset
|
625 |
7e43927b42a8
(Fcall_interactive_p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
56557
diff
changeset
|
626 |
7e43927b42a8
(Fcall_interactive_p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
56557
diff
changeset
|
627 /* Return 1 if function in which this appears was called using |
7e43927b42a8
(Fcall_interactive_p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
56557
diff
changeset
|
628 call-interactively. |
35774
efc51d1a7b60
(interactive_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
35394
diff
changeset
|
629 |
efc51d1a7b60
(interactive_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
35394
diff
changeset
|
630 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
|
631 called is a built-in. */ |
efc51d1a7b60
(interactive_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
35394
diff
changeset
|
632 |
efc51d1a7b60
(interactive_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
35394
diff
changeset
|
633 int |
efc51d1a7b60
(interactive_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
35394
diff
changeset
|
634 interactive_p (exclude_subrs_p) |
efc51d1a7b60
(interactive_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
35394
diff
changeset
|
635 int exclude_subrs_p; |
efc51d1a7b60
(interactive_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
35394
diff
changeset
|
636 { |
efc51d1a7b60
(interactive_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
35394
diff
changeset
|
637 struct backtrace *btp; |
efc51d1a7b60
(interactive_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
35394
diff
changeset
|
638 Lisp_Object fun; |
272 | 639 |
640 btp = backtrace_list; | |
727 | 641 |
642 /* 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
|
643 the top for Finteractive_p. If so, skip it. */ |
68758
13c1b7c5f555
* data.c (Findirect_function): Add NOERROR arg. All callers changed
Kim F. Storm <storm@cua.dk>
parents:
68651
diff
changeset
|
644 fun = Findirect_function (*btp->function, Qnil); |
58734
5bc7de720277
(Fcalled_interactively_p): Don't check INTERACTIVE.
Richard M. Stallman <rms@gnu.org>
parents:
58523
diff
changeset
|
645 if (SUBRP (fun) && (XSUBR (fun) == &Sinteractive_p |
5bc7de720277
(Fcalled_interactively_p): Don't check INTERACTIVE.
Richard M. Stallman <rms@gnu.org>
parents:
58523
diff
changeset
|
646 || XSUBR (fun) == &Scalled_interactively_p)) |
323 | 647 btp = btp->next; |
648 | |
727 | 649 /* If we're running an Emacs 18-style byte-compiled function, there |
48492
8faa4c711a1a
(interactive_p): Skip any number of bytecode
Richard M. Stallman <rms@gnu.org>
parents:
47026
diff
changeset
|
650 may be a frame for Fbytecode at the top level. In any version of |
8faa4c711a1a
(interactive_p): Skip any number of bytecode
Richard M. Stallman <rms@gnu.org>
parents:
47026
diff
changeset
|
651 Emacs there can be Fbytecode frames for subexpressions evaluated |
8faa4c711a1a
(interactive_p): Skip any number of bytecode
Richard M. Stallman <rms@gnu.org>
parents:
47026
diff
changeset
|
652 inside catch and condition-case. Skip past them. |
8faa4c711a1a
(interactive_p): Skip any number of bytecode
Richard M. Stallman <rms@gnu.org>
parents:
47026
diff
changeset
|
653 |
8faa4c711a1a
(interactive_p): Skip any number of bytecode
Richard M. Stallman <rms@gnu.org>
parents:
47026
diff
changeset
|
654 If this isn't a byte-compiled function, then we may now be |
727 | 655 looking at several frames for special forms. Skip past them. */ |
48492
8faa4c711a1a
(interactive_p): Skip any number of bytecode
Richard M. Stallman <rms@gnu.org>
parents:
47026
diff
changeset
|
656 while (btp |
8faa4c711a1a
(interactive_p): Skip any number of bytecode
Richard M. Stallman <rms@gnu.org>
parents:
47026
diff
changeset
|
657 && (EQ (*btp->function, Qbytecode) |
8faa4c711a1a
(interactive_p): Skip any number of bytecode
Richard M. Stallman <rms@gnu.org>
parents:
47026
diff
changeset
|
658 || btp->nargs == UNEVALLED)) |
727 | 659 btp = btp->next; |
660 | |
661 /* btp now points at the frame of the innermost function that isn't | |
662 a special form, ignoring frames for Finteractive_p and/or | |
663 Fbytecode at the top. If this frame is for a built-in function | |
664 (such as load or eval-region) return nil. */ | |
68758
13c1b7c5f555
* data.c (Findirect_function): Add NOERROR arg. All callers changed
Kim F. Storm <storm@cua.dk>
parents:
68651
diff
changeset
|
665 fun = Findirect_function (*btp->function, Qnil); |
35774
efc51d1a7b60
(interactive_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
35394
diff
changeset
|
666 if (exclude_subrs_p && SUBRP (fun)) |
efc51d1a7b60
(interactive_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
35394
diff
changeset
|
667 return 0; |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49105
diff
changeset
|
668 |
272 | 669 /* btp points to the frame of a Lisp function that called interactive-p. |
670 Return t if that function was called interactively. */ | |
671 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
|
672 return 1; |
efc51d1a7b60
(interactive_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
35394
diff
changeset
|
673 return 0; |
272 | 674 } |
675 | |
35774
efc51d1a7b60
(interactive_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
35394
diff
changeset
|
676 |
272 | 677 DEFUN ("defun", Fdefun, Sdefun, 2, UNEVALLED, 0, |
40570 | 678 doc: /* Define NAME as a function. |
679 The definition is (lambda ARGLIST [DOCSTRING] BODY...). | |
680 See also the function `interactive'. | |
41846
680de0f18330
Undo last change. Consistency doesn't seem to be desired.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41822
diff
changeset
|
681 usage: (defun NAME ARGLIST [DOCSTRING] BODY...) */) |
40570 | 682 (args) |
272 | 683 Lisp_Object args; |
684 { | |
685 register Lisp_Object fn_name; | |
686 register Lisp_Object defn; | |
687 | |
688 fn_name = Fcar (args); | |
56052
aec6fce52afb
(Fdefun): Signal an error if NAME is not a symbol.
Eli Zaretskii <eliz@gnu.org>
parents:
55879
diff
changeset
|
689 CHECK_SYMBOL (fn_name); |
272 | 690 defn = Fcons (Qlambda, Fcdr (args)); |
485 | 691 if (!NILP (Vpurify_flag)) |
272 | 692 defn = Fpurecopy (defn); |
48724
ccd782f27e54
(Fdefun, Fdefmacro): Record in load-history redefining an autoload.
Richard M. Stallman <rms@gnu.org>
parents:
48492
diff
changeset
|
693 if (CONSP (XSYMBOL (fn_name)->function) |
ccd782f27e54
(Fdefun, Fdefmacro): Record in load-history redefining an autoload.
Richard M. Stallman <rms@gnu.org>
parents:
48492
diff
changeset
|
694 && EQ (XCAR (XSYMBOL (fn_name)->function), Qautoload)) |
ccd782f27e54
(Fdefun, Fdefmacro): Record in load-history redefining an autoload.
Richard M. Stallman <rms@gnu.org>
parents:
48492
diff
changeset
|
695 LOADHIST_ATTACH (Fcons (Qt, fn_name)); |
272 | 696 Ffset (fn_name, defn); |
59109
0b61bbccc6e1
(Fdefun, Fdefmacro): Use (defun . FN_NAME) in LOADHIST_ATTACH.
Richard M. Stallman <rms@gnu.org>
parents:
59051
diff
changeset
|
697 LOADHIST_ATTACH (Fcons (Qdefun, fn_name)); |
272 | 698 return fn_name; |
699 } | |
700 | |
701 DEFUN ("defmacro", Fdefmacro, Sdefmacro, 2, UNEVALLED, 0, | |
40570 | 702 doc: /* Define NAME as a macro. |
46198 | 703 The actual definition looks like |
704 (macro lambda ARGLIST [DOCSTRING] [DECL] BODY...). | |
40570 | 705 When the macro is called, as in (NAME ARGS...), |
706 the function (lambda ARGLIST BODY...) is applied to | |
707 the list ARGS... as it appears in the expression, | |
708 and the result should be a form to be evaluated instead of the original. | |
46198 | 709 |
710 DECL is a declaration, optional, which can specify how to indent | |
711 calls to this macro and how Edebug should handle it. It looks like this: | |
712 (declare SPECS...) | |
713 The elements can look like this: | |
714 (indent INDENT) | |
715 Set NAME's `lisp-indent-function' property to INDENT. | |
716 | |
50630
dfbdcffdcfc9
(For, Fand, Fprogn, un_autoload, do_autoload): Use XCDR, XCAR, CONSP.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49752
diff
changeset
|
717 (debug DEBUG) |
46198 | 718 Set NAME's `edebug-form-spec' property to DEBUG. (This is |
49752
aa54553dad6b
(Fdefmacro): Fix typo.
Juanma Barranquero <lekktu@gmail.com>
parents:
49600
diff
changeset
|
719 equivalent to writing a `def-edebug-spec' for the macro.) |
46198 | 720 usage: (defmacro NAME ARGLIST [DOCSTRING] [DECL] BODY...) */) |
40570 | 721 (args) |
272 | 722 Lisp_Object args; |
723 { | |
724 register Lisp_Object fn_name; | |
725 register Lisp_Object defn; | |
44132
8b63b08a2619
(Qdeclare, Vmacro_declaration_function): New variables.
Gerd Moellmann <gerd@gnu.org>
parents:
43713
diff
changeset
|
726 Lisp_Object lambda_list, doc, tail; |
272 | 727 |
728 fn_name = Fcar (args); | |
56356
fb855b187fa5
(Fdefmacro): Signal an error if NAME is not a symbol.
John Paul Wallington <jpw@pobox.com>
parents:
56052
diff
changeset
|
729 CHECK_SYMBOL (fn_name); |
44132
8b63b08a2619
(Qdeclare, Vmacro_declaration_function): New variables.
Gerd Moellmann <gerd@gnu.org>
parents:
43713
diff
changeset
|
730 lambda_list = Fcar (Fcdr (args)); |
8b63b08a2619
(Qdeclare, Vmacro_declaration_function): New variables.
Gerd Moellmann <gerd@gnu.org>
parents:
43713
diff
changeset
|
731 tail = Fcdr (Fcdr (args)); |
8b63b08a2619
(Qdeclare, Vmacro_declaration_function): New variables.
Gerd Moellmann <gerd@gnu.org>
parents:
43713
diff
changeset
|
732 |
8b63b08a2619
(Qdeclare, Vmacro_declaration_function): New variables.
Gerd Moellmann <gerd@gnu.org>
parents:
43713
diff
changeset
|
733 doc = Qnil; |
8b63b08a2619
(Qdeclare, Vmacro_declaration_function): New variables.
Gerd Moellmann <gerd@gnu.org>
parents:
43713
diff
changeset
|
734 if (STRINGP (Fcar (tail))) |
8b63b08a2619
(Qdeclare, Vmacro_declaration_function): New variables.
Gerd Moellmann <gerd@gnu.org>
parents:
43713
diff
changeset
|
735 { |
50630
dfbdcffdcfc9
(For, Fand, Fprogn, un_autoload, do_autoload): Use XCDR, XCAR, CONSP.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49752
diff
changeset
|
736 doc = XCAR (tail); |
dfbdcffdcfc9
(For, Fand, Fprogn, un_autoload, do_autoload): Use XCDR, XCAR, CONSP.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49752
diff
changeset
|
737 tail = XCDR (tail); |
44132
8b63b08a2619
(Qdeclare, Vmacro_declaration_function): New variables.
Gerd Moellmann <gerd@gnu.org>
parents:
43713
diff
changeset
|
738 } |
8b63b08a2619
(Qdeclare, Vmacro_declaration_function): New variables.
Gerd Moellmann <gerd@gnu.org>
parents:
43713
diff
changeset
|
739 |
8b63b08a2619
(Qdeclare, Vmacro_declaration_function): New variables.
Gerd Moellmann <gerd@gnu.org>
parents:
43713
diff
changeset
|
740 while (CONSP (Fcar (tail)) |
8b63b08a2619
(Qdeclare, Vmacro_declaration_function): New variables.
Gerd Moellmann <gerd@gnu.org>
parents:
43713
diff
changeset
|
741 && EQ (Fcar (Fcar (tail)), Qdeclare)) |
8b63b08a2619
(Qdeclare, Vmacro_declaration_function): New variables.
Gerd Moellmann <gerd@gnu.org>
parents:
43713
diff
changeset
|
742 { |
8b63b08a2619
(Qdeclare, Vmacro_declaration_function): New variables.
Gerd Moellmann <gerd@gnu.org>
parents:
43713
diff
changeset
|
743 if (!NILP (Vmacro_declaration_function)) |
8b63b08a2619
(Qdeclare, Vmacro_declaration_function): New variables.
Gerd Moellmann <gerd@gnu.org>
parents:
43713
diff
changeset
|
744 { |
8b63b08a2619
(Qdeclare, Vmacro_declaration_function): New variables.
Gerd Moellmann <gerd@gnu.org>
parents:
43713
diff
changeset
|
745 struct gcpro gcpro1; |
8b63b08a2619
(Qdeclare, Vmacro_declaration_function): New variables.
Gerd Moellmann <gerd@gnu.org>
parents:
43713
diff
changeset
|
746 GCPRO1 (args); |
8b63b08a2619
(Qdeclare, Vmacro_declaration_function): New variables.
Gerd Moellmann <gerd@gnu.org>
parents:
43713
diff
changeset
|
747 call2 (Vmacro_declaration_function, fn_name, Fcar (tail)); |
8b63b08a2619
(Qdeclare, Vmacro_declaration_function): New variables.
Gerd Moellmann <gerd@gnu.org>
parents:
43713
diff
changeset
|
748 UNGCPRO; |
8b63b08a2619
(Qdeclare, Vmacro_declaration_function): New variables.
Gerd Moellmann <gerd@gnu.org>
parents:
43713
diff
changeset
|
749 } |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49105
diff
changeset
|
750 |
44132
8b63b08a2619
(Qdeclare, Vmacro_declaration_function): New variables.
Gerd Moellmann <gerd@gnu.org>
parents:
43713
diff
changeset
|
751 tail = Fcdr (tail); |
8b63b08a2619
(Qdeclare, Vmacro_declaration_function): New variables.
Gerd Moellmann <gerd@gnu.org>
parents:
43713
diff
changeset
|
752 } |
8b63b08a2619
(Qdeclare, Vmacro_declaration_function): New variables.
Gerd Moellmann <gerd@gnu.org>
parents:
43713
diff
changeset
|
753 |
8b63b08a2619
(Qdeclare, Vmacro_declaration_function): New variables.
Gerd Moellmann <gerd@gnu.org>
parents:
43713
diff
changeset
|
754 if (NILP (doc)) |
8b63b08a2619
(Qdeclare, Vmacro_declaration_function): New variables.
Gerd Moellmann <gerd@gnu.org>
parents:
43713
diff
changeset
|
755 tail = Fcons (lambda_list, tail); |
8b63b08a2619
(Qdeclare, Vmacro_declaration_function): New variables.
Gerd Moellmann <gerd@gnu.org>
parents:
43713
diff
changeset
|
756 else |
8b63b08a2619
(Qdeclare, Vmacro_declaration_function): New variables.
Gerd Moellmann <gerd@gnu.org>
parents:
43713
diff
changeset
|
757 tail = Fcons (lambda_list, Fcons (doc, tail)); |
8b63b08a2619
(Qdeclare, Vmacro_declaration_function): New variables.
Gerd Moellmann <gerd@gnu.org>
parents:
43713
diff
changeset
|
758 defn = Fcons (Qmacro, Fcons (Qlambda, tail)); |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49105
diff
changeset
|
759 |
485 | 760 if (!NILP (Vpurify_flag)) |
272 | 761 defn = Fpurecopy (defn); |
48724
ccd782f27e54
(Fdefun, Fdefmacro): Record in load-history redefining an autoload.
Richard M. Stallman <rms@gnu.org>
parents:
48492
diff
changeset
|
762 if (CONSP (XSYMBOL (fn_name)->function) |
ccd782f27e54
(Fdefun, Fdefmacro): Record in load-history redefining an autoload.
Richard M. Stallman <rms@gnu.org>
parents:
48492
diff
changeset
|
763 && EQ (XCAR (XSYMBOL (fn_name)->function), Qautoload)) |
ccd782f27e54
(Fdefun, Fdefmacro): Record in load-history redefining an autoload.
Richard M. Stallman <rms@gnu.org>
parents:
48492
diff
changeset
|
764 LOADHIST_ATTACH (Fcons (Qt, fn_name)); |
272 | 765 Ffset (fn_name, defn); |
59109
0b61bbccc6e1
(Fdefun, Fdefmacro): Use (defun . FN_NAME) in LOADHIST_ATTACH.
Richard M. Stallman <rms@gnu.org>
parents:
59051
diff
changeset
|
766 LOADHIST_ATTACH (Fcons (Qdefun, fn_name)); |
272 | 767 return fn_name; |
768 } | |
769 | |
39577
d93909a71fa4
(Fdefvaralias): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
38290
diff
changeset
|
770 |
46388
0533d978a8ab
(Fdefvaralias): Add docstring argument.
Juanma Barranquero <lekktu@gmail.com>
parents:
46370
diff
changeset
|
771 DEFUN ("defvaralias", Fdefvaralias, Sdefvaralias, 2, 3, 0, |
63391
e44f5953ff6a
(Fdefvaralias): Rename arguments SYMBOL and ALIASED to NEW-ALIAS and
Juanma Barranquero <lekktu@gmail.com>
parents:
63147
diff
changeset
|
772 doc: /* Make NEW-ALIAS a variable alias for symbol BASE-VARIABLE. |
71574
a93787ef56ad
(Fdefvaralias): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
71341
diff
changeset
|
773 Aliased variables always have the same value; setting one sets the other. |
63391
e44f5953ff6a
(Fdefvaralias): Rename arguments SYMBOL and ALIASED to NEW-ALIAS and
Juanma Barranquero <lekktu@gmail.com>
parents:
63147
diff
changeset
|
774 Third arg DOCSTRING, if non-nil, is documentation for NEW-ALIAS. If it is |
e44f5953ff6a
(Fdefvaralias): Rename arguments SYMBOL and ALIASED to NEW-ALIAS and
Juanma Barranquero <lekktu@gmail.com>
parents:
63147
diff
changeset
|
775 omitted or nil, NEW-ALIAS gets the documentation string of BASE-VARIABLE, |
e44f5953ff6a
(Fdefvaralias): Rename arguments SYMBOL and ALIASED to NEW-ALIAS and
Juanma Barranquero <lekktu@gmail.com>
parents:
63147
diff
changeset
|
776 or of the variable at the end of the chain of aliases, if BASE-VARIABLE is |
e44f5953ff6a
(Fdefvaralias): Rename arguments SYMBOL and ALIASED to NEW-ALIAS and
Juanma Barranquero <lekktu@gmail.com>
parents:
63147
diff
changeset
|
777 itself an alias. |
e44f5953ff6a
(Fdefvaralias): Rename arguments SYMBOL and ALIASED to NEW-ALIAS and
Juanma Barranquero <lekktu@gmail.com>
parents:
63147
diff
changeset
|
778 The return value is BASE-VARIABLE. */) |
e44f5953ff6a
(Fdefvaralias): Rename arguments SYMBOL and ALIASED to NEW-ALIAS and
Juanma Barranquero <lekktu@gmail.com>
parents:
63147
diff
changeset
|
779 (new_alias, base_variable, docstring) |
e44f5953ff6a
(Fdefvaralias): Rename arguments SYMBOL and ALIASED to NEW-ALIAS and
Juanma Barranquero <lekktu@gmail.com>
parents:
63147
diff
changeset
|
780 Lisp_Object new_alias, base_variable, docstring; |
39577
d93909a71fa4
(Fdefvaralias): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
38290
diff
changeset
|
781 { |
d93909a71fa4
(Fdefvaralias): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
38290
diff
changeset
|
782 struct Lisp_Symbol *sym; |
46388
0533d978a8ab
(Fdefvaralias): Add docstring argument.
Juanma Barranquero <lekktu@gmail.com>
parents:
46370
diff
changeset
|
783 |
63391
e44f5953ff6a
(Fdefvaralias): Rename arguments SYMBOL and ALIASED to NEW-ALIAS and
Juanma Barranquero <lekktu@gmail.com>
parents:
63147
diff
changeset
|
784 CHECK_SYMBOL (new_alias); |
e44f5953ff6a
(Fdefvaralias): Rename arguments SYMBOL and ALIASED to NEW-ALIAS and
Juanma Barranquero <lekktu@gmail.com>
parents:
63147
diff
changeset
|
785 CHECK_SYMBOL (base_variable); |
e44f5953ff6a
(Fdefvaralias): Rename arguments SYMBOL and ALIASED to NEW-ALIAS and
Juanma Barranquero <lekktu@gmail.com>
parents:
63147
diff
changeset
|
786 |
e44f5953ff6a
(Fdefvaralias): Rename arguments SYMBOL and ALIASED to NEW-ALIAS and
Juanma Barranquero <lekktu@gmail.com>
parents:
63147
diff
changeset
|
787 if (SYMBOL_CONSTANT_P (new_alias)) |
39577
d93909a71fa4
(Fdefvaralias): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
38290
diff
changeset
|
788 error ("Cannot make a constant an alias"); |
d93909a71fa4
(Fdefvaralias): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
38290
diff
changeset
|
789 |
63391
e44f5953ff6a
(Fdefvaralias): Rename arguments SYMBOL and ALIASED to NEW-ALIAS and
Juanma Barranquero <lekktu@gmail.com>
parents:
63147
diff
changeset
|
790 sym = XSYMBOL (new_alias); |
39577
d93909a71fa4
(Fdefvaralias): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
38290
diff
changeset
|
791 sym->indirect_variable = 1; |
63391
e44f5953ff6a
(Fdefvaralias): Rename arguments SYMBOL and ALIASED to NEW-ALIAS and
Juanma Barranquero <lekktu@gmail.com>
parents:
63147
diff
changeset
|
792 sym->value = base_variable; |
e44f5953ff6a
(Fdefvaralias): Rename arguments SYMBOL and ALIASED to NEW-ALIAS and
Juanma Barranquero <lekktu@gmail.com>
parents:
63147
diff
changeset
|
793 sym->constant = SYMBOL_CONSTANT_P (base_variable); |
e44f5953ff6a
(Fdefvaralias): Rename arguments SYMBOL and ALIASED to NEW-ALIAS and
Juanma Barranquero <lekktu@gmail.com>
parents:
63147
diff
changeset
|
794 LOADHIST_ATTACH (new_alias); |
46388
0533d978a8ab
(Fdefvaralias): Add docstring argument.
Juanma Barranquero <lekktu@gmail.com>
parents:
46370
diff
changeset
|
795 if (!NILP (docstring)) |
63391
e44f5953ff6a
(Fdefvaralias): Rename arguments SYMBOL and ALIASED to NEW-ALIAS and
Juanma Barranquero <lekktu@gmail.com>
parents:
63147
diff
changeset
|
796 Fput (new_alias, Qvariable_documentation, docstring); |
62178
91b45e7531ea
(Fdefvaralias): Remove any pre-existing variable-documentation
Luc Teirlinck <teirllm@auburn.edu>
parents:
62091
diff
changeset
|
797 else |
63391
e44f5953ff6a
(Fdefvaralias): Rename arguments SYMBOL and ALIASED to NEW-ALIAS and
Juanma Barranquero <lekktu@gmail.com>
parents:
63147
diff
changeset
|
798 Fput (new_alias, Qvariable_documentation, Qnil); |
e44f5953ff6a
(Fdefvaralias): Rename arguments SYMBOL and ALIASED to NEW-ALIAS and
Juanma Barranquero <lekktu@gmail.com>
parents:
63147
diff
changeset
|
799 |
e44f5953ff6a
(Fdefvaralias): Rename arguments SYMBOL and ALIASED to NEW-ALIAS and
Juanma Barranquero <lekktu@gmail.com>
parents:
63147
diff
changeset
|
800 return base_variable; |
39577
d93909a71fa4
(Fdefvaralias): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
38290
diff
changeset
|
801 } |
d93909a71fa4
(Fdefvaralias): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
38290
diff
changeset
|
802 |
d93909a71fa4
(Fdefvaralias): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
38290
diff
changeset
|
803 |
272 | 804 DEFUN ("defvar", Fdefvar, Sdefvar, 1, UNEVALLED, 0, |
64540
103c9ac0f63c
(Fdefvar): Doc fix.
Juanma Barranquero <lekktu@gmail.com>
parents:
64499
diff
changeset
|
805 doc: /* Define SYMBOL as a variable, and return SYMBOL. |
40570 | 806 You are not required to define a variable in order to use it, |
807 but the definition can supply documentation and an initial value | |
808 in a way that tags can recognize. | |
809 | |
810 INITVALUE is evaluated, and used to set SYMBOL, only if SYMBOL's value is void. | |
811 If SYMBOL is buffer-local, its default value is what is set; | |
812 buffer-local values are not affected. | |
813 INITVALUE and DOCSTRING are optional. | |
814 If DOCSTRING starts with *, this variable is identified as a user option. | |
815 This means that M-x set-variable recognizes it. | |
816 See also `user-variable-p'. | |
817 If INITVALUE is missing, SYMBOL's value is not set. | |
56557
8967ea893ac2
(Fdefvar, Fdefconst): Doc fixes.
Luc Teirlinck <teirllm@auburn.edu>
parents:
56477
diff
changeset
|
818 |
8967ea893ac2
(Fdefvar, Fdefconst): Doc fixes.
Luc Teirlinck <teirllm@auburn.edu>
parents:
56477
diff
changeset
|
819 If SYMBOL has a local binding, then this form affects the local |
8967ea893ac2
(Fdefvar, Fdefconst): Doc fixes.
Luc Teirlinck <teirllm@auburn.edu>
parents:
56477
diff
changeset
|
820 binding. This is usually not what you want. Thus, if you need to |
8967ea893ac2
(Fdefvar, Fdefconst): Doc fixes.
Luc Teirlinck <teirllm@auburn.edu>
parents:
56477
diff
changeset
|
821 load a file defining variables, with this form or with `defconst' or |
8967ea893ac2
(Fdefvar, Fdefconst): Doc fixes.
Luc Teirlinck <teirllm@auburn.edu>
parents:
56477
diff
changeset
|
822 `defcustom', you should always load that file _outside_ any bindings |
8967ea893ac2
(Fdefvar, Fdefconst): Doc fixes.
Luc Teirlinck <teirllm@auburn.edu>
parents:
56477
diff
changeset
|
823 for these variables. \(`defconst' and `defcustom' behave similarly in |
8967ea893ac2
(Fdefvar, Fdefconst): Doc fixes.
Luc Teirlinck <teirllm@auburn.edu>
parents:
56477
diff
changeset
|
824 this respect.) |
40703
21597de09a0d
(top_level_value, top_level_set): Remove commented and #ifdef'd-out code.
Pavel Janík <Pavel@Janik.cz>
parents:
40661
diff
changeset
|
825 usage: (defvar SYMBOL &optional INITVALUE DOCSTRING) */) |
40570 | 826 (args) |
272 | 827 Lisp_Object args; |
828 { | |
10161
512a84fb3c75
(Fdefconst, Fdefvar): Error if too many arguments.
Richard M. Stallman <rms@gnu.org>
parents:
9959
diff
changeset
|
829 register Lisp_Object sym, tem, tail; |
272 | 830 |
831 sym = Fcar (args); | |
10161
512a84fb3c75
(Fdefconst, Fdefvar): Error if too many arguments.
Richard M. Stallman <rms@gnu.org>
parents:
9959
diff
changeset
|
832 tail = Fcdr (args); |
512a84fb3c75
(Fdefconst, Fdefvar): Error if too many arguments.
Richard M. Stallman <rms@gnu.org>
parents:
9959
diff
changeset
|
833 if (!NILP (Fcdr (Fcdr (tail)))) |
63697
9f617bb41e22
(Fdefvar, Fdefconst, Feval, Ffuncall): Follow error conventions.
Juanma Barranquero <lekktu@gmail.com>
parents:
63391
diff
changeset
|
834 error ("Too many arguments"); |
10161
512a84fb3c75
(Fdefconst, Fdefvar): Error if too many arguments.
Richard M. Stallman <rms@gnu.org>
parents:
9959
diff
changeset
|
835 |
37732
f98176963881
(Fdefvar): Only record (defvar <var>) in the load-history
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
37043
diff
changeset
|
836 tem = Fdefault_boundp (sym); |
10161
512a84fb3c75
(Fdefconst, Fdefvar): Error if too many arguments.
Richard M. Stallman <rms@gnu.org>
parents:
9959
diff
changeset
|
837 if (!NILP (tail)) |
272 | 838 { |
64638
8cbdc86a4f55
(Fdefvar): Allow (defvar enable-multibyte-characters).
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64613
diff
changeset
|
839 if (SYMBOL_CONSTANT_P (sym)) |
8cbdc86a4f55
(Fdefvar): Allow (defvar enable-multibyte-characters).
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64613
diff
changeset
|
840 { |
8cbdc86a4f55
(Fdefvar): Allow (defvar enable-multibyte-characters).
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64613
diff
changeset
|
841 /* For upward compatibility, allow (defvar :foo (quote :foo)). */ |
8cbdc86a4f55
(Fdefvar): Allow (defvar enable-multibyte-characters).
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64613
diff
changeset
|
842 Lisp_Object tem = Fcar (tail); |
8cbdc86a4f55
(Fdefvar): Allow (defvar enable-multibyte-characters).
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64613
diff
changeset
|
843 if (! (CONSP (tem) |
8cbdc86a4f55
(Fdefvar): Allow (defvar enable-multibyte-characters).
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64613
diff
changeset
|
844 && EQ (XCAR (tem), Qquote) |
8cbdc86a4f55
(Fdefvar): Allow (defvar enable-multibyte-characters).
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64613
diff
changeset
|
845 && CONSP (XCDR (tem)) |
8cbdc86a4f55
(Fdefvar): Allow (defvar enable-multibyte-characters).
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64613
diff
changeset
|
846 && EQ (XCAR (XCDR (tem)), sym))) |
8cbdc86a4f55
(Fdefvar): Allow (defvar enable-multibyte-characters).
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64613
diff
changeset
|
847 error ("Constant symbol `%s' specified in defvar", |
8cbdc86a4f55
(Fdefvar): Allow (defvar enable-multibyte-characters).
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64613
diff
changeset
|
848 SDATA (SYMBOL_NAME (sym))); |
8cbdc86a4f55
(Fdefvar): Allow (defvar enable-multibyte-characters).
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64613
diff
changeset
|
849 } |
8cbdc86a4f55
(Fdefvar): Allow (defvar enable-multibyte-characters).
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64613
diff
changeset
|
850 |
485 | 851 if (NILP (tem)) |
37732
f98176963881
(Fdefvar): Only record (defvar <var>) in the load-history
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
37043
diff
changeset
|
852 Fset_default (sym, Feval (Fcar (tail))); |
58413
73c39b73a189
(Fdefvar): Warn when var is let-bound but globally void.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
58344
diff
changeset
|
853 else |
73c39b73a189
(Fdefvar): Warn when var is let-bound but globally void.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
58344
diff
changeset
|
854 { /* Check if there is really a global binding rather than just a let |
73c39b73a189
(Fdefvar): Warn when var is let-bound but globally void.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
58344
diff
changeset
|
855 binding that shadows the global unboundness of the var. */ |
58523
4f9314a314aa
(Fdefvar): Declare pdl from last change as `volatile' to prevent
Eli Zaretskii <eliz@gnu.org>
parents:
58413
diff
changeset
|
856 volatile struct specbinding *pdl = specpdl_ptr; |
58413
73c39b73a189
(Fdefvar): Warn when var is let-bound but globally void.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
58344
diff
changeset
|
857 while (--pdl >= specpdl) |
73c39b73a189
(Fdefvar): Warn when var is let-bound but globally void.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
58344
diff
changeset
|
858 { |
73c39b73a189
(Fdefvar): Warn when var is let-bound but globally void.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
58344
diff
changeset
|
859 if (EQ (pdl->symbol, sym) && !pdl->func |
73c39b73a189
(Fdefvar): Warn when var is let-bound but globally void.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
58344
diff
changeset
|
860 && EQ (pdl->old_value, Qunbound)) |
73c39b73a189
(Fdefvar): Warn when var is let-bound but globally void.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
58344
diff
changeset
|
861 { |
73c39b73a189
(Fdefvar): Warn when var is let-bound but globally void.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
58344
diff
changeset
|
862 message_with_string ("Warning: defvar ignored because %s is let-bound", |
73c39b73a189
(Fdefvar): Warn when var is let-bound but globally void.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
58344
diff
changeset
|
863 SYMBOL_NAME (sym), 1); |
73c39b73a189
(Fdefvar): Warn when var is let-bound but globally void.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
58344
diff
changeset
|
864 break; |
73c39b73a189
(Fdefvar): Warn when var is let-bound but globally void.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
58344
diff
changeset
|
865 } |
73c39b73a189
(Fdefvar): Warn when var is let-bound but globally void.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
58344
diff
changeset
|
866 } |
73c39b73a189
(Fdefvar): Warn when var is let-bound but globally void.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
58344
diff
changeset
|
867 } |
37732
f98176963881
(Fdefvar): Only record (defvar <var>) in the load-history
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
37043
diff
changeset
|
868 tail = Fcdr (tail); |
50630
dfbdcffdcfc9
(For, Fand, Fprogn, un_autoload, do_autoload): Use XCDR, XCAR, CONSP.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49752
diff
changeset
|
869 tem = Fcar (tail); |
dfbdcffdcfc9
(For, Fand, Fprogn, un_autoload, do_autoload): Use XCDR, XCAR, CONSP.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49752
diff
changeset
|
870 if (!NILP (tem)) |
37732
f98176963881
(Fdefvar): Only record (defvar <var>) in the load-history
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
37043
diff
changeset
|
871 { |
f98176963881
(Fdefvar): Only record (defvar <var>) in the load-history
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
37043
diff
changeset
|
872 if (!NILP (Vpurify_flag)) |
f98176963881
(Fdefvar): Only record (defvar <var>) in the load-history
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
37043
diff
changeset
|
873 tem = Fpurecopy (tem); |
f98176963881
(Fdefvar): Only record (defvar <var>) in the load-history
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
37043
diff
changeset
|
874 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
|
875 } |
59109
0b61bbccc6e1
(Fdefun, Fdefmacro): Use (defun . FN_NAME) in LOADHIST_ATTACH.
Richard M. Stallman <rms@gnu.org>
parents:
59051
diff
changeset
|
876 LOADHIST_ATTACH (sym); |
272 | 877 } |
37732
f98176963881
(Fdefvar): Only record (defvar <var>) in the load-history
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
37043
diff
changeset
|
878 else |
47022
d2259df6cb09
(Fdefvar, Fdefconst, Fdefvaralias):
Richard M. Stallman <rms@gnu.org>
parents:
46388
diff
changeset
|
879 /* Simple (defvar <var>) should not count as a definition at all. |
d2259df6cb09
(Fdefvar, Fdefconst, Fdefvaralias):
Richard M. Stallman <rms@gnu.org>
parents:
46388
diff
changeset
|
880 It could get in the way of other definitions, and unloading this |
d2259df6cb09
(Fdefvar, Fdefconst, Fdefvaralias):
Richard M. Stallman <rms@gnu.org>
parents:
46388
diff
changeset
|
881 package could try to make the variable unbound. */ |
47026 | 882 ; |
883 | |
272 | 884 return sym; |
885 } | |
886 | |
887 DEFUN ("defconst", Fdefconst, Sdefconst, 2, UNEVALLED, 0, | |
40570 | 888 doc: /* Define SYMBOL as a constant variable. |
889 The intent is that neither programs nor users should ever change this value. | |
890 Always sets the value of SYMBOL to the result of evalling INITVALUE. | |
891 If SYMBOL is buffer-local, its default value is what is set; | |
892 buffer-local values are not affected. | |
893 DOCSTRING is optional. | |
56557
8967ea893ac2
(Fdefvar, Fdefconst): Doc fixes.
Luc Teirlinck <teirllm@auburn.edu>
parents:
56477
diff
changeset
|
894 |
8967ea893ac2
(Fdefvar, Fdefconst): Doc fixes.
Luc Teirlinck <teirllm@auburn.edu>
parents:
56477
diff
changeset
|
895 If SYMBOL has a local binding, then this form sets the local binding's |
8967ea893ac2
(Fdefvar, Fdefconst): Doc fixes.
Luc Teirlinck <teirllm@auburn.edu>
parents:
56477
diff
changeset
|
896 value. However, you should normally not make local bindings for |
8967ea893ac2
(Fdefvar, Fdefconst): Doc fixes.
Luc Teirlinck <teirllm@auburn.edu>
parents:
56477
diff
changeset
|
897 variables defined with this form. |
41846
680de0f18330
Undo last change. Consistency doesn't seem to be desired.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41822
diff
changeset
|
898 usage: (defconst SYMBOL INITVALUE [DOCSTRING]) */) |
40570 | 899 (args) |
272 | 900 Lisp_Object args; |
901 { | |
902 register Lisp_Object sym, tem; | |
903 | |
904 sym = Fcar (args); | |
10161
512a84fb3c75
(Fdefconst, Fdefvar): Error if too many arguments.
Richard M. Stallman <rms@gnu.org>
parents:
9959
diff
changeset
|
905 if (!NILP (Fcdr (Fcdr (Fcdr (args))))) |
63697
9f617bb41e22
(Fdefvar, Fdefconst, Feval, Ffuncall): Follow error conventions.
Juanma Barranquero <lekktu@gmail.com>
parents:
63391
diff
changeset
|
906 error ("Too many arguments"); |
10161
512a84fb3c75
(Fdefconst, Fdefvar): Error if too many arguments.
Richard M. Stallman <rms@gnu.org>
parents:
9959
diff
changeset
|
907 |
27554
229352fdbf68
Fix various doc strings not to duplicate information from
Dave Love <fx@gnu.org>
parents:
27295
diff
changeset
|
908 tem = Feval (Fcar (Fcdr (args))); |
229352fdbf68
Fix various doc strings not to duplicate information from
Dave Love <fx@gnu.org>
parents:
27295
diff
changeset
|
909 if (!NILP (Vpurify_flag)) |
229352fdbf68
Fix various doc strings not to duplicate information from
Dave Love <fx@gnu.org>
parents:
27295
diff
changeset
|
910 tem = Fpurecopy (tem); |
229352fdbf68
Fix various doc strings not to duplicate information from
Dave Love <fx@gnu.org>
parents:
27295
diff
changeset
|
911 Fset_default (sym, tem); |
272 | 912 tem = Fcar (Fcdr (Fcdr (args))); |
485 | 913 if (!NILP (tem)) |
272 | 914 { |
485 | 915 if (!NILP (Vpurify_flag)) |
272 | 916 tem = Fpurecopy (tem); |
917 Fput (sym, Qvariable_documentation, tem); | |
918 } | |
71341
012bd1b59e70
(Fdefconst): Mark variable as risky.
Richard M. Stallman <rms@gnu.org>
parents:
70084
diff
changeset
|
919 Fput (sym, Qrisky_local_variable, Qt); |
59109
0b61bbccc6e1
(Fdefun, Fdefmacro): Use (defun . FN_NAME) in LOADHIST_ATTACH.
Richard M. Stallman <rms@gnu.org>
parents:
59051
diff
changeset
|
920 LOADHIST_ATTACH (sym); |
272 | 921 return sym; |
922 } | |
923 | |
63826
090fb73237c3
(user_variable_p_eh): New function.
Juanma Barranquero <lekktu@gmail.com>
parents:
63805
diff
changeset
|
924 /* Error handler used in Fuser_variable_p. */ |
090fb73237c3
(user_variable_p_eh): New function.
Juanma Barranquero <lekktu@gmail.com>
parents:
63805
diff
changeset
|
925 static Lisp_Object |
090fb73237c3
(user_variable_p_eh): New function.
Juanma Barranquero <lekktu@gmail.com>
parents:
63805
diff
changeset
|
926 user_variable_p_eh (ignore) |
090fb73237c3
(user_variable_p_eh): New function.
Juanma Barranquero <lekktu@gmail.com>
parents:
63805
diff
changeset
|
927 Lisp_Object ignore; |
090fb73237c3
(user_variable_p_eh): New function.
Juanma Barranquero <lekktu@gmail.com>
parents:
63805
diff
changeset
|
928 { |
090fb73237c3
(user_variable_p_eh): New function.
Juanma Barranquero <lekktu@gmail.com>
parents:
63805
diff
changeset
|
929 return Qnil; |
090fb73237c3
(user_variable_p_eh): New function.
Juanma Barranquero <lekktu@gmail.com>
parents:
63805
diff
changeset
|
930 } |
090fb73237c3
(user_variable_p_eh): New function.
Juanma Barranquero <lekktu@gmail.com>
parents:
63805
diff
changeset
|
931 |
272 | 932 DEFUN ("user-variable-p", Fuser_variable_p, Suser_variable_p, 1, 1, 0, |
63826
090fb73237c3
(user_variable_p_eh): New function.
Juanma Barranquero <lekktu@gmail.com>
parents:
63805
diff
changeset
|
933 doc: /* Return t if VARIABLE is intended to be set and modified by users. |
40570 | 934 \(The alternative is a variable used internally in a Lisp program.) |
63826
090fb73237c3
(user_variable_p_eh): New function.
Juanma Barranquero <lekktu@gmail.com>
parents:
63805
diff
changeset
|
935 A variable is a user variable if |
090fb73237c3
(user_variable_p_eh): New function.
Juanma Barranquero <lekktu@gmail.com>
parents:
63805
diff
changeset
|
936 \(1) the first character of its documentation is `*', or |
090fb73237c3
(user_variable_p_eh): New function.
Juanma Barranquero <lekktu@gmail.com>
parents:
63805
diff
changeset
|
937 \(2) it is customizable (its property list contains a non-nil value |
090fb73237c3
(user_variable_p_eh): New function.
Juanma Barranquero <lekktu@gmail.com>
parents:
63805
diff
changeset
|
938 of `standard-value' or `custom-autoload'), or |
090fb73237c3
(user_variable_p_eh): New function.
Juanma Barranquero <lekktu@gmail.com>
parents:
63805
diff
changeset
|
939 \(3) it is an alias for another user variable. |
090fb73237c3
(user_variable_p_eh): New function.
Juanma Barranquero <lekktu@gmail.com>
parents:
63805
diff
changeset
|
940 Return nil if VARIABLE is an alias and there is a loop in the |
090fb73237c3
(user_variable_p_eh): New function.
Juanma Barranquero <lekktu@gmail.com>
parents:
63805
diff
changeset
|
941 chain of symbols. */) |
40570 | 942 (variable) |
272 | 943 Lisp_Object variable; |
944 { | |
945 Lisp_Object documentation; | |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49105
diff
changeset
|
946 |
17275
03f89f7e614e
(Fuser_variable_p): If not a symbol, return nil.
Richard M. Stallman <rms@gnu.org>
parents:
17061
diff
changeset
|
947 if (!SYMBOLP (variable)) |
03f89f7e614e
(Fuser_variable_p): If not a symbol, return nil.
Richard M. Stallman <rms@gnu.org>
parents:
17061
diff
changeset
|
948 return Qnil; |
03f89f7e614e
(Fuser_variable_p): If not a symbol, return nil.
Richard M. Stallman <rms@gnu.org>
parents:
17061
diff
changeset
|
949 |
63826
090fb73237c3
(user_variable_p_eh): New function.
Juanma Barranquero <lekktu@gmail.com>
parents:
63805
diff
changeset
|
950 /* If indirect and there's an alias loop, don't check anything else. */ |
090fb73237c3
(user_variable_p_eh): New function.
Juanma Barranquero <lekktu@gmail.com>
parents:
63805
diff
changeset
|
951 if (XSYMBOL (variable)->indirect_variable |
090fb73237c3
(user_variable_p_eh): New function.
Juanma Barranquero <lekktu@gmail.com>
parents:
63805
diff
changeset
|
952 && NILP (internal_condition_case_1 (indirect_variable, variable, |
090fb73237c3
(user_variable_p_eh): New function.
Juanma Barranquero <lekktu@gmail.com>
parents:
63805
diff
changeset
|
953 Qt, user_variable_p_eh))) |
090fb73237c3
(user_variable_p_eh): New function.
Juanma Barranquero <lekktu@gmail.com>
parents:
63805
diff
changeset
|
954 return Qnil; |
090fb73237c3
(user_variable_p_eh): New function.
Juanma Barranquero <lekktu@gmail.com>
parents:
63805
diff
changeset
|
955 |
090fb73237c3
(user_variable_p_eh): New function.
Juanma Barranquero <lekktu@gmail.com>
parents:
63805
diff
changeset
|
956 while (1) |
090fb73237c3
(user_variable_p_eh): New function.
Juanma Barranquero <lekktu@gmail.com>
parents:
63805
diff
changeset
|
957 { |
090fb73237c3
(user_variable_p_eh): New function.
Juanma Barranquero <lekktu@gmail.com>
parents:
63805
diff
changeset
|
958 documentation = Fget (variable, Qvariable_documentation); |
090fb73237c3
(user_variable_p_eh): New function.
Juanma Barranquero <lekktu@gmail.com>
parents:
63805
diff
changeset
|
959 if (INTEGERP (documentation) && XINT (documentation) < 0) |
090fb73237c3
(user_variable_p_eh): New function.
Juanma Barranquero <lekktu@gmail.com>
parents:
63805
diff
changeset
|
960 return Qt; |
090fb73237c3
(user_variable_p_eh): New function.
Juanma Barranquero <lekktu@gmail.com>
parents:
63805
diff
changeset
|
961 if (STRINGP (documentation) |
090fb73237c3
(user_variable_p_eh): New function.
Juanma Barranquero <lekktu@gmail.com>
parents:
63805
diff
changeset
|
962 && ((unsigned char) SREF (documentation, 0) == '*')) |
090fb73237c3
(user_variable_p_eh): New function.
Juanma Barranquero <lekktu@gmail.com>
parents:
63805
diff
changeset
|
963 return Qt; |
090fb73237c3
(user_variable_p_eh): New function.
Juanma Barranquero <lekktu@gmail.com>
parents:
63805
diff
changeset
|
964 /* If it is (STRING . INTEGER), a negative integer means a user variable. */ |
090fb73237c3
(user_variable_p_eh): New function.
Juanma Barranquero <lekktu@gmail.com>
parents:
63805
diff
changeset
|
965 if (CONSP (documentation) |
090fb73237c3
(user_variable_p_eh): New function.
Juanma Barranquero <lekktu@gmail.com>
parents:
63805
diff
changeset
|
966 && STRINGP (XCAR (documentation)) |
090fb73237c3
(user_variable_p_eh): New function.
Juanma Barranquero <lekktu@gmail.com>
parents:
63805
diff
changeset
|
967 && INTEGERP (XCDR (documentation)) |
090fb73237c3
(user_variable_p_eh): New function.
Juanma Barranquero <lekktu@gmail.com>
parents:
63805
diff
changeset
|
968 && XINT (XCDR (documentation)) < 0) |
090fb73237c3
(user_variable_p_eh): New function.
Juanma Barranquero <lekktu@gmail.com>
parents:
63805
diff
changeset
|
969 return Qt; |
090fb73237c3
(user_variable_p_eh): New function.
Juanma Barranquero <lekktu@gmail.com>
parents:
63805
diff
changeset
|
970 /* Customizable? See `custom-variable-p'. */ |
090fb73237c3
(user_variable_p_eh): New function.
Juanma Barranquero <lekktu@gmail.com>
parents:
63805
diff
changeset
|
971 if ((!NILP (Fget (variable, intern ("standard-value")))) |
090fb73237c3
(user_variable_p_eh): New function.
Juanma Barranquero <lekktu@gmail.com>
parents:
63805
diff
changeset
|
972 || (!NILP (Fget (variable, intern ("custom-autoload"))))) |
090fb73237c3
(user_variable_p_eh): New function.
Juanma Barranquero <lekktu@gmail.com>
parents:
63805
diff
changeset
|
973 return Qt; |
090fb73237c3
(user_variable_p_eh): New function.
Juanma Barranquero <lekktu@gmail.com>
parents:
63805
diff
changeset
|
974 |
090fb73237c3
(user_variable_p_eh): New function.
Juanma Barranquero <lekktu@gmail.com>
parents:
63805
diff
changeset
|
975 if (!XSYMBOL (variable)->indirect_variable) |
090fb73237c3
(user_variable_p_eh): New function.
Juanma Barranquero <lekktu@gmail.com>
parents:
63805
diff
changeset
|
976 return Qnil; |
090fb73237c3
(user_variable_p_eh): New function.
Juanma Barranquero <lekktu@gmail.com>
parents:
63805
diff
changeset
|
977 |
090fb73237c3
(user_variable_p_eh): New function.
Juanma Barranquero <lekktu@gmail.com>
parents:
63805
diff
changeset
|
978 /* An indirect variable? Let's follow the chain. */ |
090fb73237c3
(user_variable_p_eh): New function.
Juanma Barranquero <lekktu@gmail.com>
parents:
63805
diff
changeset
|
979 variable = XSYMBOL (variable)->value; |
090fb73237c3
(user_variable_p_eh): New function.
Juanma Barranquero <lekktu@gmail.com>
parents:
63805
diff
changeset
|
980 } |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49105
diff
changeset
|
981 } |
272 | 982 |
983 DEFUN ("let*", FletX, SletX, 1, UNEVALLED, 0, | |
40570 | 984 doc: /* Bind variables according to VARLIST then eval BODY. |
985 The value of the last form in BODY is returned. | |
986 Each element of VARLIST is a symbol (which is bound to nil) | |
987 or a list (SYMBOL VALUEFORM) (which binds SYMBOL to the value of VALUEFORM). | |
988 Each VALUEFORM can refer to the symbols already bound by this VARLIST. | |
41846
680de0f18330
Undo last change. Consistency doesn't seem to be desired.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41822
diff
changeset
|
989 usage: (let* VARLIST BODY...) */) |
40570 | 990 (args) |
272 | 991 Lisp_Object args; |
992 { | |
993 Lisp_Object varlist, val, elt; | |
46293
1fb8f75062c6
Use macro SPECPDL_INDEX.
Juanma Barranquero <lekktu@gmail.com>
parents:
46198
diff
changeset
|
994 int count = SPECPDL_INDEX (); |
272 | 995 struct gcpro gcpro1, gcpro2, gcpro3; |
996 | |
997 GCPRO3 (args, elt, varlist); | |
998 | |
999 varlist = Fcar (args); | |
485 | 1000 while (!NILP (varlist)) |
272 | 1001 { |
1002 QUIT; | |
1003 elt = Fcar (varlist); | |
9148
e7ab930bb7eb
(Fprogn, Finteractive_p, Fuser_variable_p, FletX, Flet, Fmacroexpand,
Karl Heuer <kwzh@gnu.org>
parents:
8980
diff
changeset
|
1004 if (SYMBOLP (elt)) |
272 | 1005 specbind (elt, Qnil); |
604 | 1006 else if (! NILP (Fcdr (Fcdr (elt)))) |
71976
66a9a086ddbb
* eval.c (xsignal): New func. Like Fsignal, but marked no-return.
Kim F. Storm <storm@cua.dk>
parents:
71872
diff
changeset
|
1007 signal_error ("`let' bindings can have only one value-form", elt); |
272 | 1008 else |
1009 { | |
1010 val = Feval (Fcar (Fcdr (elt))); | |
1011 specbind (Fcar (elt), val); | |
1012 } | |
1013 varlist = Fcdr (varlist); | |
1014 } | |
1015 UNGCPRO; | |
1016 val = Fprogn (Fcdr (args)); | |
1017 return unbind_to (count, val); | |
1018 } | |
1019 | |
1020 DEFUN ("let", Flet, Slet, 1, UNEVALLED, 0, | |
40570 | 1021 doc: /* Bind variables according to VARLIST then eval BODY. |
1022 The value of the last form in BODY is returned. | |
1023 Each element of VARLIST is a symbol (which is bound to nil) | |
1024 or a list (SYMBOL VALUEFORM) (which binds SYMBOL to the value of VALUEFORM). | |
1025 All the VALUEFORMs are evalled before any symbols are bound. | |
41846
680de0f18330
Undo last change. Consistency doesn't seem to be desired.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41822
diff
changeset
|
1026 usage: (let VARLIST BODY...) */) |
40570 | 1027 (args) |
272 | 1028 Lisp_Object args; |
1029 { | |
1030 Lisp_Object *temps, tem; | |
1031 register Lisp_Object elt, varlist; | |
46293
1fb8f75062c6
Use macro SPECPDL_INDEX.
Juanma Barranquero <lekktu@gmail.com>
parents:
46198
diff
changeset
|
1032 int count = SPECPDL_INDEX (); |
272 | 1033 register int argnum; |
1034 struct gcpro gcpro1, gcpro2; | |
1035 | |
1036 varlist = Fcar (args); | |
1037 | |
1038 /* Make space to hold the values to give the bound variables */ | |
1039 elt = Flength (varlist); | |
1040 temps = (Lisp_Object *) alloca (XFASTINT (elt) * sizeof (Lisp_Object)); | |
1041 | |
1042 /* Compute the values and store them in `temps' */ | |
1043 | |
1044 GCPRO2 (args, *temps); | |
1045 gcpro2.nvars = 0; | |
1046 | |
85328
d0d527210b0c
* lisp.h (enum Lisp_Misc_Type): Del Lisp_Misc_Some_Buffer_Local_Value.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
85291
diff
changeset
|
1047 for (argnum = 0; CONSP (varlist); varlist = XCDR (varlist)) |
272 | 1048 { |
1049 QUIT; | |
85328
d0d527210b0c
* lisp.h (enum Lisp_Misc_Type): Del Lisp_Misc_Some_Buffer_Local_Value.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
85291
diff
changeset
|
1050 elt = XCAR (varlist); |
9148
e7ab930bb7eb
(Fprogn, Finteractive_p, Fuser_variable_p, FletX, Flet, Fmacroexpand,
Karl Heuer <kwzh@gnu.org>
parents:
8980
diff
changeset
|
1051 if (SYMBOLP (elt)) |
272 | 1052 temps [argnum++] = Qnil; |
604 | 1053 else if (! NILP (Fcdr (Fcdr (elt)))) |
71976
66a9a086ddbb
* eval.c (xsignal): New func. Like Fsignal, but marked no-return.
Kim F. Storm <storm@cua.dk>
parents:
71872
diff
changeset
|
1054 signal_error ("`let' bindings can have only one value-form", elt); |
272 | 1055 else |
1056 temps [argnum++] = Feval (Fcar (Fcdr (elt))); | |
1057 gcpro2.nvars = argnum; | |
1058 } | |
1059 UNGCPRO; | |
1060 | |
1061 varlist = Fcar (args); | |
85328
d0d527210b0c
* lisp.h (enum Lisp_Misc_Type): Del Lisp_Misc_Some_Buffer_Local_Value.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
85291
diff
changeset
|
1062 for (argnum = 0; CONSP (varlist); varlist = XCDR (varlist)) |
272 | 1063 { |
85328
d0d527210b0c
* lisp.h (enum Lisp_Misc_Type): Del Lisp_Misc_Some_Buffer_Local_Value.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
85291
diff
changeset
|
1064 elt = XCAR (varlist); |
272 | 1065 tem = temps[argnum++]; |
9148
e7ab930bb7eb
(Fprogn, Finteractive_p, Fuser_variable_p, FletX, Flet, Fmacroexpand,
Karl Heuer <kwzh@gnu.org>
parents:
8980
diff
changeset
|
1066 if (SYMBOLP (elt)) |
272 | 1067 specbind (elt, tem); |
1068 else | |
1069 specbind (Fcar (elt), tem); | |
1070 } | |
1071 | |
1072 elt = Fprogn (Fcdr (args)); | |
1073 return unbind_to (count, elt); | |
1074 } | |
1075 | |
1076 DEFUN ("while", Fwhile, Swhile, 1, UNEVALLED, 0, | |
40570 | 1077 doc: /* If TEST yields non-nil, eval BODY... and repeat. |
1078 The order of execution is thus TEST, BODY, TEST, BODY and so on | |
1079 until TEST returns nil. | |
41846
680de0f18330
Undo last change. Consistency doesn't seem to be desired.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41822
diff
changeset
|
1080 usage: (while TEST BODY...) */) |
40570 | 1081 (args) |
272 | 1082 Lisp_Object args; |
1083 { | |
42277
fd38a0b6a3ff
Remove variables `Qmocklisp_arguments', `Vmocklisp_arguments' and
Pavel Janík <Pavel@Janik.cz>
parents:
41846
diff
changeset
|
1084 Lisp_Object test, body; |
272 | 1085 struct gcpro gcpro1, gcpro2; |
1086 | |
1087 GCPRO2 (test, body); | |
1088 | |
1089 test = Fcar (args); | |
1090 body = Fcdr (args); | |
42277
fd38a0b6a3ff
Remove variables `Qmocklisp_arguments', `Vmocklisp_arguments' and
Pavel Janík <Pavel@Janik.cz>
parents:
41846
diff
changeset
|
1091 while (!NILP (Feval (test))) |
272 | 1092 { |
1093 QUIT; | |
1094 Fprogn (body); | |
1095 } | |
1096 | |
1097 UNGCPRO; | |
1098 return Qnil; | |
1099 } | |
1100 | |
1101 DEFUN ("macroexpand", Fmacroexpand, Smacroexpand, 1, 2, 0, | |
40570 | 1102 doc: /* Return result of expanding macros at top level of FORM. |
1103 If FORM is not a macro call, it is returned unchanged. | |
1104 Otherwise, the macro is expanded and the expansion is considered | |
1105 in place of FORM. When a non-macro-call results, it is returned. | |
1106 | |
1107 The second optional arg ENVIRONMENT specifies an environment of macro | |
1108 definitions to shadow the loaded ones for use in file byte-compilation. */) | |
1109 (form, environment) | |
16113
df832a303ce5
(Fmacroexpand): Don't declare `form' as register.
Richard M. Stallman <rms@gnu.org>
parents:
16108
diff
changeset
|
1110 Lisp_Object form; |
14073
0df4b4f2a2a1
(Fmacroexpand, Fthrow, Fbacktrace_frame): Harmonize arguments with
Erik Naggum <erik@naggum.no>
parents:
13945
diff
changeset
|
1111 Lisp_Object environment; |
272 | 1112 { |
753 | 1113 /* With cleanups from Hallvard Furuseth. */ |
272 | 1114 register Lisp_Object expander, sym, def, tem; |
1115 | |
1116 while (1) | |
1117 { | |
1118 /* Come back here each time we expand a macro call, | |
1119 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
|
1120 if (!CONSP (form)) |
272 | 1121 break; |
753 | 1122 /* 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
|
1123 def = sym = XCAR (form); |
753 | 1124 tem = Qnil; |
272 | 1125 /* Trace symbols aliases to other symbols |
1126 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
|
1127 while (SYMBOLP (def)) |
272 | 1128 { |
1129 QUIT; | |
753 | 1130 sym = def; |
14073
0df4b4f2a2a1
(Fmacroexpand, Fthrow, Fbacktrace_frame): Harmonize arguments with
Erik Naggum <erik@naggum.no>
parents:
13945
diff
changeset
|
1131 tem = Fassq (sym, environment); |
485 | 1132 if (NILP (tem)) |
272 | 1133 { |
1134 def = XSYMBOL (sym)->function; | |
753 | 1135 if (!EQ (def, Qunbound)) |
1136 continue; | |
272 | 1137 } |
753 | 1138 break; |
272 | 1139 } |
14073
0df4b4f2a2a1
(Fmacroexpand, Fthrow, Fbacktrace_frame): Harmonize arguments with
Erik Naggum <erik@naggum.no>
parents:
13945
diff
changeset
|
1140 /* Right now TEM is the result from SYM in ENVIRONMENT, |
272 | 1141 and if TEM is nil then DEF is SYM's function definition. */ |
485 | 1142 if (NILP (tem)) |
272 | 1143 { |
14073
0df4b4f2a2a1
(Fmacroexpand, Fthrow, Fbacktrace_frame): Harmonize arguments with
Erik Naggum <erik@naggum.no>
parents:
13945
diff
changeset
|
1144 /* SYM is not mentioned in ENVIRONMENT. |
272 | 1145 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
|
1146 if (EQ (def, Qunbound) || !CONSP (def)) |
272 | 1147 /* Not defined or definition not suitable */ |
1148 break; | |
25662
0a7261c1d487
Use XCAR, XCDR, and XFLOAT_DATA instead of explicit member access.
Ken Raeburn <raeburn@raeburn.org>
parents:
25314
diff
changeset
|
1149 if (EQ (XCAR (def), Qautoload)) |
272 | 1150 { |
1151 /* 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
|
1152 tem = Fnth (make_number (4), def); |
5254
b38b74fe1722
(Fmacroexpand): For an autoload definition,
Richard M. Stallman <rms@gnu.org>
parents:
4782
diff
changeset
|
1153 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
|
1154 /* 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
|
1155 { |
16108
2c9c0c867e00
(Fmacroexpand): gcpro form while calling do_autoload.
Richard M. Stallman <rms@gnu.org>
parents:
15275
diff
changeset
|
1156 struct gcpro gcpro1; |
2c9c0c867e00
(Fmacroexpand): gcpro form while calling do_autoload.
Richard M. Stallman <rms@gnu.org>
parents:
15275
diff
changeset
|
1157 GCPRO1 (form); |
1564
b327816041d1
* eval.c (Fautoload): Renamed fifth argument TYPE. Document the
Jim Blandy <jimb@redhat.com>
parents:
1452
diff
changeset
|
1158 do_autoload (def, sym); |
16108
2c9c0c867e00
(Fmacroexpand): gcpro form while calling do_autoload.
Richard M. Stallman <rms@gnu.org>
parents:
15275
diff
changeset
|
1159 UNGCPRO; |
1564
b327816041d1
* eval.c (Fautoload): Renamed fifth argument TYPE. Document the
Jim Blandy <jimb@redhat.com>
parents:
1452
diff
changeset
|
1160 continue; |
b327816041d1
* eval.c (Fautoload): Renamed fifth argument TYPE. Document the
Jim Blandy <jimb@redhat.com>
parents:
1452
diff
changeset
|
1161 } |
b327816041d1
* eval.c (Fautoload): Renamed fifth argument TYPE. Document the
Jim Blandy <jimb@redhat.com>
parents:
1452
diff
changeset
|
1162 else |
272 | 1163 break; |
1164 } | |
25662
0a7261c1d487
Use XCAR, XCDR, and XFLOAT_DATA instead of explicit member access.
Ken Raeburn <raeburn@raeburn.org>
parents:
25314
diff
changeset
|
1165 else if (!EQ (XCAR (def), Qmacro)) |
272 | 1166 break; |
25662
0a7261c1d487
Use XCAR, XCDR, and XFLOAT_DATA instead of explicit member access.
Ken Raeburn <raeburn@raeburn.org>
parents:
25314
diff
changeset
|
1167 else expander = XCDR (def); |
272 | 1168 } |
1169 else | |
1170 { | |
25662
0a7261c1d487
Use XCAR, XCDR, and XFLOAT_DATA instead of explicit member access.
Ken Raeburn <raeburn@raeburn.org>
parents:
25314
diff
changeset
|
1171 expander = XCDR (tem); |
485 | 1172 if (NILP (expander)) |
272 | 1173 break; |
1174 } | |
25662
0a7261c1d487
Use XCAR, XCDR, and XFLOAT_DATA instead of explicit member access.
Ken Raeburn <raeburn@raeburn.org>
parents:
25314
diff
changeset
|
1175 form = apply1 (expander, XCDR (form)); |
272 | 1176 } |
1177 return form; | |
1178 } | |
1179 | |
1180 DEFUN ("catch", Fcatch, Scatch, 1, UNEVALLED, 0, | |
40570 | 1181 doc: /* Eval BODY allowing nonlocal exits using `throw'. |
1182 TAG is evalled to get the tag to use; it must not be nil. | |
1183 | |
1184 Then the BODY is executed. | |
73602 | 1185 Within BODY, a call to `throw' with the same TAG exits BODY and this `catch'. |
40570 | 1186 If no throw happens, `catch' returns the value of the last BODY form. |
1187 If a throw happens, it specifies the value to return from `catch'. | |
41846
680de0f18330
Undo last change. Consistency doesn't seem to be desired.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41822
diff
changeset
|
1188 usage: (catch TAG BODY...) */) |
40570 | 1189 (args) |
272 | 1190 Lisp_Object args; |
1191 { | |
1192 register Lisp_Object tag; | |
1193 struct gcpro gcpro1; | |
1194 | |
1195 GCPRO1 (args); | |
1196 tag = Feval (Fcar (args)); | |
1197 UNGCPRO; | |
1198 return internal_catch (tag, Fprogn, Fcdr (args)); | |
1199 } | |
1200 | |
1201 /* Set up a catch, then call C function FUNC on argument ARG. | |
1202 FUNC should return a Lisp_Object. | |
1203 This is how catches are done from within C code. */ | |
1204 | |
1205 Lisp_Object | |
1206 internal_catch (tag, func, arg) | |
1207 Lisp_Object tag; | |
1208 Lisp_Object (*func) (); | |
1209 Lisp_Object arg; | |
1210 { | |
1211 /* This structure is made part of the chain `catchlist'. */ | |
1212 struct catchtag c; | |
1213 | |
1214 /* Fill in the components of c, and put it on the list. */ | |
1215 c.next = catchlist; | |
1216 c.tag = tag; | |
1217 c.val = Qnil; | |
1218 c.backlist = backtrace_list; | |
1219 c.handlerlist = handlerlist; | |
1220 c.lisp_eval_depth = lisp_eval_depth; | |
46293
1fb8f75062c6
Use macro SPECPDL_INDEX.
Juanma Barranquero <lekktu@gmail.com>
parents:
46198
diff
changeset
|
1221 c.pdlcount = SPECPDL_INDEX (); |
272 | 1222 c.poll_suppress_count = poll_suppress_count; |
48909
ac6f6d4b84ec
Errors and throws work right with interrupt blocking.
Richard M. Stallman <rms@gnu.org>
parents:
48742
diff
changeset
|
1223 c.interrupt_input_blocked = interrupt_input_blocked; |
272 | 1224 c.gcpro = gcprolist; |
26365
6527989cb214
(struct catchtag): Add member byte_stack.
Gerd Moellmann <gerd@gnu.org>
parents:
26307
diff
changeset
|
1225 c.byte_stack = byte_stack_list; |
272 | 1226 catchlist = &c; |
1227 | |
1228 /* Call FUNC. */ | |
1229 if (! _setjmp (c.jmp)) | |
1230 c.val = (*func) (arg); | |
1231 | |
1232 /* Throw works by a longjmp that comes right here. */ | |
1233 catchlist = c.next; | |
1234 return c.val; | |
1235 } | |
1236 | |
1199
ab2d88e2505b
* eval.c (unbind_catch): Do the long-jump here. Take a VALUE
Jim Blandy <jimb@redhat.com>
parents:
1196
diff
changeset
|
1237 /* 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
|
1238 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
|
1239 |
ab2d88e2505b
* eval.c (unbind_catch): Do the long-jump here. Take a VALUE
Jim Blandy <jimb@redhat.com>
parents:
1196
diff
changeset
|
1240 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
|
1241 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
|
1242 condition-case form has a TAG of Qnil. |
272 | 1243 |
1199
ab2d88e2505b
* eval.c (unbind_catch): Do the long-jump here. Take a VALUE
Jim Blandy <jimb@redhat.com>
parents:
1196
diff
changeset
|
1244 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
|
1245 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
|
1246 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
|
1247 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
|
1248 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
|
1249 specified in the |
272 | 1250 |
1199
ab2d88e2505b
* eval.c (unbind_catch): Do the long-jump here. Take a VALUE
Jim Blandy <jimb@redhat.com>
parents:
1196
diff
changeset
|
1251 This is used for correct unwinding in Fthrow and Fsignal. */ |
272 | 1252 |
1253 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
|
1254 unwind_to_catch (catch, value) |
272 | 1255 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
|
1256 Lisp_Object value; |
272 | 1257 { |
1258 register int last_time; | |
1259 | |
1199
ab2d88e2505b
* eval.c (unbind_catch): Do the long-jump here. Take a VALUE
Jim Blandy <jimb@redhat.com>
parents:
1196
diff
changeset
|
1260 /* 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
|
1261 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
|
1262 |
58734
5bc7de720277
(Fcalled_interactively_p): Don't check INTERACTIVE.
Richard M. Stallman <rms@gnu.org>
parents:
58523
diff
changeset
|
1263 /* Restore certain special C variables. */ |
4474
23d5b09bd218
(unwind_to_catch): Call set_poll_suppress_count.
Richard M. Stallman <rms@gnu.org>
parents:
4462
diff
changeset
|
1264 set_poll_suppress_count (catch->poll_suppress_count); |
60418
887436be5f78
(unwind_to_catch): Use UNBLOCK_INPUT_TO.
Richard M. Stallman <rms@gnu.org>
parents:
59953
diff
changeset
|
1265 UNBLOCK_INPUT_TO (catch->interrupt_input_blocked); |
58734
5bc7de720277
(Fcalled_interactively_p): Don't check INTERACTIVE.
Richard M. Stallman <rms@gnu.org>
parents:
58523
diff
changeset
|
1266 handling_signal = 0; |
59051
a5dd77dcb82e
(unwind_to_catch): Clear immediate_quit.
Richard M. Stallman <rms@gnu.org>
parents:
58933
diff
changeset
|
1267 immediate_quit = 0; |
1196
65e2edefe748
* eval.c (Fcondition_case): Rearranged for clarity. Don't worry
Jim Blandy <jimb@redhat.com>
parents:
940
diff
changeset
|
1268 |
272 | 1269 do |
1270 { | |
1271 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
|
1272 |
65e2edefe748
* eval.c (Fcondition_case): Rearranged for clarity. Don't worry
Jim Blandy <jimb@redhat.com>
parents:
940
diff
changeset
|
1273 /* 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
|
1274 handlers. */ |
272 | 1275 unbind_to (catchlist->pdlcount, Qnil); |
1276 handlerlist = catchlist->handlerlist; | |
1277 catchlist = catchlist->next; | |
1278 } | |
1279 while (! last_time); | |
1280 | |
69399
947598ed954a
(unwind_to_catch): Call x_fully_uncatch_errors only if HAVE_X_WINDOWS.
Eli Zaretskii <eliz@gnu.org>
parents:
69387
diff
changeset
|
1281 #if HAVE_X_WINDOWS |
69387
2a8938fd785e
(unwind_to_catch): Call x_fully_uncatch_errors.
Richard M. Stallman <rms@gnu.org>
parents:
69158
diff
changeset
|
1282 /* If x_catch_errors was done, turn it off now. |
2a8938fd785e
(unwind_to_catch): Call x_fully_uncatch_errors.
Richard M. Stallman <rms@gnu.org>
parents:
69158
diff
changeset
|
1283 (First we give unbind_to a chance to do that.) */ |
83536
0014f454c421
Fix x_catch_errors-related abort after X disconnects. (Reported by Dan Nicolaescu).
Karoly Lorentey <lorentey@elte.hu>
parents:
72005
diff
changeset
|
1284 #if 0 /* This would disable x_catch_errors after x_connection_closed. |
0014f454c421
Fix x_catch_errors-related abort after X disconnects. (Reported by Dan Nicolaescu).
Karoly Lorentey <lorentey@elte.hu>
parents:
72005
diff
changeset
|
1285 * The catch must remain in effect during that delicate |
0014f454c421
Fix x_catch_errors-related abort after X disconnects. (Reported by Dan Nicolaescu).
Karoly Lorentey <lorentey@elte.hu>
parents:
72005
diff
changeset
|
1286 * state. --lorentey */ |
69387
2a8938fd785e
(unwind_to_catch): Call x_fully_uncatch_errors.
Richard M. Stallman <rms@gnu.org>
parents:
69158
diff
changeset
|
1287 x_fully_uncatch_errors (); |
69399
947598ed954a
(unwind_to_catch): Call x_fully_uncatch_errors only if HAVE_X_WINDOWS.
Eli Zaretskii <eliz@gnu.org>
parents:
69387
diff
changeset
|
1288 #endif |
83536
0014f454c421
Fix x_catch_errors-related abort after X disconnects. (Reported by Dan Nicolaescu).
Karoly Lorentey <lorentey@elte.hu>
parents:
72005
diff
changeset
|
1289 #endif |
69387
2a8938fd785e
(unwind_to_catch): Call x_fully_uncatch_errors.
Richard M. Stallman <rms@gnu.org>
parents:
69158
diff
changeset
|
1290 |
26365
6527989cb214
(struct catchtag): Add member byte_stack.
Gerd Moellmann <gerd@gnu.org>
parents:
26307
diff
changeset
|
1291 byte_stack_list = catch->byte_stack; |
272 | 1292 gcprolist = catch->gcpro; |
26297
4d1e267efd41
[DEBUG_GCPRO] (gcpro_level): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
26088
diff
changeset
|
1293 #ifdef DEBUG_GCPRO |
4d1e267efd41
[DEBUG_GCPRO] (gcpro_level): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
26088
diff
changeset
|
1294 if (gcprolist != 0) |
4d1e267efd41
[DEBUG_GCPRO] (gcpro_level): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
26088
diff
changeset
|
1295 gcpro_level = gcprolist->level + 1; |
4d1e267efd41
[DEBUG_GCPRO] (gcpro_level): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
26088
diff
changeset
|
1296 else |
4d1e267efd41
[DEBUG_GCPRO] (gcpro_level): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
26088
diff
changeset
|
1297 gcpro_level = 0; |
4d1e267efd41
[DEBUG_GCPRO] (gcpro_level): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
26088
diff
changeset
|
1298 #endif |
272 | 1299 backtrace_list = catch->backlist; |
1300 lisp_eval_depth = catch->lisp_eval_depth; | |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49105
diff
changeset
|
1301 |
1199
ab2d88e2505b
* eval.c (unbind_catch): Do the long-jump here. Take a VALUE
Jim Blandy <jimb@redhat.com>
parents:
1196
diff
changeset
|
1302 _longjmp (catch->jmp, 1); |
272 | 1303 } |
1304 | |
1305 DEFUN ("throw", Fthrow, Sthrow, 2, 2, 0, | |
40570 | 1306 doc: /* Throw to the catch for TAG and return VALUE from it. |
1307 Both TAG and VALUE are evalled. */) | |
1308 (tag, value) | |
14073
0df4b4f2a2a1
(Fmacroexpand, Fthrow, Fbacktrace_frame): Harmonize arguments with
Erik Naggum <erik@naggum.no>
parents:
13945
diff
changeset
|
1309 register Lisp_Object tag, value; |
272 | 1310 { |
1311 register struct catchtag *c; | |
1312 | |
71872
b20203b004f8
(Fthrow): Remove loop around Fsignal.
Kim F. Storm <storm@cua.dk>
parents:
71574
diff
changeset
|
1313 if (!NILP (tag)) |
b20203b004f8
(Fthrow): Remove loop around Fsignal.
Kim F. Storm <storm@cua.dk>
parents:
71574
diff
changeset
|
1314 for (c = catchlist; c; c = c->next) |
b20203b004f8
(Fthrow): Remove loop around Fsignal.
Kim F. Storm <storm@cua.dk>
parents:
71574
diff
changeset
|
1315 { |
b20203b004f8
(Fthrow): Remove loop around Fsignal.
Kim F. Storm <storm@cua.dk>
parents:
71574
diff
changeset
|
1316 if (EQ (c->tag, tag)) |
b20203b004f8
(Fthrow): Remove loop around Fsignal.
Kim F. Storm <storm@cua.dk>
parents:
71574
diff
changeset
|
1317 unwind_to_catch (c, value); |
b20203b004f8
(Fthrow): Remove loop around Fsignal.
Kim F. Storm <storm@cua.dk>
parents:
71574
diff
changeset
|
1318 } |
71976
66a9a086ddbb
* eval.c (xsignal): New func. Like Fsignal, but marked no-return.
Kim F. Storm <storm@cua.dk>
parents:
71872
diff
changeset
|
1319 xsignal2 (Qno_catch, tag, value); |
272 | 1320 } |
1321 | |
1322 | |
1323 DEFUN ("unwind-protect", Funwind_protect, Sunwind_protect, 1, UNEVALLED, 0, | |
40570 | 1324 doc: /* Do BODYFORM, protecting with UNWINDFORMS. |
1325 If BODYFORM completes normally, its value is returned | |
1326 after executing the UNWINDFORMS. | |
1327 If BODYFORM exits nonlocally, the UNWINDFORMS are executed anyway. | |
41846
680de0f18330
Undo last change. Consistency doesn't seem to be desired.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41822
diff
changeset
|
1328 usage: (unwind-protect BODYFORM UNWINDFORMS...) */) |
40570 | 1329 (args) |
272 | 1330 Lisp_Object args; |
1331 { | |
1332 Lisp_Object val; | |
46293
1fb8f75062c6
Use macro SPECPDL_INDEX.
Juanma Barranquero <lekktu@gmail.com>
parents:
46198
diff
changeset
|
1333 int count = SPECPDL_INDEX (); |
272 | 1334 |
50774
cddacf81f5e7
(Funwind_protect): Use func = Fprogn rather symbol = Qnil.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50762
diff
changeset
|
1335 record_unwind_protect (Fprogn, Fcdr (args)); |
272 | 1336 val = Feval (Fcar (args)); |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49105
diff
changeset
|
1337 return unbind_to (count, val); |
272 | 1338 } |
1339 | |
1340 /* Chain of condition handlers currently in effect. | |
1341 The elements of this chain are contained in the stack frames | |
1342 of Fcondition_case and internal_condition_case. | |
1343 When an error is signaled (by calling Fsignal, below), | |
1344 this chain is searched for an element that applies. */ | |
1345 | |
1346 struct handler *handlerlist; | |
1347 | |
1348 DEFUN ("condition-case", Fcondition_case, Scondition_case, 2, UNEVALLED, 0, | |
40570 | 1349 doc: /* Regain control when an error is signaled. |
40661
2677a5e901f8
(debugger_may_continue, Vdebug_ignored_errors, call_debugger,
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
1350 Executes BODYFORM and returns its value if no error happens. |
40570 | 1351 Each element of HANDLERS looks like (CONDITION-NAME BODY...) |
1352 where the BODY is made of Lisp expressions. | |
1353 | |
1354 A handler is applicable to an error | |
1355 if CONDITION-NAME is one of the error's condition names. | |
1356 If an error happens, the first applicable handler is run. | |
1357 | |
1358 The car of a handler may be a list of condition names | |
78664
037dc4f731b2
(condition-case): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
78501
diff
changeset
|
1359 instead of a single condition name. Then it handles all of them. |
037dc4f731b2
(condition-case): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
78501
diff
changeset
|
1360 |
037dc4f731b2
(condition-case): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
78501
diff
changeset
|
1361 When a handler handles an error, control returns to the `condition-case' |
037dc4f731b2
(condition-case): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
78501
diff
changeset
|
1362 and it executes the handler's BODY... |
037dc4f731b2
(condition-case): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
78501
diff
changeset
|
1363 with VAR bound to (SIGNALED-CONDITIONS . SIGNAL-DATA) from the error. |
037dc4f731b2
(condition-case): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
78501
diff
changeset
|
1364 (If VAR is nil, the handler can't access that information.) |
037dc4f731b2
(condition-case): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
78501
diff
changeset
|
1365 Then the value of the last BODY form is returned from the `condition-case' |
037dc4f731b2
(condition-case): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
78501
diff
changeset
|
1366 expression. |
037dc4f731b2
(condition-case): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
78501
diff
changeset
|
1367 |
40570 | 1368 See also the function `signal' for more info. |
55879
7fd80a9c338d
(Fcondition_case): Fix usage. Simplify.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55796
diff
changeset
|
1369 usage: (condition-case VAR BODYFORM &rest HANDLERS) */) |
40570 | 1370 (args) |
272 | 1371 Lisp_Object args; |
1372 { | |
32657
a0c4d9cbadcd
(skip_debugger): Prevent a compiler warning.
Gerd Moellmann <gerd@gnu.org>
parents:
32066
diff
changeset
|
1373 register Lisp_Object bodyform, handlers; |
a0c4d9cbadcd
(skip_debugger): Prevent a compiler warning.
Gerd Moellmann <gerd@gnu.org>
parents:
32066
diff
changeset
|
1374 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
|
1375 |
65e2edefe748
* eval.c (Fcondition_case): Rearranged for clarity. Don't worry
Jim Blandy <jimb@redhat.com>
parents:
940
diff
changeset
|
1376 var = Fcar (args); |
65e2edefe748
* eval.c (Fcondition_case): Rearranged for clarity. Don't worry
Jim Blandy <jimb@redhat.com>
parents:
940
diff
changeset
|
1377 bodyform = Fcar (Fcdr (args)); |
65e2edefe748
* eval.c (Fcondition_case): Rearranged for clarity. Don't worry
Jim Blandy <jimb@redhat.com>
parents:
940
diff
changeset
|
1378 handlers = Fcdr (Fcdr (args)); |
66528
c9adaa704c22
(internal_lisp_condition_case): New function.
Richard M. Stallman <rms@gnu.org>
parents:
64770
diff
changeset
|
1379 |
c9adaa704c22
(internal_lisp_condition_case): New function.
Richard M. Stallman <rms@gnu.org>
parents:
64770
diff
changeset
|
1380 return internal_lisp_condition_case (var, bodyform, handlers); |
c9adaa704c22
(internal_lisp_condition_case): New function.
Richard M. Stallman <rms@gnu.org>
parents:
64770
diff
changeset
|
1381 } |
c9adaa704c22
(internal_lisp_condition_case): New function.
Richard M. Stallman <rms@gnu.org>
parents:
64770
diff
changeset
|
1382 |
c9adaa704c22
(internal_lisp_condition_case): New function.
Richard M. Stallman <rms@gnu.org>
parents:
64770
diff
changeset
|
1383 /* Like Fcondition_case, but the args are separate |
c9adaa704c22
(internal_lisp_condition_case): New function.
Richard M. Stallman <rms@gnu.org>
parents:
64770
diff
changeset
|
1384 rather than passed in a list. Used by Fbyte_code. */ |
c9adaa704c22
(internal_lisp_condition_case): New function.
Richard M. Stallman <rms@gnu.org>
parents:
64770
diff
changeset
|
1385 |
c9adaa704c22
(internal_lisp_condition_case): New function.
Richard M. Stallman <rms@gnu.org>
parents:
64770
diff
changeset
|
1386 Lisp_Object |
c9adaa704c22
(internal_lisp_condition_case): New function.
Richard M. Stallman <rms@gnu.org>
parents:
64770
diff
changeset
|
1387 internal_lisp_condition_case (var, bodyform, handlers) |
c9adaa704c22
(internal_lisp_condition_case): New function.
Richard M. Stallman <rms@gnu.org>
parents:
64770
diff
changeset
|
1388 volatile Lisp_Object var; |
c9adaa704c22
(internal_lisp_condition_case): New function.
Richard M. Stallman <rms@gnu.org>
parents:
64770
diff
changeset
|
1389 Lisp_Object bodyform, handlers; |
c9adaa704c22
(internal_lisp_condition_case): New function.
Richard M. Stallman <rms@gnu.org>
parents:
64770
diff
changeset
|
1390 { |
c9adaa704c22
(internal_lisp_condition_case): New function.
Richard M. Stallman <rms@gnu.org>
parents:
64770
diff
changeset
|
1391 Lisp_Object val; |
c9adaa704c22
(internal_lisp_condition_case): New function.
Richard M. Stallman <rms@gnu.org>
parents:
64770
diff
changeset
|
1392 struct catchtag c; |
c9adaa704c22
(internal_lisp_condition_case): New function.
Richard M. Stallman <rms@gnu.org>
parents:
64770
diff
changeset
|
1393 struct handler h; |
c9adaa704c22
(internal_lisp_condition_case): New function.
Richard M. Stallman <rms@gnu.org>
parents:
64770
diff
changeset
|
1394 |
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40629
diff
changeset
|
1395 CHECK_SYMBOL (var); |
272 | 1396 |
55879
7fd80a9c338d
(Fcondition_case): Fix usage. Simplify.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55796
diff
changeset
|
1397 for (val = handlers; CONSP (val); val = XCDR (val)) |
1196
65e2edefe748
* eval.c (Fcondition_case): Rearranged for clarity. Don't worry
Jim Blandy <jimb@redhat.com>
parents:
940
diff
changeset
|
1398 { |
65e2edefe748
* eval.c (Fcondition_case): Rearranged for clarity. Don't worry
Jim Blandy <jimb@redhat.com>
parents:
940
diff
changeset
|
1399 Lisp_Object tem; |
55879
7fd80a9c338d
(Fcondition_case): Fix usage. Simplify.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55796
diff
changeset
|
1400 tem = XCAR (val); |
5563
50ada322de3e
(Fcondition_case): Allow a list of condition names in a handler.
Richard M. Stallman <rms@gnu.org>
parents:
5254
diff
changeset
|
1401 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
|
1402 || (CONSP (tem) |
25662
0a7261c1d487
Use XCAR, XCDR, and XFLOAT_DATA instead of explicit member access.
Ken Raeburn <raeburn@raeburn.org>
parents:
25314
diff
changeset
|
1403 && (SYMBOLP (XCAR (tem)) |
0a7261c1d487
Use XCAR, XCDR, and XFLOAT_DATA instead of explicit member access.
Ken Raeburn <raeburn@raeburn.org>
parents:
25314
diff
changeset
|
1404 || CONSP (XCAR (tem)))))) |
1196
65e2edefe748
* eval.c (Fcondition_case): Rearranged for clarity. Don't worry
Jim Blandy <jimb@redhat.com>
parents:
940
diff
changeset
|
1405 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
|
1406 } |
272 | 1407 |
1408 c.tag = Qnil; | |
1409 c.val = Qnil; | |
1410 c.backlist = backtrace_list; | |
1411 c.handlerlist = handlerlist; | |
1412 c.lisp_eval_depth = lisp_eval_depth; | |
46293
1fb8f75062c6
Use macro SPECPDL_INDEX.
Juanma Barranquero <lekktu@gmail.com>
parents:
46198
diff
changeset
|
1413 c.pdlcount = SPECPDL_INDEX (); |
272 | 1414 c.poll_suppress_count = poll_suppress_count; |
48909
ac6f6d4b84ec
Errors and throws work right with interrupt blocking.
Richard M. Stallman <rms@gnu.org>
parents:
48742
diff
changeset
|
1415 c.interrupt_input_blocked = interrupt_input_blocked; |
272 | 1416 c.gcpro = gcprolist; |
26365
6527989cb214
(struct catchtag): Add member byte_stack.
Gerd Moellmann <gerd@gnu.org>
parents:
26307
diff
changeset
|
1417 c.byte_stack = byte_stack_list; |
272 | 1418 if (_setjmp (c.jmp)) |
1419 { | |
485 | 1420 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
|
1421 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
|
1422 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
|
1423 |
65e2edefe748
* eval.c (Fcondition_case): Rearranged for clarity. Don't worry
Jim Blandy <jimb@redhat.com>
parents:
940
diff
changeset
|
1424 /* 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
|
1425 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
|
1426 throwing. */ |
272 | 1427 unbind_to (c.pdlcount, Qnil); |
1428 return val; | |
1429 } | |
1430 c.next = catchlist; | |
1431 catchlist = &c; | |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49105
diff
changeset
|
1432 |
1196
65e2edefe748
* eval.c (Fcondition_case): Rearranged for clarity. Don't worry
Jim Blandy <jimb@redhat.com>
parents:
940
diff
changeset
|
1433 h.var = var; |
65e2edefe748
* eval.c (Fcondition_case): Rearranged for clarity. Don't worry
Jim Blandy <jimb@redhat.com>
parents:
940
diff
changeset
|
1434 h.handler = handlers; |
272 | 1435 h.next = handlerlist; |
1436 h.tag = &c; | |
1437 handlerlist = &h; | |
1438 | |
1196
65e2edefe748
* eval.c (Fcondition_case): Rearranged for clarity. Don't worry
Jim Blandy <jimb@redhat.com>
parents:
940
diff
changeset
|
1439 val = Feval (bodyform); |
272 | 1440 catchlist = c.next; |
1441 handlerlist = h.next; | |
1442 return val; | |
1443 } | |
1444 | |
14218
346d4cf758f5
(run_hook_with_args): Do nothing if Vrun_hooks is nil.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
1445 /* 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
|
1446 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
|
1447 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
|
1448 (SIGNALNAME . DATA) |
346d4cf758f5
(run_hook_with_args): Do nothing if Vrun_hooks is nil.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
1449 |
346d4cf758f5
(run_hook_with_args): Do nothing if Vrun_hooks is nil.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
1450 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
|
1451 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
|
1452 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
|
1453 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
|
1454 |
272 | 1455 Lisp_Object |
1456 internal_condition_case (bfun, handlers, hfun) | |
1457 Lisp_Object (*bfun) (); | |
1458 Lisp_Object handlers; | |
1459 Lisp_Object (*hfun) (); | |
1460 { | |
1461 Lisp_Object val; | |
1462 struct catchtag c; | |
1463 struct handler h; | |
1464 | |
69387
2a8938fd785e
(unwind_to_catch): Call x_fully_uncatch_errors.
Richard M. Stallman <rms@gnu.org>
parents:
69158
diff
changeset
|
1465 /* Since Fsignal will close off all calls to x_catch_errors, |
2a8938fd785e
(unwind_to_catch): Call x_fully_uncatch_errors.
Richard M. Stallman <rms@gnu.org>
parents:
69158
diff
changeset
|
1466 we will get the wrong results if some are not closed now. */ |
69399
947598ed954a
(unwind_to_catch): Call x_fully_uncatch_errors only if HAVE_X_WINDOWS.
Eli Zaretskii <eliz@gnu.org>
parents:
69387
diff
changeset
|
1467 #if HAVE_X_WINDOWS |
69387
2a8938fd785e
(unwind_to_catch): Call x_fully_uncatch_errors.
Richard M. Stallman <rms@gnu.org>
parents:
69158
diff
changeset
|
1468 if (x_catching_errors ()) |
11365
1e2290c04cce
(internal_condition_case): Abort if interrupt_input_blocked>0.
Richard M. Stallman <rms@gnu.org>
parents:
11251
diff
changeset
|
1469 abort (); |
69399
947598ed954a
(unwind_to_catch): Call x_fully_uncatch_errors only if HAVE_X_WINDOWS.
Eli Zaretskii <eliz@gnu.org>
parents:
69387
diff
changeset
|
1470 #endif |
11365
1e2290c04cce
(internal_condition_case): Abort if interrupt_input_blocked>0.
Richard M. Stallman <rms@gnu.org>
parents:
11251
diff
changeset
|
1471 |
272 | 1472 c.tag = Qnil; |
1473 c.val = Qnil; | |
1474 c.backlist = backtrace_list; | |
1475 c.handlerlist = handlerlist; | |
1476 c.lisp_eval_depth = lisp_eval_depth; | |
46293
1fb8f75062c6
Use macro SPECPDL_INDEX.
Juanma Barranquero <lekktu@gmail.com>
parents:
46198
diff
changeset
|
1477 c.pdlcount = SPECPDL_INDEX (); |
272 | 1478 c.poll_suppress_count = poll_suppress_count; |
48909
ac6f6d4b84ec
Errors and throws work right with interrupt blocking.
Richard M. Stallman <rms@gnu.org>
parents:
48742
diff
changeset
|
1479 c.interrupt_input_blocked = interrupt_input_blocked; |
272 | 1480 c.gcpro = gcprolist; |
26365
6527989cb214
(struct catchtag): Add member byte_stack.
Gerd Moellmann <gerd@gnu.org>
parents:
26307
diff
changeset
|
1481 c.byte_stack = byte_stack_list; |
272 | 1482 if (_setjmp (c.jmp)) |
1483 { | |
6132
ddf57829cf03
(Fsignal): If DATA is memory_signal_data, don't add to it.
Richard M. Stallman <rms@gnu.org>
parents:
5807
diff
changeset
|
1484 return (*hfun) (c.val); |
272 | 1485 } |
1486 c.next = catchlist; | |
1487 catchlist = &c; | |
1488 h.handler = handlers; | |
1489 h.var = Qnil; | |
1490 h.next = handlerlist; | |
1491 h.tag = &c; | |
1492 handlerlist = &h; | |
1493 | |
1494 val = (*bfun) (); | |
1495 catchlist = c.next; | |
1496 handlerlist = h.next; | |
1497 return val; | |
1498 } | |
1499 | |
48909
ac6f6d4b84ec
Errors and throws work right with interrupt blocking.
Richard M. Stallman <rms@gnu.org>
parents:
48742
diff
changeset
|
1500 /* Like internal_condition_case but call BFUN with ARG as its argument. */ |
14218
346d4cf758f5
(run_hook_with_args): Do nothing if Vrun_hooks is nil.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
1501 |
5807
cc9d9ab24008
(internal_condition_case_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5567
diff
changeset
|
1502 Lisp_Object |
cc9d9ab24008
(internal_condition_case_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5567
diff
changeset
|
1503 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
|
1504 Lisp_Object (*bfun) (); |
cc9d9ab24008
(internal_condition_case_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5567
diff
changeset
|
1505 Lisp_Object arg; |
cc9d9ab24008
(internal_condition_case_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5567
diff
changeset
|
1506 Lisp_Object handlers; |
cc9d9ab24008
(internal_condition_case_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5567
diff
changeset
|
1507 Lisp_Object (*hfun) (); |
cc9d9ab24008
(internal_condition_case_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5567
diff
changeset
|
1508 { |
cc9d9ab24008
(internal_condition_case_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5567
diff
changeset
|
1509 Lisp_Object val; |
cc9d9ab24008
(internal_condition_case_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5567
diff
changeset
|
1510 struct catchtag c; |
cc9d9ab24008
(internal_condition_case_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5567
diff
changeset
|
1511 struct handler h; |
cc9d9ab24008
(internal_condition_case_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5567
diff
changeset
|
1512 |
69387
2a8938fd785e
(unwind_to_catch): Call x_fully_uncatch_errors.
Richard M. Stallman <rms@gnu.org>
parents:
69158
diff
changeset
|
1513 /* Since Fsignal will close off all calls to x_catch_errors, |
2a8938fd785e
(unwind_to_catch): Call x_fully_uncatch_errors.
Richard M. Stallman <rms@gnu.org>
parents:
69158
diff
changeset
|
1514 we will get the wrong results if some are not closed now. */ |
69399
947598ed954a
(unwind_to_catch): Call x_fully_uncatch_errors only if HAVE_X_WINDOWS.
Eli Zaretskii <eliz@gnu.org>
parents:
69387
diff
changeset
|
1515 #if HAVE_X_WINDOWS |
69387
2a8938fd785e
(unwind_to_catch): Call x_fully_uncatch_errors.
Richard M. Stallman <rms@gnu.org>
parents:
69158
diff
changeset
|
1516 if (x_catching_errors ()) |
2a8938fd785e
(unwind_to_catch): Call x_fully_uncatch_errors.
Richard M. Stallman <rms@gnu.org>
parents:
69158
diff
changeset
|
1517 abort (); |
69399
947598ed954a
(unwind_to_catch): Call x_fully_uncatch_errors only if HAVE_X_WINDOWS.
Eli Zaretskii <eliz@gnu.org>
parents:
69387
diff
changeset
|
1518 #endif |
69387
2a8938fd785e
(unwind_to_catch): Call x_fully_uncatch_errors.
Richard M. Stallman <rms@gnu.org>
parents:
69158
diff
changeset
|
1519 |
5807
cc9d9ab24008
(internal_condition_case_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5567
diff
changeset
|
1520 c.tag = Qnil; |
cc9d9ab24008
(internal_condition_case_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5567
diff
changeset
|
1521 c.val = Qnil; |
cc9d9ab24008
(internal_condition_case_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5567
diff
changeset
|
1522 c.backlist = backtrace_list; |
cc9d9ab24008
(internal_condition_case_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5567
diff
changeset
|
1523 c.handlerlist = handlerlist; |
cc9d9ab24008
(internal_condition_case_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5567
diff
changeset
|
1524 c.lisp_eval_depth = lisp_eval_depth; |
46293
1fb8f75062c6
Use macro SPECPDL_INDEX.
Juanma Barranquero <lekktu@gmail.com>
parents:
46198
diff
changeset
|
1525 c.pdlcount = SPECPDL_INDEX (); |
5807
cc9d9ab24008
(internal_condition_case_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5567
diff
changeset
|
1526 c.poll_suppress_count = poll_suppress_count; |
48909
ac6f6d4b84ec
Errors and throws work right with interrupt blocking.
Richard M. Stallman <rms@gnu.org>
parents:
48742
diff
changeset
|
1527 c.interrupt_input_blocked = interrupt_input_blocked; |
5807
cc9d9ab24008
(internal_condition_case_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5567
diff
changeset
|
1528 c.gcpro = gcprolist; |
26365
6527989cb214
(struct catchtag): Add member byte_stack.
Gerd Moellmann <gerd@gnu.org>
parents:
26307
diff
changeset
|
1529 c.byte_stack = byte_stack_list; |
5807
cc9d9ab24008
(internal_condition_case_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5567
diff
changeset
|
1530 if (_setjmp (c.jmp)) |
cc9d9ab24008
(internal_condition_case_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5567
diff
changeset
|
1531 { |
6132
ddf57829cf03
(Fsignal): If DATA is memory_signal_data, don't add to it.
Richard M. Stallman <rms@gnu.org>
parents:
5807
diff
changeset
|
1532 return (*hfun) (c.val); |
5807
cc9d9ab24008
(internal_condition_case_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5567
diff
changeset
|
1533 } |
cc9d9ab24008
(internal_condition_case_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5567
diff
changeset
|
1534 c.next = catchlist; |
cc9d9ab24008
(internal_condition_case_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5567
diff
changeset
|
1535 catchlist = &c; |
cc9d9ab24008
(internal_condition_case_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5567
diff
changeset
|
1536 h.handler = handlers; |
cc9d9ab24008
(internal_condition_case_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5567
diff
changeset
|
1537 h.var = Qnil; |
cc9d9ab24008
(internal_condition_case_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5567
diff
changeset
|
1538 h.next = handlerlist; |
cc9d9ab24008
(internal_condition_case_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5567
diff
changeset
|
1539 h.tag = &c; |
cc9d9ab24008
(internal_condition_case_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5567
diff
changeset
|
1540 handlerlist = &h; |
cc9d9ab24008
(internal_condition_case_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5567
diff
changeset
|
1541 |
cc9d9ab24008
(internal_condition_case_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5567
diff
changeset
|
1542 val = (*bfun) (arg); |
cc9d9ab24008
(internal_condition_case_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5567
diff
changeset
|
1543 catchlist = c.next; |
cc9d9ab24008
(internal_condition_case_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5567
diff
changeset
|
1544 handlerlist = h.next; |
cc9d9ab24008
(internal_condition_case_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5567
diff
changeset
|
1545 return val; |
cc9d9ab24008
(internal_condition_case_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5567
diff
changeset
|
1546 } |
30217
887b4d52a334
(internal_condition_case_2): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
30106
diff
changeset
|
1547 |
887b4d52a334
(internal_condition_case_2): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
30106
diff
changeset
|
1548 |
48909
ac6f6d4b84ec
Errors and throws work right with interrupt blocking.
Richard M. Stallman <rms@gnu.org>
parents:
48742
diff
changeset
|
1549 /* Like internal_condition_case but call BFUN with NARGS as first, |
30217
887b4d52a334
(internal_condition_case_2): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
30106
diff
changeset
|
1550 and ARGS as second argument. */ |
887b4d52a334
(internal_condition_case_2): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
30106
diff
changeset
|
1551 |
887b4d52a334
(internal_condition_case_2): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
30106
diff
changeset
|
1552 Lisp_Object |
887b4d52a334
(internal_condition_case_2): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
30106
diff
changeset
|
1553 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
|
1554 Lisp_Object (*bfun) (); |
887b4d52a334
(internal_condition_case_2): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
30106
diff
changeset
|
1555 int nargs; |
887b4d52a334
(internal_condition_case_2): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
30106
diff
changeset
|
1556 Lisp_Object *args; |
887b4d52a334
(internal_condition_case_2): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
30106
diff
changeset
|
1557 Lisp_Object handlers; |
887b4d52a334
(internal_condition_case_2): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
30106
diff
changeset
|
1558 Lisp_Object (*hfun) (); |
887b4d52a334
(internal_condition_case_2): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
30106
diff
changeset
|
1559 { |
887b4d52a334
(internal_condition_case_2): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
30106
diff
changeset
|
1560 Lisp_Object val; |
887b4d52a334
(internal_condition_case_2): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
30106
diff
changeset
|
1561 struct catchtag c; |
887b4d52a334
(internal_condition_case_2): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
30106
diff
changeset
|
1562 struct handler h; |
887b4d52a334
(internal_condition_case_2): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
30106
diff
changeset
|
1563 |
69387
2a8938fd785e
(unwind_to_catch): Call x_fully_uncatch_errors.
Richard M. Stallman <rms@gnu.org>
parents:
69158
diff
changeset
|
1564 /* Since Fsignal will close off all calls to x_catch_errors, |
2a8938fd785e
(unwind_to_catch): Call x_fully_uncatch_errors.
Richard M. Stallman <rms@gnu.org>
parents:
69158
diff
changeset
|
1565 we will get the wrong results if some are not closed now. */ |
69399
947598ed954a
(unwind_to_catch): Call x_fully_uncatch_errors only if HAVE_X_WINDOWS.
Eli Zaretskii <eliz@gnu.org>
parents:
69387
diff
changeset
|
1566 #if HAVE_X_WINDOWS |
69387
2a8938fd785e
(unwind_to_catch): Call x_fully_uncatch_errors.
Richard M. Stallman <rms@gnu.org>
parents:
69158
diff
changeset
|
1567 if (x_catching_errors ()) |
2a8938fd785e
(unwind_to_catch): Call x_fully_uncatch_errors.
Richard M. Stallman <rms@gnu.org>
parents:
69158
diff
changeset
|
1568 abort (); |
69399
947598ed954a
(unwind_to_catch): Call x_fully_uncatch_errors only if HAVE_X_WINDOWS.
Eli Zaretskii <eliz@gnu.org>
parents:
69387
diff
changeset
|
1569 #endif |
69387
2a8938fd785e
(unwind_to_catch): Call x_fully_uncatch_errors.
Richard M. Stallman <rms@gnu.org>
parents:
69158
diff
changeset
|
1570 |
30217
887b4d52a334
(internal_condition_case_2): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
30106
diff
changeset
|
1571 c.tag = Qnil; |
887b4d52a334
(internal_condition_case_2): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
30106
diff
changeset
|
1572 c.val = Qnil; |
887b4d52a334
(internal_condition_case_2): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
30106
diff
changeset
|
1573 c.backlist = backtrace_list; |
887b4d52a334
(internal_condition_case_2): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
30106
diff
changeset
|
1574 c.handlerlist = handlerlist; |
887b4d52a334
(internal_condition_case_2): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
30106
diff
changeset
|
1575 c.lisp_eval_depth = lisp_eval_depth; |
46293
1fb8f75062c6
Use macro SPECPDL_INDEX.
Juanma Barranquero <lekktu@gmail.com>
parents:
46198
diff
changeset
|
1576 c.pdlcount = SPECPDL_INDEX (); |
30217
887b4d52a334
(internal_condition_case_2): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
30106
diff
changeset
|
1577 c.poll_suppress_count = poll_suppress_count; |
48909
ac6f6d4b84ec
Errors and throws work right with interrupt blocking.
Richard M. Stallman <rms@gnu.org>
parents:
48742
diff
changeset
|
1578 c.interrupt_input_blocked = interrupt_input_blocked; |
30217
887b4d52a334
(internal_condition_case_2): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
30106
diff
changeset
|
1579 c.gcpro = gcprolist; |
887b4d52a334
(internal_condition_case_2): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
30106
diff
changeset
|
1580 c.byte_stack = byte_stack_list; |
887b4d52a334
(internal_condition_case_2): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
30106
diff
changeset
|
1581 if (_setjmp (c.jmp)) |
887b4d52a334
(internal_condition_case_2): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
30106
diff
changeset
|
1582 { |
887b4d52a334
(internal_condition_case_2): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
30106
diff
changeset
|
1583 return (*hfun) (c.val); |
887b4d52a334
(internal_condition_case_2): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
30106
diff
changeset
|
1584 } |
887b4d52a334
(internal_condition_case_2): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
30106
diff
changeset
|
1585 c.next = catchlist; |
887b4d52a334
(internal_condition_case_2): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
30106
diff
changeset
|
1586 catchlist = &c; |
887b4d52a334
(internal_condition_case_2): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
30106
diff
changeset
|
1587 h.handler = handlers; |
887b4d52a334
(internal_condition_case_2): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
30106
diff
changeset
|
1588 h.var = Qnil; |
887b4d52a334
(internal_condition_case_2): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
30106
diff
changeset
|
1589 h.next = handlerlist; |
887b4d52a334
(internal_condition_case_2): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
30106
diff
changeset
|
1590 h.tag = &c; |
887b4d52a334
(internal_condition_case_2): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
30106
diff
changeset
|
1591 handlerlist = &h; |
887b4d52a334
(internal_condition_case_2): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
30106
diff
changeset
|
1592 |
887b4d52a334
(internal_condition_case_2): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
30106
diff
changeset
|
1593 val = (*bfun) (nargs, args); |
887b4d52a334
(internal_condition_case_2): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
30106
diff
changeset
|
1594 catchlist = c.next; |
887b4d52a334
(internal_condition_case_2): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
30106
diff
changeset
|
1595 handlerlist = h.next; |
887b4d52a334
(internal_condition_case_2): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
30106
diff
changeset
|
1596 return val; |
887b4d52a334
(internal_condition_case_2): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
30106
diff
changeset
|
1597 } |
887b4d52a334
(internal_condition_case_2): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
30106
diff
changeset
|
1598 |
5807
cc9d9ab24008
(internal_condition_case_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5567
diff
changeset
|
1599 |
41114
242c6928accc
(max_specpdl_size, max_lisp_eval_depth): Use EMACS_INT.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41029
diff
changeset
|
1600 static Lisp_Object find_handler_clause P_ ((Lisp_Object, Lisp_Object, |
81871
f533b796856e
(maybe_call_debugger): New function.
Richard M. Stallman <rms@gnu.org>
parents:
81858
diff
changeset
|
1601 Lisp_Object, Lisp_Object)); |
272 | 1602 |
1603 DEFUN ("signal", Fsignal, Ssignal, 2, 2, 0, | |
40570 | 1604 doc: /* Signal an error. Args are ERROR-SYMBOL and associated DATA. |
1605 This function does not return. | |
1606 | |
1607 An error symbol is a symbol with an `error-conditions' property | |
1608 that is a list of condition names. | |
1609 A handler for any of those names will get to handle this signal. | |
1610 The symbol `error' should normally be one of them. | |
1611 | |
1612 DATA should be a list. Its elements are printed as part of the error message. | |
53461
abbbd322a247
(Fsignal): Add hyperlink to the definition of `signal' in the Elisp manual.
Luc Teirlinck <teirllm@auburn.edu>
parents:
53362
diff
changeset
|
1613 See Info anchor `(elisp)Definition of signal' for some details on how this |
abbbd322a247
(Fsignal): Add hyperlink to the definition of `signal' in the Elisp manual.
Luc Teirlinck <teirllm@auburn.edu>
parents:
53362
diff
changeset
|
1614 error message is constructed. |
40570 | 1615 If the signal is handled, DATA is made available to the handler. |
1616 See also the function `condition-case'. */) | |
1617 (error_symbol, data) | |
5566
e2925466c923
(Fsignal): Rename 1st arg to error_symbol.
Richard M. Stallman <rms@gnu.org>
parents:
5563
diff
changeset
|
1618 Lisp_Object error_symbol, data; |
272 | 1619 { |
24171
44241f56675a
(Fsignal): Move comment to avoid confusing make-docfile.
Andreas Schwab <schwab@suse.de>
parents:
24054
diff
changeset
|
1620 /* When memory is full, ERROR-SYMBOL is nil, |
46315
67b681b7d3d9
(Fsignal): Don't call cancel_hourglass.
Richard M. Stallman <rms@gnu.org>
parents:
46293
diff
changeset
|
1621 and DATA is (REAL-ERROR-SYMBOL . REAL-DATA). |
67b681b7d3d9
(Fsignal): Don't call cancel_hourglass.
Richard M. Stallman <rms@gnu.org>
parents:
46293
diff
changeset
|
1622 That is a special case--don't do this in other situations. */ |
272 | 1623 register struct handler *allhandlers = handlerlist; |
1624 Lisp_Object conditions; | |
1625 extern int gc_in_progress; | |
1626 extern int waiting_for_input; | |
16895
32945f27ed20
(Fsignal): Call fatal if no error handlers and no catch.
Richard M. Stallman <rms@gnu.org>
parents:
16485
diff
changeset
|
1627 Lisp_Object string; |
18636
b3f3cd32fa70
(Fsignal, find_handler_clause): If ERROR_SYMBOL
Richard M. Stallman <rms@gnu.org>
parents:
18018
diff
changeset
|
1628 Lisp_Object real_error_symbol; |
30073
ed8f34a43649
(Vsignaling_function): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30058
diff
changeset
|
1629 struct backtrace *bp; |
25008
39dd5c98a114
(Fsignal): Reset redisplaying_p to zero.
Gerd Moellmann <gerd@gnu.org>
parents:
24605
diff
changeset
|
1630 |
33988
f1fefcb74da7
(Fsignal): Reset handling_signal.
Gerd Moellmann <gerd@gnu.org>
parents:
32657
diff
changeset
|
1631 immediate_quit = handling_signal = 0; |
50747
f38d1373681e
(Fsignal): Clear abort_on_gc.
Richard M. Stallman <rms@gnu.org>
parents:
50644
diff
changeset
|
1632 abort_on_gc = 0; |
272 | 1633 if (gc_in_progress || waiting_for_input) |
1634 abort (); | |
1635 | |
18636
b3f3cd32fa70
(Fsignal, find_handler_clause): If ERROR_SYMBOL
Richard M. Stallman <rms@gnu.org>
parents:
18018
diff
changeset
|
1636 if (NILP (error_symbol)) |
b3f3cd32fa70
(Fsignal, find_handler_clause): If ERROR_SYMBOL
Richard M. Stallman <rms@gnu.org>
parents:
18018
diff
changeset
|
1637 real_error_symbol = Fcar (data); |
b3f3cd32fa70
(Fsignal, find_handler_clause): If ERROR_SYMBOL
Richard M. Stallman <rms@gnu.org>
parents:
18018
diff
changeset
|
1638 else |
b3f3cd32fa70
(Fsignal, find_handler_clause): If ERROR_SYMBOL
Richard M. Stallman <rms@gnu.org>
parents:
18018
diff
changeset
|
1639 real_error_symbol = error_symbol; |
b3f3cd32fa70
(Fsignal, find_handler_clause): If ERROR_SYMBOL
Richard M. Stallman <rms@gnu.org>
parents:
18018
diff
changeset
|
1640 |
46315
67b681b7d3d9
(Fsignal): Don't call cancel_hourglass.
Richard M. Stallman <rms@gnu.org>
parents:
46293
diff
changeset
|
1641 #if 0 /* rms: I don't know why this was here, |
67b681b7d3d9
(Fsignal): Don't call cancel_hourglass.
Richard M. Stallman <rms@gnu.org>
parents:
46293
diff
changeset
|
1642 but it is surely wrong for an error that is handled. */ |
25008
39dd5c98a114
(Fsignal): Reset redisplaying_p to zero.
Gerd Moellmann <gerd@gnu.org>
parents:
24605
diff
changeset
|
1643 #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
|
1644 if (display_hourglass_p) |
e033d60bd048
Use display_hourglass_p, start_hourglass, cancel_hourglass instead of
Gerd Moellmann <gerd@gnu.org>
parents:
35774
diff
changeset
|
1645 cancel_hourglass (); |
25008
39dd5c98a114
(Fsignal): Reset redisplaying_p to zero.
Gerd Moellmann <gerd@gnu.org>
parents:
24605
diff
changeset
|
1646 #endif |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49105
diff
changeset
|
1647 #endif |
25008
39dd5c98a114
(Fsignal): Reset redisplaying_p to zero.
Gerd Moellmann <gerd@gnu.org>
parents:
24605
diff
changeset
|
1648 |
16355
1d85b2698564
(Vdebug_force): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
16296
diff
changeset
|
1649 /* This hook is used by edebug. */ |
46315
67b681b7d3d9
(Fsignal): Don't call cancel_hourglass.
Richard M. Stallman <rms@gnu.org>
parents:
46293
diff
changeset
|
1650 if (! NILP (Vsignal_hook_function) |
67b681b7d3d9
(Fsignal): Don't call cancel_hourglass.
Richard M. Stallman <rms@gnu.org>
parents:
46293
diff
changeset
|
1651 && ! NILP (error_symbol)) |
63767
60a9b2133cf1
(call_debugger): Take full care of extending stack limits
Richard M. Stallman <rms@gnu.org>
parents:
63697
diff
changeset
|
1652 { |
60a9b2133cf1
(call_debugger): Take full care of extending stack limits
Richard M. Stallman <rms@gnu.org>
parents:
63697
diff
changeset
|
1653 /* Edebug takes care of restoring these variables when it exits. */ |
60a9b2133cf1
(call_debugger): Take full care of extending stack limits
Richard M. Stallman <rms@gnu.org>
parents:
63697
diff
changeset
|
1654 if (lisp_eval_depth + 20 > max_lisp_eval_depth) |
60a9b2133cf1
(call_debugger): Take full care of extending stack limits
Richard M. Stallman <rms@gnu.org>
parents:
63697
diff
changeset
|
1655 max_lisp_eval_depth = lisp_eval_depth + 20; |
60a9b2133cf1
(call_debugger): Take full care of extending stack limits
Richard M. Stallman <rms@gnu.org>
parents:
63697
diff
changeset
|
1656 |
60a9b2133cf1
(call_debugger): Take full care of extending stack limits
Richard M. Stallman <rms@gnu.org>
parents:
63697
diff
changeset
|
1657 if (SPECPDL_INDEX () + 40 > max_specpdl_size) |
60a9b2133cf1
(call_debugger): Take full care of extending stack limits
Richard M. Stallman <rms@gnu.org>
parents:
63697
diff
changeset
|
1658 max_specpdl_size = SPECPDL_INDEX () + 40; |
60a9b2133cf1
(call_debugger): Take full care of extending stack limits
Richard M. Stallman <rms@gnu.org>
parents:
63697
diff
changeset
|
1659 |
60a9b2133cf1
(call_debugger): Take full care of extending stack limits
Richard M. Stallman <rms@gnu.org>
parents:
63697
diff
changeset
|
1660 call2 (Vsignal_hook_function, error_symbol, data); |
60a9b2133cf1
(call_debugger): Take full care of extending stack limits
Richard M. Stallman <rms@gnu.org>
parents:
63697
diff
changeset
|
1661 } |
16355
1d85b2698564
(Vdebug_force): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
16296
diff
changeset
|
1662 |
18636
b3f3cd32fa70
(Fsignal, find_handler_clause): If ERROR_SYMBOL
Richard M. Stallman <rms@gnu.org>
parents:
18018
diff
changeset
|
1663 conditions = Fget (real_error_symbol, Qerror_conditions); |
272 | 1664 |
30073
ed8f34a43649
(Vsignaling_function): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30058
diff
changeset
|
1665 /* 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
|
1666 `signal' itself. If a frame for `error' follows, skip that, |
46315
67b681b7d3d9
(Fsignal): Don't call cancel_hourglass.
Richard M. Stallman <rms@gnu.org>
parents:
46293
diff
changeset
|
1667 too. Don't do this when ERROR_SYMBOL is nil, because that |
67b681b7d3d9
(Fsignal): Don't call cancel_hourglass.
Richard M. Stallman <rms@gnu.org>
parents:
46293
diff
changeset
|
1668 is a memory-full error. */ |
30106
bb87a284ee53
(Fsignal): Handle case that backtrace_list is null.
Gerd Moellmann <gerd@gnu.org>
parents:
30080
diff
changeset
|
1669 Vsignaling_function = Qnil; |
46315
67b681b7d3d9
(Fsignal): Don't call cancel_hourglass.
Richard M. Stallman <rms@gnu.org>
parents:
46293
diff
changeset
|
1670 if (backtrace_list && !NILP (error_symbol)) |
30106
bb87a284ee53
(Fsignal): Handle case that backtrace_list is null.
Gerd Moellmann <gerd@gnu.org>
parents:
30080
diff
changeset
|
1671 { |
bb87a284ee53
(Fsignal): Handle case that backtrace_list is null.
Gerd Moellmann <gerd@gnu.org>
parents:
30080
diff
changeset
|
1672 bp = backtrace_list->next; |
bb87a284ee53
(Fsignal): Handle case that backtrace_list is null.
Gerd Moellmann <gerd@gnu.org>
parents:
30080
diff
changeset
|
1673 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
|
1674 bp = bp->next; |
bb87a284ee53
(Fsignal): Handle case that backtrace_list is null.
Gerd Moellmann <gerd@gnu.org>
parents:
30080
diff
changeset
|
1675 if (bp && bp->function) |
bb87a284ee53
(Fsignal): Handle case that backtrace_list is null.
Gerd Moellmann <gerd@gnu.org>
parents:
30080
diff
changeset
|
1676 Vsignaling_function = *bp->function; |
bb87a284ee53
(Fsignal): Handle case that backtrace_list is null.
Gerd Moellmann <gerd@gnu.org>
parents:
30080
diff
changeset
|
1677 } |
30073
ed8f34a43649
(Vsignaling_function): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30058
diff
changeset
|
1678 |
272 | 1679 for (; handlerlist; handlerlist = handlerlist->next) |
1680 { | |
1681 register Lisp_Object clause; | |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49105
diff
changeset
|
1682 |
272 | 1683 clause = find_handler_clause (handlerlist->handler, conditions, |
81871
f533b796856e
(maybe_call_debugger): New function.
Richard M. Stallman <rms@gnu.org>
parents:
81858
diff
changeset
|
1684 error_symbol, data); |
272 | 1685 |
1686 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
|
1687 { |
13945
6a653c300631
(syms_of_eval): Doc fix for inhibit-quit.
Karl Heuer <kwzh@gnu.org>
parents:
13768
diff
changeset
|
1688 /* 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
|
1689 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
|
1690 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
|
1691 return Qnil; |
65e2edefe748
* eval.c (Fcondition_case): Rearranged for clarity. Don't worry
Jim Blandy <jimb@redhat.com>
parents:
940
diff
changeset
|
1692 else |
3973
ab06b106c490
(Fsignal): Clarify error message.
Richard M. Stallman <rms@gnu.org>
parents:
3703
diff
changeset
|
1693 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
|
1694 } |
272 | 1695 |
485 | 1696 if (!NILP (clause)) |
272 | 1697 { |
6132
ddf57829cf03
(Fsignal): If DATA is memory_signal_data, don't add to it.
Richard M. Stallman <rms@gnu.org>
parents:
5807
diff
changeset
|
1698 Lisp_Object unwind_data; |
272 | 1699 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
|
1700 |
272 | 1701 handlerlist = allhandlers; |
18636
b3f3cd32fa70
(Fsignal, find_handler_clause): If ERROR_SYMBOL
Richard M. Stallman <rms@gnu.org>
parents:
18018
diff
changeset
|
1702 |
b3f3cd32fa70
(Fsignal, find_handler_clause): If ERROR_SYMBOL
Richard M. Stallman <rms@gnu.org>
parents:
18018
diff
changeset
|
1703 if (NILP (error_symbol)) |
b3f3cd32fa70
(Fsignal, find_handler_clause): If ERROR_SYMBOL
Richard M. Stallman <rms@gnu.org>
parents:
18018
diff
changeset
|
1704 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
|
1705 else |
ddf57829cf03
(Fsignal): If DATA is memory_signal_data, don't add to it.
Richard M. Stallman <rms@gnu.org>
parents:
5807
diff
changeset
|
1706 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
|
1707 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
|
1708 unwind_to_catch (h->tag, unwind_data); |
272 | 1709 } |
1710 } | |
1711 | |
1712 handlerlist = allhandlers; | |
1713 /* If no handler is present now, try to run the debugger, | |
1714 and if that fails, throw to top level. */ | |
81871
f533b796856e
(maybe_call_debugger): New function.
Richard M. Stallman <rms@gnu.org>
parents:
81858
diff
changeset
|
1715 find_handler_clause (Qerror, conditions, error_symbol, data); |
16895
32945f27ed20
(Fsignal): Call fatal if no error handlers and no catch.
Richard M. Stallman <rms@gnu.org>
parents:
16485
diff
changeset
|
1716 if (catchlist != 0) |
32945f27ed20
(Fsignal): Call fatal if no error handlers and no catch.
Richard M. Stallman <rms@gnu.org>
parents:
16485
diff
changeset
|
1717 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
|
1718 |
18636
b3f3cd32fa70
(Fsignal, find_handler_clause): If ERROR_SYMBOL
Richard M. Stallman <rms@gnu.org>
parents:
18018
diff
changeset
|
1719 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
|
1720 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
|
1721 |
32945f27ed20
(Fsignal): Call fatal if no error handlers and no catch.
Richard M. Stallman <rms@gnu.org>
parents:
16485
diff
changeset
|
1722 string = Ferror_message_string (data); |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46315
diff
changeset
|
1723 fatal ("%s", SDATA (string), 0); |
272 | 1724 } |
1725 | |
71976
66a9a086ddbb
* eval.c (xsignal): New func. Like Fsignal, but marked no-return.
Kim F. Storm <storm@cua.dk>
parents:
71872
diff
changeset
|
1726 /* Internal version of Fsignal that never returns. |
66a9a086ddbb
* eval.c (xsignal): New func. Like Fsignal, but marked no-return.
Kim F. Storm <storm@cua.dk>
parents:
71872
diff
changeset
|
1727 Used for anything but Qquit (which can return from Fsignal). */ |
66a9a086ddbb
* eval.c (xsignal): New func. Like Fsignal, but marked no-return.
Kim F. Storm <storm@cua.dk>
parents:
71872
diff
changeset
|
1728 |
66a9a086ddbb
* eval.c (xsignal): New func. Like Fsignal, but marked no-return.
Kim F. Storm <storm@cua.dk>
parents:
71872
diff
changeset
|
1729 void |
66a9a086ddbb
* eval.c (xsignal): New func. Like Fsignal, but marked no-return.
Kim F. Storm <storm@cua.dk>
parents:
71872
diff
changeset
|
1730 xsignal (error_symbol, data) |
66a9a086ddbb
* eval.c (xsignal): New func. Like Fsignal, but marked no-return.
Kim F. Storm <storm@cua.dk>
parents:
71872
diff
changeset
|
1731 Lisp_Object error_symbol, data; |
66a9a086ddbb
* eval.c (xsignal): New func. Like Fsignal, but marked no-return.
Kim F. Storm <storm@cua.dk>
parents:
71872
diff
changeset
|
1732 { |
66a9a086ddbb
* eval.c (xsignal): New func. Like Fsignal, but marked no-return.
Kim F. Storm <storm@cua.dk>
parents:
71872
diff
changeset
|
1733 Fsignal (error_symbol, data); |
66a9a086ddbb
* eval.c (xsignal): New func. Like Fsignal, but marked no-return.
Kim F. Storm <storm@cua.dk>
parents:
71872
diff
changeset
|
1734 abort (); |
66a9a086ddbb
* eval.c (xsignal): New func. Like Fsignal, but marked no-return.
Kim F. Storm <storm@cua.dk>
parents:
71872
diff
changeset
|
1735 } |
66a9a086ddbb
* eval.c (xsignal): New func. Like Fsignal, but marked no-return.
Kim F. Storm <storm@cua.dk>
parents:
71872
diff
changeset
|
1736 |
66a9a086ddbb
* eval.c (xsignal): New func. Like Fsignal, but marked no-return.
Kim F. Storm <storm@cua.dk>
parents:
71872
diff
changeset
|
1737 /* Like xsignal, but takes 0, 1, 2, or 3 args instead of a list. */ |
66a9a086ddbb
* eval.c (xsignal): New func. Like Fsignal, but marked no-return.
Kim F. Storm <storm@cua.dk>
parents:
71872
diff
changeset
|
1738 |
66a9a086ddbb
* eval.c (xsignal): New func. Like Fsignal, but marked no-return.
Kim F. Storm <storm@cua.dk>
parents:
71872
diff
changeset
|
1739 void |
66a9a086ddbb
* eval.c (xsignal): New func. Like Fsignal, but marked no-return.
Kim F. Storm <storm@cua.dk>
parents:
71872
diff
changeset
|
1740 xsignal0 (error_symbol) |
66a9a086ddbb
* eval.c (xsignal): New func. Like Fsignal, but marked no-return.
Kim F. Storm <storm@cua.dk>
parents:
71872
diff
changeset
|
1741 Lisp_Object error_symbol; |
66a9a086ddbb
* eval.c (xsignal): New func. Like Fsignal, but marked no-return.
Kim F. Storm <storm@cua.dk>
parents:
71872
diff
changeset
|
1742 { |
66a9a086ddbb
* eval.c (xsignal): New func. Like Fsignal, but marked no-return.
Kim F. Storm <storm@cua.dk>
parents:
71872
diff
changeset
|
1743 xsignal (error_symbol, Qnil); |
66a9a086ddbb
* eval.c (xsignal): New func. Like Fsignal, but marked no-return.
Kim F. Storm <storm@cua.dk>
parents:
71872
diff
changeset
|
1744 } |
66a9a086ddbb
* eval.c (xsignal): New func. Like Fsignal, but marked no-return.
Kim F. Storm <storm@cua.dk>
parents:
71872
diff
changeset
|
1745 |
66a9a086ddbb
* eval.c (xsignal): New func. Like Fsignal, but marked no-return.
Kim F. Storm <storm@cua.dk>
parents:
71872
diff
changeset
|
1746 void |
66a9a086ddbb
* eval.c (xsignal): New func. Like Fsignal, but marked no-return.
Kim F. Storm <storm@cua.dk>
parents:
71872
diff
changeset
|
1747 xsignal1 (error_symbol, arg) |
66a9a086ddbb
* eval.c (xsignal): New func. Like Fsignal, but marked no-return.
Kim F. Storm <storm@cua.dk>
parents:
71872
diff
changeset
|
1748 Lisp_Object error_symbol, arg; |
66a9a086ddbb
* eval.c (xsignal): New func. Like Fsignal, but marked no-return.
Kim F. Storm <storm@cua.dk>
parents:
71872
diff
changeset
|
1749 { |
66a9a086ddbb
* eval.c (xsignal): New func. Like Fsignal, but marked no-return.
Kim F. Storm <storm@cua.dk>
parents:
71872
diff
changeset
|
1750 xsignal (error_symbol, list1 (arg)); |
66a9a086ddbb
* eval.c (xsignal): New func. Like Fsignal, but marked no-return.
Kim F. Storm <storm@cua.dk>
parents:
71872
diff
changeset
|
1751 } |
66a9a086ddbb
* eval.c (xsignal): New func. Like Fsignal, but marked no-return.
Kim F. Storm <storm@cua.dk>
parents:
71872
diff
changeset
|
1752 |
66a9a086ddbb
* eval.c (xsignal): New func. Like Fsignal, but marked no-return.
Kim F. Storm <storm@cua.dk>
parents:
71872
diff
changeset
|
1753 void |
66a9a086ddbb
* eval.c (xsignal): New func. Like Fsignal, but marked no-return.
Kim F. Storm <storm@cua.dk>
parents:
71872
diff
changeset
|
1754 xsignal2 (error_symbol, arg1, arg2) |
66a9a086ddbb
* eval.c (xsignal): New func. Like Fsignal, but marked no-return.
Kim F. Storm <storm@cua.dk>
parents:
71872
diff
changeset
|
1755 Lisp_Object error_symbol, arg1, arg2; |
66a9a086ddbb
* eval.c (xsignal): New func. Like Fsignal, but marked no-return.
Kim F. Storm <storm@cua.dk>
parents:
71872
diff
changeset
|
1756 { |
66a9a086ddbb
* eval.c (xsignal): New func. Like Fsignal, but marked no-return.
Kim F. Storm <storm@cua.dk>
parents:
71872
diff
changeset
|
1757 xsignal (error_symbol, list2 (arg1, arg2)); |
66a9a086ddbb
* eval.c (xsignal): New func. Like Fsignal, but marked no-return.
Kim F. Storm <storm@cua.dk>
parents:
71872
diff
changeset
|
1758 } |
66a9a086ddbb
* eval.c (xsignal): New func. Like Fsignal, but marked no-return.
Kim F. Storm <storm@cua.dk>
parents:
71872
diff
changeset
|
1759 |
66a9a086ddbb
* eval.c (xsignal): New func. Like Fsignal, but marked no-return.
Kim F. Storm <storm@cua.dk>
parents:
71872
diff
changeset
|
1760 void |
66a9a086ddbb
* eval.c (xsignal): New func. Like Fsignal, but marked no-return.
Kim F. Storm <storm@cua.dk>
parents:
71872
diff
changeset
|
1761 xsignal3 (error_symbol, arg1, arg2, arg3) |
66a9a086ddbb
* eval.c (xsignal): New func. Like Fsignal, but marked no-return.
Kim F. Storm <storm@cua.dk>
parents:
71872
diff
changeset
|
1762 Lisp_Object error_symbol, arg1, arg2, arg3; |
66a9a086ddbb
* eval.c (xsignal): New func. Like Fsignal, but marked no-return.
Kim F. Storm <storm@cua.dk>
parents:
71872
diff
changeset
|
1763 { |
66a9a086ddbb
* eval.c (xsignal): New func. Like Fsignal, but marked no-return.
Kim F. Storm <storm@cua.dk>
parents:
71872
diff
changeset
|
1764 xsignal (error_symbol, list3 (arg1, arg2, arg3)); |
66a9a086ddbb
* eval.c (xsignal): New func. Like Fsignal, but marked no-return.
Kim F. Storm <storm@cua.dk>
parents:
71872
diff
changeset
|
1765 } |
66a9a086ddbb
* eval.c (xsignal): New func. Like Fsignal, but marked no-return.
Kim F. Storm <storm@cua.dk>
parents:
71872
diff
changeset
|
1766 |
66a9a086ddbb
* eval.c (xsignal): New func. Like Fsignal, but marked no-return.
Kim F. Storm <storm@cua.dk>
parents:
71872
diff
changeset
|
1767 /* Signal `error' with message S, and additional arg ARG. |
66a9a086ddbb
* eval.c (xsignal): New func. Like Fsignal, but marked no-return.
Kim F. Storm <storm@cua.dk>
parents:
71872
diff
changeset
|
1768 If ARG is not a genuine list, make it a one-element list. */ |
66a9a086ddbb
* eval.c (xsignal): New func. Like Fsignal, but marked no-return.
Kim F. Storm <storm@cua.dk>
parents:
71872
diff
changeset
|
1769 |
66a9a086ddbb
* eval.c (xsignal): New func. Like Fsignal, but marked no-return.
Kim F. Storm <storm@cua.dk>
parents:
71872
diff
changeset
|
1770 void |
66a9a086ddbb
* eval.c (xsignal): New func. Like Fsignal, but marked no-return.
Kim F. Storm <storm@cua.dk>
parents:
71872
diff
changeset
|
1771 signal_error (s, arg) |
66a9a086ddbb
* eval.c (xsignal): New func. Like Fsignal, but marked no-return.
Kim F. Storm <storm@cua.dk>
parents:
71872
diff
changeset
|
1772 char *s; |
66a9a086ddbb
* eval.c (xsignal): New func. Like Fsignal, but marked no-return.
Kim F. Storm <storm@cua.dk>
parents:
71872
diff
changeset
|
1773 Lisp_Object arg; |
66a9a086ddbb
* eval.c (xsignal): New func. Like Fsignal, but marked no-return.
Kim F. Storm <storm@cua.dk>
parents:
71872
diff
changeset
|
1774 { |
66a9a086ddbb
* eval.c (xsignal): New func. Like Fsignal, but marked no-return.
Kim F. Storm <storm@cua.dk>
parents:
71872
diff
changeset
|
1775 Lisp_Object tortoise, hare; |
66a9a086ddbb
* eval.c (xsignal): New func. Like Fsignal, but marked no-return.
Kim F. Storm <storm@cua.dk>
parents:
71872
diff
changeset
|
1776 |
66a9a086ddbb
* eval.c (xsignal): New func. Like Fsignal, but marked no-return.
Kim F. Storm <storm@cua.dk>
parents:
71872
diff
changeset
|
1777 hare = tortoise = arg; |
66a9a086ddbb
* eval.c (xsignal): New func. Like Fsignal, but marked no-return.
Kim F. Storm <storm@cua.dk>
parents:
71872
diff
changeset
|
1778 while (CONSP (hare)) |
66a9a086ddbb
* eval.c (xsignal): New func. Like Fsignal, but marked no-return.
Kim F. Storm <storm@cua.dk>
parents:
71872
diff
changeset
|
1779 { |
66a9a086ddbb
* eval.c (xsignal): New func. Like Fsignal, but marked no-return.
Kim F. Storm <storm@cua.dk>
parents:
71872
diff
changeset
|
1780 hare = XCDR (hare); |
66a9a086ddbb
* eval.c (xsignal): New func. Like Fsignal, but marked no-return.
Kim F. Storm <storm@cua.dk>
parents:
71872
diff
changeset
|
1781 if (!CONSP (hare)) |
66a9a086ddbb
* eval.c (xsignal): New func. Like Fsignal, but marked no-return.
Kim F. Storm <storm@cua.dk>
parents:
71872
diff
changeset
|
1782 break; |
66a9a086ddbb
* eval.c (xsignal): New func. Like Fsignal, but marked no-return.
Kim F. Storm <storm@cua.dk>
parents:
71872
diff
changeset
|
1783 |
66a9a086ddbb
* eval.c (xsignal): New func. Like Fsignal, but marked no-return.
Kim F. Storm <storm@cua.dk>
parents:
71872
diff
changeset
|
1784 hare = XCDR (hare); |
66a9a086ddbb
* eval.c (xsignal): New func. Like Fsignal, but marked no-return.
Kim F. Storm <storm@cua.dk>
parents:
71872
diff
changeset
|
1785 tortoise = XCDR (tortoise); |
66a9a086ddbb
* eval.c (xsignal): New func. Like Fsignal, but marked no-return.
Kim F. Storm <storm@cua.dk>
parents:
71872
diff
changeset
|
1786 |
66a9a086ddbb
* eval.c (xsignal): New func. Like Fsignal, but marked no-return.
Kim F. Storm <storm@cua.dk>
parents:
71872
diff
changeset
|
1787 if (EQ (hare, tortoise)) |
66a9a086ddbb
* eval.c (xsignal): New func. Like Fsignal, but marked no-return.
Kim F. Storm <storm@cua.dk>
parents:
71872
diff
changeset
|
1788 break; |
66a9a086ddbb
* eval.c (xsignal): New func. Like Fsignal, but marked no-return.
Kim F. Storm <storm@cua.dk>
parents:
71872
diff
changeset
|
1789 } |
66a9a086ddbb
* eval.c (xsignal): New func. Like Fsignal, but marked no-return.
Kim F. Storm <storm@cua.dk>
parents:
71872
diff
changeset
|
1790 |
66a9a086ddbb
* eval.c (xsignal): New func. Like Fsignal, but marked no-return.
Kim F. Storm <storm@cua.dk>
parents:
71872
diff
changeset
|
1791 if (!NILP (hare)) |
66a9a086ddbb
* eval.c (xsignal): New func. Like Fsignal, but marked no-return.
Kim F. Storm <storm@cua.dk>
parents:
71872
diff
changeset
|
1792 arg = Fcons (arg, Qnil); /* Make it a list. */ |
66a9a086ddbb
* eval.c (xsignal): New func. Like Fsignal, but marked no-return.
Kim F. Storm <storm@cua.dk>
parents:
71872
diff
changeset
|
1793 |
66a9a086ddbb
* eval.c (xsignal): New func. Like Fsignal, but marked no-return.
Kim F. Storm <storm@cua.dk>
parents:
71872
diff
changeset
|
1794 xsignal (Qerror, Fcons (build_string (s), arg)); |
66a9a086ddbb
* eval.c (xsignal): New func. Like Fsignal, but marked no-return.
Kim F. Storm <storm@cua.dk>
parents:
71872
diff
changeset
|
1795 } |
66a9a086ddbb
* eval.c (xsignal): New func. Like Fsignal, but marked no-return.
Kim F. Storm <storm@cua.dk>
parents:
71872
diff
changeset
|
1796 |
66a9a086ddbb
* eval.c (xsignal): New func. Like Fsignal, but marked no-return.
Kim F. Storm <storm@cua.dk>
parents:
71872
diff
changeset
|
1797 |
78501 | 1798 /* Return nonzero if LIST is a non-nil atom or |
684 | 1799 a list containing one of CONDITIONS. */ |
1800 | |
1801 static int | |
1802 wants_debugger (list, conditions) | |
1803 Lisp_Object list, conditions; | |
1804 { | |
706
86cb5db0b6c3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
687
diff
changeset
|
1805 if (NILP (list)) |
684 | 1806 return 0; |
1807 if (! CONSP (list)) | |
1808 return 1; | |
1809 | |
878
5b1c5b4286e7
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
863
diff
changeset
|
1810 while (CONSP (conditions)) |
684 | 1811 { |
878
5b1c5b4286e7
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
863
diff
changeset
|
1812 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
|
1813 this = XCAR (conditions); |
0a7261c1d487
Use XCAR, XCDR, and XFLOAT_DATA instead of explicit member access.
Ken Raeburn <raeburn@raeburn.org>
parents:
25314
diff
changeset
|
1814 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
|
1815 if (EQ (XCAR (tail), this)) |
684 | 1816 return 1; |
25662
0a7261c1d487
Use XCAR, XCDR, and XFLOAT_DATA instead of explicit member access.
Ken Raeburn <raeburn@raeburn.org>
parents:
25314
diff
changeset
|
1817 conditions = XCDR (conditions); |
684 | 1818 } |
878
5b1c5b4286e7
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
863
diff
changeset
|
1819 return 0; |
684 | 1820 } |
1821 | |
13768 | 1822 /* Return 1 if an error with condition-symbols CONDITIONS, |
1823 and described by SIGNAL-DATA, should skip the debugger | |
40661
2677a5e901f8
(debugger_may_continue, Vdebug_ignored_errors, call_debugger,
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
1824 according to debugger-ignored-errors. */ |
13768 | 1825 |
1826 static int | |
1827 skip_debugger (conditions, data) | |
1828 Lisp_Object conditions, data; | |
1829 { | |
1830 Lisp_Object tail; | |
1831 int first_string = 1; | |
1832 Lisp_Object error_message; | |
1833 | |
32657
a0c4d9cbadcd
(skip_debugger): Prevent a compiler warning.
Gerd Moellmann <gerd@gnu.org>
parents:
32066
diff
changeset
|
1834 error_message = Qnil; |
a0c4d9cbadcd
(skip_debugger): Prevent a compiler warning.
Gerd Moellmann <gerd@gnu.org>
parents:
32066
diff
changeset
|
1835 for (tail = Vdebug_ignored_errors; CONSP (tail); tail = XCDR (tail)) |
13768 | 1836 { |
25662
0a7261c1d487
Use XCAR, XCDR, and XFLOAT_DATA instead of explicit member access.
Ken Raeburn <raeburn@raeburn.org>
parents:
25314
diff
changeset
|
1837 if (STRINGP (XCAR (tail))) |
13768 | 1838 { |
1839 if (first_string) | |
1840 { | |
1841 error_message = Ferror_message_string (data); | |
1842 first_string = 0; | |
1843 } | |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49105
diff
changeset
|
1844 |
25662
0a7261c1d487
Use XCAR, XCDR, and XFLOAT_DATA instead of explicit member access.
Ken Raeburn <raeburn@raeburn.org>
parents:
25314
diff
changeset
|
1845 if (fast_string_match (XCAR (tail), error_message) >= 0) |
13768 | 1846 return 1; |
1847 } | |
1848 else | |
1849 { | |
1850 Lisp_Object contail; | |
1851 | |
32657
a0c4d9cbadcd
(skip_debugger): Prevent a compiler warning.
Gerd Moellmann <gerd@gnu.org>
parents:
32066
diff
changeset
|
1852 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
|
1853 if (EQ (XCAR (tail), XCAR (contail))) |
13768 | 1854 return 1; |
1855 } | |
1856 } | |
1857 | |
1858 return 0; | |
1859 } | |
1860 | |
684 | 1861 /* 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
|
1862 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
|
1863 = 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
|
1864 = 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
|
1865 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
|
1866 |
63767
60a9b2133cf1
(call_debugger): Take full care of extending stack limits
Richard M. Stallman <rms@gnu.org>
parents:
63697
diff
changeset
|
1867 We need to increase max_specpdl_size temporarily around |
60a9b2133cf1
(call_debugger): Take full care of extending stack limits
Richard M. Stallman <rms@gnu.org>
parents:
63697
diff
changeset
|
1868 anything we do that can push on the specpdl, so as not to get |
60a9b2133cf1
(call_debugger): Take full care of extending stack limits
Richard M. Stallman <rms@gnu.org>
parents:
63697
diff
changeset
|
1869 a second error here in case we're handling specpdl overflow. */ |
272 | 1870 |
1871 static Lisp_Object | |
81871
f533b796856e
(maybe_call_debugger): New function.
Richard M. Stallman <rms@gnu.org>
parents:
81858
diff
changeset
|
1872 find_handler_clause (handlers, conditions, sig, data) |
272 | 1873 Lisp_Object handlers, conditions, sig, data; |
1874 { | |
1875 register Lisp_Object h; | |
1876 register Lisp_Object tem; | |
81871
f533b796856e
(maybe_call_debugger): New function.
Richard M. Stallman <rms@gnu.org>
parents:
81858
diff
changeset
|
1877 int debugger_called = 0; |
f533b796856e
(maybe_call_debugger): New function.
Richard M. Stallman <rms@gnu.org>
parents:
81858
diff
changeset
|
1878 int debugger_considered = 0; |
f533b796856e
(maybe_call_debugger): New function.
Richard M. Stallman <rms@gnu.org>
parents:
81858
diff
changeset
|
1879 |
f533b796856e
(maybe_call_debugger): New function.
Richard M. Stallman <rms@gnu.org>
parents:
81858
diff
changeset
|
1880 /* t is used by handlers for all conditions, set up by C code. */ |
f533b796856e
(maybe_call_debugger): New function.
Richard M. Stallman <rms@gnu.org>
parents:
81858
diff
changeset
|
1881 if (EQ (handlers, Qt)) |
272 | 1882 return Qt; |
81871
f533b796856e
(maybe_call_debugger): New function.
Richard M. Stallman <rms@gnu.org>
parents:
81858
diff
changeset
|
1883 |
f533b796856e
(maybe_call_debugger): New function.
Richard M. Stallman <rms@gnu.org>
parents:
81858
diff
changeset
|
1884 /* Don't run the debugger for a memory-full error. |
f533b796856e
(maybe_call_debugger): New function.
Richard M. Stallman <rms@gnu.org>
parents:
81858
diff
changeset
|
1885 (There is no room in memory to do that!) */ |
f533b796856e
(maybe_call_debugger): New function.
Richard M. Stallman <rms@gnu.org>
parents:
81858
diff
changeset
|
1886 if (NILP (sig)) |
f533b796856e
(maybe_call_debugger): New function.
Richard M. Stallman <rms@gnu.org>
parents:
81858
diff
changeset
|
1887 debugger_considered = 1; |
f533b796856e
(maybe_call_debugger): New function.
Richard M. Stallman <rms@gnu.org>
parents:
81858
diff
changeset
|
1888 |
16355
1d85b2698564
(Vdebug_force): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
16296
diff
changeset
|
1889 /* 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
|
1890 and run the debugger if that is enabled. */ |
1d85b2698564
(Vdebug_force): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
16296
diff
changeset
|
1891 if (EQ (handlers, Qerror) |
16443
0128b923d281
(Vdebug_on_signal): Renamed from Vdebug_force.
Richard M. Stallman <rms@gnu.org>
parents:
16355
diff
changeset
|
1892 || !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
|
1893 there is a handler. */ |
272 | 1894 { |
81871
f533b796856e
(maybe_call_debugger): New function.
Richard M. Stallman <rms@gnu.org>
parents:
81858
diff
changeset
|
1895 if (!NILP (sig) && 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
|
1896 { |
63767
60a9b2133cf1
(call_debugger): Take full care of extending stack limits
Richard M. Stallman <rms@gnu.org>
parents:
63697
diff
changeset
|
1897 max_specpdl_size++; |
81871
f533b796856e
(maybe_call_debugger): New function.
Richard M. Stallman <rms@gnu.org>
parents:
81858
diff
changeset
|
1898 #ifdef PROTOTYPES |
21853
6e93713b7d30
(find_handler_clause): Cast Fbacktrace to proper type.
Richard M. Stallman <rms@gnu.org>
parents:
21699
diff
changeset
|
1899 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
|
1900 (Lisp_Object (*) (Lisp_Object)) Fbacktrace, |
6e93713b7d30
(find_handler_clause): Cast Fbacktrace to proper type.
Richard M. Stallman <rms@gnu.org>
parents:
21699
diff
changeset
|
1901 Qnil); |
81871
f533b796856e
(maybe_call_debugger): New function.
Richard M. Stallman <rms@gnu.org>
parents:
81858
diff
changeset
|
1902 #else |
21853
6e93713b7d30
(find_handler_clause): Cast Fbacktrace to proper type.
Richard M. Stallman <rms@gnu.org>
parents:
21699
diff
changeset
|
1903 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
|
1904 Fbacktrace, Qnil); |
81871
f533b796856e
(maybe_call_debugger): New function.
Richard M. Stallman <rms@gnu.org>
parents:
81858
diff
changeset
|
1905 #endif |
63767
60a9b2133cf1
(call_debugger): Take full care of extending stack limits
Richard M. Stallman <rms@gnu.org>
parents:
63697
diff
changeset
|
1906 max_specpdl_size--; |
21853
6e93713b7d30
(find_handler_clause): Cast Fbacktrace to proper type.
Richard M. Stallman <rms@gnu.org>
parents:
21699
diff
changeset
|
1907 } |
81871
f533b796856e
(maybe_call_debugger): New function.
Richard M. Stallman <rms@gnu.org>
parents:
81858
diff
changeset
|
1908 |
f533b796856e
(maybe_call_debugger): New function.
Richard M. Stallman <rms@gnu.org>
parents:
81858
diff
changeset
|
1909 if (!debugger_considered) |
272 | 1910 { |
81871
f533b796856e
(maybe_call_debugger): New function.
Richard M. Stallman <rms@gnu.org>
parents:
81858
diff
changeset
|
1911 debugger_considered = 1; |
f533b796856e
(maybe_call_debugger): New function.
Richard M. Stallman <rms@gnu.org>
parents:
81858
diff
changeset
|
1912 debugger_called = maybe_call_debugger (conditions, sig, data); |
272 | 1913 } |
81871
f533b796856e
(maybe_call_debugger): New function.
Richard M. Stallman <rms@gnu.org>
parents:
81858
diff
changeset
|
1914 |
16355
1d85b2698564
(Vdebug_force): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
16296
diff
changeset
|
1915 /* 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
|
1916 if (EQ (handlers, Qerror)) |
1d85b2698564
(Vdebug_force): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
16296
diff
changeset
|
1917 { |
1d85b2698564
(Vdebug_force): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
16296
diff
changeset
|
1918 if (debugger_called) |
63767
60a9b2133cf1
(call_debugger): Take full care of extending stack limits
Richard M. Stallman <rms@gnu.org>
parents:
63697
diff
changeset
|
1919 return Qlambda; |
16355
1d85b2698564
(Vdebug_force): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
16296
diff
changeset
|
1920 return Qt; |
1d85b2698564
(Vdebug_force): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
16296
diff
changeset
|
1921 } |
272 | 1922 } |
81871
f533b796856e
(maybe_call_debugger): New function.
Richard M. Stallman <rms@gnu.org>
parents:
81858
diff
changeset
|
1923 |
272 | 1924 for (h = handlers; CONSP (h); h = Fcdr (h)) |
1925 { | |
5563
50ada322de3e
(Fcondition_case): Allow a list of condition names in a handler.
Richard M. Stallman <rms@gnu.org>
parents:
5254
diff
changeset
|
1926 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
|
1927 |
50ada322de3e
(Fcondition_case): Allow a list of condition names in a handler.
Richard M. Stallman <rms@gnu.org>
parents:
5254
diff
changeset
|
1928 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
|
1929 if (!CONSP (handler)) |
272 | 1930 continue; |
5563
50ada322de3e
(Fcondition_case): Allow a list of condition names in a handler.
Richard M. Stallman <rms@gnu.org>
parents:
5254
diff
changeset
|
1931 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
|
1932 /* 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
|
1933 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
|
1934 { |
50ada322de3e
(Fcondition_case): Allow a list of condition names in a handler.
Richard M. Stallman <rms@gnu.org>
parents:
5254
diff
changeset
|
1935 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
|
1936 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
|
1937 return handler; |
50ada322de3e
(Fcondition_case): Allow a list of condition names in a handler.
Richard M. Stallman <rms@gnu.org>
parents:
5254
diff
changeset
|
1938 } |
50ada322de3e
(Fcondition_case): Allow a list of condition names in a handler.
Richard M. Stallman <rms@gnu.org>
parents:
5254
diff
changeset
|
1939 /* 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
|
1940 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
|
1941 { |
81871
f533b796856e
(maybe_call_debugger): New function.
Richard M. Stallman <rms@gnu.org>
parents:
81858
diff
changeset
|
1942 Lisp_Object tail; |
f533b796856e
(maybe_call_debugger): New function.
Richard M. Stallman <rms@gnu.org>
parents:
81858
diff
changeset
|
1943 for (tail = condit; CONSP (tail); tail = XCDR (tail)) |
5563
50ada322de3e
(Fcondition_case): Allow a list of condition names in a handler.
Richard M. Stallman <rms@gnu.org>
parents:
5254
diff
changeset
|
1944 { |
81871
f533b796856e
(maybe_call_debugger): New function.
Richard M. Stallman <rms@gnu.org>
parents:
81858
diff
changeset
|
1945 tem = Fmemq (Fcar (tail), conditions); |
5563
50ada322de3e
(Fcondition_case): Allow a list of condition names in a handler.
Richard M. Stallman <rms@gnu.org>
parents:
5254
diff
changeset
|
1946 if (!NILP (tem)) |
81871
f533b796856e
(maybe_call_debugger): New function.
Richard M. Stallman <rms@gnu.org>
parents:
81858
diff
changeset
|
1947 { |
f533b796856e
(maybe_call_debugger): New function.
Richard M. Stallman <rms@gnu.org>
parents:
81858
diff
changeset
|
1948 /* This handler is going to apply. |
f533b796856e
(maybe_call_debugger): New function.
Richard M. Stallman <rms@gnu.org>
parents:
81858
diff
changeset
|
1949 Does it allow the debugger to run first? */ |
f533b796856e
(maybe_call_debugger): New function.
Richard M. Stallman <rms@gnu.org>
parents:
81858
diff
changeset
|
1950 if (! debugger_considered && !NILP (Fmemq (Qdebug, condit))) |
f533b796856e
(maybe_call_debugger): New function.
Richard M. Stallman <rms@gnu.org>
parents:
81858
diff
changeset
|
1951 maybe_call_debugger (conditions, sig, data); |
f533b796856e
(maybe_call_debugger): New function.
Richard M. Stallman <rms@gnu.org>
parents:
81858
diff
changeset
|
1952 return handler; |
f533b796856e
(maybe_call_debugger): New function.
Richard M. Stallman <rms@gnu.org>
parents:
81858
diff
changeset
|
1953 } |
5563
50ada322de3e
(Fcondition_case): Allow a list of condition names in a handler.
Richard M. Stallman <rms@gnu.org>
parents:
5254
diff
changeset
|
1954 } |
50ada322de3e
(Fcondition_case): Allow a list of condition names in a handler.
Richard M. Stallman <rms@gnu.org>
parents:
5254
diff
changeset
|
1955 } |
272 | 1956 } |
81871
f533b796856e
(maybe_call_debugger): New function.
Richard M. Stallman <rms@gnu.org>
parents:
81858
diff
changeset
|
1957 |
272 | 1958 return Qnil; |
1959 } | |
1960 | |
81871
f533b796856e
(maybe_call_debugger): New function.
Richard M. Stallman <rms@gnu.org>
parents:
81858
diff
changeset
|
1961 /* Call the debugger if calling it is currently enabled for CONDITIONS. |
f533b796856e
(maybe_call_debugger): New function.
Richard M. Stallman <rms@gnu.org>
parents:
81858
diff
changeset
|
1962 SIG and DATA describe the signal, as in find_handler_clause. */ |
f533b796856e
(maybe_call_debugger): New function.
Richard M. Stallman <rms@gnu.org>
parents:
81858
diff
changeset
|
1963 |
f533b796856e
(maybe_call_debugger): New function.
Richard M. Stallman <rms@gnu.org>
parents:
81858
diff
changeset
|
1964 int |
f533b796856e
(maybe_call_debugger): New function.
Richard M. Stallman <rms@gnu.org>
parents:
81858
diff
changeset
|
1965 maybe_call_debugger (conditions, sig, data) |
f533b796856e
(maybe_call_debugger): New function.
Richard M. Stallman <rms@gnu.org>
parents:
81858
diff
changeset
|
1966 Lisp_Object conditions, sig, data; |
f533b796856e
(maybe_call_debugger): New function.
Richard M. Stallman <rms@gnu.org>
parents:
81858
diff
changeset
|
1967 { |
f533b796856e
(maybe_call_debugger): New function.
Richard M. Stallman <rms@gnu.org>
parents:
81858
diff
changeset
|
1968 Lisp_Object combined_data; |
f533b796856e
(maybe_call_debugger): New function.
Richard M. Stallman <rms@gnu.org>
parents:
81858
diff
changeset
|
1969 |
f533b796856e
(maybe_call_debugger): New function.
Richard M. Stallman <rms@gnu.org>
parents:
81858
diff
changeset
|
1970 combined_data = Fcons (sig, data); |
f533b796856e
(maybe_call_debugger): New function.
Richard M. Stallman <rms@gnu.org>
parents:
81858
diff
changeset
|
1971 |
f533b796856e
(maybe_call_debugger): New function.
Richard M. Stallman <rms@gnu.org>
parents:
81858
diff
changeset
|
1972 if ( |
f533b796856e
(maybe_call_debugger): New function.
Richard M. Stallman <rms@gnu.org>
parents:
81858
diff
changeset
|
1973 /* Don't try to run the debugger with interrupts blocked. |
f533b796856e
(maybe_call_debugger): New function.
Richard M. Stallman <rms@gnu.org>
parents:
81858
diff
changeset
|
1974 The editing loop would return anyway. */ |
f533b796856e
(maybe_call_debugger): New function.
Richard M. Stallman <rms@gnu.org>
parents:
81858
diff
changeset
|
1975 ! INPUT_BLOCKED_P |
f533b796856e
(maybe_call_debugger): New function.
Richard M. Stallman <rms@gnu.org>
parents:
81858
diff
changeset
|
1976 /* Does user wants to enter debugger for this kind of error? */ |
f533b796856e
(maybe_call_debugger): New function.
Richard M. Stallman <rms@gnu.org>
parents:
81858
diff
changeset
|
1977 && (EQ (sig, Qquit) |
f533b796856e
(maybe_call_debugger): New function.
Richard M. Stallman <rms@gnu.org>
parents:
81858
diff
changeset
|
1978 ? debug_on_quit |
f533b796856e
(maybe_call_debugger): New function.
Richard M. Stallman <rms@gnu.org>
parents:
81858
diff
changeset
|
1979 : wants_debugger (Vdebug_on_error, conditions)) |
f533b796856e
(maybe_call_debugger): New function.
Richard M. Stallman <rms@gnu.org>
parents:
81858
diff
changeset
|
1980 && ! skip_debugger (conditions, combined_data) |
f533b796856e
(maybe_call_debugger): New function.
Richard M. Stallman <rms@gnu.org>
parents:
81858
diff
changeset
|
1981 /* rms: what's this for? */ |
f533b796856e
(maybe_call_debugger): New function.
Richard M. Stallman <rms@gnu.org>
parents:
81858
diff
changeset
|
1982 && when_entered_debugger < num_nonmacro_input_events) |
f533b796856e
(maybe_call_debugger): New function.
Richard M. Stallman <rms@gnu.org>
parents:
81858
diff
changeset
|
1983 { |
f533b796856e
(maybe_call_debugger): New function.
Richard M. Stallman <rms@gnu.org>
parents:
81858
diff
changeset
|
1984 call_debugger (Fcons (Qerror, Fcons (combined_data, Qnil))); |
f533b796856e
(maybe_call_debugger): New function.
Richard M. Stallman <rms@gnu.org>
parents:
81858
diff
changeset
|
1985 return 1; |
f533b796856e
(maybe_call_debugger): New function.
Richard M. Stallman <rms@gnu.org>
parents:
81858
diff
changeset
|
1986 } |
f533b796856e
(maybe_call_debugger): New function.
Richard M. Stallman <rms@gnu.org>
parents:
81858
diff
changeset
|
1987 |
f533b796856e
(maybe_call_debugger): New function.
Richard M. Stallman <rms@gnu.org>
parents:
81858
diff
changeset
|
1988 return 0; |
f533b796856e
(maybe_call_debugger): New function.
Richard M. Stallman <rms@gnu.org>
parents:
81858
diff
changeset
|
1989 } |
f533b796856e
(maybe_call_debugger): New function.
Richard M. Stallman <rms@gnu.org>
parents:
81858
diff
changeset
|
1990 |
272 | 1991 /* dump an error message; called like printf */ |
1992 | |
1993 /* VARARGS 1 */ | |
1994 void | |
1995 error (m, a1, a2, a3) | |
1996 char *m; | |
6225
8f92cf89ed7c
(error): Use doprnt. Make buffer larger as necessary.
Richard M. Stallman <rms@gnu.org>
parents:
6132
diff
changeset
|
1997 char *a1, *a2, *a3; |
272 | 1998 { |
1999 char buf[200]; | |
6225
8f92cf89ed7c
(error): Use doprnt. Make buffer larger as necessary.
Richard M. Stallman <rms@gnu.org>
parents:
6132
diff
changeset
|
2000 int size = 200; |
8f92cf89ed7c
(error): Use doprnt. Make buffer larger as necessary.
Richard M. Stallman <rms@gnu.org>
parents:
6132
diff
changeset
|
2001 int mlen; |
8f92cf89ed7c
(error): Use doprnt. Make buffer larger as necessary.
Richard M. Stallman <rms@gnu.org>
parents:
6132
diff
changeset
|
2002 char *buffer = buf; |
8f92cf89ed7c
(error): Use doprnt. Make buffer larger as necessary.
Richard M. Stallman <rms@gnu.org>
parents:
6132
diff
changeset
|
2003 char *args[3]; |
8f92cf89ed7c
(error): Use doprnt. Make buffer larger as necessary.
Richard M. Stallman <rms@gnu.org>
parents:
6132
diff
changeset
|
2004 int allocated = 0; |
8f92cf89ed7c
(error): Use doprnt. Make buffer larger as necessary.
Richard M. Stallman <rms@gnu.org>
parents:
6132
diff
changeset
|
2005 Lisp_Object string; |
8f92cf89ed7c
(error): Use doprnt. Make buffer larger as necessary.
Richard M. Stallman <rms@gnu.org>
parents:
6132
diff
changeset
|
2006 |
8f92cf89ed7c
(error): Use doprnt. Make buffer larger as necessary.
Richard M. Stallman <rms@gnu.org>
parents:
6132
diff
changeset
|
2007 args[0] = a1; |
8f92cf89ed7c
(error): Use doprnt. Make buffer larger as necessary.
Richard M. Stallman <rms@gnu.org>
parents:
6132
diff
changeset
|
2008 args[1] = a2; |
8f92cf89ed7c
(error): Use doprnt. Make buffer larger as necessary.
Richard M. Stallman <rms@gnu.org>
parents:
6132
diff
changeset
|
2009 args[2] = a3; |
8f92cf89ed7c
(error): Use doprnt. Make buffer larger as necessary.
Richard M. Stallman <rms@gnu.org>
parents:
6132
diff
changeset
|
2010 |
8f92cf89ed7c
(error): Use doprnt. Make buffer larger as necessary.
Richard M. Stallman <rms@gnu.org>
parents:
6132
diff
changeset
|
2011 mlen = strlen (m); |
272 | 2012 |
2013 while (1) | |
6225
8f92cf89ed7c
(error): Use doprnt. Make buffer larger as necessary.
Richard M. Stallman <rms@gnu.org>
parents:
6132
diff
changeset
|
2014 { |
23206
a9090a71e969
(error): After enlarging buffer, write to it, not to buf.
Karl Heuer <kwzh@gnu.org>
parents:
21853
diff
changeset
|
2015 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
|
2016 if (used < size) |
8f92cf89ed7c
(error): Use doprnt. Make buffer larger as necessary.
Richard M. Stallman <rms@gnu.org>
parents:
6132
diff
changeset
|
2017 break; |
8f92cf89ed7c
(error): Use doprnt. Make buffer larger as necessary.
Richard M. Stallman <rms@gnu.org>
parents:
6132
diff
changeset
|
2018 size *= 2; |
8f92cf89ed7c
(error): Use doprnt. Make buffer larger as necessary.
Richard M. Stallman <rms@gnu.org>
parents:
6132
diff
changeset
|
2019 if (allocated) |
8f92cf89ed7c
(error): Use doprnt. Make buffer larger as necessary.
Richard M. Stallman <rms@gnu.org>
parents:
6132
diff
changeset
|
2020 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
|
2021 else |
334cececa42d
(error): Fix logic in call to xmalloc/xrealloc.
Richard M. Stallman <rms@gnu.org>
parents:
7307
diff
changeset
|
2022 { |
334cececa42d
(error): Fix logic in call to xmalloc/xrealloc.
Richard M. Stallman <rms@gnu.org>
parents:
7307
diff
changeset
|
2023 buffer = (char *) xmalloc (size); |
334cececa42d
(error): Fix logic in call to xmalloc/xrealloc.
Richard M. Stallman <rms@gnu.org>
parents:
7307
diff
changeset
|
2024 allocated = 1; |
334cececa42d
(error): Fix logic in call to xmalloc/xrealloc.
Richard M. Stallman <rms@gnu.org>
parents:
7307
diff
changeset
|
2025 } |
6225
8f92cf89ed7c
(error): Use doprnt. Make buffer larger as necessary.
Richard M. Stallman <rms@gnu.org>
parents:
6132
diff
changeset
|
2026 } |
8f92cf89ed7c
(error): Use doprnt. Make buffer larger as necessary.
Richard M. Stallman <rms@gnu.org>
parents:
6132
diff
changeset
|
2027 |
23206
a9090a71e969
(error): After enlarging buffer, write to it, not to buf.
Karl Heuer <kwzh@gnu.org>
parents:
21853
diff
changeset
|
2028 string = build_string (buffer); |
6225
8f92cf89ed7c
(error): Use doprnt. Make buffer larger as necessary.
Richard M. Stallman <rms@gnu.org>
parents:
6132
diff
changeset
|
2029 if (allocated) |
30610
5a0f2d368f58
(error): Use xfree instead of free.
Gerd Moellmann <gerd@gnu.org>
parents:
30217
diff
changeset
|
2030 xfree (buffer); |
6225
8f92cf89ed7c
(error): Use doprnt. Make buffer larger as necessary.
Richard M. Stallman <rms@gnu.org>
parents:
6132
diff
changeset
|
2031 |
71976
66a9a086ddbb
* eval.c (xsignal): New func. Like Fsignal, but marked no-return.
Kim F. Storm <storm@cua.dk>
parents:
71872
diff
changeset
|
2032 xsignal1 (Qerror, string); |
272 | 2033 } |
2034 | |
44941
857c2abe3324
(Fcommandp): New arg for_call_interactively.
Richard M. Stallman <rms@gnu.org>
parents:
44132
diff
changeset
|
2035 DEFUN ("commandp", Fcommandp, Scommandp, 1, 2, 0, |
40570 | 2036 doc: /* Non-nil if FUNCTION makes provisions for interactive calling. |
2037 This means it contains a description for how to read arguments to give it. | |
2038 The value is nil for an invalid function or a symbol with no function | |
2039 definition. | |
2040 | |
2041 Interactively callable functions include strings and vectors (treated | |
2042 as keyboard macros), lambda-expressions that contain a top-level call | |
2043 to `interactive', autoload definitions made by `autoload' with non-nil | |
2044 fourth argument, and some of the built-in functions of Lisp. | |
2045 | |
44941
857c2abe3324
(Fcommandp): New arg for_call_interactively.
Richard M. Stallman <rms@gnu.org>
parents:
44132
diff
changeset
|
2046 Also, a symbol satisfies `commandp' if its function definition does so. |
857c2abe3324
(Fcommandp): New arg for_call_interactively.
Richard M. Stallman <rms@gnu.org>
parents:
44132
diff
changeset
|
2047 |
857c2abe3324
(Fcommandp): New arg for_call_interactively.
Richard M. Stallman <rms@gnu.org>
parents:
44132
diff
changeset
|
2048 If the optional argument FOR-CALL-INTERACTIVELY is non-nil, |
45303 | 2049 then strings and vectors are not accepted. */) |
44941
857c2abe3324
(Fcommandp): New arg for_call_interactively.
Richard M. Stallman <rms@gnu.org>
parents:
44132
diff
changeset
|
2050 (function, for_call_interactively) |
857c2abe3324
(Fcommandp): New arg for_call_interactively.
Richard M. Stallman <rms@gnu.org>
parents:
44132
diff
changeset
|
2051 Lisp_Object function, for_call_interactively; |
272 | 2052 { |
2053 register Lisp_Object fun; | |
2054 register Lisp_Object funcar; | |
82113
76ba0f031e99
(Fcommandp): Pay attention to the `interactive-form' property.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
81953
diff
changeset
|
2055 Lisp_Object if_prop = Qnil; |
272 | 2056 |
2057 fun = function; | |
2058 | |
82113
76ba0f031e99
(Fcommandp): Pay attention to the `interactive-form' property.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
81953
diff
changeset
|
2059 fun = indirect_function (fun); /* Check cycles. */ |
76ba0f031e99
(Fcommandp): Pay attention to the `interactive-form' property.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
81953
diff
changeset
|
2060 if (NILP (fun) || EQ (fun, Qunbound)) |
648 | 2061 return Qnil; |
272 | 2062 |
82113
76ba0f031e99
(Fcommandp): Pay attention to the `interactive-form' property.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
81953
diff
changeset
|
2063 /* Check an `interactive-form' property if present, analogous to the |
76ba0f031e99
(Fcommandp): Pay attention to the `interactive-form' property.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
81953
diff
changeset
|
2064 function-documentation property. */ |
76ba0f031e99
(Fcommandp): Pay attention to the `interactive-form' property.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
81953
diff
changeset
|
2065 fun = function; |
76ba0f031e99
(Fcommandp): Pay attention to the `interactive-form' property.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
81953
diff
changeset
|
2066 while (SYMBOLP (fun)) |
76ba0f031e99
(Fcommandp): Pay attention to the `interactive-form' property.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
81953
diff
changeset
|
2067 { |
76ba0f031e99
(Fcommandp): Pay attention to the `interactive-form' property.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
81953
diff
changeset
|
2068 Lisp_Object tmp = Fget (fun, intern ("interactive-form")); |
76ba0f031e99
(Fcommandp): Pay attention to the `interactive-form' property.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
81953
diff
changeset
|
2069 if (!NILP (tmp)) |
76ba0f031e99
(Fcommandp): Pay attention to the `interactive-form' property.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
81953
diff
changeset
|
2070 if_prop = Qt; |
76ba0f031e99
(Fcommandp): Pay attention to the `interactive-form' property.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
81953
diff
changeset
|
2071 fun = Fsymbol_function (fun); |
76ba0f031e99
(Fcommandp): Pay attention to the `interactive-form' property.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
81953
diff
changeset
|
2072 } |
76ba0f031e99
(Fcommandp): Pay attention to the `interactive-form' property.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
81953
diff
changeset
|
2073 |
272 | 2074 /* Emacs primitives are interactive if their DEFUN specifies an |
2075 interactive spec. */ | |
9148
e7ab930bb7eb
(Fprogn, Finteractive_p, Fuser_variable_p, FletX, Flet, Fmacroexpand,
Karl Heuer <kwzh@gnu.org>
parents:
8980
diff
changeset
|
2076 if (SUBRP (fun)) |
84436
b1c7d00cbbb0
(Fcommandp): Change `->prompt' to `->intspec'.
Michaël Cadilhac <michael.cadilhac@lrde.org>
parents:
83653
diff
changeset
|
2077 return XSUBR (fun)->intspec ? Qt : if_prop; |
272 | 2078 |
2079 /* Bytecode objects are interactive if they are long enough to | |
2080 have an element whose index is COMPILED_INTERACTIVE, which is | |
2081 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
|
2082 else if (COMPILEDP (fun)) |
41597
b28d5d866500
Use AREF and ASIZE.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41114
diff
changeset
|
2083 return ((ASIZE (fun) & PSEUDOVECTOR_SIZE_MASK) > COMPILED_INTERACTIVE |
82113
76ba0f031e99
(Fcommandp): Pay attention to the `interactive-form' property.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
81953
diff
changeset
|
2084 ? Qt : if_prop); |
272 | 2085 |
2086 /* Strings and vectors are keyboard macros. */ | |
82113
76ba0f031e99
(Fcommandp): Pay attention to the `interactive-form' property.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
81953
diff
changeset
|
2087 if (STRINGP (fun) || VECTORP (fun)) |
82404
b3fc112aac24
(Fcommandp): Add parens to clarify.
Richard M. Stallman <rms@gnu.org>
parents:
82365
diff
changeset
|
2088 return (NILP (for_call_interactively) ? Qt : Qnil); |
272 | 2089 |
2090 /* Lists may represent commands. */ | |
2091 if (!CONSP (fun)) | |
2092 return Qnil; | |
54630
d6dd8c390fc2
(Fcommandp): Simplify.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
53461
diff
changeset
|
2093 funcar = XCAR (fun); |
272 | 2094 if (EQ (funcar, Qlambda)) |
82113
76ba0f031e99
(Fcommandp): Pay attention to the `interactive-form' property.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
81953
diff
changeset
|
2095 return !NILP (Fassq (Qinteractive, Fcdr (XCDR (fun)))) ? Qt : if_prop; |
272 | 2096 if (EQ (funcar, Qautoload)) |
82113
76ba0f031e99
(Fcommandp): Pay attention to the `interactive-form' property.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
81953
diff
changeset
|
2097 return !NILP (Fcar (Fcdr (Fcdr (XCDR (fun))))) ? Qt : if_prop; |
272 | 2098 else |
2099 return Qnil; | |
2100 } | |
2101 | |
2102 /* ARGSUSED */ | |
2103 DEFUN ("autoload", Fautoload, Sautoload, 2, 5, 0, | |
40570 | 2104 doc: /* Define FUNCTION to autoload from FILE. |
2105 FUNCTION is a symbol; FILE is a file name string to pass to `load'. | |
2106 Third arg DOCSTRING is documentation for the function. | |
2107 Fourth arg INTERACTIVE if non-nil says function can be called interactively. | |
2108 Fifth arg TYPE indicates the type of the object: | |
2109 nil or omitted says FUNCTION is a function, | |
2110 `keymap' says FUNCTION is really a keymap, and | |
2111 `macro' or t says FUNCTION is really a macro. | |
2112 Third through fifth args give info about the real definition. | |
2113 They default to nil. | |
2114 If FUNCTION is already defined other than as an autoload, | |
2115 this does nothing and returns nil. */) | |
2116 (function, file, docstring, interactive, type) | |
1564
b327816041d1
* eval.c (Fautoload): Renamed fifth argument TYPE. Document the
Jim Blandy <jimb@redhat.com>
parents:
1452
diff
changeset
|
2117 Lisp_Object function, file, docstring, interactive, type; |
272 | 2118 { |
2119 #ifdef NO_ARG_ARRAY | |
2120 Lisp_Object args[4]; | |
2121 #endif | |
2122 | |
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40629
diff
changeset
|
2123 CHECK_SYMBOL (function); |
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40629
diff
changeset
|
2124 CHECK_STRING (file); |
272 | 2125 |
2126 /* If function is defined and not as an autoload, don't override */ | |
2127 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
|
2128 && !(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
|
2129 && EQ (XCAR (XSYMBOL (function)->function), Qautoload))) |
272 | 2130 return Qnil; |
2131 | |
28297
f37b25e59751
* eval.c (Fautoload): Add entry in load-history (if after dump).
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28056
diff
changeset
|
2132 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
|
2133 /* 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
|
2134 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
|
2135 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
|
2136 |
272 | 2137 #ifdef NO_ARG_ARRAY |
2138 args[0] = file; | |
2139 args[1] = docstring; | |
2140 args[2] = interactive; | |
1564
b327816041d1
* eval.c (Fautoload): Renamed fifth argument TYPE. Document the
Jim Blandy <jimb@redhat.com>
parents:
1452
diff
changeset
|
2141 args[3] = type; |
272 | 2142 |
2143 return Ffset (function, Fcons (Qautoload, Flist (4, &args[0]))); | |
2144 #else /* NO_ARG_ARRAY */ | |
2145 return Ffset (function, Fcons (Qautoload, Flist (4, &file))); | |
2146 #endif /* not NO_ARG_ARRAY */ | |
2147 } | |
2148 | |
2149 Lisp_Object | |
2150 un_autoload (oldqueue) | |
2151 Lisp_Object oldqueue; | |
2152 { | |
2153 register Lisp_Object queue, first, second; | |
2154 | |
2155 /* Queue to unwind is current value of Vautoload_queue. | |
2156 oldqueue is the shadowed value to leave in Vautoload_queue. */ | |
2157 queue = Vautoload_queue; | |
2158 Vautoload_queue = oldqueue; | |
2159 while (CONSP (queue)) | |
2160 { | |
50630
dfbdcffdcfc9
(For, Fand, Fprogn, un_autoload, do_autoload): Use XCDR, XCAR, CONSP.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49752
diff
changeset
|
2161 first = XCAR (queue); |
272 | 2162 second = Fcdr (first); |
2163 first = Fcar (first); | |
67810
65be704fdaf2
(un_autoload): Expect (0 . OFEATURES) in Vautoload_queue to undo a `provide'.
Richard M. Stallman <rms@gnu.org>
parents:
66528
diff
changeset
|
2164 if (EQ (first, make_number (0))) |
65be704fdaf2
(un_autoload): Expect (0 . OFEATURES) in Vautoload_queue to undo a `provide'.
Richard M. Stallman <rms@gnu.org>
parents:
66528
diff
changeset
|
2165 Vfeatures = second; |
272 | 2166 else |
2167 Ffset (first, second); | |
50630
dfbdcffdcfc9
(For, Fand, Fprogn, un_autoload, do_autoload): Use XCDR, XCAR, CONSP.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49752
diff
changeset
|
2168 queue = XCDR (queue); |
272 | 2169 } |
2170 return Qnil; | |
2171 } | |
2172 | |
16108
2c9c0c867e00
(Fmacroexpand): gcpro form while calling do_autoload.
Richard M. Stallman <rms@gnu.org>
parents:
15275
diff
changeset
|
2173 /* Load an autoloaded function. |
2c9c0c867e00
(Fmacroexpand): gcpro form while calling do_autoload.
Richard M. Stallman <rms@gnu.org>
parents:
15275
diff
changeset
|
2174 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
|
2175 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
|
2176 |
20378
cf1b52f5c34a
(do_autoload): Return void.
Andreas Schwab <schwab@suse.de>
parents:
20312
diff
changeset
|
2177 void |
272 | 2178 do_autoload (fundef, funname) |
2179 Lisp_Object fundef, funname; | |
2180 { | |
46293
1fb8f75062c6
Use macro SPECPDL_INDEX.
Juanma Barranquero <lekktu@gmail.com>
parents:
46198
diff
changeset
|
2181 int count = SPECPDL_INDEX (); |
79082
b27741b11f5a
(do_autoload): Don't save autoloads.
Juanma Barranquero <lekktu@gmail.com>
parents:
78664
diff
changeset
|
2182 Lisp_Object fun; |
16108
2c9c0c867e00
(Fmacroexpand): gcpro form while calling do_autoload.
Richard M. Stallman <rms@gnu.org>
parents:
15275
diff
changeset
|
2183 struct gcpro gcpro1, gcpro2, gcpro3; |
272 | 2184 |
45039 | 2185 /* This is to make sure that loadup.el gives a clear picture |
2186 of what files are preloaded and when. */ | |
45036
184909bcbc7b
(do_autoload): Error if called while preparing to dump.
Richard M. Stallman <rms@gnu.org>
parents:
44941
diff
changeset
|
2187 if (! NILP (Vpurify_flag)) |
184909bcbc7b
(do_autoload): Error if called while preparing to dump.
Richard M. Stallman <rms@gnu.org>
parents:
44941
diff
changeset
|
2188 error ("Attempt to autoload %s while preparing to dump", |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46315
diff
changeset
|
2189 SDATA (SYMBOL_NAME (funname))); |
45036
184909bcbc7b
(do_autoload): Error if called while preparing to dump.
Richard M. Stallman <rms@gnu.org>
parents:
44941
diff
changeset
|
2190 |
272 | 2191 fun = funname; |
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40629
diff
changeset
|
2192 CHECK_SYMBOL (funname); |
16108
2c9c0c867e00
(Fmacroexpand): gcpro form while calling do_autoload.
Richard M. Stallman <rms@gnu.org>
parents:
15275
diff
changeset
|
2193 GCPRO3 (fun, funname, fundef); |
272 | 2194 |
24605
f378efa4aa8a
(do_autoload): Preserve match data.
Richard M. Stallman <rms@gnu.org>
parents:
24427
diff
changeset
|
2195 /* Preserve the match data. */ |
63147
9bde03db5726
* composite.c (compose_chars_in_text):
Kim F. Storm <storm@cua.dk>
parents:
62980
diff
changeset
|
2196 record_unwind_save_match_data (); |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49105
diff
changeset
|
2197 |
79207 | 2198 /* If autoloading gets an error (which includes the error of failing |
2199 to define the function being called), we use Vautoload_queue | |
2200 to undo function definitions and `provide' calls made by | |
2201 the function. We do this in the specific case of autoloading | |
2202 because autoloading is not an explicit request "load this file", | |
2203 but rather a request to "call this function". | |
2204 | |
2205 The value saved here is to be restored into Vautoload_queue. */ | |
272 | 2206 record_unwind_protect (un_autoload, Vautoload_queue); |
2207 Vautoload_queue = Qt; | |
84835
96f382c71120
(do_autoload): Don't output any message.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84436
diff
changeset
|
2208 Fload (Fcar (Fcdr (fundef)), Qnil, Qt, Qnil, Qt); |
2547
c73c68a87cd5
(defun, defmacro, defvar, defconst):
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
2209 |
272 | 2210 /* Once loading finishes, don't undo it. */ |
2211 Vautoload_queue = Qt; | |
2212 unbind_to (count, Qnil); | |
2213 | |
68758
13c1b7c5f555
* data.c (Findirect_function): Add NOERROR arg. All callers changed
Kim F. Storm <storm@cua.dk>
parents:
68651
diff
changeset
|
2214 fun = Findirect_function (fun, Qnil); |
648 | 2215 |
4462
9fbc6c74cab5
(do_autoload): Don't report autoload failure
Richard M. Stallman <rms@gnu.org>
parents:
4167
diff
changeset
|
2216 if (!NILP (Fequal (fun, fundef))) |
272 | 2217 error ("Autoloading failed to define function %s", |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46315
diff
changeset
|
2218 SDATA (SYMBOL_NAME (funname))); |
16108
2c9c0c867e00
(Fmacroexpand): gcpro form while calling do_autoload.
Richard M. Stallman <rms@gnu.org>
parents:
15275
diff
changeset
|
2219 UNGCPRO; |
272 | 2220 } |
30080
f8f9badf6750
(handling_signal): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30073
diff
changeset
|
2221 |
272 | 2222 |
2223 DEFUN ("eval", Feval, Seval, 1, 1, 0, | |
40570 | 2224 doc: /* Evaluate FORM and return its value. */) |
2225 (form) | |
272 | 2226 Lisp_Object form; |
2227 { | |
2228 Lisp_Object fun, val, original_fun, original_args; | |
2229 Lisp_Object funcar; | |
2230 struct backtrace backtrace; | |
2231 struct gcpro gcpro1, gcpro2, gcpro3; | |
2232 | |
57965
9b14127a651a
* eval.c (Feval): Remove check for INPUT_BLOCKED_P.
Jan Djärv <jan.h.d@swipnet.se>
parents:
57889
diff
changeset
|
2233 if (handling_signal) |
25008
39dd5c98a114
(Fsignal): Reset redisplaying_p to zero.
Gerd Moellmann <gerd@gnu.org>
parents:
24605
diff
changeset
|
2234 abort (); |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49105
diff
changeset
|
2235 |
9148
e7ab930bb7eb
(Fprogn, Finteractive_p, Fuser_variable_p, FletX, Flet, Fmacroexpand,
Karl Heuer <kwzh@gnu.org>
parents:
8980
diff
changeset
|
2236 if (SYMBOLP (form)) |
42277
fd38a0b6a3ff
Remove variables `Qmocklisp_arguments', `Vmocklisp_arguments' and
Pavel Janík <Pavel@Janik.cz>
parents:
41846
diff
changeset
|
2237 return Fsymbol_value (form); |
272 | 2238 if (!CONSP (form)) |
2239 return form; | |
2240 | |
2241 QUIT; | |
66528
c9adaa704c22
(internal_lisp_condition_case): New function.
Richard M. Stallman <rms@gnu.org>
parents:
64770
diff
changeset
|
2242 if ((consing_since_gc > gc_cons_threshold |
c9adaa704c22
(internal_lisp_condition_case): New function.
Richard M. Stallman <rms@gnu.org>
parents:
64770
diff
changeset
|
2243 && consing_since_gc > gc_relative_threshold) |
c9adaa704c22
(internal_lisp_condition_case): New function.
Richard M. Stallman <rms@gnu.org>
parents:
64770
diff
changeset
|
2244 || |
c9adaa704c22
(internal_lisp_condition_case): New function.
Richard M. Stallman <rms@gnu.org>
parents:
64770
diff
changeset
|
2245 (!NILP (Vmemory_full) && consing_since_gc > memory_full_cons_threshold)) |
272 | 2246 { |
2247 GCPRO1 (form); | |
2248 Fgarbage_collect (); | |
2249 UNGCPRO; | |
2250 } | |
2251 | |
2252 if (++lisp_eval_depth > max_lisp_eval_depth) | |
2253 { | |
2254 if (max_lisp_eval_depth < 100) | |
2255 max_lisp_eval_depth = 100; | |
2256 if (lisp_eval_depth > max_lisp_eval_depth) | |
63697
9f617bb41e22
(Fdefvar, Fdefconst, Feval, Ffuncall): Follow error conventions.
Juanma Barranquero <lekktu@gmail.com>
parents:
63391
diff
changeset
|
2257 error ("Lisp nesting exceeds `max-lisp-eval-depth'"); |
272 | 2258 } |
2259 | |
2260 original_fun = Fcar (form); | |
2261 original_args = Fcdr (form); | |
2262 | |
2263 backtrace.next = backtrace_list; | |
2264 backtrace_list = &backtrace; | |
2265 backtrace.function = &original_fun; /* This also protects them from gc */ | |
2266 backtrace.args = &original_args; | |
2267 backtrace.nargs = UNEVALLED; | |
2268 backtrace.evalargs = 1; | |
2269 backtrace.debug_on_exit = 0; | |
2270 | |
2271 if (debug_on_next_call) | |
2272 do_debug_on_call (Qt); | |
2273 | |
2274 /* At this point, only original_fun and original_args | |
2275 have values that will be used below */ | |
2276 retry: | |
71872
b20203b004f8
(Fthrow): Remove loop around Fsignal.
Kim F. Storm <storm@cua.dk>
parents:
71574
diff
changeset
|
2277 |
b20203b004f8
(Fthrow): Remove loop around Fsignal.
Kim F. Storm <storm@cua.dk>
parents:
71574
diff
changeset
|
2278 /* Optimize for no indirection. */ |
b20203b004f8
(Fthrow): Remove loop around Fsignal.
Kim F. Storm <storm@cua.dk>
parents:
71574
diff
changeset
|
2279 fun = original_fun; |
b20203b004f8
(Fthrow): Remove loop around Fsignal.
Kim F. Storm <storm@cua.dk>
parents:
71574
diff
changeset
|
2280 if (SYMBOLP (fun) && !EQ (fun, Qunbound) |
b20203b004f8
(Fthrow): Remove loop around Fsignal.
Kim F. Storm <storm@cua.dk>
parents:
71574
diff
changeset
|
2281 && (fun = XSYMBOL (fun)->function, SYMBOLP (fun))) |
b20203b004f8
(Fthrow): Remove loop around Fsignal.
Kim F. Storm <storm@cua.dk>
parents:
71574
diff
changeset
|
2282 fun = indirect_function (fun); |
272 | 2283 |
9148
e7ab930bb7eb
(Fprogn, Finteractive_p, Fuser_variable_p, FletX, Flet, Fmacroexpand,
Karl Heuer <kwzh@gnu.org>
parents:
8980
diff
changeset
|
2284 if (SUBRP (fun)) |
272 | 2285 { |
2286 Lisp_Object numargs; | |
19544
fc0bb24597ba
(Feval): Handle a subr which takes 8 arguments.
Kenichi Handa <handa@m17n.org>
parents:
19237
diff
changeset
|
2287 Lisp_Object argvals[8]; |
272 | 2288 Lisp_Object args_left; |
2289 register int i, maxargs; | |
2290 | |
2291 args_left = original_args; | |
2292 numargs = Flength (args_left); | |
2293 | |
60418
887436be5f78
(unwind_to_catch): Use UNBLOCK_INPUT_TO.
Richard M. Stallman <rms@gnu.org>
parents:
59953
diff
changeset
|
2294 CHECK_CONS_LIST (); |
887436be5f78
(unwind_to_catch): Use UNBLOCK_INPUT_TO.
Richard M. Stallman <rms@gnu.org>
parents:
59953
diff
changeset
|
2295 |
272 | 2296 if (XINT (numargs) < XSUBR (fun)->min_args || |
2297 (XSUBR (fun)->max_args >= 0 && XSUBR (fun)->max_args < XINT (numargs))) | |
71976
66a9a086ddbb
* eval.c (xsignal): New func. Like Fsignal, but marked no-return.
Kim F. Storm <storm@cua.dk>
parents:
71872
diff
changeset
|
2298 xsignal2 (Qwrong_number_of_arguments, original_fun, numargs); |
272 | 2299 |
2300 if (XSUBR (fun)->max_args == UNEVALLED) | |
2301 { | |
2302 backtrace.evalargs = 0; | |
2303 val = (*XSUBR (fun)->function) (args_left); | |
2304 goto done; | |
2305 } | |
2306 | |
2307 if (XSUBR (fun)->max_args == MANY) | |
2308 { | |
2309 /* Pass a vector of evaluated arguments */ | |
2310 Lisp_Object *vals; | |
2311 register int argnum = 0; | |
2312 | |
2313 vals = (Lisp_Object *) alloca (XINT (numargs) * sizeof (Lisp_Object)); | |
2314 | |
2315 GCPRO3 (args_left, fun, fun); | |
2316 gcpro3.var = vals; | |
2317 gcpro3.nvars = 0; | |
2318 | |
485 | 2319 while (!NILP (args_left)) |
272 | 2320 { |
2321 vals[argnum++] = Feval (Fcar (args_left)); | |
2322 args_left = Fcdr (args_left); | |
2323 gcpro3.nvars = argnum; | |
2324 } | |
2325 | |
2326 backtrace.args = vals; | |
2327 backtrace.nargs = XINT (numargs); | |
2328 | |
2329 val = (*XSUBR (fun)->function) (XINT (numargs), vals); | |
323 | 2330 UNGCPRO; |
272 | 2331 goto done; |
2332 } | |
2333 | |
2334 GCPRO3 (args_left, fun, fun); | |
2335 gcpro3.var = argvals; | |
2336 gcpro3.nvars = 0; | |
2337 | |
2338 maxargs = XSUBR (fun)->max_args; | |
2339 for (i = 0; i < maxargs; args_left = Fcdr (args_left)) | |
2340 { | |
2341 argvals[i] = Feval (Fcar (args_left)); | |
2342 gcpro3.nvars = ++i; | |
2343 } | |
2344 | |
2345 UNGCPRO; | |
2346 | |
2347 backtrace.args = argvals; | |
2348 backtrace.nargs = XINT (numargs); | |
2349 | |
2350 switch (i) | |
2351 { | |
2352 case 0: | |
2353 val = (*XSUBR (fun)->function) (); | |
2354 goto done; | |
2355 case 1: | |
2356 val = (*XSUBR (fun)->function) (argvals[0]); | |
2357 goto done; | |
2358 case 2: | |
2359 val = (*XSUBR (fun)->function) (argvals[0], argvals[1]); | |
2360 goto done; | |
2361 case 3: | |
2362 val = (*XSUBR (fun)->function) (argvals[0], argvals[1], | |
2363 argvals[2]); | |
2364 goto done; | |
2365 case 4: | |
2366 val = (*XSUBR (fun)->function) (argvals[0], argvals[1], | |
2367 argvals[2], argvals[3]); | |
2368 goto done; | |
2369 case 5: | |
2370 val = (*XSUBR (fun)->function) (argvals[0], argvals[1], argvals[2], | |
2371 argvals[3], argvals[4]); | |
2372 goto done; | |
2373 case 6: | |
2374 val = (*XSUBR (fun)->function) (argvals[0], argvals[1], argvals[2], | |
2375 argvals[3], argvals[4], argvals[5]); | |
2376 goto done; | |
863
427299469901
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
753
diff
changeset
|
2377 case 7: |
427299469901
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
753
diff
changeset
|
2378 val = (*XSUBR (fun)->function) (argvals[0], argvals[1], argvals[2], |
427299469901
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
753
diff
changeset
|
2379 argvals[3], argvals[4], argvals[5], |
427299469901
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
753
diff
changeset
|
2380 argvals[6]); |
427299469901
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
753
diff
changeset
|
2381 goto done; |
272 | 2382 |
19544
fc0bb24597ba
(Feval): Handle a subr which takes 8 arguments.
Kenichi Handa <handa@m17n.org>
parents:
19237
diff
changeset
|
2383 case 8: |
fc0bb24597ba
(Feval): Handle a subr which takes 8 arguments.
Kenichi Handa <handa@m17n.org>
parents:
19237
diff
changeset
|
2384 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
|
2385 argvals[3], argvals[4], argvals[5], |
fc0bb24597ba
(Feval): Handle a subr which takes 8 arguments.
Kenichi Handa <handa@m17n.org>
parents:
19237
diff
changeset
|
2386 argvals[6], argvals[7]); |
fc0bb24597ba
(Feval): Handle a subr which takes 8 arguments.
Kenichi Handa <handa@m17n.org>
parents:
19237
diff
changeset
|
2387 goto done; |
fc0bb24597ba
(Feval): Handle a subr which takes 8 arguments.
Kenichi Handa <handa@m17n.org>
parents:
19237
diff
changeset
|
2388 |
272 | 2389 default: |
604 | 2390 /* Someone has created a subr that takes more arguments than |
2391 is supported by this code. We need to either rewrite the | |
2392 subr to use a different argument protocol, or add more | |
2393 cases to this switch. */ | |
2394 abort (); | |
272 | 2395 } |
2396 } | |
9148
e7ab930bb7eb
(Fprogn, Finteractive_p, Fuser_variable_p, FletX, Flet, Fmacroexpand,
Karl Heuer <kwzh@gnu.org>
parents:
8980
diff
changeset
|
2397 if (COMPILEDP (fun)) |
272 | 2398 val = apply_lambda (fun, original_args, 1); |
2399 else | |
2400 { | |
71872
b20203b004f8
(Fthrow): Remove loop around Fsignal.
Kim F. Storm <storm@cua.dk>
parents:
71574
diff
changeset
|
2401 if (EQ (fun, Qunbound)) |
71976
66a9a086ddbb
* eval.c (xsignal): New func. Like Fsignal, but marked no-return.
Kim F. Storm <storm@cua.dk>
parents:
71872
diff
changeset
|
2402 xsignal1 (Qvoid_function, original_fun); |
272 | 2403 if (!CONSP (fun)) |
71976
66a9a086ddbb
* eval.c (xsignal): New func. Like Fsignal, but marked no-return.
Kim F. Storm <storm@cua.dk>
parents:
71872
diff
changeset
|
2404 xsignal1 (Qinvalid_function, original_fun); |
66a9a086ddbb
* eval.c (xsignal): New func. Like Fsignal, but marked no-return.
Kim F. Storm <storm@cua.dk>
parents:
71872
diff
changeset
|
2405 funcar = XCAR (fun); |
9148
e7ab930bb7eb
(Fprogn, Finteractive_p, Fuser_variable_p, FletX, Flet, Fmacroexpand,
Karl Heuer <kwzh@gnu.org>
parents:
8980
diff
changeset
|
2406 if (!SYMBOLP (funcar)) |
71976
66a9a086ddbb
* eval.c (xsignal): New func. Like Fsignal, but marked no-return.
Kim F. Storm <storm@cua.dk>
parents:
71872
diff
changeset
|
2407 xsignal1 (Qinvalid_function, original_fun); |
272 | 2408 if (EQ (funcar, Qautoload)) |
2409 { | |
2410 do_autoload (fun, original_fun); | |
2411 goto retry; | |
2412 } | |
2413 if (EQ (funcar, Qmacro)) | |
2414 val = Feval (apply1 (Fcdr (fun), original_args)); | |
2415 else if (EQ (funcar, Qlambda)) | |
2416 val = apply_lambda (fun, original_args, 1); | |
2417 else | |
71976
66a9a086ddbb
* eval.c (xsignal): New func. Like Fsignal, but marked no-return.
Kim F. Storm <storm@cua.dk>
parents:
71872
diff
changeset
|
2418 xsignal1 (Qinvalid_function, original_fun); |
272 | 2419 } |
2420 done: | |
60418
887436be5f78
(unwind_to_catch): Use UNBLOCK_INPUT_TO.
Richard M. Stallman <rms@gnu.org>
parents:
59953
diff
changeset
|
2421 CHECK_CONS_LIST (); |
887436be5f78
(unwind_to_catch): Use UNBLOCK_INPUT_TO.
Richard M. Stallman <rms@gnu.org>
parents:
59953
diff
changeset
|
2422 |
272 | 2423 lisp_eval_depth--; |
2424 if (backtrace.debug_on_exit) | |
2425 val = call_debugger (Fcons (Qexit, Fcons (val, Qnil))); | |
2426 backtrace_list = backtrace.next; | |
48742
7b5cd8383f0b
Feval: On Carbon/MacOSX call mac_check_for_quit_char at each stack frame.
Steven Tamm <steventamm@mac.com>
parents:
48724
diff
changeset
|
2427 |
272 | 2428 return val; |
2429 } | |
2430 | |
2431 DEFUN ("apply", Fapply, Sapply, 2, MANY, 0, | |
40570 | 2432 doc: /* Call FUNCTION with our remaining args, using our last arg as list of args. |
2433 Then return the value FUNCTION returns. | |
2434 Thus, (apply '+ 1 2 '(3 4)) returns 10. | |
2435 usage: (apply FUNCTION &rest ARGUMENTS) */) | |
2436 (nargs, args) | |
272 | 2437 int nargs; |
2438 Lisp_Object *args; | |
2439 { | |
2440 register int i, numargs; | |
2441 register Lisp_Object spread_arg; | |
2442 register Lisp_Object *funcall_args; | |
2443 Lisp_Object fun; | |
50644
0c4bf42e6557
(Fapply): Undo last change and add a comment about why.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50630
diff
changeset
|
2444 struct gcpro gcpro1; |
272 | 2445 |
2446 fun = args [0]; | |
2447 funcall_args = 0; | |
2448 spread_arg = args [nargs - 1]; | |
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40629
diff
changeset
|
2449 CHECK_LIST (spread_arg); |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49105
diff
changeset
|
2450 |
272 | 2451 numargs = XINT (Flength (spread_arg)); |
2452 | |
2453 if (numargs == 0) | |
2454 return Ffuncall (nargs - 1, args); | |
2455 else if (numargs == 1) | |
2456 { | |
25662
0a7261c1d487
Use XCAR, XCDR, and XFLOAT_DATA instead of explicit member access.
Ken Raeburn <raeburn@raeburn.org>
parents:
25314
diff
changeset
|
2457 args [nargs - 1] = XCAR (spread_arg); |
272 | 2458 return Ffuncall (nargs, args); |
2459 } | |
2460 | |
323 | 2461 numargs += nargs - 2; |
272 | 2462 |
71872
b20203b004f8
(Fthrow): Remove loop around Fsignal.
Kim F. Storm <storm@cua.dk>
parents:
71574
diff
changeset
|
2463 /* Optimize for no indirection. */ |
b20203b004f8
(Fthrow): Remove loop around Fsignal.
Kim F. Storm <storm@cua.dk>
parents:
71574
diff
changeset
|
2464 if (SYMBOLP (fun) && !EQ (fun, Qunbound) |
b20203b004f8
(Fthrow): Remove loop around Fsignal.
Kim F. Storm <storm@cua.dk>
parents:
71574
diff
changeset
|
2465 && (fun = XSYMBOL (fun)->function, SYMBOLP (fun))) |
b20203b004f8
(Fthrow): Remove loop around Fsignal.
Kim F. Storm <storm@cua.dk>
parents:
71574
diff
changeset
|
2466 fun = indirect_function (fun); |
648 | 2467 if (EQ (fun, Qunbound)) |
272 | 2468 { |
648 | 2469 /* Let funcall get the error */ |
2470 fun = args[0]; | |
2471 goto funcall; | |
272 | 2472 } |
2473 | |
9148
e7ab930bb7eb
(Fprogn, Finteractive_p, Fuser_variable_p, FletX, Flet, Fmacroexpand,
Karl Heuer <kwzh@gnu.org>
parents:
8980
diff
changeset
|
2474 if (SUBRP (fun)) |
272 | 2475 { |
2476 if (numargs < XSUBR (fun)->min_args | |
2477 || (XSUBR (fun)->max_args >= 0 && XSUBR (fun)->max_args < numargs)) | |
2478 goto funcall; /* Let funcall get the error */ | |
2479 else if (XSUBR (fun)->max_args > numargs) | |
2480 { | |
2481 /* Avoid making funcall cons up a yet another new vector of arguments | |
2482 by explicitly supplying nil's for optional values */ | |
2483 funcall_args = (Lisp_Object *) alloca ((1 + XSUBR (fun)->max_args) | |
2484 * sizeof (Lisp_Object)); | |
2485 for (i = numargs; i < XSUBR (fun)->max_args;) | |
2486 funcall_args[++i] = Qnil; | |
50644
0c4bf42e6557
(Fapply): Undo last change and add a comment about why.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50630
diff
changeset
|
2487 GCPRO1 (*funcall_args); |
0c4bf42e6557
(Fapply): Undo last change and add a comment about why.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50630
diff
changeset
|
2488 gcpro1.nvars = 1 + XSUBR (fun)->max_args; |
272 | 2489 } |
2490 } | |
2491 funcall: | |
2492 /* We add 1 to numargs because funcall_args includes the | |
2493 function itself as well as its arguments. */ | |
2494 if (!funcall_args) | |
323 | 2495 { |
2496 funcall_args = (Lisp_Object *) alloca ((1 + numargs) | |
2497 * sizeof (Lisp_Object)); | |
50644
0c4bf42e6557
(Fapply): Undo last change and add a comment about why.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50630
diff
changeset
|
2498 GCPRO1 (*funcall_args); |
0c4bf42e6557
(Fapply): Undo last change and add a comment about why.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50630
diff
changeset
|
2499 gcpro1.nvars = 1 + numargs; |
323 | 2500 } |
2501 | |
272 | 2502 bcopy (args, funcall_args, nargs * sizeof (Lisp_Object)); |
2503 /* Spread the last arg we got. Its first element goes in | |
2504 the slot that it used to occupy, hence this value of I. */ | |
2505 i = nargs - 1; | |
485 | 2506 while (!NILP (spread_arg)) |
272 | 2507 { |
25662
0a7261c1d487
Use XCAR, XCDR, and XFLOAT_DATA instead of explicit member access.
Ken Raeburn <raeburn@raeburn.org>
parents:
25314
diff
changeset
|
2508 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
|
2509 spread_arg = XCDR (spread_arg); |
272 | 2510 } |
323 | 2511 |
50644
0c4bf42e6557
(Fapply): Undo last change and add a comment about why.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50630
diff
changeset
|
2512 /* By convention, the caller needs to gcpro Ffuncall's args. */ |
0c4bf42e6557
(Fapply): Undo last change and add a comment about why.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50630
diff
changeset
|
2513 RETURN_UNGCPRO (Ffuncall (gcpro1.nvars, funcall_args)); |
272 | 2514 } |
2515 | |
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
|
2516 /* 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
|
2517 |
981b924c832b
Add Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success, Frun_hook_with_args_until_failure in terms of run_hook_with_args.
Simon Marshall <simon@gnu.org>
parents:
12711
diff
changeset
|
2518 enum run_hooks_condition {to_completion, until_success, until_failure}; |
41114
242c6928accc
(max_specpdl_size, max_lisp_eval_depth): Use EMACS_INT.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41029
diff
changeset
|
2519 static Lisp_Object run_hook_with_args P_ ((int, Lisp_Object *, |
242c6928accc
(max_specpdl_size, max_lisp_eval_depth): Use EMACS_INT.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41029
diff
changeset
|
2520 enum run_hooks_condition)); |
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
|
2521 |
34013
4a60e687c9ab
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
33988
diff
changeset
|
2522 DEFUN ("run-hooks", Frun_hooks, Srun_hooks, 0, MANY, 0, |
62709
d66d7efe0adf
(Frun_hooks): Mention run-mode-hooks in docstring.
Lute Kamstra <lute@gnu.org>
parents:
62178
diff
changeset
|
2523 doc: /* Run each hook in HOOKS. |
40570 | 2524 Each argument should be a symbol, a hook variable. |
2525 These symbols are processed in the order specified. | |
2526 If a hook symbol has a non-nil value, that value may be a function | |
2527 or a list of functions to be called to run the hook. | |
2528 If the value is a function, it is called with no arguments. | |
2529 If it is a list, the elements are called, in order, with no arguments. | |
2530 | |
62709
d66d7efe0adf
(Frun_hooks): Mention run-mode-hooks in docstring.
Lute Kamstra <lute@gnu.org>
parents:
62178
diff
changeset
|
2531 Major modes should not use this function directly to run their mode |
d66d7efe0adf
(Frun_hooks): Mention run-mode-hooks in docstring.
Lute Kamstra <lute@gnu.org>
parents:
62178
diff
changeset
|
2532 hook; they should use `run-mode-hooks' instead. |
d66d7efe0adf
(Frun_hooks): Mention run-mode-hooks in docstring.
Lute Kamstra <lute@gnu.org>
parents:
62178
diff
changeset
|
2533 |
40629
bfacd603fb71
(Frun_hooks, Frun_hook_with_args_until_failure): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
40570
diff
changeset
|
2534 Do not use `make-local-variable' to make a hook variable buffer-local. |
bfacd603fb71
(Frun_hooks, Frun_hook_with_args_until_failure): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
40570
diff
changeset
|
2535 Instead, use `add-hook' and specify t for the LOCAL argument. |
40570 | 2536 usage: (run-hooks &rest HOOKS) */) |
2537 (nargs, 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
|
2538 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
|
2539 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
|
2540 { |
981b924c832b
Add Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success, Frun_hook_with_args_until_failure in terms of run_hook_with_args.
Simon Marshall <simon@gnu.org>
parents:
12711
diff
changeset
|
2541 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
|
2542 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
|
2543 |
981b924c832b
Add Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success, Frun_hook_with_args_until_failure in terms of run_hook_with_args.
Simon Marshall <simon@gnu.org>
parents:
12711
diff
changeset
|
2544 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
|
2545 { |
981b924c832b
Add Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success, Frun_hook_with_args_until_failure in terms of run_hook_with_args.
Simon Marshall <simon@gnu.org>
parents:
12711
diff
changeset
|
2546 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
|
2547 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
|
2548 } |
981b924c832b
Add Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success, Frun_hook_with_args_until_failure in terms of run_hook_with_args.
Simon Marshall <simon@gnu.org>
parents:
12711
diff
changeset
|
2549 |
981b924c832b
Add Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success, Frun_hook_with_args_until_failure in terms of run_hook_with_args.
Simon Marshall <simon@gnu.org>
parents:
12711
diff
changeset
|
2550 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
|
2551 } |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49105
diff
changeset
|
2552 |
16485
9b919c5464a4
Reorganize function definitions so etags finds them.
Erik Naggum <erik@naggum.no>
parents:
16443
diff
changeset
|
2553 DEFUN ("run-hook-with-args", Frun_hook_with_args, |
40570 | 2554 Srun_hook_with_args, 1, MANY, 0, |
2555 doc: /* Run HOOK with the specified arguments ARGS. | |
2556 HOOK should be a symbol, a hook variable. If HOOK has a non-nil | |
2557 value, that value may be a function or a list of functions to be | |
2558 called to run the hook. If the value is a function, it is called with | |
2559 the given arguments and its return value is returned. If it is a list | |
2560 of functions, those functions are called, in order, | |
2561 with the given arguments ARGS. | |
59953 | 2562 It is best not to depend on the value returned by `run-hook-with-args', |
40570 | 2563 as that may change. |
2564 | |
40629
bfacd603fb71
(Frun_hooks, Frun_hook_with_args_until_failure): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
40570
diff
changeset
|
2565 Do not use `make-local-variable' to make a hook variable buffer-local. |
bfacd603fb71
(Frun_hooks, Frun_hook_with_args_until_failure): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
40570
diff
changeset
|
2566 Instead, use `add-hook' and specify t for the LOCAL argument. |
40570 | 2567 usage: (run-hook-with-args HOOK &rest ARGS) */) |
2568 (nargs, 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
|
2569 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
|
2570 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
|
2571 { |
981b924c832b
Add Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success, Frun_hook_with_args_until_failure in terms of run_hook_with_args.
Simon Marshall <simon@gnu.org>
parents:
12711
diff
changeset
|
2572 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
|
2573 } |
981b924c832b
Add Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success, Frun_hook_with_args_until_failure in terms of run_hook_with_args.
Simon Marshall <simon@gnu.org>
parents:
12711
diff
changeset
|
2574 |
16485
9b919c5464a4
Reorganize function definitions so etags finds them.
Erik Naggum <erik@naggum.no>
parents:
16443
diff
changeset
|
2575 DEFUN ("run-hook-with-args-until-success", Frun_hook_with_args_until_success, |
40570 | 2576 Srun_hook_with_args_until_success, 1, MANY, 0, |
2577 doc: /* Run HOOK with the specified arguments ARGS. | |
59953 | 2578 HOOK should be a symbol, a hook variable. If HOOK has a non-nil |
2579 value, that value may be a function or a list of functions to be | |
2580 called to run the hook. If the value is a function, it is called with | |
2581 the given arguments and its return value is returned. | |
2582 If it is a list of functions, those functions are called, in order, | |
2583 with the given arguments ARGS, until one of them | |
40570 | 2584 returns a non-nil value. Then we return that value. |
59953 | 2585 However, if they all return nil, we return nil. |
40570 | 2586 |
40629
bfacd603fb71
(Frun_hooks, Frun_hook_with_args_until_failure): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
40570
diff
changeset
|
2587 Do not use `make-local-variable' to make a hook variable buffer-local. |
bfacd603fb71
(Frun_hooks, Frun_hook_with_args_until_failure): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
40570
diff
changeset
|
2588 Instead, use `add-hook' and specify t for the LOCAL argument. |
40570 | 2589 usage: (run-hook-with-args-until-success HOOK &rest ARGS) */) |
2590 (nargs, args) | |
12654
14721fd8dcc1
(Frun_hook_with_args): New C function, formerly in subr.el.
Karl Heuer <kwzh@gnu.org>
parents:
12583
diff
changeset
|
2591 int nargs; |
14721fd8dcc1
(Frun_hook_with_args): New C function, formerly in subr.el.
Karl Heuer <kwzh@gnu.org>
parents:
12583
diff
changeset
|
2592 Lisp_Object *args; |
14721fd8dcc1
(Frun_hook_with_args): New C function, formerly in subr.el.
Karl Heuer <kwzh@gnu.org>
parents:
12583
diff
changeset
|
2593 { |
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
|
2594 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
|
2595 } |
981b924c832b
Add Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success, Frun_hook_with_args_until_failure in terms of run_hook_with_args.
Simon Marshall <simon@gnu.org>
parents:
12711
diff
changeset
|
2596 |
16485
9b919c5464a4
Reorganize function definitions so etags finds them.
Erik Naggum <erik@naggum.no>
parents:
16443
diff
changeset
|
2597 DEFUN ("run-hook-with-args-until-failure", Frun_hook_with_args_until_failure, |
40570 | 2598 Srun_hook_with_args_until_failure, 1, MANY, 0, |
2599 doc: /* Run HOOK with the specified arguments ARGS. | |
59953 | 2600 HOOK should be a symbol, a hook variable. If HOOK has a non-nil |
2601 value, that value may be a function or a list of functions to be | |
2602 called to run the hook. If the value is a function, it is called with | |
2603 the given arguments and its return value is returned. | |
2604 If it is a list of functions, those functions are called, in order, | |
2605 with the given arguments ARGS, until one of them returns nil. | |
2606 Then we return nil. However, if they all return non-nil, we return non-nil. | |
40570 | 2607 |
40629
bfacd603fb71
(Frun_hooks, Frun_hook_with_args_until_failure): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
40570
diff
changeset
|
2608 Do not use `make-local-variable' to make a hook variable buffer-local. |
bfacd603fb71
(Frun_hooks, Frun_hook_with_args_until_failure): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
40570
diff
changeset
|
2609 Instead, use `add-hook' and specify t for the LOCAL argument. |
40570 | 2610 usage: (run-hook-with-args-until-failure HOOK &rest ARGS) */) |
2611 (nargs, 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
|
2612 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
|
2613 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
|
2614 { |
981b924c832b
Add Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success, Frun_hook_with_args_until_failure in terms of run_hook_with_args.
Simon Marshall <simon@gnu.org>
parents:
12711
diff
changeset
|
2615 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
|
2616 } |
981b924c832b
Add Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success, Frun_hook_with_args_until_failure in terms of run_hook_with_args.
Simon Marshall <simon@gnu.org>
parents:
12711
diff
changeset
|
2617 |
12781
2a8036f0b585
(run_hook_with_args): Add gcpros.
Richard M. Stallman <rms@gnu.org>
parents:
12732
diff
changeset
|
2618 /* ARGS[0] should be a hook symbol. |
2a8036f0b585
(run_hook_with_args): Add gcpros.
Richard M. Stallman <rms@gnu.org>
parents:
12732
diff
changeset
|
2619 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
|
2620 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
|
2621 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
|
2622 to decide whether to stop. |
2a8036f0b585
(run_hook_with_args): Add gcpros.
Richard M. Stallman <rms@gnu.org>
parents:
12732
diff
changeset
|
2623 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
|
2624 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
|
2625 |
41114
242c6928accc
(max_specpdl_size, max_lisp_eval_depth): Use EMACS_INT.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41029
diff
changeset
|
2626 static Lisp_Object |
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
|
2627 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
|
2628 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
|
2629 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
|
2630 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
|
2631 { |
981b924c832b
Add Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success, Frun_hook_with_args_until_failure in terms of run_hook_with_args.
Simon Marshall <simon@gnu.org>
parents:
12711
diff
changeset
|
2632 Lisp_Object sym, val, ret; |
25257
0be923a80096
(run_hook_list_with_args): Gcpro `globals'.
Karl Heuer <kwzh@gnu.org>
parents:
25008
diff
changeset
|
2633 Lisp_Object globals; |
0be923a80096
(run_hook_list_with_args): Gcpro `globals'.
Karl Heuer <kwzh@gnu.org>
parents:
25008
diff
changeset
|
2634 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
|
2635 |
14218
346d4cf758f5
(run_hook_with_args): Do nothing if Vrun_hooks is nil.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
2636 /* 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
|
2637 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
|
2638 if (NILP (Vrun_hooks)) |
27226
44dc06740e6c
(Fuser_variable_p): Check customizability too.
Dave Love <fx@gnu.org>
parents:
27031
diff
changeset
|
2639 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
|
2640 |
12654
14721fd8dcc1
(Frun_hook_with_args): New C function, formerly in subr.el.
Karl Heuer <kwzh@gnu.org>
parents:
12583
diff
changeset
|
2641 sym = args[0]; |
12663
14d407b83eb3
(run-hook-with-args): Fix previous code.
Karl Heuer <kwzh@gnu.org>
parents:
12654
diff
changeset
|
2642 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
|
2643 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
|
2644 |
12654
14721fd8dcc1
(Frun_hook_with_args): New C function, formerly in subr.el.
Karl Heuer <kwzh@gnu.org>
parents:
12583
diff
changeset
|
2645 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
|
2646 return ret; |
25662
0a7261c1d487
Use XCAR, XCDR, and XFLOAT_DATA instead of explicit member access.
Ken Raeburn <raeburn@raeburn.org>
parents:
25314
diff
changeset
|
2647 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
|
2648 { |
14721fd8dcc1
(Frun_hook_with_args): New C function, formerly in subr.el.
Karl Heuer <kwzh@gnu.org>
parents:
12583
diff
changeset
|
2649 args[0] = val; |
14721fd8dcc1
(Frun_hook_with_args): New C function, formerly in subr.el.
Karl Heuer <kwzh@gnu.org>
parents:
12583
diff
changeset
|
2650 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
|
2651 } |
14721fd8dcc1
(Frun_hook_with_args): New C function, formerly in subr.el.
Karl Heuer <kwzh@gnu.org>
parents:
12583
diff
changeset
|
2652 else |
14721fd8dcc1
(Frun_hook_with_args): New C function, formerly in subr.el.
Karl Heuer <kwzh@gnu.org>
parents:
12583
diff
changeset
|
2653 { |
25257
0be923a80096
(run_hook_list_with_args): Gcpro `globals'.
Karl Heuer <kwzh@gnu.org>
parents:
25008
diff
changeset
|
2654 globals = Qnil; |
0be923a80096
(run_hook_list_with_args): Gcpro `globals'.
Karl Heuer <kwzh@gnu.org>
parents:
25008
diff
changeset
|
2655 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
|
2656 |
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
|
2657 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
|
2658 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
|
2659 || (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
|
2660 : !NILP (ret))); |
25662
0a7261c1d487
Use XCAR, XCDR, and XFLOAT_DATA instead of explicit member access.
Ken Raeburn <raeburn@raeburn.org>
parents:
25314
diff
changeset
|
2661 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
|
2662 { |
25662
0a7261c1d487
Use XCAR, XCDR, and XFLOAT_DATA instead of explicit member access.
Ken Raeburn <raeburn@raeburn.org>
parents:
25314
diff
changeset
|
2663 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
|
2664 { |
14721fd8dcc1
(Frun_hook_with_args): New C function, formerly in subr.el.
Karl Heuer <kwzh@gnu.org>
parents:
12583
diff
changeset
|
2665 /* 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
|
2666 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
|
2667 |
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
|
2668 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
|
2669 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
|
2670 || (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
|
2671 : !NILP (ret))); |
25662
0a7261c1d487
Use XCAR, XCDR, and XFLOAT_DATA instead of explicit member access.
Ken Raeburn <raeburn@raeburn.org>
parents:
25314
diff
changeset
|
2672 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
|
2673 { |
25662
0a7261c1d487
Use XCAR, XCDR, and XFLOAT_DATA instead of explicit member access.
Ken Raeburn <raeburn@raeburn.org>
parents:
25314
diff
changeset
|
2674 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
|
2675 /* 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
|
2676 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
|
2677 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
|
2678 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
|
2679 } |
14721fd8dcc1
(Frun_hook_with_args): New C function, formerly in subr.el.
Karl Heuer <kwzh@gnu.org>
parents:
12583
diff
changeset
|
2680 } |
14721fd8dcc1
(Frun_hook_with_args): New C function, formerly in subr.el.
Karl Heuer <kwzh@gnu.org>
parents:
12583
diff
changeset
|
2681 else |
14721fd8dcc1
(Frun_hook_with_args): New C function, formerly in subr.el.
Karl Heuer <kwzh@gnu.org>
parents:
12583
diff
changeset
|
2682 { |
25662
0a7261c1d487
Use XCAR, XCDR, and XFLOAT_DATA instead of explicit member access.
Ken Raeburn <raeburn@raeburn.org>
parents:
25314
diff
changeset
|
2683 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
|
2684 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
|
2685 } |
14721fd8dcc1
(Frun_hook_with_args): New C function, formerly in subr.el.
Karl Heuer <kwzh@gnu.org>
parents:
12583
diff
changeset
|
2686 } |
12788
eceb3f25e115
(run_hook_with_args): Move the GCPRO2; add UNGCPRO.
Richard M. Stallman <rms@gnu.org>
parents:
12781
diff
changeset
|
2687 |
eceb3f25e115
(run_hook_with_args): Move the GCPRO2; add UNGCPRO.
Richard M. Stallman <rms@gnu.org>
parents:
12781
diff
changeset
|
2688 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
|
2689 return ret; |
12654
14721fd8dcc1
(Frun_hook_with_args): New C function, formerly in subr.el.
Karl Heuer <kwzh@gnu.org>
parents:
12583
diff
changeset
|
2690 } |
14721fd8dcc1
(Frun_hook_with_args): New C function, formerly in subr.el.
Karl Heuer <kwzh@gnu.org>
parents:
12583
diff
changeset
|
2691 } |
12781
2a8036f0b585
(run_hook_with_args): Add gcpros.
Richard M. Stallman <rms@gnu.org>
parents:
12732
diff
changeset
|
2692 |
2a8036f0b585
(run_hook_with_args): Add gcpros.
Richard M. Stallman <rms@gnu.org>
parents:
12732
diff
changeset
|
2693 /* 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
|
2694 present value of that symbol. |
2a8036f0b585
(run_hook_with_args): Add gcpros.
Richard M. Stallman <rms@gnu.org>
parents:
12732
diff
changeset
|
2695 Call each element of FUNLIST, |
2a8036f0b585
(run_hook_with_args): Add gcpros.
Richard M. Stallman <rms@gnu.org>
parents:
12732
diff
changeset
|
2696 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
|
2697 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
|
2698 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
|
2699 |
2a8036f0b585
(run_hook_with_args): Add gcpros.
Richard M. Stallman <rms@gnu.org>
parents:
12732
diff
changeset
|
2700 Lisp_Object |
2a8036f0b585
(run_hook_with_args): Add gcpros.
Richard M. Stallman <rms@gnu.org>
parents:
12732
diff
changeset
|
2701 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
|
2702 Lisp_Object funlist; |
2a8036f0b585
(run_hook_with_args): Add gcpros.
Richard M. Stallman <rms@gnu.org>
parents:
12732
diff
changeset
|
2703 int nargs; |
2a8036f0b585
(run_hook_with_args): Add gcpros.
Richard M. Stallman <rms@gnu.org>
parents:
12732
diff
changeset
|
2704 Lisp_Object *args; |
2a8036f0b585
(run_hook_with_args): Add gcpros.
Richard M. Stallman <rms@gnu.org>
parents:
12732
diff
changeset
|
2705 { |
2a8036f0b585
(run_hook_with_args): Add gcpros.
Richard M. Stallman <rms@gnu.org>
parents:
12732
diff
changeset
|
2706 Lisp_Object sym; |
2a8036f0b585
(run_hook_with_args): Add gcpros.
Richard M. Stallman <rms@gnu.org>
parents:
12732
diff
changeset
|
2707 Lisp_Object val; |
25257
0be923a80096
(run_hook_list_with_args): Gcpro `globals'.
Karl Heuer <kwzh@gnu.org>
parents:
25008
diff
changeset
|
2708 Lisp_Object globals; |
0be923a80096
(run_hook_list_with_args): Gcpro `globals'.
Karl Heuer <kwzh@gnu.org>
parents:
25008
diff
changeset
|
2709 struct gcpro gcpro1, gcpro2, gcpro3; |
12781
2a8036f0b585
(run_hook_with_args): Add gcpros.
Richard M. Stallman <rms@gnu.org>
parents:
12732
diff
changeset
|
2710 |
2a8036f0b585
(run_hook_with_args): Add gcpros.
Richard M. Stallman <rms@gnu.org>
parents:
12732
diff
changeset
|
2711 sym = args[0]; |
25257
0be923a80096
(run_hook_list_with_args): Gcpro `globals'.
Karl Heuer <kwzh@gnu.org>
parents:
25008
diff
changeset
|
2712 globals = Qnil; |
0be923a80096
(run_hook_list_with_args): Gcpro `globals'.
Karl Heuer <kwzh@gnu.org>
parents:
25008
diff
changeset
|
2713 GCPRO3 (sym, val, globals); |
12781
2a8036f0b585
(run_hook_with_args): Add gcpros.
Richard M. Stallman <rms@gnu.org>
parents:
12732
diff
changeset
|
2714 |
25662
0a7261c1d487
Use XCAR, XCDR, and XFLOAT_DATA instead of explicit member access.
Ken Raeburn <raeburn@raeburn.org>
parents:
25314
diff
changeset
|
2715 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
|
2716 { |
25662
0a7261c1d487
Use XCAR, XCDR, and XFLOAT_DATA instead of explicit member access.
Ken Raeburn <raeburn@raeburn.org>
parents:
25314
diff
changeset
|
2717 if (EQ (XCAR (val), Qt)) |
12781
2a8036f0b585
(run_hook_with_args): Add gcpros.
Richard M. Stallman <rms@gnu.org>
parents:
12732
diff
changeset
|
2718 { |
2a8036f0b585
(run_hook_with_args): Add gcpros.
Richard M. Stallman <rms@gnu.org>
parents:
12732
diff
changeset
|
2719 /* 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
|
2720 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
|
2721 |
2a8036f0b585
(run_hook_with_args): Add gcpros.
Richard M. Stallman <rms@gnu.org>
parents:
12732
diff
changeset
|
2722 for (globals = Fdefault_value (sym); |
2a8036f0b585
(run_hook_with_args): Add gcpros.
Richard M. Stallman <rms@gnu.org>
parents:
12732
diff
changeset
|
2723 CONSP (globals); |
25662
0a7261c1d487
Use XCAR, XCDR, and XFLOAT_DATA instead of explicit member access.
Ken Raeburn <raeburn@raeburn.org>
parents:
25314
diff
changeset
|
2724 globals = XCDR (globals)) |
12781
2a8036f0b585
(run_hook_with_args): Add gcpros.
Richard M. Stallman <rms@gnu.org>
parents:
12732
diff
changeset
|
2725 { |
25662
0a7261c1d487
Use XCAR, XCDR, and XFLOAT_DATA instead of explicit member access.
Ken Raeburn <raeburn@raeburn.org>
parents:
25314
diff
changeset
|
2726 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
|
2727 /* 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
|
2728 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
|
2729 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
|
2730 Ffuncall (nargs, args); |
12781
2a8036f0b585
(run_hook_with_args): Add gcpros.
Richard M. Stallman <rms@gnu.org>
parents:
12732
diff
changeset
|
2731 } |
2a8036f0b585
(run_hook_with_args): Add gcpros.
Richard M. Stallman <rms@gnu.org>
parents:
12732
diff
changeset
|
2732 } |
2a8036f0b585
(run_hook_with_args): Add gcpros.
Richard M. Stallman <rms@gnu.org>
parents:
12732
diff
changeset
|
2733 else |
2a8036f0b585
(run_hook_with_args): Add gcpros.
Richard M. Stallman <rms@gnu.org>
parents:
12732
diff
changeset
|
2734 { |
25662
0a7261c1d487
Use XCAR, XCDR, and XFLOAT_DATA instead of explicit member access.
Ken Raeburn <raeburn@raeburn.org>
parents:
25314
diff
changeset
|
2735 args[0] = XCAR (val); |
12781
2a8036f0b585
(run_hook_with_args): Add gcpros.
Richard M. Stallman <rms@gnu.org>
parents:
12732
diff
changeset
|
2736 Ffuncall (nargs, args); |
2a8036f0b585
(run_hook_with_args): Add gcpros.
Richard M. Stallman <rms@gnu.org>
parents:
12732
diff
changeset
|
2737 } |
2a8036f0b585
(run_hook_with_args): Add gcpros.
Richard M. Stallman <rms@gnu.org>
parents:
12732
diff
changeset
|
2738 } |
2a8036f0b585
(run_hook_with_args): Add gcpros.
Richard M. Stallman <rms@gnu.org>
parents:
12732
diff
changeset
|
2739 UNGCPRO; |
2a8036f0b585
(run_hook_with_args): Add gcpros.
Richard M. Stallman <rms@gnu.org>
parents:
12732
diff
changeset
|
2740 return Qnil; |
2a8036f0b585
(run_hook_with_args): Add gcpros.
Richard M. Stallman <rms@gnu.org>
parents:
12732
diff
changeset
|
2741 } |
13103
a537b52d6668
(run_hook_with_args_2): New function.
Richard M. Stallman <rms@gnu.org>
parents:
12788
diff
changeset
|
2742 |
a537b52d6668
(run_hook_with_args_2): New function.
Richard M. Stallman <rms@gnu.org>
parents:
12788
diff
changeset
|
2743 /* 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
|
2744 |
a537b52d6668
(run_hook_with_args_2): New function.
Richard M. Stallman <rms@gnu.org>
parents:
12788
diff
changeset
|
2745 void |
a537b52d6668
(run_hook_with_args_2): New function.
Richard M. Stallman <rms@gnu.org>
parents:
12788
diff
changeset
|
2746 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
|
2747 Lisp_Object hook, arg1, arg2; |
a537b52d6668
(run_hook_with_args_2): New function.
Richard M. Stallman <rms@gnu.org>
parents:
12788
diff
changeset
|
2748 { |
a537b52d6668
(run_hook_with_args_2): New function.
Richard M. Stallman <rms@gnu.org>
parents:
12788
diff
changeset
|
2749 Lisp_Object temp[3]; |
a537b52d6668
(run_hook_with_args_2): New function.
Richard M. Stallman <rms@gnu.org>
parents:
12788
diff
changeset
|
2750 temp[0] = hook; |
a537b52d6668
(run_hook_with_args_2): New function.
Richard M. Stallman <rms@gnu.org>
parents:
12788
diff
changeset
|
2751 temp[1] = arg1; |
a537b52d6668
(run_hook_with_args_2): New function.
Richard M. Stallman <rms@gnu.org>
parents:
12788
diff
changeset
|
2752 temp[2] = arg2; |
a537b52d6668
(run_hook_with_args_2): New function.
Richard M. Stallman <rms@gnu.org>
parents:
12788
diff
changeset
|
2753 |
a537b52d6668
(run_hook_with_args_2): New function.
Richard M. Stallman <rms@gnu.org>
parents:
12788
diff
changeset
|
2754 Frun_hook_with_args (3, temp); |
a537b52d6668
(run_hook_with_args_2): New function.
Richard M. Stallman <rms@gnu.org>
parents:
12788
diff
changeset
|
2755 } |
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
|
2756 |
272 | 2757 /* Apply fn to arg */ |
2758 Lisp_Object | |
2759 apply1 (fn, arg) | |
2760 Lisp_Object fn, arg; | |
2761 { | |
323 | 2762 struct gcpro gcpro1; |
2763 | |
2764 GCPRO1 (fn); | |
485 | 2765 if (NILP (arg)) |
323 | 2766 RETURN_UNGCPRO (Ffuncall (1, &fn)); |
2767 gcpro1.nvars = 2; | |
272 | 2768 #ifdef NO_ARG_ARRAY |
2769 { | |
2770 Lisp_Object args[2]; | |
2771 args[0] = fn; | |
2772 args[1] = arg; | |
323 | 2773 gcpro1.var = args; |
2774 RETURN_UNGCPRO (Fapply (2, args)); | |
272 | 2775 } |
2776 #else /* not NO_ARG_ARRAY */ | |
323 | 2777 RETURN_UNGCPRO (Fapply (2, &fn)); |
272 | 2778 #endif /* not NO_ARG_ARRAY */ |
2779 } | |
2780 | |
2781 /* Call function fn on no arguments */ | |
2782 Lisp_Object | |
2783 call0 (fn) | |
2784 Lisp_Object fn; | |
2785 { | |
323 | 2786 struct gcpro gcpro1; |
2787 | |
2788 GCPRO1 (fn); | |
2789 RETURN_UNGCPRO (Ffuncall (1, &fn)); | |
272 | 2790 } |
2791 | |
3703
6930e8f81c88
(call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
2792 /* Call function fn with 1 argument arg1 */ |
272 | 2793 /* ARGSUSED */ |
2794 Lisp_Object | |
3703
6930e8f81c88
(call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
2795 call1 (fn, arg1) |
6930e8f81c88
(call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
2796 Lisp_Object fn, arg1; |
272 | 2797 { |
323 | 2798 struct gcpro gcpro1; |
272 | 2799 #ifdef NO_ARG_ARRAY |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49105
diff
changeset
|
2800 Lisp_Object args[2]; |
323 | 2801 |
272 | 2802 args[0] = fn; |
3703
6930e8f81c88
(call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
2803 args[1] = arg1; |
323 | 2804 GCPRO1 (args[0]); |
2805 gcpro1.nvars = 2; | |
2806 RETURN_UNGCPRO (Ffuncall (2, args)); | |
272 | 2807 #else /* not NO_ARG_ARRAY */ |
323 | 2808 GCPRO1 (fn); |
2809 gcpro1.nvars = 2; | |
2810 RETURN_UNGCPRO (Ffuncall (2, &fn)); | |
272 | 2811 #endif /* not NO_ARG_ARRAY */ |
2812 } | |
2813 | |
3703
6930e8f81c88
(call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
2814 /* Call function fn with 2 arguments arg1, arg2 */ |
272 | 2815 /* ARGSUSED */ |
2816 Lisp_Object | |
3703
6930e8f81c88
(call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
2817 call2 (fn, arg1, arg2) |
6930e8f81c88
(call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
2818 Lisp_Object fn, arg1, arg2; |
272 | 2819 { |
323 | 2820 struct gcpro gcpro1; |
272 | 2821 #ifdef NO_ARG_ARRAY |
2822 Lisp_Object args[3]; | |
2823 args[0] = fn; | |
3703
6930e8f81c88
(call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
2824 args[1] = arg1; |
6930e8f81c88
(call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
2825 args[2] = arg2; |
323 | 2826 GCPRO1 (args[0]); |
2827 gcpro1.nvars = 3; | |
2828 RETURN_UNGCPRO (Ffuncall (3, args)); | |
272 | 2829 #else /* not NO_ARG_ARRAY */ |
323 | 2830 GCPRO1 (fn); |
2831 gcpro1.nvars = 3; | |
2832 RETURN_UNGCPRO (Ffuncall (3, &fn)); | |
272 | 2833 #endif /* not NO_ARG_ARRAY */ |
2834 } | |
2835 | |
3703
6930e8f81c88
(call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
2836 /* Call function fn with 3 arguments arg1, arg2, arg3 */ |
272 | 2837 /* ARGSUSED */ |
2838 Lisp_Object | |
3703
6930e8f81c88
(call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
2839 call3 (fn, arg1, arg2, arg3) |
6930e8f81c88
(call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
2840 Lisp_Object fn, arg1, arg2, arg3; |
272 | 2841 { |
323 | 2842 struct gcpro gcpro1; |
272 | 2843 #ifdef NO_ARG_ARRAY |
2844 Lisp_Object args[4]; | |
2845 args[0] = fn; | |
3703
6930e8f81c88
(call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
2846 args[1] = arg1; |
6930e8f81c88
(call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
2847 args[2] = arg2; |
6930e8f81c88
(call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
2848 args[3] = arg3; |
323 | 2849 GCPRO1 (args[0]); |
2850 gcpro1.nvars = 4; | |
2851 RETURN_UNGCPRO (Ffuncall (4, args)); | |
272 | 2852 #else /* not NO_ARG_ARRAY */ |
323 | 2853 GCPRO1 (fn); |
2854 gcpro1.nvars = 4; | |
2855 RETURN_UNGCPRO (Ffuncall (4, &fn)); | |
272 | 2856 #endif /* not NO_ARG_ARRAY */ |
2857 } | |
2858 | |
3703
6930e8f81c88
(call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
2859 /* 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
|
2860 /* ARGSUSED */ |
3c4b5489d2b4
* fileio.c (Frename_file): Pass all arguments to the file name handler.
Jim Blandy <jimb@redhat.com>
parents:
2961
diff
changeset
|
2861 Lisp_Object |
3703
6930e8f81c88
(call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
2862 call4 (fn, arg1, arg2, arg3, arg4) |
6930e8f81c88
(call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
2863 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
|
2864 { |
3c4b5489d2b4
* fileio.c (Frename_file): Pass all arguments to the file name handler.
Jim Blandy <jimb@redhat.com>
parents:
2961
diff
changeset
|
2865 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
|
2866 #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
|
2867 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
|
2868 args[0] = fn; |
3703
6930e8f81c88
(call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
2869 args[1] = arg1; |
6930e8f81c88
(call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
2870 args[2] = arg2; |
6930e8f81c88
(call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
2871 args[3] = arg3; |
6930e8f81c88
(call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
2872 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
|
2873 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
|
2874 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
|
2875 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
|
2876 #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
|
2877 GCPRO1 (fn); |
3c4b5489d2b4
* fileio.c (Frename_file): Pass all arguments to the file name handler.
Jim Blandy <jimb@redhat.com>
parents:
2961
diff
changeset
|
2878 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
|
2879 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
|
2880 #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
|
2881 } |
3c4b5489d2b4
* fileio.c (Frename_file): Pass all arguments to the file name handler.
Jim Blandy <jimb@redhat.com>
parents:
2961
diff
changeset
|
2882 |
3703
6930e8f81c88
(call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
2883 /* 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
|
2884 /* ARGSUSED */ |
6930e8f81c88
(call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
2885 Lisp_Object |
6930e8f81c88
(call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
2886 call5 (fn, arg1, arg2, arg3, arg4, arg5) |
6930e8f81c88
(call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
2887 Lisp_Object fn, arg1, arg2, arg3, arg4, arg5; |
6930e8f81c88
(call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
2888 { |
6930e8f81c88
(call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
2889 struct gcpro gcpro1; |
6930e8f81c88
(call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
2890 #ifdef NO_ARG_ARRAY |
6930e8f81c88
(call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
2891 Lisp_Object args[6]; |
6930e8f81c88
(call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
2892 args[0] = fn; |
6930e8f81c88
(call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
2893 args[1] = arg1; |
6930e8f81c88
(call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
2894 args[2] = arg2; |
6930e8f81c88
(call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
2895 args[3] = arg3; |
6930e8f81c88
(call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
2896 args[4] = arg4; |
6930e8f81c88
(call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
2897 args[5] = arg5; |
6930e8f81c88
(call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
2898 GCPRO1 (args[0]); |
6930e8f81c88
(call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
2899 gcpro1.nvars = 6; |
6930e8f81c88
(call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
2900 RETURN_UNGCPRO (Ffuncall (6, args)); |
6930e8f81c88
(call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
2901 #else /* not NO_ARG_ARRAY */ |
6930e8f81c88
(call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
2902 GCPRO1 (fn); |
6930e8f81c88
(call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
2903 gcpro1.nvars = 6; |
6930e8f81c88
(call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
2904 RETURN_UNGCPRO (Ffuncall (6, &fn)); |
6930e8f81c88
(call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
2905 #endif /* not NO_ARG_ARRAY */ |
6930e8f81c88
(call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
2906 } |
6930e8f81c88
(call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
2907 |
6930e8f81c88
(call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
2908 /* 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
|
2909 /* ARGSUSED */ |
6930e8f81c88
(call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
2910 Lisp_Object |
6930e8f81c88
(call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
2911 call6 (fn, arg1, arg2, arg3, arg4, arg5, arg6) |
6930e8f81c88
(call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
2912 Lisp_Object fn, arg1, arg2, arg3, arg4, arg5, arg6; |
6930e8f81c88
(call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
2913 { |
6930e8f81c88
(call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
2914 struct gcpro gcpro1; |
6930e8f81c88
(call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
2915 #ifdef NO_ARG_ARRAY |
6930e8f81c88
(call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
2916 Lisp_Object args[7]; |
6930e8f81c88
(call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
2917 args[0] = fn; |
6930e8f81c88
(call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
2918 args[1] = arg1; |
6930e8f81c88
(call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
2919 args[2] = arg2; |
6930e8f81c88
(call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
2920 args[3] = arg3; |
6930e8f81c88
(call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
2921 args[4] = arg4; |
6930e8f81c88
(call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
2922 args[5] = arg5; |
6930e8f81c88
(call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
2923 args[6] = arg6; |
6930e8f81c88
(call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
2924 GCPRO1 (args[0]); |
6930e8f81c88
(call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
2925 gcpro1.nvars = 7; |
6930e8f81c88
(call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
2926 RETURN_UNGCPRO (Ffuncall (7, args)); |
6930e8f81c88
(call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
2927 #else /* not NO_ARG_ARRAY */ |
6930e8f81c88
(call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
2928 GCPRO1 (fn); |
6930e8f81c88
(call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
2929 gcpro1.nvars = 7; |
6930e8f81c88
(call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
2930 RETURN_UNGCPRO (Ffuncall (7, &fn)); |
6930e8f81c88
(call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
2931 #endif /* not NO_ARG_ARRAY */ |
6930e8f81c88
(call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
2932 } |
6930e8f81c88
(call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
2933 |
53362 | 2934 /* The caller should GCPRO all the elements of ARGS. */ |
2935 | |
272 | 2936 DEFUN ("funcall", Ffuncall, Sfuncall, 1, MANY, 0, |
40570 | 2937 doc: /* Call first argument as a function, passing remaining arguments to it. |
2938 Return the value that function returns. | |
2939 Thus, (funcall 'cons 'x 'y) returns (x . y). | |
2940 usage: (funcall FUNCTION &rest ARGUMENTS) */) | |
2941 (nargs, args) | |
272 | 2942 int nargs; |
2943 Lisp_Object *args; | |
2944 { | |
71872
b20203b004f8
(Fthrow): Remove loop around Fsignal.
Kim F. Storm <storm@cua.dk>
parents:
71574
diff
changeset
|
2945 Lisp_Object fun, original_fun; |
272 | 2946 Lisp_Object funcar; |
2947 int numargs = nargs - 1; | |
2948 Lisp_Object lisp_numargs; | |
2949 Lisp_Object val; | |
2950 struct backtrace backtrace; | |
2951 register Lisp_Object *internal_args; | |
2952 register int i; | |
2953 | |
2954 QUIT; | |
66528
c9adaa704c22
(internal_lisp_condition_case): New function.
Richard M. Stallman <rms@gnu.org>
parents:
64770
diff
changeset
|
2955 if ((consing_since_gc > gc_cons_threshold |
c9adaa704c22
(internal_lisp_condition_case): New function.
Richard M. Stallman <rms@gnu.org>
parents:
64770
diff
changeset
|
2956 && consing_since_gc > gc_relative_threshold) |
c9adaa704c22
(internal_lisp_condition_case): New function.
Richard M. Stallman <rms@gnu.org>
parents:
64770
diff
changeset
|
2957 || |
c9adaa704c22
(internal_lisp_condition_case): New function.
Richard M. Stallman <rms@gnu.org>
parents:
64770
diff
changeset
|
2958 (!NILP (Vmemory_full) && consing_since_gc > memory_full_cons_threshold)) |
323 | 2959 Fgarbage_collect (); |
272 | 2960 |
2961 if (++lisp_eval_depth > max_lisp_eval_depth) | |
2962 { | |
2963 if (max_lisp_eval_depth < 100) | |
2964 max_lisp_eval_depth = 100; | |
2965 if (lisp_eval_depth > max_lisp_eval_depth) | |
63697
9f617bb41e22
(Fdefvar, Fdefconst, Feval, Ffuncall): Follow error conventions.
Juanma Barranquero <lekktu@gmail.com>
parents:
63391
diff
changeset
|
2966 error ("Lisp nesting exceeds `max-lisp-eval-depth'"); |
272 | 2967 } |
2968 | |
2969 backtrace.next = backtrace_list; | |
2970 backtrace_list = &backtrace; | |
2971 backtrace.function = &args[0]; | |
2972 backtrace.args = &args[1]; | |
2973 backtrace.nargs = nargs - 1; | |
2974 backtrace.evalargs = 0; | |
2975 backtrace.debug_on_exit = 0; | |
2976 | |
2977 if (debug_on_next_call) | |
2978 do_debug_on_call (Qlambda); | |
2979 | |
61250
4c111b6f6378
(Ffuncall): Always call CHECK_CONS_LIST on entry.
Kim F. Storm <storm@cua.dk>
parents:
60418
diff
changeset
|
2980 CHECK_CONS_LIST (); |
4c111b6f6378
(Ffuncall): Always call CHECK_CONS_LIST on entry.
Kim F. Storm <storm@cua.dk>
parents:
60418
diff
changeset
|
2981 |
71872
b20203b004f8
(Fthrow): Remove loop around Fsignal.
Kim F. Storm <storm@cua.dk>
parents:
71574
diff
changeset
|
2982 original_fun = args[0]; |
b20203b004f8
(Fthrow): Remove loop around Fsignal.
Kim F. Storm <storm@cua.dk>
parents:
71574
diff
changeset
|
2983 |
272 | 2984 retry: |
2985 | |
71872
b20203b004f8
(Fthrow): Remove loop around Fsignal.
Kim F. Storm <storm@cua.dk>
parents:
71574
diff
changeset
|
2986 /* Optimize for no indirection. */ |
b20203b004f8
(Fthrow): Remove loop around Fsignal.
Kim F. Storm <storm@cua.dk>
parents:
71574
diff
changeset
|
2987 fun = original_fun; |
b20203b004f8
(Fthrow): Remove loop around Fsignal.
Kim F. Storm <storm@cua.dk>
parents:
71574
diff
changeset
|
2988 if (SYMBOLP (fun) && !EQ (fun, Qunbound) |
b20203b004f8
(Fthrow): Remove loop around Fsignal.
Kim F. Storm <storm@cua.dk>
parents:
71574
diff
changeset
|
2989 && (fun = XSYMBOL (fun)->function, SYMBOLP (fun))) |
b20203b004f8
(Fthrow): Remove loop around Fsignal.
Kim F. Storm <storm@cua.dk>
parents:
71574
diff
changeset
|
2990 fun = indirect_function (fun); |
272 | 2991 |
9148
e7ab930bb7eb
(Fprogn, Finteractive_p, Fuser_variable_p, FletX, Flet, Fmacroexpand,
Karl Heuer <kwzh@gnu.org>
parents:
8980
diff
changeset
|
2992 if (SUBRP (fun)) |
272 | 2993 { |
61250
4c111b6f6378
(Ffuncall): Always call CHECK_CONS_LIST on entry.
Kim F. Storm <storm@cua.dk>
parents:
60418
diff
changeset
|
2994 if (numargs < XSUBR (fun)->min_args |
272 | 2995 || (XSUBR (fun)->max_args >= 0 && XSUBR (fun)->max_args < numargs)) |
2996 { | |
9306
ac852c183fa1
(Feval, Ffuncall, funcall_lambda, Fbacktrace): Don't use XFASTINT as an
Karl Heuer <kwzh@gnu.org>
parents:
9148
diff
changeset
|
2997 XSETFASTINT (lisp_numargs, numargs); |
71976
66a9a086ddbb
* eval.c (xsignal): New func. Like Fsignal, but marked no-return.
Kim F. Storm <storm@cua.dk>
parents:
71872
diff
changeset
|
2998 xsignal2 (Qwrong_number_of_arguments, original_fun, lisp_numargs); |
272 | 2999 } |
3000 | |
3001 if (XSUBR (fun)->max_args == UNEVALLED) | |
71976
66a9a086ddbb
* eval.c (xsignal): New func. Like Fsignal, but marked no-return.
Kim F. Storm <storm@cua.dk>
parents:
71872
diff
changeset
|
3002 xsignal1 (Qinvalid_function, original_fun); |
272 | 3003 |
3004 if (XSUBR (fun)->max_args == MANY) | |
3005 { | |
3006 val = (*XSUBR (fun)->function) (numargs, args + 1); | |
3007 goto done; | |
3008 } | |
3009 | |
3010 if (XSUBR (fun)->max_args > numargs) | |
3011 { | |
3012 internal_args = (Lisp_Object *) alloca (XSUBR (fun)->max_args * sizeof (Lisp_Object)); | |
3013 bcopy (args + 1, internal_args, numargs * sizeof (Lisp_Object)); | |
3014 for (i = numargs; i < XSUBR (fun)->max_args; i++) | |
3015 internal_args[i] = Qnil; | |
3016 } | |
3017 else | |
3018 internal_args = args + 1; | |
3019 switch (XSUBR (fun)->max_args) | |
3020 { | |
3021 case 0: | |
3022 val = (*XSUBR (fun)->function) (); | |
3023 goto done; | |
3024 case 1: | |
3025 val = (*XSUBR (fun)->function) (internal_args[0]); | |
3026 goto done; | |
3027 case 2: | |
64499
34bf5187c5aa
(Fprog2, Fcalled_interactively_p), (syms_of_eval) <debug-on-quit>: Doc fixes.
Juanma Barranquero <lekktu@gmail.com>
parents:
64271
diff
changeset
|
3028 val = (*XSUBR (fun)->function) (internal_args[0], internal_args[1]); |
272 | 3029 goto done; |
3030 case 3: | |
3031 val = (*XSUBR (fun)->function) (internal_args[0], internal_args[1], | |
3032 internal_args[2]); | |
3033 goto done; | |
3034 case 4: | |
3035 val = (*XSUBR (fun)->function) (internal_args[0], internal_args[1], | |
64499
34bf5187c5aa
(Fprog2, Fcalled_interactively_p), (syms_of_eval) <debug-on-quit>: Doc fixes.
Juanma Barranquero <lekktu@gmail.com>
parents:
64271
diff
changeset
|
3036 internal_args[2], internal_args[3]); |
272 | 3037 goto done; |
3038 case 5: | |
3039 val = (*XSUBR (fun)->function) (internal_args[0], internal_args[1], | |
3040 internal_args[2], internal_args[3], | |
3041 internal_args[4]); | |
3042 goto done; | |
3043 case 6: | |
3044 val = (*XSUBR (fun)->function) (internal_args[0], internal_args[1], | |
3045 internal_args[2], internal_args[3], | |
3046 internal_args[4], internal_args[5]); | |
3047 goto done; | |
863
427299469901
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
753
diff
changeset
|
3048 case 7: |
427299469901
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
753
diff
changeset
|
3049 val = (*XSUBR (fun)->function) (internal_args[0], internal_args[1], |
427299469901
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
753
diff
changeset
|
3050 internal_args[2], internal_args[3], |
427299469901
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
753
diff
changeset
|
3051 internal_args[4], internal_args[5], |
427299469901
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
753
diff
changeset
|
3052 internal_args[6]); |
427299469901
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
753
diff
changeset
|
3053 goto done; |
272 | 3054 |
19544
fc0bb24597ba
(Feval): Handle a subr which takes 8 arguments.
Kenichi Handa <handa@m17n.org>
parents:
19237
diff
changeset
|
3055 case 8: |
fc0bb24597ba
(Feval): Handle a subr which takes 8 arguments.
Kenichi Handa <handa@m17n.org>
parents:
19237
diff
changeset
|
3056 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
|
3057 internal_args[2], internal_args[3], |
fc0bb24597ba
(Feval): Handle a subr which takes 8 arguments.
Kenichi Handa <handa@m17n.org>
parents:
19237
diff
changeset
|
3058 internal_args[4], internal_args[5], |
fc0bb24597ba
(Feval): Handle a subr which takes 8 arguments.
Kenichi Handa <handa@m17n.org>
parents:
19237
diff
changeset
|
3059 internal_args[6], internal_args[7]); |
fc0bb24597ba
(Feval): Handle a subr which takes 8 arguments.
Kenichi Handa <handa@m17n.org>
parents:
19237
diff
changeset
|
3060 goto done; |
fc0bb24597ba
(Feval): Handle a subr which takes 8 arguments.
Kenichi Handa <handa@m17n.org>
parents:
19237
diff
changeset
|
3061 |
272 | 3062 default: |
573 | 3063 |
19544
fc0bb24597ba
(Feval): Handle a subr which takes 8 arguments.
Kenichi Handa <handa@m17n.org>
parents:
19237
diff
changeset
|
3064 /* If a subr takes more than 8 arguments without using MANY |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49105
diff
changeset
|
3065 or UNEVALLED, we need to extend this function to support it. |
573 | 3066 Until this is done, there is no way to call the function. */ |
3067 abort (); | |
272 | 3068 } |
3069 } | |
9148
e7ab930bb7eb
(Fprogn, Finteractive_p, Fuser_variable_p, FletX, Flet, Fmacroexpand,
Karl Heuer <kwzh@gnu.org>
parents:
8980
diff
changeset
|
3070 if (COMPILEDP (fun)) |
272 | 3071 val = funcall_lambda (fun, numargs, args + 1); |
3072 else | |
3073 { | |
71872
b20203b004f8
(Fthrow): Remove loop around Fsignal.
Kim F. Storm <storm@cua.dk>
parents:
71574
diff
changeset
|
3074 if (EQ (fun, Qunbound)) |
71976
66a9a086ddbb
* eval.c (xsignal): New func. Like Fsignal, but marked no-return.
Kim F. Storm <storm@cua.dk>
parents:
71872
diff
changeset
|
3075 xsignal1 (Qvoid_function, original_fun); |
272 | 3076 if (!CONSP (fun)) |
71976
66a9a086ddbb
* eval.c (xsignal): New func. Like Fsignal, but marked no-return.
Kim F. Storm <storm@cua.dk>
parents:
71872
diff
changeset
|
3077 xsignal1 (Qinvalid_function, original_fun); |
66a9a086ddbb
* eval.c (xsignal): New func. Like Fsignal, but marked no-return.
Kim F. Storm <storm@cua.dk>
parents:
71872
diff
changeset
|
3078 funcar = XCAR (fun); |
9148
e7ab930bb7eb
(Fprogn, Finteractive_p, Fuser_variable_p, FletX, Flet, Fmacroexpand,
Karl Heuer <kwzh@gnu.org>
parents:
8980
diff
changeset
|
3079 if (!SYMBOLP (funcar)) |
71976
66a9a086ddbb
* eval.c (xsignal): New func. Like Fsignal, but marked no-return.
Kim F. Storm <storm@cua.dk>
parents:
71872
diff
changeset
|
3080 xsignal1 (Qinvalid_function, original_fun); |
272 | 3081 if (EQ (funcar, Qlambda)) |
3082 val = funcall_lambda (fun, numargs, args + 1); | |
3083 else if (EQ (funcar, Qautoload)) | |
3084 { | |
71872
b20203b004f8
(Fthrow): Remove loop around Fsignal.
Kim F. Storm <storm@cua.dk>
parents:
71574
diff
changeset
|
3085 do_autoload (fun, original_fun); |
61250
4c111b6f6378
(Ffuncall): Always call CHECK_CONS_LIST on entry.
Kim F. Storm <storm@cua.dk>
parents:
60418
diff
changeset
|
3086 CHECK_CONS_LIST (); |
272 | 3087 goto retry; |
3088 } | |
3089 else | |
71976
66a9a086ddbb
* eval.c (xsignal): New func. Like Fsignal, but marked no-return.
Kim F. Storm <storm@cua.dk>
parents:
71872
diff
changeset
|
3090 xsignal1 (Qinvalid_function, original_fun); |
272 | 3091 } |
3092 done: | |
60418
887436be5f78
(unwind_to_catch): Use UNBLOCK_INPUT_TO.
Richard M. Stallman <rms@gnu.org>
parents:
59953
diff
changeset
|
3093 CHECK_CONS_LIST (); |
272 | 3094 lisp_eval_depth--; |
3095 if (backtrace.debug_on_exit) | |
3096 val = call_debugger (Fcons (Qexit, Fcons (val, Qnil))); | |
3097 backtrace_list = backtrace.next; | |
3098 return val; | |
3099 } | |
3100 | |
3101 Lisp_Object | |
3102 apply_lambda (fun, args, eval_flag) | |
3103 Lisp_Object fun, args; | |
3104 int eval_flag; | |
3105 { | |
3106 Lisp_Object args_left; | |
3107 Lisp_Object numargs; | |
3108 register Lisp_Object *arg_vector; | |
3109 struct gcpro gcpro1, gcpro2, gcpro3; | |
3110 register int i; | |
3111 register Lisp_Object tem; | |
3112 | |
3113 numargs = Flength (args); | |
3114 arg_vector = (Lisp_Object *) alloca (XINT (numargs) * sizeof (Lisp_Object)); | |
3115 args_left = args; | |
3116 | |
3117 GCPRO3 (*arg_vector, args_left, fun); | |
3118 gcpro1.nvars = 0; | |
3119 | |
3120 for (i = 0; i < XINT (numargs);) | |
3121 { | |
3122 tem = Fcar (args_left), args_left = Fcdr (args_left); | |
3123 if (eval_flag) tem = Feval (tem); | |
3124 arg_vector[i++] = tem; | |
3125 gcpro1.nvars = i; | |
3126 } | |
3127 | |
3128 UNGCPRO; | |
3129 | |
3130 if (eval_flag) | |
3131 { | |
3132 backtrace_list->args = arg_vector; | |
3133 backtrace_list->nargs = i; | |
3134 } | |
3135 backtrace_list->evalargs = 0; | |
3136 tem = funcall_lambda (fun, XINT (numargs), arg_vector); | |
3137 | |
3138 /* Do the debug-on-exit now, while arg_vector still exists. */ | |
3139 if (backtrace_list->debug_on_exit) | |
3140 tem = call_debugger (Fcons (Qexit, Fcons (tem, Qnil))); | |
3141 /* Don't do it again when we return to eval. */ | |
3142 backtrace_list->debug_on_exit = 0; | |
3143 return tem; | |
3144 } | |
3145 | |
3146 /* Apply a Lisp function FUN to the NARGS evaluated arguments in ARG_VECTOR | |
3147 and return the result of evaluation. | |
3148 FUN must be either a lambda-expression or a compiled-code object. */ | |
3149 | |
41114
242c6928accc
(max_specpdl_size, max_lisp_eval_depth): Use EMACS_INT.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41029
diff
changeset
|
3150 static Lisp_Object |
272 | 3151 funcall_lambda (fun, nargs, arg_vector) |
3152 Lisp_Object fun; | |
3153 int nargs; | |
3154 register Lisp_Object *arg_vector; | |
3155 { | |
27781
f84c7b8308c5
(funcall_lambda): Don't bind Qmocklisp_arguments unless
Gerd Moellmann <gerd@gnu.org>
parents:
27704
diff
changeset
|
3156 Lisp_Object val, syms_left, next; |
46293
1fb8f75062c6
Use macro SPECPDL_INDEX.
Juanma Barranquero <lekktu@gmail.com>
parents:
46198
diff
changeset
|
3157 int count = SPECPDL_INDEX (); |
27781
f84c7b8308c5
(funcall_lambda): Don't bind Qmocklisp_arguments unless
Gerd Moellmann <gerd@gnu.org>
parents:
27704
diff
changeset
|
3158 int i, optional, rest; |
f84c7b8308c5
(funcall_lambda): Don't bind Qmocklisp_arguments unless
Gerd Moellmann <gerd@gnu.org>
parents:
27704
diff
changeset
|
3159 |
9148
e7ab930bb7eb
(Fprogn, Finteractive_p, Fuser_variable_p, FletX, Flet, Fmacroexpand,
Karl Heuer <kwzh@gnu.org>
parents:
8980
diff
changeset
|
3160 if (CONSP (fun)) |
27781
f84c7b8308c5
(funcall_lambda): Don't bind Qmocklisp_arguments unless
Gerd Moellmann <gerd@gnu.org>
parents:
27704
diff
changeset
|
3161 { |
f84c7b8308c5
(funcall_lambda): Don't bind Qmocklisp_arguments unless
Gerd Moellmann <gerd@gnu.org>
parents:
27704
diff
changeset
|
3162 syms_left = XCDR (fun); |
f84c7b8308c5
(funcall_lambda): Don't bind Qmocklisp_arguments unless
Gerd Moellmann <gerd@gnu.org>
parents:
27704
diff
changeset
|
3163 if (CONSP (syms_left)) |
f84c7b8308c5
(funcall_lambda): Don't bind Qmocklisp_arguments unless
Gerd Moellmann <gerd@gnu.org>
parents:
27704
diff
changeset
|
3164 syms_left = XCAR (syms_left); |
f84c7b8308c5
(funcall_lambda): Don't bind Qmocklisp_arguments unless
Gerd Moellmann <gerd@gnu.org>
parents:
27704
diff
changeset
|
3165 else |
71976
66a9a086ddbb
* eval.c (xsignal): New func. Like Fsignal, but marked no-return.
Kim F. Storm <storm@cua.dk>
parents:
71872
diff
changeset
|
3166 xsignal1 (Qinvalid_function, fun); |
27781
f84c7b8308c5
(funcall_lambda): Don't bind Qmocklisp_arguments unless
Gerd Moellmann <gerd@gnu.org>
parents:
27704
diff
changeset
|
3167 } |
9148
e7ab930bb7eb
(Fprogn, Finteractive_p, Fuser_variable_p, FletX, Flet, Fmacroexpand,
Karl Heuer <kwzh@gnu.org>
parents:
8980
diff
changeset
|
3168 else if (COMPILEDP (fun)) |
41597
b28d5d866500
Use AREF and ASIZE.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41114
diff
changeset
|
3169 syms_left = AREF (fun, COMPILED_ARGLIST); |
27781
f84c7b8308c5
(funcall_lambda): Don't bind Qmocklisp_arguments unless
Gerd Moellmann <gerd@gnu.org>
parents:
27704
diff
changeset
|
3170 else |
f84c7b8308c5
(funcall_lambda): Don't bind Qmocklisp_arguments unless
Gerd Moellmann <gerd@gnu.org>
parents:
27704
diff
changeset
|
3171 abort (); |
f84c7b8308c5
(funcall_lambda): Don't bind Qmocklisp_arguments unless
Gerd Moellmann <gerd@gnu.org>
parents:
27704
diff
changeset
|
3172 |
f84c7b8308c5
(funcall_lambda): Don't bind Qmocklisp_arguments unless
Gerd Moellmann <gerd@gnu.org>
parents:
27704
diff
changeset
|
3173 i = optional = rest = 0; |
f84c7b8308c5
(funcall_lambda): Don't bind Qmocklisp_arguments unless
Gerd Moellmann <gerd@gnu.org>
parents:
27704
diff
changeset
|
3174 for (; CONSP (syms_left); syms_left = XCDR (syms_left)) |
272 | 3175 { |
3176 QUIT; | |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49105
diff
changeset
|
3177 |
27781
f84c7b8308c5
(funcall_lambda): Don't bind Qmocklisp_arguments unless
Gerd Moellmann <gerd@gnu.org>
parents:
27704
diff
changeset
|
3178 next = XCAR (syms_left); |
71872
b20203b004f8
(Fthrow): Remove loop around Fsignal.
Kim F. Storm <storm@cua.dk>
parents:
71574
diff
changeset
|
3179 if (!SYMBOLP (next)) |
71976
66a9a086ddbb
* eval.c (xsignal): New func. Like Fsignal, but marked no-return.
Kim F. Storm <storm@cua.dk>
parents:
71872
diff
changeset
|
3180 xsignal1 (Qinvalid_function, fun); |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49105
diff
changeset
|
3181 |
272 | 3182 if (EQ (next, Qand_rest)) |
3183 rest = 1; | |
3184 else if (EQ (next, Qand_optional)) | |
3185 optional = 1; | |
3186 else if (rest) | |
3187 { | |
431 | 3188 specbind (next, Flist (nargs - i, &arg_vector[i])); |
272 | 3189 i = nargs; |
3190 } | |
3191 else if (i < nargs) | |
27781
f84c7b8308c5
(funcall_lambda): Don't bind Qmocklisp_arguments unless
Gerd Moellmann <gerd@gnu.org>
parents:
27704
diff
changeset
|
3192 specbind (next, arg_vector[i++]); |
272 | 3193 else if (!optional) |
71976
66a9a086ddbb
* eval.c (xsignal): New func. Like Fsignal, but marked no-return.
Kim F. Storm <storm@cua.dk>
parents:
71872
diff
changeset
|
3194 xsignal2 (Qwrong_number_of_arguments, fun, make_number (nargs)); |
272 | 3195 else |
3196 specbind (next, Qnil); | |
3197 } | |
3198 | |
27781
f84c7b8308c5
(funcall_lambda): Don't bind Qmocklisp_arguments unless
Gerd Moellmann <gerd@gnu.org>
parents:
27704
diff
changeset
|
3199 if (!NILP (syms_left)) |
71976
66a9a086ddbb
* eval.c (xsignal): New func. Like Fsignal, but marked no-return.
Kim F. Storm <storm@cua.dk>
parents:
71872
diff
changeset
|
3200 xsignal1 (Qinvalid_function, fun); |
27781
f84c7b8308c5
(funcall_lambda): Don't bind Qmocklisp_arguments unless
Gerd Moellmann <gerd@gnu.org>
parents:
27704
diff
changeset
|
3201 else if (i < nargs) |
71976
66a9a086ddbb
* eval.c (xsignal): New func. Like Fsignal, but marked no-return.
Kim F. Storm <storm@cua.dk>
parents:
71872
diff
changeset
|
3202 xsignal2 (Qwrong_number_of_arguments, fun, make_number (nargs)); |
272 | 3203 |
9148
e7ab930bb7eb
(Fprogn, Finteractive_p, Fuser_variable_p, FletX, Flet, Fmacroexpand,
Karl Heuer <kwzh@gnu.org>
parents:
8980
diff
changeset
|
3204 if (CONSP (fun)) |
27781
f84c7b8308c5
(funcall_lambda): Don't bind Qmocklisp_arguments unless
Gerd Moellmann <gerd@gnu.org>
parents:
27704
diff
changeset
|
3205 val = Fprogn (XCDR (XCDR (fun))); |
272 | 3206 else |
10201
03f3a1f4264a
(Fdefvar): Fix minor error in previous change.
Richard M. Stallman <rms@gnu.org>
parents:
10161
diff
changeset
|
3207 { |
03f3a1f4264a
(Fdefvar): Fix minor error in previous change.
Richard M. Stallman <rms@gnu.org>
parents:
10161
diff
changeset
|
3208 /* 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
|
3209 and constants vector yet, fetch them from the file. */ |
41597
b28d5d866500
Use AREF and ASIZE.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41114
diff
changeset
|
3210 if (CONSP (AREF (fun, COMPILED_BYTECODE))) |
11205
81a008df9184
(Ffetch_bytecode): New function.
Karl Heuer <kwzh@gnu.org>
parents:
11007
diff
changeset
|
3211 Ffetch_bytecode (fun); |
41597
b28d5d866500
Use AREF and ASIZE.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41114
diff
changeset
|
3212 val = Fbyte_code (AREF (fun, COMPILED_BYTECODE), |
b28d5d866500
Use AREF and ASIZE.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41114
diff
changeset
|
3213 AREF (fun, COMPILED_CONSTANTS), |
b28d5d866500
Use AREF and ASIZE.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41114
diff
changeset
|
3214 AREF (fun, COMPILED_STACK_DEPTH)); |
10201
03f3a1f4264a
(Fdefvar): Fix minor error in previous change.
Richard M. Stallman <rms@gnu.org>
parents:
10161
diff
changeset
|
3215 } |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49105
diff
changeset
|
3216 |
272 | 3217 return unbind_to (count, val); |
3218 } | |
11205
81a008df9184
(Ffetch_bytecode): New function.
Karl Heuer <kwzh@gnu.org>
parents:
11007
diff
changeset
|
3219 |
81a008df9184
(Ffetch_bytecode): New function.
Karl Heuer <kwzh@gnu.org>
parents:
11007
diff
changeset
|
3220 DEFUN ("fetch-bytecode", Ffetch_bytecode, Sfetch_bytecode, |
40570 | 3221 1, 1, 0, |
3222 doc: /* If byte-compiled OBJECT is lazy-loaded, fetch it now. */) | |
3223 (object) | |
11205
81a008df9184
(Ffetch_bytecode): New function.
Karl Heuer <kwzh@gnu.org>
parents:
11007
diff
changeset
|
3224 Lisp_Object object; |
81a008df9184
(Ffetch_bytecode): New function.
Karl Heuer <kwzh@gnu.org>
parents:
11007
diff
changeset
|
3225 { |
81a008df9184
(Ffetch_bytecode): New function.
Karl Heuer <kwzh@gnu.org>
parents:
11007
diff
changeset
|
3226 Lisp_Object tem; |
81a008df9184
(Ffetch_bytecode): New function.
Karl Heuer <kwzh@gnu.org>
parents:
11007
diff
changeset
|
3227 |
41597
b28d5d866500
Use AREF and ASIZE.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41114
diff
changeset
|
3228 if (COMPILEDP (object) && CONSP (AREF (object, COMPILED_BYTECODE))) |
11205
81a008df9184
(Ffetch_bytecode): New function.
Karl Heuer <kwzh@gnu.org>
parents:
11007
diff
changeset
|
3229 { |
41597
b28d5d866500
Use AREF and ASIZE.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41114
diff
changeset
|
3230 tem = read_doc_string (AREF (object, 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
|
3231 if (!CONSP (tem)) |
41597
b28d5d866500
Use AREF and ASIZE.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41114
diff
changeset
|
3232 { |
b28d5d866500
Use AREF and ASIZE.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41114
diff
changeset
|
3233 tem = AREF (object, COMPILED_BYTECODE); |
b28d5d866500
Use AREF and ASIZE.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41114
diff
changeset
|
3234 if (CONSP (tem) && STRINGP (XCAR (tem))) |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46315
diff
changeset
|
3235 error ("Invalid byte code in %s", SDATA (XCAR (tem))); |
41597
b28d5d866500
Use AREF and ASIZE.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41114
diff
changeset
|
3236 else |
b28d5d866500
Use AREF and ASIZE.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41114
diff
changeset
|
3237 error ("Invalid byte code"); |
b28d5d866500
Use AREF and ASIZE.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41114
diff
changeset
|
3238 } |
91607
d1e53221c4aa
* xselect.c (x_handle_dnd_message):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
87649
diff
changeset
|
3239 ASET (object, COMPILED_BYTECODE, XCAR (tem)); |
d1e53221c4aa
* xselect.c (x_handle_dnd_message):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
87649
diff
changeset
|
3240 ASET (object, COMPILED_CONSTANTS, XCDR (tem)); |
11205
81a008df9184
(Ffetch_bytecode): New function.
Karl Heuer <kwzh@gnu.org>
parents:
11007
diff
changeset
|
3241 } |
81a008df9184
(Ffetch_bytecode): New function.
Karl Heuer <kwzh@gnu.org>
parents:
11007
diff
changeset
|
3242 return object; |
81a008df9184
(Ffetch_bytecode): New function.
Karl Heuer <kwzh@gnu.org>
parents:
11007
diff
changeset
|
3243 } |
272 | 3244 |
3245 void | |
3246 grow_specpdl () | |
3247 { | |
46293
1fb8f75062c6
Use macro SPECPDL_INDEX.
Juanma Barranquero <lekktu@gmail.com>
parents:
46198
diff
changeset
|
3248 register int count = SPECPDL_INDEX (); |
272 | 3249 if (specpdl_size >= max_specpdl_size) |
3250 { | |
3251 if (max_specpdl_size < 400) | |
3252 max_specpdl_size = 400; | |
3253 if (specpdl_size >= max_specpdl_size) | |
71976
66a9a086ddbb
* eval.c (xsignal): New func. Like Fsignal, but marked no-return.
Kim F. Storm <storm@cua.dk>
parents:
71872
diff
changeset
|
3254 signal_error ("Variable binding depth exceeds max-specpdl-size", Qnil); |
272 | 3255 } |
3256 specpdl_size *= 2; | |
3257 if (specpdl_size > max_specpdl_size) | |
3258 specpdl_size = max_specpdl_size; | |
3259 specpdl = (struct specbinding *) xrealloc (specpdl, specpdl_size * sizeof (struct specbinding)); | |
3260 specpdl_ptr = specpdl + count; | |
3261 } | |
3262 | |
3263 void | |
3264 specbind (symbol, value) | |
3265 Lisp_Object symbol, value; | |
3266 { | |
39577
d93909a71fa4
(Fdefvaralias): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
38290
diff
changeset
|
3267 Lisp_Object valcontents; |
272 | 3268 |
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40629
diff
changeset
|
3269 CHECK_SYMBOL (symbol); |
272 | 3270 if (specpdl_ptr == specpdl + specpdl_size) |
3271 grow_specpdl (); | |
27781
f84c7b8308c5
(funcall_lambda): Don't bind Qmocklisp_arguments unless
Gerd Moellmann <gerd@gnu.org>
parents:
27704
diff
changeset
|
3272 |
39577
d93909a71fa4
(Fdefvaralias): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
38290
diff
changeset
|
3273 /* The most common case is that of a non-constant symbol with a |
d93909a71fa4
(Fdefvaralias): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
38290
diff
changeset
|
3274 trivial value. Make that as fast as we can. */ |
d93909a71fa4
(Fdefvaralias): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
38290
diff
changeset
|
3275 valcontents = SYMBOL_VALUE (symbol); |
d93909a71fa4
(Fdefvaralias): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
38290
diff
changeset
|
3276 if (!MISCP (valcontents) && !SYMBOL_CONSTANT_P (symbol)) |
27295
1e2af531f308
(specbind): Record buffer-local variables specially,
Richard M. Stallman <rms@gnu.org>
parents:
27226
diff
changeset
|
3277 { |
27781
f84c7b8308c5
(funcall_lambda): Don't bind Qmocklisp_arguments unless
Gerd Moellmann <gerd@gnu.org>
parents:
27704
diff
changeset
|
3278 specpdl_ptr->symbol = symbol; |
39577
d93909a71fa4
(Fdefvaralias): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
38290
diff
changeset
|
3279 specpdl_ptr->old_value = valcontents; |
27781
f84c7b8308c5
(funcall_lambda): Don't bind Qmocklisp_arguments unless
Gerd Moellmann <gerd@gnu.org>
parents:
27704
diff
changeset
|
3280 specpdl_ptr->func = NULL; |
f84c7b8308c5
(funcall_lambda): Don't bind Qmocklisp_arguments unless
Gerd Moellmann <gerd@gnu.org>
parents:
27704
diff
changeset
|
3281 ++specpdl_ptr; |
39577
d93909a71fa4
(Fdefvaralias): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
38290
diff
changeset
|
3282 SET_SYMBOL_VALUE (symbol, value); |
27295
1e2af531f308
(specbind): Record buffer-local variables specially,
Richard M. Stallman <rms@gnu.org>
parents:
27226
diff
changeset
|
3283 } |
1e2af531f308
(specbind): Record buffer-local variables specially,
Richard M. Stallman <rms@gnu.org>
parents:
27226
diff
changeset
|
3284 else |
27781
f84c7b8308c5
(funcall_lambda): Don't bind Qmocklisp_arguments unless
Gerd Moellmann <gerd@gnu.org>
parents:
27704
diff
changeset
|
3285 { |
86229
0ec5ce87b9e0
* data.c (store_symval_forwarding, set_internal):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
85688
diff
changeset
|
3286 Lisp_Object ovalue = find_symbol_value (symbol); |
27781
f84c7b8308c5
(funcall_lambda): Don't bind Qmocklisp_arguments unless
Gerd Moellmann <gerd@gnu.org>
parents:
27704
diff
changeset
|
3287 specpdl_ptr->func = 0; |
f84c7b8308c5
(funcall_lambda): Don't bind Qmocklisp_arguments unless
Gerd Moellmann <gerd@gnu.org>
parents:
27704
diff
changeset
|
3288 specpdl_ptr->old_value = ovalue; |
f84c7b8308c5
(funcall_lambda): Don't bind Qmocklisp_arguments unless
Gerd Moellmann <gerd@gnu.org>
parents:
27704
diff
changeset
|
3289 |
38276
93bcc7200a67
(specbind): If SYMBOL has a frame-local binding, record
Gerd Moellmann <gerd@gnu.org>
parents:
37799
diff
changeset
|
3290 valcontents = XSYMBOL (symbol)->value; |
93bcc7200a67
(specbind): If SYMBOL has a frame-local binding, record
Gerd Moellmann <gerd@gnu.org>
parents:
37799
diff
changeset
|
3291 |
93bcc7200a67
(specbind): If SYMBOL has a frame-local binding, record
Gerd Moellmann <gerd@gnu.org>
parents:
37799
diff
changeset
|
3292 if (BUFFER_LOCAL_VALUEP (valcontents) |
93bcc7200a67
(specbind): If SYMBOL has a frame-local binding, record
Gerd Moellmann <gerd@gnu.org>
parents:
37799
diff
changeset
|
3293 || BUFFER_OBJFWDP (valcontents)) |
27781
f84c7b8308c5
(funcall_lambda): Don't bind Qmocklisp_arguments unless
Gerd Moellmann <gerd@gnu.org>
parents:
27704
diff
changeset
|
3294 { |
38290
57b9619e2e44
(specbind): Additionally record the buffer that was
Gerd Moellmann <gerd@gnu.org>
parents:
38276
diff
changeset
|
3295 Lisp_Object where, current_buffer; |
57b9619e2e44
(specbind): Additionally record the buffer that was
Gerd Moellmann <gerd@gnu.org>
parents:
38276
diff
changeset
|
3296 |
57b9619e2e44
(specbind): Additionally record the buffer that was
Gerd Moellmann <gerd@gnu.org>
parents:
38276
diff
changeset
|
3297 current_buffer = Fcurrent_buffer (); |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49105
diff
changeset
|
3298 |
27781
f84c7b8308c5
(funcall_lambda): Don't bind Qmocklisp_arguments unless
Gerd Moellmann <gerd@gnu.org>
parents:
27704
diff
changeset
|
3299 /* 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
|
3300 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
|
3301 if (!NILP (Flocal_variable_p (symbol, Qnil))) |
38290
57b9619e2e44
(specbind): Additionally record the buffer that was
Gerd Moellmann <gerd@gnu.org>
parents:
38276
diff
changeset
|
3302 where = current_buffer; |
85328
d0d527210b0c
* lisp.h (enum Lisp_Misc_Type): Del Lisp_Misc_Some_Buffer_Local_Value.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
85291
diff
changeset
|
3303 else if (BUFFER_LOCAL_VALUEP (valcontents) |
38276
93bcc7200a67
(specbind): If SYMBOL has a frame-local binding, record
Gerd Moellmann <gerd@gnu.org>
parents:
37799
diff
changeset
|
3304 && 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
|
3305 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
|
3306 else |
93bcc7200a67
(specbind): If SYMBOL has a frame-local binding, record
Gerd Moellmann <gerd@gnu.org>
parents:
37799
diff
changeset
|
3307 where = Qnil; |
93bcc7200a67
(specbind): If SYMBOL has a frame-local binding, record
Gerd Moellmann <gerd@gnu.org>
parents:
37799
diff
changeset
|
3308 |
93bcc7200a67
(specbind): If SYMBOL has a frame-local binding, record
Gerd Moellmann <gerd@gnu.org>
parents:
37799
diff
changeset
|
3309 /* 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
|
3310 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
|
3311 work for simple variables. */ |
38290
57b9619e2e44
(specbind): Additionally record the buffer that was
Gerd Moellmann <gerd@gnu.org>
parents:
38276
diff
changeset
|
3312 specpdl_ptr->symbol = Fcons (symbol, Fcons (where, current_buffer)); |
35394
0936433023f5
(specbind): If binding a per-buffer variable which
Gerd Moellmann <gerd@gnu.org>
parents:
34013
diff
changeset
|
3313 |
0936433023f5
(specbind): If binding a per-buffer variable which
Gerd Moellmann <gerd@gnu.org>
parents:
34013
diff
changeset
|
3314 /* 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
|
3315 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
|
3316 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
|
3317 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
|
3318 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
|
3319 if (NILP (where) |
93bcc7200a67
(specbind): If SYMBOL has a frame-local binding, record
Gerd Moellmann <gerd@gnu.org>
parents:
37799
diff
changeset
|
3320 && BUFFER_OBJFWDP (valcontents)) |
35394
0936433023f5
(specbind): If binding a per-buffer variable which
Gerd Moellmann <gerd@gnu.org>
parents:
34013
diff
changeset
|
3321 { |
0936433023f5
(specbind): If binding a per-buffer variable which
Gerd Moellmann <gerd@gnu.org>
parents:
34013
diff
changeset
|
3322 ++specpdl_ptr; |
0936433023f5
(specbind): If binding a per-buffer variable which
Gerd Moellmann <gerd@gnu.org>
parents:
34013
diff
changeset
|
3323 Fset_default (symbol, value); |
0936433023f5
(specbind): If binding a per-buffer variable which
Gerd Moellmann <gerd@gnu.org>
parents:
34013
diff
changeset
|
3324 return; |
0936433023f5
(specbind): If binding a per-buffer variable which
Gerd Moellmann <gerd@gnu.org>
parents:
34013
diff
changeset
|
3325 } |
27781
f84c7b8308c5
(funcall_lambda): Don't bind Qmocklisp_arguments unless
Gerd Moellmann <gerd@gnu.org>
parents:
27704
diff
changeset
|
3326 } |
f84c7b8308c5
(funcall_lambda): Don't bind Qmocklisp_arguments unless
Gerd Moellmann <gerd@gnu.org>
parents:
27704
diff
changeset
|
3327 else |
f84c7b8308c5
(funcall_lambda): Don't bind Qmocklisp_arguments unless
Gerd Moellmann <gerd@gnu.org>
parents:
27704
diff
changeset
|
3328 specpdl_ptr->symbol = symbol; |
f84c7b8308c5
(funcall_lambda): Don't bind Qmocklisp_arguments unless
Gerd Moellmann <gerd@gnu.org>
parents:
27704
diff
changeset
|
3329 |
f84c7b8308c5
(funcall_lambda): Don't bind Qmocklisp_arguments unless
Gerd Moellmann <gerd@gnu.org>
parents:
27704
diff
changeset
|
3330 specpdl_ptr++; |
86229
0ec5ce87b9e0
* data.c (store_symval_forwarding, set_internal):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
85688
diff
changeset
|
3331 /* We used to do |
0ec5ce87b9e0
* data.c (store_symval_forwarding, set_internal):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
85688
diff
changeset
|
3332 if (BUFFER_OBJFWDP (ovalue) || KBOARD_OBJFWDP (ovalue)) |
0ec5ce87b9e0
* data.c (store_symval_forwarding, set_internal):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
85688
diff
changeset
|
3333 store_symval_forwarding (symbol, ovalue, value, NULL); |
0ec5ce87b9e0
* data.c (store_symval_forwarding, set_internal):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
85688
diff
changeset
|
3334 else |
0ec5ce87b9e0
* data.c (store_symval_forwarding, set_internal):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
85688
diff
changeset
|
3335 but ovalue comes from find_symbol_value which should never return |
0ec5ce87b9e0
* data.c (store_symval_forwarding, set_internal):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
85688
diff
changeset
|
3336 such an internal value. */ |
0ec5ce87b9e0
* data.c (store_symval_forwarding, set_internal):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
85688
diff
changeset
|
3337 eassert (!(BUFFER_OBJFWDP (ovalue) || KBOARD_OBJFWDP (ovalue))); |
0ec5ce87b9e0
* data.c (store_symval_forwarding, set_internal):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
85688
diff
changeset
|
3338 set_internal (symbol, value, 0, 1); |
27781
f84c7b8308c5
(funcall_lambda): Don't bind Qmocklisp_arguments unless
Gerd Moellmann <gerd@gnu.org>
parents:
27704
diff
changeset
|
3339 } |
272 | 3340 } |
3341 | |
3342 void | |
3343 record_unwind_protect (function, arg) | |
20312
d75a1b915e20
(record_unwind_protect): Protoize parameter.
Andreas Schwab <schwab@suse.de>
parents:
19544
diff
changeset
|
3344 Lisp_Object (*function) P_ ((Lisp_Object)); |
272 | 3345 Lisp_Object arg; |
3346 { | |
69152
f2147c1027b6
* xterm.h (x_catch_errors) Return value changed to void.
Chong Yidong <cyd@stupidchicken.com>
parents:
68758
diff
changeset
|
3347 eassert (!handling_signal); |
f2147c1027b6
* xterm.h (x_catch_errors) Return value changed to void.
Chong Yidong <cyd@stupidchicken.com>
parents:
68758
diff
changeset
|
3348 |
272 | 3349 if (specpdl_ptr == specpdl + specpdl_size) |
3350 grow_specpdl (); | |
3351 specpdl_ptr->func = function; | |
3352 specpdl_ptr->symbol = Qnil; | |
3353 specpdl_ptr->old_value = arg; | |
3354 specpdl_ptr++; | |
3355 } | |
3356 | |
3357 Lisp_Object | |
3358 unbind_to (count, value) | |
3359 int count; | |
3360 Lisp_Object value; | |
3361 { | |
62980
5b94f4660d9d
(unbind_to): Preserve value of Vquit_flag.
Kim F. Storm <storm@cua.dk>
parents:
62709
diff
changeset
|
3362 Lisp_Object quitf = Vquit_flag; |
5b94f4660d9d
(unbind_to): Preserve value of Vquit_flag.
Kim F. Storm <storm@cua.dk>
parents:
62709
diff
changeset
|
3363 struct gcpro gcpro1, gcpro2; |
5b94f4660d9d
(unbind_to): Preserve value of Vquit_flag.
Kim F. Storm <storm@cua.dk>
parents:
62709
diff
changeset
|
3364 |
5b94f4660d9d
(unbind_to): Preserve value of Vquit_flag.
Kim F. Storm <storm@cua.dk>
parents:
62709
diff
changeset
|
3365 GCPRO2 (value, quitf); |
272 | 3366 Vquit_flag = Qnil; |
3367 | |
3368 while (specpdl_ptr != specpdl + count) | |
3369 { | |
50919
bbe405e5721e
(specpdl_ptr): Declare volatile.
Richard M. Stallman <rms@gnu.org>
parents:
50774
diff
changeset
|
3370 /* Copy the binding, and decrement specpdl_ptr, before we do |
bbe405e5721e
(specpdl_ptr): Declare volatile.
Richard M. Stallman <rms@gnu.org>
parents:
50774
diff
changeset
|
3371 the work to unbind it. We decrement first |
bbe405e5721e
(specpdl_ptr): Declare volatile.
Richard M. Stallman <rms@gnu.org>
parents:
50774
diff
changeset
|
3372 so that an error in unbinding won't try to unbind |
bbe405e5721e
(specpdl_ptr): Declare volatile.
Richard M. Stallman <rms@gnu.org>
parents:
50774
diff
changeset
|
3373 the same entry again, and we copy the binding first |
bbe405e5721e
(specpdl_ptr): Declare volatile.
Richard M. Stallman <rms@gnu.org>
parents:
50774
diff
changeset
|
3374 in case more bindings are made during some of the code we run. */ |
bbe405e5721e
(specpdl_ptr): Declare volatile.
Richard M. Stallman <rms@gnu.org>
parents:
50774
diff
changeset
|
3375 |
51294
8c0215bae09e
(unbind_to): Fix last change for K&R. From rms.
Dave Love <fx@gnu.org>
parents:
50919
diff
changeset
|
3376 struct specbinding this_binding; |
8c0215bae09e
(unbind_to): Fix last change for K&R. From rms.
Dave Love <fx@gnu.org>
parents:
50919
diff
changeset
|
3377 this_binding = *--specpdl_ptr; |
50919
bbe405e5721e
(specpdl_ptr): Declare volatile.
Richard M. Stallman <rms@gnu.org>
parents:
50774
diff
changeset
|
3378 |
bbe405e5721e
(specpdl_ptr): Declare volatile.
Richard M. Stallman <rms@gnu.org>
parents:
50774
diff
changeset
|
3379 if (this_binding.func != 0) |
bbe405e5721e
(specpdl_ptr): Declare volatile.
Richard M. Stallman <rms@gnu.org>
parents:
50774
diff
changeset
|
3380 (*this_binding.func) (this_binding.old_value); |
38290
57b9619e2e44
(specbind): Additionally record the buffer that was
Gerd Moellmann <gerd@gnu.org>
parents:
38276
diff
changeset
|
3381 /* If the symbol is a list, it is really (SYMBOL WHERE |
57b9619e2e44
(specbind): Additionally record the buffer that was
Gerd Moellmann <gerd@gnu.org>
parents:
38276
diff
changeset
|
3382 . CURRENT-BUFFER) where WHERE is either nil, a buffer, or a |
57b9619e2e44
(specbind): Additionally record the buffer that was
Gerd Moellmann <gerd@gnu.org>
parents:
38276
diff
changeset
|
3383 frame. If WHERE is a buffer or frame, this indicates we |
40661
2677a5e901f8
(debugger_may_continue, Vdebug_ignored_errors, call_debugger,
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
3384 bound a variable that had a buffer-local or frame-local |
2677a5e901f8
(debugger_may_continue, Vdebug_ignored_errors, call_debugger,
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
3385 binding. WHERE nil means that the variable had the default |
38290
57b9619e2e44
(specbind): Additionally record the buffer that was
Gerd Moellmann <gerd@gnu.org>
parents:
38276
diff
changeset
|
3386 value when it was bound. CURRENT-BUFFER is the buffer that |
57b9619e2e44
(specbind): Additionally record the buffer that was
Gerd Moellmann <gerd@gnu.org>
parents:
38276
diff
changeset
|
3387 was current when the variable was bound. */ |
50919
bbe405e5721e
(specpdl_ptr): Declare volatile.
Richard M. Stallman <rms@gnu.org>
parents:
50774
diff
changeset
|
3388 else if (CONSP (this_binding.symbol)) |
27295
1e2af531f308
(specbind): Record buffer-local variables specially,
Richard M. Stallman <rms@gnu.org>
parents:
27226
diff
changeset
|
3389 { |
38276
93bcc7200a67
(specbind): If SYMBOL has a frame-local binding, record
Gerd Moellmann <gerd@gnu.org>
parents:
37799
diff
changeset
|
3390 Lisp_Object symbol, where; |
27295
1e2af531f308
(specbind): Record buffer-local variables specially,
Richard M. Stallman <rms@gnu.org>
parents:
27226
diff
changeset
|
3391 |
50919
bbe405e5721e
(specpdl_ptr): Declare volatile.
Richard M. Stallman <rms@gnu.org>
parents:
50774
diff
changeset
|
3392 symbol = XCAR (this_binding.symbol); |
bbe405e5721e
(specpdl_ptr): Declare volatile.
Richard M. Stallman <rms@gnu.org>
parents:
50774
diff
changeset
|
3393 where = XCAR (XCDR (this_binding.symbol)); |
38276
93bcc7200a67
(specbind): If SYMBOL has a frame-local binding, record
Gerd Moellmann <gerd@gnu.org>
parents:
37799
diff
changeset
|
3394 |
93bcc7200a67
(specbind): If SYMBOL has a frame-local binding, record
Gerd Moellmann <gerd@gnu.org>
parents:
37799
diff
changeset
|
3395 if (NILP (where)) |
50919
bbe405e5721e
(specpdl_ptr): Declare volatile.
Richard M. Stallman <rms@gnu.org>
parents:
50774
diff
changeset
|
3396 Fset_default (symbol, this_binding.old_value); |
38276
93bcc7200a67
(specbind): If SYMBOL has a frame-local binding, record
Gerd Moellmann <gerd@gnu.org>
parents:
37799
diff
changeset
|
3397 else if (BUFFERP (where)) |
50919
bbe405e5721e
(specpdl_ptr): Declare volatile.
Richard M. Stallman <rms@gnu.org>
parents:
50774
diff
changeset
|
3398 set_internal (symbol, this_binding.old_value, XBUFFER (where), 1); |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49105
diff
changeset
|
3399 else |
50919
bbe405e5721e
(specpdl_ptr): Declare volatile.
Richard M. Stallman <rms@gnu.org>
parents:
50774
diff
changeset
|
3400 set_internal (symbol, this_binding.old_value, NULL, 1); |
27295
1e2af531f308
(specbind): Record buffer-local variables specially,
Richard M. Stallman <rms@gnu.org>
parents:
27226
diff
changeset
|
3401 } |
272 | 3402 else |
27781
f84c7b8308c5
(funcall_lambda): Don't bind Qmocklisp_arguments unless
Gerd Moellmann <gerd@gnu.org>
parents:
27704
diff
changeset
|
3403 { |
f84c7b8308c5
(funcall_lambda): Don't bind Qmocklisp_arguments unless
Gerd Moellmann <gerd@gnu.org>
parents:
27704
diff
changeset
|
3404 /* 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
|
3405 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
|
3406 since that was already done by specbind. */ |
50919
bbe405e5721e
(specpdl_ptr): Declare volatile.
Richard M. Stallman <rms@gnu.org>
parents:
50774
diff
changeset
|
3407 if (!MISCP (SYMBOL_VALUE (this_binding.symbol))) |
bbe405e5721e
(specpdl_ptr): Declare volatile.
Richard M. Stallman <rms@gnu.org>
parents:
50774
diff
changeset
|
3408 SET_SYMBOL_VALUE (this_binding.symbol, this_binding.old_value); |
27781
f84c7b8308c5
(funcall_lambda): Don't bind Qmocklisp_arguments unless
Gerd Moellmann <gerd@gnu.org>
parents:
27704
diff
changeset
|
3409 else |
50919
bbe405e5721e
(specpdl_ptr): Declare volatile.
Richard M. Stallman <rms@gnu.org>
parents:
50774
diff
changeset
|
3410 set_internal (this_binding.symbol, this_binding.old_value, 0, 1); |
27781
f84c7b8308c5
(funcall_lambda): Don't bind Qmocklisp_arguments unless
Gerd Moellmann <gerd@gnu.org>
parents:
27704
diff
changeset
|
3411 } |
272 | 3412 } |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49105
diff
changeset
|
3413 |
62980
5b94f4660d9d
(unbind_to): Preserve value of Vquit_flag.
Kim F. Storm <storm@cua.dk>
parents:
62709
diff
changeset
|
3414 if (NILP (Vquit_flag) && !NILP (quitf)) |
5b94f4660d9d
(unbind_to): Preserve value of Vquit_flag.
Kim F. Storm <storm@cua.dk>
parents:
62709
diff
changeset
|
3415 Vquit_flag = quitf; |
272 | 3416 |
3417 UNGCPRO; | |
3418 return value; | |
3419 } | |
3420 | |
3421 DEFUN ("backtrace-debug", Fbacktrace_debug, Sbacktrace_debug, 2, 2, 0, | |
40570 | 3422 doc: /* Set the debug-on-exit flag of eval frame LEVEL levels down to FLAG. |
3423 The debugger is entered when that frame exits, if the flag is non-nil. */) | |
3424 (level, flag) | |
272 | 3425 Lisp_Object level, flag; |
3426 { | |
3427 register struct backtrace *backlist = backtrace_list; | |
3428 register int i; | |
3429 | |
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40629
diff
changeset
|
3430 CHECK_NUMBER (level); |
272 | 3431 |
3432 for (i = 0; backlist && i < XINT (level); i++) | |
3433 { | |
3434 backlist = backlist->next; | |
3435 } | |
3436 | |
3437 if (backlist) | |
485 | 3438 backlist->debug_on_exit = !NILP (flag); |
272 | 3439 |
3440 return flag; | |
3441 } | |
3442 | |
3443 DEFUN ("backtrace", Fbacktrace, Sbacktrace, 0, 0, "", | |
40570 | 3444 doc: /* Print a trace of Lisp function calls currently active. |
3445 Output stream used is value of `standard-output'. */) | |
3446 () | |
272 | 3447 { |
3448 register struct backtrace *backlist = backtrace_list; | |
3449 register int i; | |
3450 Lisp_Object tail; | |
3451 Lisp_Object tem; | |
3452 extern Lisp_Object Vprint_level; | |
3453 struct gcpro gcpro1; | |
3454 | |
9306
ac852c183fa1
(Feval, Ffuncall, funcall_lambda, Fbacktrace): Don't use XFASTINT as an
Karl Heuer <kwzh@gnu.org>
parents:
9148
diff
changeset
|
3455 XSETFASTINT (Vprint_level, 3); |
272 | 3456 |
3457 tail = Qnil; | |
3458 GCPRO1 (tail); | |
3459 | |
3460 while (backlist) | |
3461 { | |
3462 write_string (backlist->debug_on_exit ? "* " : " ", 2); | |
3463 if (backlist->nargs == UNEVALLED) | |
3464 { | |
3465 Fprin1 (Fcons (*backlist->function, *backlist->args), Qnil); | |
7533
62e3e25bc8f6
(Fbacktrace): Properly nest parentheses.
Karl Heuer <kwzh@gnu.org>
parents:
7511
diff
changeset
|
3466 write_string ("\n", -1); |
272 | 3467 } |
3468 else | |
3469 { | |
3470 tem = *backlist->function; | |
3471 Fprin1 (tem, Qnil); /* This can QUIT */ | |
3472 write_string ("(", -1); | |
3473 if (backlist->nargs == MANY) | |
3474 { | |
3475 for (tail = *backlist->args, i = 0; | |
485 | 3476 !NILP (tail); |
272 | 3477 tail = Fcdr (tail), i++) |
3478 { | |
3479 if (i) write_string (" ", -1); | |
3480 Fprin1 (Fcar (tail), Qnil); | |
3481 } | |
3482 } | |
3483 else | |
3484 { | |
3485 for (i = 0; i < backlist->nargs; i++) | |
3486 { | |
3487 if (i) write_string (" ", -1); | |
3488 Fprin1 (backlist->args[i], Qnil); | |
3489 } | |
3490 } | |
7533
62e3e25bc8f6
(Fbacktrace): Properly nest parentheses.
Karl Heuer <kwzh@gnu.org>
parents:
7511
diff
changeset
|
3491 write_string (")\n", -1); |
272 | 3492 } |
3493 backlist = backlist->next; | |
3494 } | |
3495 | |
3496 Vprint_level = Qnil; | |
3497 UNGCPRO; | |
3498 return Qnil; | |
3499 } | |
3500 | |
32657
a0c4d9cbadcd
(skip_debugger): Prevent a compiler warning.
Gerd Moellmann <gerd@gnu.org>
parents:
32066
diff
changeset
|
3501 DEFUN ("backtrace-frame", Fbacktrace_frame, Sbacktrace_frame, 1, 1, NULL, |
40570 | 3502 doc: /* Return the function and arguments NFRAMES up from current execution point. |
3503 If that frame has not evaluated the arguments yet (or is a special form), | |
3504 the value is (nil FUNCTION ARG-FORMS...). | |
3505 If that frame has evaluated its arguments and called its function already, | |
3506 the value is (t FUNCTION ARG-VALUES...). | |
3507 A &rest arg is represented as the tail of the list ARG-VALUES. | |
3508 FUNCTION is whatever was supplied as car of evaluated list, | |
3509 or a lambda expression for macro calls. | |
3510 If NFRAMES is more than the number of frames, the value is nil. */) | |
3511 (nframes) | |
272 | 3512 Lisp_Object nframes; |
3513 { | |
3514 register struct backtrace *backlist = backtrace_list; | |
3515 register int i; | |
3516 Lisp_Object tem; | |
3517 | |
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40629
diff
changeset
|
3518 CHECK_NATNUM (nframes); |
272 | 3519 |
3520 /* Find the frame requested. */ | |
7533
62e3e25bc8f6
(Fbacktrace): Properly nest parentheses.
Karl Heuer <kwzh@gnu.org>
parents:
7511
diff
changeset
|
3521 for (i = 0; backlist && i < XFASTINT (nframes); i++) |
272 | 3522 backlist = backlist->next; |
3523 | |
3524 if (!backlist) | |
3525 return Qnil; | |
3526 if (backlist->nargs == UNEVALLED) | |
3527 return Fcons (Qnil, Fcons (*backlist->function, *backlist->args)); | |
3528 else | |
3529 { | |
3530 if (backlist->nargs == MANY) | |
3531 tem = *backlist->args; | |
3532 else | |
3533 tem = Flist (backlist->nargs, backlist->args); | |
3534 | |
3535 return Fcons (Qt, Fcons (*backlist->function, tem)); | |
3536 } | |
3537 } | |
30073
ed8f34a43649
(Vsignaling_function): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30058
diff
changeset
|
3538 |
272 | 3539 |
21514 | 3540 void |
55796
97fe0ef6c077
(mark_backtrace): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54630
diff
changeset
|
3541 mark_backtrace () |
97fe0ef6c077
(mark_backtrace): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54630
diff
changeset
|
3542 { |
97fe0ef6c077
(mark_backtrace): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54630
diff
changeset
|
3543 register struct backtrace *backlist; |
97fe0ef6c077
(mark_backtrace): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54630
diff
changeset
|
3544 register int i; |
97fe0ef6c077
(mark_backtrace): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54630
diff
changeset
|
3545 |
97fe0ef6c077
(mark_backtrace): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54630
diff
changeset
|
3546 for (backlist = backtrace_list; backlist; backlist = backlist->next) |
97fe0ef6c077
(mark_backtrace): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54630
diff
changeset
|
3547 { |
97fe0ef6c077
(mark_backtrace): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54630
diff
changeset
|
3548 mark_object (*backlist->function); |
97fe0ef6c077
(mark_backtrace): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54630
diff
changeset
|
3549 |
97fe0ef6c077
(mark_backtrace): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54630
diff
changeset
|
3550 if (backlist->nargs == UNEVALLED || backlist->nargs == MANY) |
97fe0ef6c077
(mark_backtrace): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54630
diff
changeset
|
3551 i = 0; |
97fe0ef6c077
(mark_backtrace): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54630
diff
changeset
|
3552 else |
97fe0ef6c077
(mark_backtrace): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54630
diff
changeset
|
3553 i = backlist->nargs - 1; |
97fe0ef6c077
(mark_backtrace): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54630
diff
changeset
|
3554 for (; i >= 0; i--) |
97fe0ef6c077
(mark_backtrace): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54630
diff
changeset
|
3555 mark_object (backlist->args[i]); |
97fe0ef6c077
(mark_backtrace): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54630
diff
changeset
|
3556 } |
97fe0ef6c077
(mark_backtrace): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54630
diff
changeset
|
3557 } |
97fe0ef6c077
(mark_backtrace): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54630
diff
changeset
|
3558 |
97fe0ef6c077
(mark_backtrace): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54630
diff
changeset
|
3559 void |
272 | 3560 syms_of_eval () |
3561 { | |
3562 DEFVAR_INT ("max-specpdl-size", &max_specpdl_size, | |
64499
34bf5187c5aa
(Fprog2, Fcalled_interactively_p), (syms_of_eval) <debug-on-quit>: Doc fixes.
Juanma Barranquero <lekktu@gmail.com>
parents:
64271
diff
changeset
|
3563 doc: /* *Limit on number of Lisp variable bindings and `unwind-protect's. |
63767
60a9b2133cf1
(call_debugger): Take full care of extending stack limits
Richard M. Stallman <rms@gnu.org>
parents:
63697
diff
changeset
|
3564 If Lisp code tries to increase the total number past this amount, |
45560
f1be57638503
(syms_of_eval): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
45400
diff
changeset
|
3565 an error is signaled. |
f1be57638503
(syms_of_eval): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
45400
diff
changeset
|
3566 You can safely use a value considerably larger than the default value, |
f1be57638503
(syms_of_eval): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
45400
diff
changeset
|
3567 if that proves inconveniently small. However, if you increase it too far, |
f1be57638503
(syms_of_eval): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
45400
diff
changeset
|
3568 Emacs could run out of memory trying to make the stack bigger. */); |
272 | 3569 |
3570 DEFVAR_INT ("max-lisp-eval-depth", &max_lisp_eval_depth, | |
40570 | 3571 doc: /* *Limit on depth in `eval', `apply' and `funcall' before error. |
45560
f1be57638503
(syms_of_eval): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
45400
diff
changeset
|
3572 |
f1be57638503
(syms_of_eval): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
45400
diff
changeset
|
3573 This limit serves to catch infinite recursions for you before they cause |
40570 | 3574 actual stack overflow in C, which would be fatal for Emacs. |
3575 You can safely make it considerably larger than its default value, | |
45560
f1be57638503
(syms_of_eval): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
45400
diff
changeset
|
3576 if that proves inconveniently small. However, if you increase it too far, |
f1be57638503
(syms_of_eval): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
45400
diff
changeset
|
3577 Emacs could overflow the real C stack, and crash. */); |
272 | 3578 |
3579 DEFVAR_LISP ("quit-flag", &Vquit_flag, | |
40570 | 3580 doc: /* Non-nil causes `eval' to abort, unless `inhibit-quit' is non-nil. |
58933
dae0885d0340
(syms_of_eval) <quit-flag>: Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
58827
diff
changeset
|
3581 If the value is t, that means do an ordinary quit. |
dae0885d0340
(syms_of_eval) <quit-flag>: Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
58827
diff
changeset
|
3582 If the value equals `throw-on-input', that means quit by throwing |
dae0885d0340
(syms_of_eval) <quit-flag>: Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
58827
diff
changeset
|
3583 to the tag specified in `throw-on-input'; it's for handling `while-no-input'. |
dae0885d0340
(syms_of_eval) <quit-flag>: Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
58827
diff
changeset
|
3584 Typing C-g sets `quit-flag' to t, regardless of `inhibit-quit', |
dae0885d0340
(syms_of_eval) <quit-flag>: Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
58827
diff
changeset
|
3585 but `inhibit-quit' non-nil prevents anything from taking notice of that. */); |
272 | 3586 Vquit_flag = Qnil; |
3587 | |
3588 DEFVAR_LISP ("inhibit-quit", &Vinhibit_quit, | |
40570 | 3589 doc: /* Non-nil inhibits C-g quitting from happening immediately. |
3590 Note that `quit-flag' will still be set by typing C-g, | |
3591 so a quit will be signaled as soon as `inhibit-quit' is nil. | |
3592 To prevent this happening, set `quit-flag' to nil | |
3593 before making `inhibit-quit' nil. */); | |
272 | 3594 Vinhibit_quit = Qnil; |
3595 | |
381 | 3596 Qinhibit_quit = intern ("inhibit-quit"); |
3597 staticpro (&Qinhibit_quit); | |
3598 | |
272 | 3599 Qautoload = intern ("autoload"); |
3600 staticpro (&Qautoload); | |
3601 | |
3602 Qdebug_on_error = intern ("debug-on-error"); | |
3603 staticpro (&Qdebug_on_error); | |
3604 | |
3605 Qmacro = intern ("macro"); | |
3606 staticpro (&Qmacro); | |
3607 | |
44132
8b63b08a2619
(Qdeclare, Vmacro_declaration_function): New variables.
Gerd Moellmann <gerd@gnu.org>
parents:
43713
diff
changeset
|
3608 Qdeclare = intern ("declare"); |
8b63b08a2619
(Qdeclare, Vmacro_declaration_function): New variables.
Gerd Moellmann <gerd@gnu.org>
parents:
43713
diff
changeset
|
3609 staticpro (&Qdeclare); |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49105
diff
changeset
|
3610 |
272 | 3611 /* Note that the process handling also uses Qexit, but we don't want |
3612 to staticpro it twice, so we just do it here. */ | |
3613 Qexit = intern ("exit"); | |
3614 staticpro (&Qexit); | |
3615 | |
3616 Qinteractive = intern ("interactive"); | |
3617 staticpro (&Qinteractive); | |
3618 | |
3619 Qcommandp = intern ("commandp"); | |
3620 staticpro (&Qcommandp); | |
3621 | |
3622 Qdefun = intern ("defun"); | |
3623 staticpro (&Qdefun); | |
3624 | |
3625 Qand_rest = intern ("&rest"); | |
3626 staticpro (&Qand_rest); | |
3627 | |
3628 Qand_optional = intern ("&optional"); | |
3629 staticpro (&Qand_optional); | |
3630 | |
78141 | 3631 Qdebug = intern ("debug"); |
3632 staticpro (&Qdebug); | |
3633 | |
684 | 3634 DEFVAR_LISP ("stack-trace-on-error", &Vstack_trace_on_error, |
41029
2823497a0206
(syms_of_eval): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
40983
diff
changeset
|
3635 doc: /* *Non-nil means errors display a backtrace buffer. |
2823497a0206
(syms_of_eval): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
40983
diff
changeset
|
3636 More precisely, this happens for any error that is handled |
2823497a0206
(syms_of_eval): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
40983
diff
changeset
|
3637 by the editor command loop. |
40570 | 3638 If the value is a list, an error only means to display a backtrace |
3639 if one of its condition symbols appears in the list. */); | |
684 | 3640 Vstack_trace_on_error = Qnil; |
272 | 3641 |
684 | 3642 DEFVAR_LISP ("debug-on-error", &Vdebug_on_error, |
40570 | 3643 doc: /* *Non-nil means enter debugger if an error is signaled. |
3644 Does not apply to errors handled by `condition-case' or those | |
3645 matched by `debug-ignored-errors'. | |
3646 If the value is a list, an error only means to enter the debugger | |
3647 if one of its condition symbols appears in the list. | |
3648 When you evaluate an expression interactively, this variable | |
3649 is temporarily non-nil if `eval-expression-debug-on-error' is non-nil. | |
3650 See also variable `debug-on-quit'. */); | |
684 | 3651 Vdebug_on_error = Qnil; |
272 | 3652 |
13768 | 3653 DEFVAR_LISP ("debug-ignored-errors", &Vdebug_ignored_errors, |
40570 | 3654 doc: /* *List of errors for which the debugger should not be called. |
3655 Each element may be a condition-name or a regexp that matches error messages. | |
3656 If any element applies to a given error, that error skips the debugger | |
3657 and just returns to top level. | |
3658 This overrides the variable `debug-on-error'. | |
3659 It does not apply to errors handled by `condition-case'. */); | |
13768 | 3660 Vdebug_ignored_errors = Qnil; |
3661 | |
272 | 3662 DEFVAR_BOOL ("debug-on-quit", &debug_on_quit, |
64499
34bf5187c5aa
(Fprog2, Fcalled_interactively_p), (syms_of_eval) <debug-on-quit>: Doc fixes.
Juanma Barranquero <lekktu@gmail.com>
parents:
64271
diff
changeset
|
3663 doc: /* *Non-nil means enter debugger if quit is signaled (C-g, for example). |
34bf5187c5aa
(Fprog2, Fcalled_interactively_p), (syms_of_eval) <debug-on-quit>: Doc fixes.
Juanma Barranquero <lekktu@gmail.com>
parents:
64271
diff
changeset
|
3664 Does not apply if quit is handled by a `condition-case'. */); |
272 | 3665 debug_on_quit = 0; |
3666 | |
3667 DEFVAR_BOOL ("debug-on-next-call", &debug_on_next_call, | |
40570 | 3668 doc: /* Non-nil means enter debugger before next `eval', `apply' or `funcall'. */); |
272 | 3669 |
26947
7987a6499aaa
(debugger_may_continue): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
26764
diff
changeset
|
3670 DEFVAR_BOOL ("debugger-may-continue", &debugger_may_continue, |
40570 | 3671 doc: /* Non-nil means debugger may continue execution. |
3672 This is nil when the debugger is called under circumstances where it | |
3673 might not be safe to continue. */); | |
27031
083866c85a33
(syms_of_eval): Initialize debug_may_continue.
Gerd Moellmann <gerd@gnu.org>
parents:
26947
diff
changeset
|
3674 debugger_may_continue = 1; |
26947
7987a6499aaa
(debugger_may_continue): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
26764
diff
changeset
|
3675 |
272 | 3676 DEFVAR_LISP ("debugger", &Vdebugger, |
40570 | 3677 doc: /* Function to call to invoke debugger. |
3678 If due to frame exit, args are `exit' and the value being returned; | |
3679 this function's value will be returned instead of that. | |
3680 If due to error, args are `error' and a list of the args to `signal'. | |
3681 If due to `apply' or `funcall' entry, one arg, `lambda'. | |
3682 If due to `eval' entry, one arg, t. */); | |
272 | 3683 Vdebugger = Qnil; |
3684 | |
16355
1d85b2698564
(Vdebug_force): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
16296
diff
changeset
|
3685 DEFVAR_LISP ("signal-hook-function", &Vsignal_hook_function, |
40570 | 3686 doc: /* If non-nil, this is a function for `signal' to call. |
3687 It receives the same arguments that `signal' was given. | |
3688 The Edebug package uses this to regain control. */); | |
16355
1d85b2698564
(Vdebug_force): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
16296
diff
changeset
|
3689 Vsignal_hook_function = Qnil; |
1d85b2698564
(Vdebug_force): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
16296
diff
changeset
|
3690 |
16443
0128b923d281
(Vdebug_on_signal): Renamed from Vdebug_force.
Richard M. Stallman <rms@gnu.org>
parents:
16355
diff
changeset
|
3691 DEFVAR_LISP ("debug-on-signal", &Vdebug_on_signal, |
40570 | 3692 doc: /* *Non-nil means call the debugger regardless of condition handlers. |
3693 Note that `debug-on-error', `debug-on-quit' and friends | |
3694 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
|
3695 Vdebug_on_signal = Qnil; |
16355
1d85b2698564
(Vdebug_force): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
16296
diff
changeset
|
3696 |
44132
8b63b08a2619
(Qdeclare, Vmacro_declaration_function): New variables.
Gerd Moellmann <gerd@gnu.org>
parents:
43713
diff
changeset
|
3697 DEFVAR_LISP ("macro-declaration-function", &Vmacro_declaration_function, |
8b63b08a2619
(Qdeclare, Vmacro_declaration_function): New variables.
Gerd Moellmann <gerd@gnu.org>
parents:
43713
diff
changeset
|
3698 doc: /* Function to process declarations in a macro definition. |
8b63b08a2619
(Qdeclare, Vmacro_declaration_function): New variables.
Gerd Moellmann <gerd@gnu.org>
parents:
43713
diff
changeset
|
3699 The function will be called with two args MACRO and DECL. |
8b63b08a2619
(Qdeclare, Vmacro_declaration_function): New variables.
Gerd Moellmann <gerd@gnu.org>
parents:
43713
diff
changeset
|
3700 MACRO is the name of the macro being defined. |
8b63b08a2619
(Qdeclare, Vmacro_declaration_function): New variables.
Gerd Moellmann <gerd@gnu.org>
parents:
43713
diff
changeset
|
3701 DECL is a list `(declare ...)' containing the declarations. |
8b63b08a2619
(Qdeclare, Vmacro_declaration_function): New variables.
Gerd Moellmann <gerd@gnu.org>
parents:
43713
diff
changeset
|
3702 The value the function returns is not used. */); |
8b63b08a2619
(Qdeclare, Vmacro_declaration_function): New variables.
Gerd Moellmann <gerd@gnu.org>
parents:
43713
diff
changeset
|
3703 Vmacro_declaration_function = Qnil; |
8b63b08a2619
(Qdeclare, Vmacro_declaration_function): New variables.
Gerd Moellmann <gerd@gnu.org>
parents:
43713
diff
changeset
|
3704 |
16296
584310941e70
(syms_of_eval): Initialize Vrun_hooks here.
Richard M. Stallman <rms@gnu.org>
parents:
16113
diff
changeset
|
3705 Vrun_hooks = intern ("run-hooks"); |
584310941e70
(syms_of_eval): Initialize Vrun_hooks here.
Richard M. Stallman <rms@gnu.org>
parents:
16113
diff
changeset
|
3706 staticpro (&Vrun_hooks); |
272 | 3707 |
3708 staticpro (&Vautoload_queue); | |
3709 Vautoload_queue = Qnil; | |
30073
ed8f34a43649
(Vsignaling_function): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30058
diff
changeset
|
3710 staticpro (&Vsignaling_function); |
ed8f34a43649
(Vsignaling_function): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30058
diff
changeset
|
3711 Vsignaling_function = Qnil; |
272 | 3712 |
3713 defsubr (&Sor); | |
3714 defsubr (&Sand); | |
3715 defsubr (&Sif); | |
3716 defsubr (&Scond); | |
3717 defsubr (&Sprogn); | |
3718 defsubr (&Sprog1); | |
3719 defsubr (&Sprog2); | |
3720 defsubr (&Ssetq); | |
3721 defsubr (&Squote); | |
3722 defsubr (&Sfunction); | |
3723 defsubr (&Sdefun); | |
3724 defsubr (&Sdefmacro); | |
3725 defsubr (&Sdefvar); | |
39577
d93909a71fa4
(Fdefvaralias): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
38290
diff
changeset
|
3726 defsubr (&Sdefvaralias); |
272 | 3727 defsubr (&Sdefconst); |
3728 defsubr (&Suser_variable_p); | |
3729 defsubr (&Slet); | |
3730 defsubr (&SletX); | |
3731 defsubr (&Swhile); | |
3732 defsubr (&Smacroexpand); | |
3733 defsubr (&Scatch); | |
3734 defsubr (&Sthrow); | |
3735 defsubr (&Sunwind_protect); | |
3736 defsubr (&Scondition_case); | |
3737 defsubr (&Ssignal); | |
3738 defsubr (&Sinteractive_p); | |
57889
d502896ff443
(Fcalled_interactively_p): Rename from Fcall_interactive_p.
Kim F. Storm <storm@cua.dk>
parents:
57873
diff
changeset
|
3739 defsubr (&Scalled_interactively_p); |
272 | 3740 defsubr (&Scommandp); |
3741 defsubr (&Sautoload); | |
3742 defsubr (&Seval); | |
3743 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
|
3744 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
|
3745 defsubr (&Srun_hooks); |
12711
a8feaa42d775
(syms_of_eval): Add missing defsubr.
Karl Heuer <kwzh@gnu.org>
parents:
12663
diff
changeset
|
3746 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
|
3747 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
|
3748 defsubr (&Srun_hook_with_args_until_failure); |
11205
81a008df9184
(Ffetch_bytecode): New function.
Karl Heuer <kwzh@gnu.org>
parents:
11007
diff
changeset
|
3749 defsubr (&Sfetch_bytecode); |
272 | 3750 defsubr (&Sbacktrace_debug); |
3751 defsubr (&Sbacktrace); | |
3752 defsubr (&Sbacktrace_frame); | |
3753 } | |
52401 | 3754 |
3755 /* arch-tag: 014a07aa-33ab-4a8f-a3d2-ee8a4a9ff7fb | |
3756 (do not change this comment) */ |