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