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