annotate src/eval.c @ 16:0293115a14e9 r19-15b91

Import from CVS: tag r19-15b91
author cvs
date Mon, 13 Aug 2007 08:49:20 +0200
parents ac2d302a0011
children 859a2309aef8
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1 /* Evaluator for XEmacs Lisp interpreter.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2 Copyright (C) 1985-1987, 1992-1994 Free Software Foundation, Inc.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3 Copyright (C) 1995 Sun Microsystems, Inc.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5 This file is part of XEmacs.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
7 XEmacs is free software; you can redistribute it and/or modify it
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
8 under the terms of the GNU General Public License as published by the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
9 Free Software Foundation; either version 2, or (at your option) any
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
10 later version.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
11
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
12 XEmacs is distributed in the hope that it will be useful, but WITHOUT
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
13 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
15 for more details.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
16
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
17 You should have received a copy of the GNU General Public License
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
18 along with XEmacs; see the file COPYING. If not, write to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
19 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
20 Boston, MA 02111-1307, USA. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
21
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
22 /* Synched up with: FSF 19.30 (except for Fsignal), Mule 2.0. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
23
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
24 /* Debugging hack */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
25 int always_gc;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
26
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
27
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
28 #include <config.h>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
29 #include "lisp.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
30
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
31 #ifndef standalone
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
32 #include "commands.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
33 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
34
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
35 #include "symeval.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
36 #include "backtrace.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
37 #include "bytecode.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
38 #include "buffer.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
39 #include "console.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
40 #include "opaque.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
41
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
42 struct backtrace *backtrace_list;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
43
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
44 /* This is the list of current catches (and also condition-cases).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
45 This is a stack: the most recent catch is at the head of the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
46 list. Catches are created by declaring a 'struct catchtag'
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
47 locally, filling the .TAG field in with the tag, and doing
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
48 a setjmp() on .JMP. Fthrow() will store the value passed
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
49 to it in .VAL and longjmp() back to .JMP, back to the function
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
50 that established the catch. This will always be either
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
51 internal_catch() (catches established internally or through
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
52 `catch') or condition_case_1 (condition-cases established
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
53 internally or through `condition-case').
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
54
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
55 The catchtag also records the current position in the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
56 call stack (stored in BACKTRACE_LIST), the current position
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
57 in the specpdl stack (used for variable bindings and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
58 unwind-protects), the value of LISP_EVAL_DEPTH, and the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
59 current position in the GCPRO stack. All of these are
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
60 restored by Fthrow().
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
61 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
62
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
63 struct catchtag *catchlist;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
64
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
65 Lisp_Object Qautoload, Qmacro, Qexit;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
66 Lisp_Object Qinteractive, Qcommandp, Qdefun, Qprogn, Qvalues;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
67 Lisp_Object Vquit_flag, Vinhibit_quit;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
68 Lisp_Object Qand_rest, Qand_optional;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
69 Lisp_Object Qdebug_on_error;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
70 Lisp_Object Qstack_trace_on_error;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
71 Lisp_Object Qdebug_on_signal;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
72 Lisp_Object Qstack_trace_on_signal;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
73 Lisp_Object Qdebugger;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
74 Lisp_Object Qinhibit_quit;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
75 Lisp_Object Qrun_hooks;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
76
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
77 Lisp_Object Qsetq;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
78
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
79 Lisp_Object Qdisplay_warning;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
80 Lisp_Object Vpending_warnings, Vpending_warnings_tail;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
81
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
82 /* Records whether we want errors to occur. This will be a boolean,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
83 nil (errors OK) or t (no errors). If t, an error will cause a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
84 throw to Qunbound_suspended_errors_tag.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
85
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
86 See call_with_suspended_errors(). */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
87 Lisp_Object Vcurrent_error_state;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
88
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
89 /* Current warning class when warnings occur, or nil for no warnings.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
90 Only meaningful when Vcurrent_error_state is non-nil.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
91 See call_with_suspended_errors(). */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
92 Lisp_Object Vcurrent_warning_class;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
93
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
94 /* Special catch tag used in call_with_suspended_errors(). */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
95 Lisp_Object Qunbound_suspended_errors_tag;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
96
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
97 /* Non-nil means we're going down, so we better not run any hooks
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
98 or do other non-essential stuff. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
99 int preparing_for_armageddon;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
100
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
101 /* Non-nil means record all fset's and provide's, to be undone
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
102 if the file being autoloaded is not fully loaded.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
103 They are recorded by being consed onto the front of Vautoload_queue:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
104 (FUN . ODEF) for a defun, (OFEATURES . nil) for a provide. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
105
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
106 Lisp_Object Vautoload_queue;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
107
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
108 /* Current number of specbindings allocated in specpdl. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
109 static int specpdl_size;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
110
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
111 /* Pointer to beginning of specpdl. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
112 struct specbinding *specpdl;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
113
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
114 /* Pointer to first unused element in specpdl. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
115 struct specbinding *specpdl_ptr;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
116
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
117 /* specpdl_ptr - specpdl. Callers outside this file should use
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
118 * specpdl_depth () function-call */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
119 static int specpdl_depth_counter;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
120
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
121 /* Maximum size allowed for specpdl allocation */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
122 int max_specpdl_size;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
123
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
124 /* Depth in Lisp evaluations and function calls. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
125 int lisp_eval_depth;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
126
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
127 /* Maximum allowed depth in Lisp evaluations and function calls. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
128 int max_lisp_eval_depth;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
129
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
130 /* Nonzero means enter debugger before next function call */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
131 static int debug_on_next_call;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
132
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
133 /* List of conditions (non-nil atom means all) which cause a backtrace
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
134 if an error is handled by the command loop's error handler. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
135 Lisp_Object Vstack_trace_on_error;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
136
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
137 /* List of conditions (non-nil atom means all) which enter the debugger
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
138 if an error is handled by the command loop's error handler. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
139 Lisp_Object Vdebug_on_error;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
140
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
141 /* List of conditions (non-nil atom means all) which cause a backtrace
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
142 if any error is signalled. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
143 Lisp_Object Vstack_trace_on_signal;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
144
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
145 /* List of conditions (non-nil atom means all) which enter the debugger
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
146 if any error is signalled. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
147 Lisp_Object Vdebug_on_signal;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
148
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
149 /* Nonzero means enter debugger if a quit signal
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
150 is handled by the command loop's error handler.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
151
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
152 From lisp, this is a boolean variable and may have the values 0 and 1.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
153 But, eval.c temporarily uses the second bit of this variable to indicate
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
154 that a critical_quit is in progress. The second bit is reset immediately
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
155 after it is processed in signal_call_debugger(). */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
156 int debug_on_quit;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
157
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
158 #if 0 /* FSFmacs */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
159 /* entering_debugger is basically equivalent */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
160 /* The value of num_nonmacro_input_chars as of the last time we
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
161 started to enter the debugger. If we decide to enter the debugger
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
162 again when this is still equal to num_nonmacro_input_chars, then we
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
163 know that the debugger itself has an error, and we should just
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
164 signal the error instead of entering an infinite loop of debugger
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
165 invocations. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
166 int when_entered_debugger;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
167 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
168
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
169 /* Nonzero means we are trying to enter the debugger.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
170 This is to prevent recursive attempts.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
171 Cleared by the debugger calling Fbacktrace */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
172 static int entering_debugger;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
173
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
174 /* Function to call to invoke the debugger */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
175 Lisp_Object Vdebugger;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
176
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
177 /* Chain of condition handlers currently in effect.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
178 The elements of this chain are contained in the stack frames
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
179 of Fcondition_case and internal_condition_case.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
180 When an error is signaled (by calling Fsignal, below),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
181 this chain is searched for an element that applies.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
182
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
183 Each element of this list is one of the following:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
184
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
185 A list of a handler function and possibly args to pass to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
186 the function. This is a handler established with
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
187 `call-with-condition-handler' (q.v.).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
188
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
189 A list whose car is Qunbound and whose cdr is Qt.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
190 This is a special condition-case handler established
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
191 by C code with condition_case_1(). All errors are
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
192 trapped; the debugger is not invoked even if
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
193 `debug-on-error' was set.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
194
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
195 A list whose car is Qunbound and whose cdr is Qerror.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
196 This is a special condition-case handler established
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
197 by C code with condition_case_1(). It is like Qt
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
198 except that the debugger is invoked normally if it is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
199 called for.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
200
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
201 A list whose car is Qunbound and whose cdr is a list
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
202 of lists (CONDITION-NAME BODY ...) exactly as in
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
203 `condition-case'. This is a normal `condition-case'
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
204 handler.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
205
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
206 Note that in all cases *except* the first, there is a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
207 corresponding catch, whose TAG is the value of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
208 Vcondition_handlers just after the handler data just
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
209 described is pushed onto it. The reason is that
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
210 `condition-case' handlers need to throw back to the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
211 place where the handler was installed before invoking
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
212 it, while `call-with-condition-handler' handlers are
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
213 invoked in the environment that `signal' was invoked
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
214 in.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
215 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
216 static Lisp_Object Vcondition_handlers;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
217
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
218 /* Used for error catching purposes by throw_or_bomb_out */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
219 static int throw_level;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
220
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
221 static Lisp_Object primitive_funcall (lisp_fn_t fn, int nargs,
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
222 Lisp_Object args[]);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
223
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
224
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
225 /**********************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
226 /* The subr and compiled-function types */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
227 /**********************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
228
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
229 static void print_subr (Lisp_Object, Lisp_Object, int);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
230 DEFINE_LRECORD_IMPLEMENTATION ("subr", subr,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
231 this_one_is_unmarkable, print_subr, 0, 0, 0,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
232 struct Lisp_Subr);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
233
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
234 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
235 print_subr (Lisp_Object obj, Lisp_Object printcharfun, int escapeflag)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
236 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
237 struct Lisp_Subr *subr = XSUBR (obj);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
238
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
239 if (print_readably)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
240 error ("printing unreadable object #<subr %s>",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
241 subr_name (subr));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
242
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
243 write_c_string (((subr->max_args == UNEVALLED)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
244 ? "#<special-form "
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
245 : "#<subr "),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
246 printcharfun);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
247
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
248 write_c_string (subr_name (subr), printcharfun);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
249 write_c_string (((subr->prompt) ? " (interactive)>" : ">"),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
250 printcharfun);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
251 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
252
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
253
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
254 static Lisp_Object mark_compiled_function (Lisp_Object,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
255 void (*) (Lisp_Object));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
256 extern void print_compiled_function (Lisp_Object, Lisp_Object, int);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
257 static int compiled_function_equal (Lisp_Object, Lisp_Object, int);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
258 static unsigned long compiled_function_hash (Lisp_Object obj, int depth);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
259 DEFINE_BASIC_LRECORD_IMPLEMENTATION ("compiled-function", compiled_function,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
260 mark_compiled_function,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
261 print_compiled_function, 0,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
262 compiled_function_equal,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
263 compiled_function_hash,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
264 struct Lisp_Compiled_Function);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
265
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
266 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
267 mark_compiled_function (Lisp_Object obj, void (*markobj) (Lisp_Object))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
268 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
269 struct Lisp_Compiled_Function *b = XCOMPILED_FUNCTION (obj);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
270
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
271 ((markobj) (b->bytecodes));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
272 ((markobj) (b->arglist));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
273 ((markobj) (b->doc_and_interactive));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
274 #ifdef COMPILED_FUNCTION_ANNOTATION_HACK
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
275 ((markobj) (b->annotated));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
276 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
277 /* tail-recurse on constants */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
278 return (b->constants);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
279 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
280
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
281 static int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
282 compiled_function_equal (Lisp_Object o1, Lisp_Object o2, int depth)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
283 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
284 struct Lisp_Compiled_Function *b1 = XCOMPILED_FUNCTION (o1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
285 struct Lisp_Compiled_Function *b2 = XCOMPILED_FUNCTION (o2);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
286 return (b1->flags.documentationp == b2->flags.documentationp
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
287 && b1->flags.interactivep == b2->flags.interactivep
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
288 && b1->flags.domainp == b2->flags.domainp /* I18N3 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
289 && internal_equal (b1->bytecodes, b2->bytecodes, depth + 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
290 && internal_equal (b1->constants, b2->constants, depth + 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
291 && internal_equal (b1->arglist, b2->arglist, depth + 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
292 && internal_equal (b1->doc_and_interactive,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
293 b2->doc_and_interactive, depth + 1));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
294 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
295
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
296 static unsigned long
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
297 compiled_function_hash (Lisp_Object obj, int depth)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
298 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
299 struct Lisp_Compiled_Function *b = XCOMPILED_FUNCTION (obj);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
300 return HASH3 ((b->flags.documentationp << 2) +
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
301 (b->flags.interactivep << 1) +
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
302 b->flags.domainp,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
303 internal_hash (b->bytecodes, depth + 1),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
304 internal_hash (b->constants, depth + 1));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
305 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
306
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
307
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
308 /**********************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
309 /* Entering the debugger */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
310 /**********************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
311
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
312 /* unwind-protect used by call_debugger() to restore the value of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
313 enterring_debugger. (We cannot use specbind() because the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
314 variable is not Lisp-accessible.) */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
315
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
316 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
317 restore_entering_debugger (Lisp_Object arg)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
318 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
319 entering_debugger = ((NILP (arg)) ? 0 : 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
320 return arg;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
321 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
322
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
323 /* Actually call the debugger. ARG is a list of args that will be
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
324 passed to the debugger function, as follows;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
325
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
326 If due to frame exit, args are `exit' and the value being returned;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
327 this function's value will be returned instead of that.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
328 If due to error, args are `error' and a list of the args to `signal'.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
329 If due to `apply' or `funcall' entry, one arg, `lambda'.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
330 If due to `eval' entry, one arg, t.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
331
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
332 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
333
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
334 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
335 call_debugger_259 (Lisp_Object arg)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
336 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
337 return apply1 (Vdebugger, arg);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
338 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
339
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
340 /* Call the debugger, doing some encapsulation. We make sure we have
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
341 some room on the eval and specpdl stacks, and bind enterring_debugger
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
342 to 1 during this call. This is used to trap errors that may occur
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
343 when enterring the debugger (e.g. the value of `debugger' is invalid),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
344 so that the debugger will not be recursively entered if debug-on-error
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
345 is set. (Otherwise, XEmacs would infinitely recurse, attempting to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
346 enter the debugger.) enterring_debugger gets reset to 0 as soon
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
347 as a backtrace is displayed, so that further errors can indeed be
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
348 handled normally.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
349
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
350 We also establish a catch for 'debugger. If the debugger function
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
351 throws to this instead of returning a value, it means that the user
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
352 pressed 'c' (pretend like the debugger was never entered). The
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
353 function then returns Qunbound. (If the user pressed 'r', for
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
354 return a value, then the debugger function returns normally with
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
355 this value.)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
356
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
357 The difference between 'c' and 'r' is as follows:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
358
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
359 debug-on-call:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
360 No difference. The call proceeds as normal.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
361 debug-on-exit:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
362 With 'r', the specified value is returned as the function's
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
363 return value. With 'c', the value that would normally be
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
364 returned is returned.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
365 signal:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
366 With 'r', the specified value is returned as the return
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
367 value of `signal'. (This is the only time that `signal'
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
368 can return, instead of making a non-local exit.) With `c',
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
369 `signal' will continue looking for handlers as if the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
370 debugger was never entered, and will probably end up
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
371 throwing to a handler or to top-level.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
372 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
373
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
374 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
375 call_debugger (Lisp_Object arg)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
376 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
377 int threw;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
378 Lisp_Object val;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
379 int speccount;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
380
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
381 if (lisp_eval_depth + 20 > max_lisp_eval_depth)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
382 max_lisp_eval_depth = lisp_eval_depth + 20;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
383 if (specpdl_size + 40 > max_specpdl_size)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
384 max_specpdl_size = specpdl_size + 40;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
385 debug_on_next_call = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
386
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
387 speccount = specpdl_depth_counter;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
388 record_unwind_protect (restore_entering_debugger,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
389 (entering_debugger ? Qt : Qnil));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
390 entering_debugger = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
391 val = internal_catch (Qdebugger, call_debugger_259, arg, &threw);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
392
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
393 return (unbind_to (speccount, ((threw)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
394 ? Qunbound /* Not returning a value */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
395 : val)));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
396 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
397
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
398 /* Called when debug-on-exit behavior is called for. Enter the debugger
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
399 with the appropriate args for this. VAL is the exit value that is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
400 about to be returned. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
401
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
402 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
403 do_debug_on_exit (Lisp_Object val)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
404 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
405 /* This is falsified by call_debugger */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
406 int old_debug_on_next_call = debug_on_next_call;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
407 Lisp_Object v = call_debugger (list2 (Qexit, val));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
408 debug_on_next_call = old_debug_on_next_call;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
409 return ((!UNBOUNDP (v)) ? v : val);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
410 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
411
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
412 /* Called when debug-on-call behavior is called for. Enter the debugger
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
413 with the appropriate args for this. VAL is either t for a call
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
414 through `eval' or 'lambda for a call through `funcall'.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
415
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
416 #### The differentiation here between EVAL and FUNCALL is bogus.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
417 FUNCALL can be defined as
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
418
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
419 (defmacro func (fun &rest args)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
420 (cons (eval fun) args))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
421
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
422 and should be treated as such.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
423 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
424
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
425 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
426 do_debug_on_call (Lisp_Object code)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
427 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
428 debug_on_next_call = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
429 backtrace_list->debug_on_exit = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
430 call_debugger (list1 (code));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
431 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
432
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
433 /* LIST is the value of one of the variables `debug-on-error',
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
434 `debug-on-signal', `stack-trace-on-error', or `stack-trace-on-signal',
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
435 and CONDITIONS is the list of error conditions associated with
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
436 the error being signalled. This returns non-nil if LIST
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
437 matches CONDITIONS. (A nil value for LIST does not match
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
438 CONDITIONS. A non-list value for LIST does match CONDITIONS.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
439 A list matches CONDITIONS when one of the symbols in LIST is the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
440 same as one of the symbols in CONDITIONS.) */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
441
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
442 static int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
443 wants_debugger (Lisp_Object list, Lisp_Object conditions)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
444 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
445 if (NILP (list))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
446 return 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
447 if (! CONSP (list))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
448 return 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
449
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
450 while (CONSP (conditions))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
451 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
452 Lisp_Object this, tail;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
453 this = XCAR (conditions);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
454 for (tail = list; CONSP (tail); tail = XCDR (tail))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
455 if (EQ (XCAR (tail), this))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
456 return 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
457 conditions = XCDR (conditions);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
458 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
459 return 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
460 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
461
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
462 /* Actually generate a backtrace on STREAM. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
463
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
464 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
465 backtrace_259 (Lisp_Object stream)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
466 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
467 return (Fbacktrace (stream, Qt));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
468 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
469
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
470 /* An error was signalled. Maybe call the debugger, if the `debug-on-error'
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
471 etc. variables call for this. CONDITIONS is the list of conditions
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
472 associated with the error being signalled. SIG is the actual error
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
473 being signalled, and DATA is the associated data (these are exactly
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
474 the same as the arguments to `signal'). ACTIVE_HANDLERS is the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
475 list of error handlers that are to be put in place while the debugger
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
476 is called. This is generally the remaining handlers that are
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
477 outside of the innermost handler trapping this error. This way,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
478 if the same error occurs inside of the debugger, you usually don't get
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
479 the debugger entered recursively.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
480
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
481 This function returns Qunbound if it didn't call the debugger or if
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
482 the user asked (through 'c') that XEmacs should pretend like the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
483 debugger was never entered. Otherwise, it returns the value
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
484 that the user specified with `r'. (Note that much of the time,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
485 the user will abort with C-], and we will never have a chance to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
486 return anything at all.)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
487
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
488 SIGNAL_VARS_ONLY means we should only look at debug-on-signal
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
489 and stack-trace-on-signal to control whether we do anything.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
490 This is so that debug-on-error doesn't make handled errors
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
491 cause the debugger to get invoked.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
492
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
493 STACK_TRACE_DISPLAYED and DEBUGGER_ENTERED are used so that
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
494 those functions aren't done more than once in a single `signal'
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
495 session. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
496
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
497 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
498 signal_call_debugger (Lisp_Object conditions,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
499 Lisp_Object sig, Lisp_Object data,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
500 Lisp_Object active_handlers,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
501 int signal_vars_only,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
502 int *stack_trace_displayed,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
503 int *debugger_entered)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
504 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
505 /* This function can GC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
506 Lisp_Object val = Qunbound;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
507 Lisp_Object all_handlers = Vcondition_handlers;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
508 int speccount = specpdl_depth_counter;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
509 struct gcpro gcpro1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
510 GCPRO1 (all_handlers);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
511
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
512 Vcondition_handlers = active_handlers;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
513
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
514 if (!entering_debugger && !*stack_trace_displayed && !signal_vars_only
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
515 && wants_debugger (Vstack_trace_on_error, conditions))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
516 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
517 specbind (Qdebug_on_error, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
518 specbind (Qstack_trace_on_error, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
519 specbind (Qdebug_on_signal, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
520 specbind (Qstack_trace_on_signal, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
521
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
522 internal_with_output_to_temp_buffer ("*Backtrace*",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
523 backtrace_259,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
524 Qnil,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
525 Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
526 unbind_to (speccount, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
527 *stack_trace_displayed = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
528 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
529
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
530 if (!entering_debugger && !*debugger_entered && !signal_vars_only
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
531 && (EQ (sig, Qquit)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
532 ? debug_on_quit
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
533 : wants_debugger (Vdebug_on_error, conditions)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
534 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
535 debug_on_quit &= ~2; /* reset critical bit */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
536 specbind (Qdebug_on_error, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
537 specbind (Qstack_trace_on_error, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
538 specbind (Qdebug_on_signal, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
539 specbind (Qstack_trace_on_signal, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
540
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
541 val = call_debugger (list2 (Qerror, (Fcons (sig, data))));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
542 *debugger_entered = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
543 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
544
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
545 if (!entering_debugger && !*stack_trace_displayed
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
546 && wants_debugger (Vstack_trace_on_signal, conditions))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
547 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
548 specbind (Qdebug_on_error, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
549 specbind (Qstack_trace_on_error, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
550 specbind (Qdebug_on_signal, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
551 specbind (Qstack_trace_on_signal, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
552
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
553 internal_with_output_to_temp_buffer ("*Backtrace*",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
554 backtrace_259,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
555 Qnil,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
556 Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
557 unbind_to (speccount, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
558 *stack_trace_displayed = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
559 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
560
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
561 if (!entering_debugger && !*debugger_entered
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
562 && (EQ (sig, Qquit)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
563 ? debug_on_quit
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
564 : wants_debugger (Vdebug_on_signal, conditions)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
565 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
566 debug_on_quit &= ~2; /* reset critical bit */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
567 specbind (Qdebug_on_error, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
568 specbind (Qstack_trace_on_error, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
569 specbind (Qdebug_on_signal, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
570 specbind (Qstack_trace_on_signal, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
571
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
572 val = call_debugger (list2 (Qerror, (Fcons (sig, data))));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
573 *debugger_entered = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
574 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
575
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
576 UNGCPRO;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
577 Vcondition_handlers = all_handlers;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
578 return (unbind_to (speccount, val));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
579 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
580
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
581
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
582 /**********************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
583 /* The basic special forms */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
584 /**********************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
585
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
586 /* NOTE!!! Every function that can call EVAL must protect its args
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
587 and temporaries from garbage collection while it needs them.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
588 The definition of `For' shows what you have to do. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
589
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
590 DEFUN ("or", For, Sor, 0, UNEVALLED, 0 /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
591 Eval args until one of them yields non-nil, then return that value.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
592 The remaining args are not evalled at all.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
593 If all args return nil, return nil.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
594 */ )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
595 (args)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
596 Lisp_Object args;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
597 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
598 /* This function can GC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
599 REGISTER Lisp_Object val;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
600 Lisp_Object args_left;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
601 struct gcpro gcpro1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
602
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
603 if (NILP (args))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
604 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
605
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
606 args_left = args;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
607 GCPRO1 (args_left);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
608
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
609 do
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
610 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
611 val = Feval (Fcar (args_left));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
612 if (!NILP (val))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
613 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
614 args_left = Fcdr (args_left);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
615 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
616 while (!NILP (args_left));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
617
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
618 UNGCPRO;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
619 return val;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
620 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
621
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
622 DEFUN ("and", Fand, Sand, 0, UNEVALLED, 0 /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
623 Eval args until one of them yields nil, then return nil.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
624 The remaining args are not evalled at all.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
625 If no arg yields nil, return the last arg's value.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
626 */ )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
627 (args)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
628 Lisp_Object args;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
629 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
630 /* This function can GC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
631 REGISTER Lisp_Object val;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
632 Lisp_Object args_left;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
633 struct gcpro gcpro1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
634
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
635 if (NILP (args))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
636 return Qt;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
637
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
638 args_left = args;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
639 GCPRO1 (args_left);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
640
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
641 do
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
642 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
643 val = Feval (Fcar (args_left));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
644 if (NILP (val))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
645 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
646 args_left = Fcdr (args_left);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
647 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
648 while (!NILP (args_left));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
649
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
650 UNGCPRO;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
651 return val;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
652 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
653
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
654 DEFUN ("if", Fif, Sif, 2, UNEVALLED, 0 /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
655 (if COND THEN ELSE...): if COND yields non-nil, do THEN, else do ELSE...
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
656 Returns the value of THEN or the value of the last of the ELSE's.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
657 THEN must be one expression, but ELSE... can be zero or more expressions.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
658 If COND yields nil, and there are no ELSE's, the value is nil.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
659 */ )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
660 (args)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
661 Lisp_Object args;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
662 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
663 /* This function can GC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
664 Lisp_Object cond;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
665 struct gcpro gcpro1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
666
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
667 GCPRO1 (args);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
668 cond = Feval (Fcar (args));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
669 UNGCPRO;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
670
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
671 if (!NILP (cond))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
672 return Feval (Fcar (Fcdr (args)));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
673 return Fprogn (Fcdr (Fcdr (args)));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
674 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
675
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
676 DEFUN ("cond", Fcond, Scond, 0, UNEVALLED, 0 /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
677 (cond CLAUSES...): try each clause until one succeeds.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
678 Each clause looks like (CONDITION BODY...). CONDITION is evaluated
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
679 and, if the value is non-nil, this clause succeeds:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
680 then the expressions in BODY are evaluated and the last one's
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
681 value is the value of the cond-form.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
682 If no clause succeeds, cond returns nil.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
683 If a clause has one element, as in (CONDITION),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
684 CONDITION's value if non-nil is returned from the cond-form.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
685 */ )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
686 (args)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
687 Lisp_Object args;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
688 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
689 /* This function can GC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
690 REGISTER Lisp_Object clause, val;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
691 struct gcpro gcpro1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
692
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
693 val = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
694 GCPRO1 (args);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
695 while (!NILP (args))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
696 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
697 clause = Fcar (args);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
698 val = Feval (Fcar (clause));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
699 if (!NILP (val))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
700 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
701 if (!EQ (XCDR (clause), Qnil))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
702 val = Fprogn (XCDR (clause));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
703 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
704 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
705 args = XCDR (args);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
706 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
707 UNGCPRO;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
708
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
709 return val;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
710 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
711
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
712 DEFUN ("progn", Fprogn, Sprogn, 0, UNEVALLED, 0 /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
713 (progn BODY...): eval BODY forms sequentially and return value of last one.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
714 */ )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
715 (args)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
716 Lisp_Object args;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
717 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
718 /* This function can GC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
719 REGISTER Lisp_Object val;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
720 Lisp_Object args_left;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
721 struct gcpro gcpro1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
722
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
723 #ifdef MOCKLISP_SUPPORT
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
724 /* In Mucklisp code, symbols at the front of the progn arglist
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
725 are to be bound to zero. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
726 if (!EQ (Vmocklisp_arguments, Qt))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
727 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
728 Lisp_Object tem;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
729 val = Qzero;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
730 while (!NILP (args) && (tem = Fcar (args), SYMBOLP (tem)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
731 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
732 QUIT;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
733 specbind (tem, val), args = Fcdr (args);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
734 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
735 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
736 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
737
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
738 if (NILP (args))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
739 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
740
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
741 args_left = args;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
742 GCPRO1 (args_left);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
743
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
744 do
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
745 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
746 val = Feval (Fcar (args_left));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
747 args_left = Fcdr (args_left);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
748 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
749 while (!NILP (args_left));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
750
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
751 UNGCPRO;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
752 return val;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
753 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
754
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
755 DEFUN ("prog1", Fprog1, Sprog1, 1, UNEVALLED, 0 /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
756 (prog1 FIRST BODY...): eval FIRST and BODY sequentially; value from FIRST.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
757 The value of FIRST is saved during the evaluation of the remaining args,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
758 whose values are discarded.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
759 */ )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
760 (args)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
761 Lisp_Object args;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
762 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
763 /* This function can GC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
764 Lisp_Object val;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
765 REGISTER Lisp_Object args_left;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
766 struct gcpro gcpro1, gcpro2;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
767 REGISTER int argnum = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
768
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
769 if (NILP (args))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
770 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
771
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
772 args_left = args;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
773 val = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
774 GCPRO2 (args, val);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
775
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
776 do
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
777 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
778 if (!(argnum++))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
779 val = Feval (Fcar (args_left));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
780 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
781 Feval (Fcar (args_left));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
782 args_left = Fcdr (args_left);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
783 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
784 while (!NILP (args_left));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
785
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
786 UNGCPRO;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
787 return val;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
788 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
789
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
790 DEFUN ("prog2", Fprog2, Sprog2, 2, UNEVALLED, 0 /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
791 (prog2 X Y BODY...): eval X, Y and BODY sequentially; value from Y.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
792 The value of Y is saved during the evaluation of the remaining args,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
793 whose values are discarded.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
794 */ )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
795 (args)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
796 Lisp_Object args;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
797 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
798 /* This function can GC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
799 Lisp_Object val;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
800 REGISTER Lisp_Object args_left;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
801 struct gcpro gcpro1, gcpro2;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
802 REGISTER int argnum = -1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
803
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
804 val = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
805
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
806 if (NILP (args))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
807 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
808
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
809 args_left = args;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
810 val = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
811 GCPRO2 (args, val);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
812
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
813 do
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
814 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
815 if (!(argnum++))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
816 val = Feval (Fcar (args_left));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
817 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
818 Feval (Fcar (args_left));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
819 args_left = Fcdr (args_left);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
820 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
821 while (!NILP (args_left));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
822
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
823 UNGCPRO;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
824 return val;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
825 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
826
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
827 DEFUN ("let*", FletX, SletX, 1, UNEVALLED, 0 /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
828 (let* VARLIST BODY...): bind variables according to VARLIST then eval BODY.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
829 The value of the last form in BODY is returned.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
830 Each element of VARLIST is a symbol (which is bound to nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
831 or a list (SYMBOL VALUEFORM) (which binds SYMBOL to the value of VALUEFORM).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
832 Each VALUEFORM can refer to the symbols already bound by this VARLIST.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
833 */ )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
834 (args)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
835 Lisp_Object args;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
836 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
837 /* This function can GC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
838 Lisp_Object varlist, val, elt;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
839 int speccount = specpdl_depth_counter;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
840 struct gcpro gcpro1, gcpro2, gcpro3;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
841
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
842 GCPRO3 (args, elt, varlist);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
843
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
844 varlist = Fcar (args);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
845 while (!NILP (varlist))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
846 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
847 QUIT;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
848 elt = Fcar (varlist);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
849 if (SYMBOLP (elt))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
850 specbind (elt, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
851 else if (! NILP (Fcdr (Fcdr (elt))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
852 signal_simple_error ("`let' bindings can have only one value-form",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
853 elt);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
854 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
855 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
856 val = Feval (Fcar (Fcdr (elt)));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
857 specbind (Fcar (elt), val);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
858 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
859 varlist = Fcdr (varlist);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
860 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
861 UNGCPRO;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
862 val = Fprogn (Fcdr (args));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
863 return unbind_to (speccount, val);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
864 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
865
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
866 DEFUN ("let", Flet, Slet, 1, UNEVALLED, 0 /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
867 (let VARLIST BODY...): bind variables according to VARLIST then eval BODY.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
868 The value of the last form in BODY is returned.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
869 Each element of VARLIST is a symbol (which is bound to nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
870 or a list (SYMBOL VALUEFORM) (which binds SYMBOL to the value of VALUEFORM).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
871 All the VALUEFORMs are evalled before any symbols are bound.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
872 */ )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
873 (args)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
874 Lisp_Object args;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
875 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
876 /* This function can GC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
877 Lisp_Object *temps, tem;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
878 REGISTER Lisp_Object elt, varlist;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
879 int speccount = specpdl_depth_counter;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
880 REGISTER int argnum;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
881 struct gcpro gcpro1, gcpro2;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
882
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
883 varlist = Fcar (args);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
884
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
885 /* Make space to hold the values to give the bound variables */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
886 elt = Flength (varlist);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
887 temps = (Lisp_Object *) alloca (XINT (elt) * sizeof (Lisp_Object));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
888
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
889 /* Compute the values and store them in `temps' */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
890
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
891 GCPRO2 (args, *temps);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
892 gcpro2.nvars = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
893
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
894 for (argnum = 0; !NILP (varlist); varlist = Fcdr (varlist))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
895 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
896 QUIT;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
897 elt = Fcar (varlist);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
898 if (SYMBOLP (elt))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
899 temps [argnum++] = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
900 else if (! NILP (Fcdr (Fcdr (elt))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
901 signal_simple_error ("`let' bindings can have only one value-form",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
902 elt);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
903 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
904 temps [argnum++] = Feval (Fcar (Fcdr (elt)));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
905 gcpro2.nvars = argnum;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
906 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
907 UNGCPRO;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
908
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
909 varlist = Fcar (args);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
910 for (argnum = 0; !NILP (varlist); varlist = Fcdr (varlist))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
911 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
912 elt = Fcar (varlist);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
913 tem = temps[argnum++];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
914 if (SYMBOLP (elt))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
915 specbind (elt, tem);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
916 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
917 specbind (Fcar (elt), tem);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
918 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
919
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
920 elt = Fprogn (Fcdr (args));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
921 return unbind_to (speccount, elt);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
922 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
923
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
924 DEFUN ("while", Fwhile, Swhile, 1, UNEVALLED, 0 /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
925 (while TEST BODY...): if TEST yields non-nil, eval BODY... and repeat.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
926 The order of execution is thus TEST, BODY, TEST, BODY and so on
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
927 until TEST returns nil.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
928 */ )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
929 (args)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
930 Lisp_Object args;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
931 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
932 /* This function can GC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
933 Lisp_Object test, body, tem;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
934 struct gcpro gcpro1, gcpro2;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
935
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
936 GCPRO2 (test, body);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
937
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
938 test = Fcar (args);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
939 body = Fcdr (args);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
940 #ifdef MOCKLISP_SUPPORT
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
941 while (tem = Feval (test),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
942 (!EQ (Vmocklisp_arguments, Qt) ? XINT (tem) : !NILP (tem)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
943 #else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
944 while (tem = Feval (test), !NILP (tem))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
945 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
946 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
947 QUIT;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
948 Fprogn (body);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
949 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
950
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
951 UNGCPRO;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
952 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
953 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
954
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
955 Lisp_Object Qsetq;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
956
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
957 DEFUN ("setq", Fsetq, Ssetq, 0, UNEVALLED, 0 /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
958 (setq SYM VAL SYM VAL ...): set each SYM to the value of its VAL.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
959 The symbols SYM are variables; they are literal (not evaluated).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
960 The values VAL are expressions; they are evaluated.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
961 Thus, (setq x (1+ y)) sets `x' to the value of `(1+ y)'.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
962 The second VAL is not computed until after the first SYM is set, and so on;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
963 each VAL can use the new value of variables set earlier in the `setq'.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
964 The return value of the `setq' form is the value of the last VAL.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
965 */ )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
966 (args)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
967 Lisp_Object args;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
968 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
969 /* This function can GC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
970 REGISTER Lisp_Object args_left;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
971 REGISTER Lisp_Object val, sym;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
972 struct gcpro gcpro1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
973
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
974 if (NILP (args))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
975 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
976
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
977 val = Flength (args);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
978 if (XINT (val) & 1) /* Odd number of arguments? */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
979 Fsignal (Qwrong_number_of_arguments, list2 (Qsetq, val));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
980
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
981 args_left = args;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
982 GCPRO1 (args);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
983
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
984 do
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
985 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
986 val = Feval (Fcar (Fcdr (args_left)));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
987 sym = Fcar (args_left);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
988 Fset (sym, val);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
989 args_left = Fcdr (Fcdr (args_left));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
990 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
991 while (!NILP (args_left));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
992
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
993 UNGCPRO;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
994 return val;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
995 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
996
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
997 DEFUN ("quote", Fquote, Squote, 1, UNEVALLED, 0 /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
998 Return the argument, without evaluating it. `(quote x)' yields `x'.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
999 */ )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1000 (args)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1001 Lisp_Object args;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1002 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1003 return Fcar (args);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1004 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1005
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1006 DEFUN ("function", Ffunction, Sfunction, 1, UNEVALLED, 0 /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1007 Like `quote', but preferred for objects which are functions.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1008 In byte compilation, `function' causes its argument to be compiled.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1009 `quote' cannot do that.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1010 */ )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1011 (args)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1012 Lisp_Object args;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1013 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1014 return Fcar (args);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1015 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1016
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1017
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1018 /**********************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1019 /* Defining functions/variables */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1020 /**********************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1021
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1022 DEFUN ("defun", Fdefun, Sdefun, 2, UNEVALLED, 0 /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1023 (defun NAME ARGLIST [DOCSTRING] BODY...): define NAME as a function.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1024 The definition is (lambda ARGLIST [DOCSTRING] BODY...).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1025 See also the function `interactive'.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1026 */ )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1027 (args)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1028 Lisp_Object args;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1029 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1030 /* This function can GC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1031 Lisp_Object fn_name;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1032 Lisp_Object defn;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1033
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1034 fn_name = Fcar (args);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1035 defn = Fcons (Qlambda, Fcdr (args));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1036 if (purify_flag)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1037 defn = Fpurecopy (defn);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1038 Ffset (fn_name, defn);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1039 LOADHIST_ATTACH (fn_name);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1040 return fn_name;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1041 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1042
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1043 DEFUN ("defmacro", Fdefmacro, Sdefmacro, 2, UNEVALLED, 0 /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1044 (defmacro NAME ARGLIST [DOCSTRING] BODY...): define NAME as a macro.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1045 The definition is (macro lambda ARGLIST [DOCSTRING] BODY...).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1046 When the macro is called, as in (NAME ARGS...),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1047 the function (lambda ARGLIST BODY...) is applied to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1048 the list ARGS... as it appears in the expression,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1049 and the result should be a form to be evaluated instead of the original.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1050 */ )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1051 (args)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1052 Lisp_Object args;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1053 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1054 /* This function can GC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1055 Lisp_Object fn_name;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1056 Lisp_Object defn;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1057
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1058 fn_name = Fcar (args);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1059 defn = Fcons (Qmacro, Fcons (Qlambda, Fcdr (args)));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1060 if (purify_flag)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1061 defn = Fpurecopy (defn);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1062 Ffset (fn_name, defn);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1063 LOADHIST_ATTACH (fn_name);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1064 return fn_name;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1065 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1066
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1067 DEFUN ("defvar", Fdefvar, Sdefvar, 1, UNEVALLED, 0 /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1068 (defvar SYMBOL INITVALUE DOCSTRING): define SYMBOL as a variable.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1069 You are not required to define a variable in order to use it,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1070 but the definition can supply documentation and an initial value
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1071 in a way that tags can recognize.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1072
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1073 INITVALUE is evaluated, and used to set SYMBOL, only if SYMBOL's value is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1074 void. (However, when you evaluate a defvar interactively, it acts like a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1075 defconst: SYMBOL's value is always set regardless of whether it's currently
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1076 void.)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1077 If SYMBOL is buffer-local, its default value is what is set;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1078 buffer-local values are not affected.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1079 INITVALUE and DOCSTRING are optional.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1080 If DOCSTRING starts with *, this variable is identified as a user option.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1081 This means that M-x set-variable and M-x edit-options recognize it.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1082 If INITVALUE is missing, SYMBOL's value is not set.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1083
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1084 In lisp-interaction-mode defvar is treated as defconst.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1085 */ )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1086 (args)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1087 Lisp_Object args;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1088 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1089 /* This function can GC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1090 REGISTER Lisp_Object sym, tem, tail;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1091
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1092 sym = Fcar (args);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1093 tail = Fcdr (args);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1094 if (!NILP (Fcdr (Fcdr (tail))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1095 error ("too many arguments");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1096
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1097 if (!NILP (tail))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1098 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1099 tem = Fdefault_boundp (sym);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1100 if (NILP (tem))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1101 Fset_default (sym, Feval (Fcar (Fcdr (args))));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1102 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1103
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1104 #ifdef I18N3
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1105 if (!NILP (Vfile_domain))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1106 pure_put (sym, Qvariable_domain, Vfile_domain);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1107 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1108
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1109 tail = Fcdr (Fcdr (args));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1110 if (!NILP (Fcar (tail)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1111 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1112 tem = Fcar (tail);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1113 #if 0 /* FSFmacs */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1114 /* #### We should probably do this but it might be dangerous */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1115 if (purify_flag)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1116 tem = Fpurecopy (tem);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1117 Fput (sym, Qvariable_documentation, tem);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1118 #else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1119 pure_put (sym, Qvariable_documentation, tem);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1120 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1121 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1122
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1123 LOADHIST_ATTACH (sym);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1124 return sym;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1125 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1126
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1127 DEFUN ("defconst", Fdefconst, Sdefconst, 2, UNEVALLED, 0 /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1128 (defconst SYMBOL INITVALUE DOCSTRING): define SYMBOL as a constant
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1129 variable.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1130 The intent is that programs do not change this value, but users may.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1131 Always sets the value of SYMBOL to the result of evalling INITVALUE.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1132 If SYMBOL is buffer-local, its default value is what is set;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1133 buffer-local values are not affected.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1134 DOCSTRING is optional.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1135 If DOCSTRING starts with *, this variable is identified as a user option.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1136 This means that M-x set-variable and M-x edit-options recognize it.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1137
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1138 Note: do not use `defconst' for user options in libraries that are not
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1139 normally loaded, since it is useful for users to be able to specify
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1140 their own values for such variables before loading the library.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1141 Since `defconst' unconditionally assigns the variable,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1142 it would override the user's choice.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1143 */ )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1144 (args)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1145 Lisp_Object args;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1146 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1147 /* This function can GC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1148 REGISTER Lisp_Object sym, tem;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1149
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1150 sym = Fcar (args);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1151 if (!NILP (Fcdr (Fcdr (Fcdr (args)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1152 error ("too many arguments");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1153
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1154 Fset_default (sym, Feval (Fcar (Fcdr (args))));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1155
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1156 #ifdef I18N3
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1157 if (!NILP (Vfile_domain))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1158 pure_put (sym, Qvariable_domain, Vfile_domain);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1159 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1160
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1161 tem = Fcar (Fcdr (Fcdr (args)));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1162
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1163 if (!NILP (tem))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1164 #if 0 /* FSFmacs */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1165 /* #### We should probably do this but it might be dangerous */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1166 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1167 if (purify_flag)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1168 tem = Fpurecopy (tem);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1169 Fput (sym, Qvariable_documentation, tem);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1170 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1171 #else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1172 pure_put (sym, Qvariable_documentation, tem);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1173 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1174
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1175 LOADHIST_ATTACH (sym);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1176 return sym;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1177 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1178
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1179 DEFUN ("user-variable-p", Fuser_variable_p, Suser_variable_p, 1, 1, 0 /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1180 Return t if VARIABLE is intended to be set and modified by users.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1181 \(The alternative is a variable used internally in a Lisp program.)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1182 Determined by whether the first character of the documentation
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1183 for the variable is `*'.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1184 */ )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1185 (variable)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1186 Lisp_Object variable;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1187 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1188 Lisp_Object documentation;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1189
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1190 documentation = Fget (variable, Qvariable_documentation, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1191 if (INTP (documentation) && XINT (documentation) < 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1192 return Qt;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1193 if ((STRINGP (documentation)) &&
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1194 (string_byte (XSTRING (documentation), 0) == '*'))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1195 return Qt;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1196 /* If it is (STRING . INTEGER), a negative integer means a user variable. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1197 if (CONSP (documentation)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1198 && STRINGP (XCAR (documentation))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1199 && INTP (XCDR (documentation))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1200 && XINT (XCDR (documentation)) < 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1201 return Qt;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1202 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1203 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1204
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1205 DEFUN ("macroexpand-internal", Fmacroexpand_internal, Smacroexpand_internal,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1206 1, 2, 0 /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1207 Return result of expanding macros at top level of FORM.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1208 If FORM is not a macro call, it is returned unchanged.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1209 Otherwise, the macro is expanded and the expansion is considered
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1210 in place of FORM. When a non-macro-call results, it is returned.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1211
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1212 The second optional arg ENVIRONMENT species an environment of macro
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1213 definitions to shadow the loaded ones for use in file byte-compilation.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1214 */ )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1215 (form, env)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1216 Lisp_Object form;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1217 Lisp_Object env;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1218 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1219 /* This function can GC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1220 /* With cleanups from Hallvard Furuseth. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1221 REGISTER Lisp_Object expander, sym, def, tem;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1222
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1223 while (1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1224 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1225 /* Come back here each time we expand a macro call,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1226 in case it expands into another macro call. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1227 if (!CONSP (form))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1228 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1229 /* Set SYM, give DEF and TEM right values in case SYM is not a symbol. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1230 def = sym = XCAR (form);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1231 tem = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1232 /* Trace symbols aliases to other symbols
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1233 until we get a symbol that is not an alias. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1234 while (SYMBOLP (def))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1235 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1236 QUIT;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1237 sym = def;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1238 tem = Fassq (sym, env);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1239 if (NILP (tem))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1240 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1241 def = XSYMBOL (sym)->function;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1242 if (!UNBOUNDP (def))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1243 continue;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1244 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1245 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1246 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1247 /* Right now TEM is the result from SYM in ENV,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1248 and if TEM is nil then DEF is SYM's function definition. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1249 if (NILP (tem))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1250 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1251 /* SYM is not mentioned in ENV.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1252 Look at its function definition. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1253 if (UNBOUNDP (def)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1254 || !CONSP (def))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1255 /* Not defined or definition not suitable */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1256 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1257 if (EQ (XCAR (def), Qautoload))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1258 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1259 /* Autoloading function: will it be a macro when loaded? */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1260 tem = Felt (def, make_int (4));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1261 if (EQ (tem, Qt) || EQ (tem, Qmacro))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1262 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1263 /* Yes, load it and try again. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1264 do_autoload (def, sym);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1265 continue;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1266 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1267 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1268 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1269 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1270 else if (!EQ (XCAR (def), Qmacro))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1271 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1272 else expander = XCDR (def);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1273 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1274 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1275 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1276 expander = XCDR (tem);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1277 if (NILP (expander))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1278 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1279 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1280 form = apply1 (expander, XCDR (form));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1281 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1282 return form;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1283 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1284
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1285
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1286 /**********************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1287 /* Non-local exits */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1288 /**********************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1289
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1290 DEFUN ("catch", Fcatch, Scatch, 1, UNEVALLED, 0 /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1291 (catch TAG BODY...): eval BODY allowing nonlocal exits using `throw'.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1292 TAG is evalled to get the tag to use. Then the BODY is executed.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1293 Within BODY, (throw TAG) with same tag exits BODY and exits this `catch'.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1294 If no throw happens, `catch' returns the value of the last BODY form.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1295 If a throw happens, it specifies the value to return from `catch'.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1296 */ )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1297 (args)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1298 Lisp_Object args;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1299 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1300 /* This function can GC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1301 Lisp_Object tag;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1302 struct gcpro gcpro1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1303
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1304 GCPRO1 (args);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1305 tag = Feval (Fcar (args));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1306 UNGCPRO;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1307 return internal_catch (tag, Fprogn, Fcdr (args), 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1308 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1309
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1310 /* Set up a catch, then call C function FUNC on argument ARG.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1311 FUNC should return a Lisp_Object.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1312 This is how catches are done from within C code. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1313
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1314 Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1315 internal_catch (Lisp_Object tag,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1316 Lisp_Object (*func) (Lisp_Object arg),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1317 Lisp_Object arg,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1318 int *threw)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1319 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1320 /* This structure is made part of the chain `catchlist'. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1321 struct catchtag c;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1322
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1323 /* Fill in the components of c, and put it on the list. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1324 c.next = catchlist;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1325 c.tag = tag;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1326 c.val = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1327 c.backlist = backtrace_list;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1328 #if 0 /* FSFmacs */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1329 /* #### */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1330 c.handlerlist = handlerlist;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1331 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1332 c.lisp_eval_depth = lisp_eval_depth;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1333 c.pdlcount = specpdl_depth_counter;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1334 #if 0 /* FSFmacs */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1335 c.poll_suppress_count = async_timer_suppress_count;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1336 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1337 c.gcpro = gcprolist;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1338 catchlist = &c;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1339
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1340 /* Call FUNC. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1341 if (SETJMP (c.jmp))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1342 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1343 /* Throw works by a longjmp that comes right here. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1344 if (threw) *threw = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1345 return (c.val);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1346 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1347 c.val = (*func) (arg);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1348 if (threw) *threw = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1349 catchlist = c.next;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1350 return (c.val);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1351 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1352
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1353
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1354 /* Unwind the specbind, catch, and handler stacks back to CATCH, and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1355 jump to that CATCH, returning VALUE as the value of that catch.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1356
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1357 This is the guts Fthrow and Fsignal; they differ only in the way
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1358 they choose the catch tag to throw to. A catch tag for a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1359 condition-case form has a TAG of Qnil.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1360
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1361 Before each catch is discarded, unbind all special bindings and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1362 execute all unwind-protect clauses made above that catch. Unwind
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1363 the handler stack as we go, so that the proper handlers are in
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1364 effect for each unwind-protect clause we run. At the end, restore
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1365 some static info saved in CATCH, and longjmp to the location
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1366 specified in the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1367
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1368 This is used for correct unwinding in Fthrow and Fsignal. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1369
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1370 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1371 unwind_to_catch (struct catchtag *c, Lisp_Object val)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1372 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1373 #if 0 /* FSFmacs */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1374 /* #### */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1375 register int last_time;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1376 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1377
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1378 /* Unwind the specbind, catch, and handler stacks back to CATCH
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1379 Before each catch is discarded, unbind all special bindings
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1380 and execute all unwind-protect clauses made above that catch.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1381 At the end, restore some static info saved in CATCH,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1382 and longjmp to the location specified.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1383 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1384
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1385 /* Save the value somewhere it will be GC'ed.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1386 (Can't overwrite tag slot because an unwind-protect may
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1387 want to throw to this same tag, which isn't yet invalid.) */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1388 c->val = val;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1389
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1390 #if 0 /* FSFmacs */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1391 /* Restore the polling-suppression count. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1392 set_poll_suppress_count (catch->poll_suppress_count);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1393 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1394
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1395 #if 0 /* FSFmacs */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1396 /* #### FSFmacs has the following loop. Is it more correct? */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1397 do
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1398 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1399 last_time = catchlist == c;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1400
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1401 /* Unwind the specpdl stack, and then restore the proper set of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1402 handlers. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1403 unbind_to (catchlist->pdlcount, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1404 handlerlist = catchlist->handlerlist;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1405 catchlist = catchlist->next;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1406 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1407 while (! last_time);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1408 #else /* Actual XEmacs code */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1409 /* Unwind the specpdl stack */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1410 unbind_to (c->pdlcount, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1411 catchlist = c->next;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1412 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1413
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1414 gcprolist = c->gcpro;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1415 backtrace_list = c->backlist;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1416 lisp_eval_depth = c->lisp_eval_depth;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1417
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1418 throw_level = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1419 LONGJMP (c->jmp, 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1420 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1421
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1422 static DOESNT_RETURN
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1423 throw_or_bomb_out (Lisp_Object tag, Lisp_Object val, int bomb_out_p,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1424 Lisp_Object sig, Lisp_Object data)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1425 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1426 /* die if we recurse more than is reasonable */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1427 if (++throw_level > 20)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1428 abort();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1429
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1430 /* If bomb_out_p is t, this is being called from Fsignal as a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1431 "last resort" when there is no handler for this error and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1432 the debugger couldn't be invoked, so we are throwing to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1433 'top-level. If this tag doesn't exist (happens during the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1434 initialization stages) we would get in an infinite recursive
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1435 Fsignal/Fthrow loop, so instead we bomb out to the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1436 really-early-error-handler.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1437
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1438 Note that in fact the only time that the "last resort"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1439 occurs is when there's no catch for 'top-level -- the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1440 'top-level catch and the catch-all error handler are
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1441 established at the same time, in initial_command_loop/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1442 top_level_1.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1443
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1444 #### Fix this horrifitude!
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1445 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1446
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1447 while (1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1448 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1449 REGISTER struct catchtag *c;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1450
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1451 #if 0 /* FSFmacs */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1452 if (!NILP (tag)) /* #### */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1453 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1454 for (c = catchlist; c; c = c->next)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1455 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1456 if (EQ (c->tag, tag))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1457 unwind_to_catch (c, val);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1458 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1459 if (!bomb_out_p)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1460 tag = Fsignal (Qno_catch, list2 (tag, val));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1461 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1462 call1 (Qreally_early_error_handler, Fcons (sig, data));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1463 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1464
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1465 /* can't happen. who cares? - (Sun's compiler does) */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1466 /* throw_level--; */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1467 /* getting tired of compilation warnings */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1468 /* return Qnil; */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1469 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1470
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1471 /* See above, where CATCHLIST is defined, for a description of how
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1472 Fthrow() works.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1473
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1474 Fthrow() is also called by Fsignal(), to do a non-local jump
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1475 back to the appropriate condition-case handler after (maybe)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1476 the debugger is entered. In that case, TAG is the value
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1477 of Vcondition_handlers that was in place just after the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1478 condition-case handler was set up. The car of this will be
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1479 some data referring to the handler: Its car will be Qunbound
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1480 (thus, this tag can never be generated by Lisp code), and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1481 its CDR will be the HANDLERS argument to condition_case_1()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1482 (either Qerror, Qt, or a list of handlers as in `condition-case').
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1483 This works fine because Fthrow() does not care what TAG was
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1484 passed to it: it just looks up the catch list for something
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1485 that is EQ() to TAG. When it finds it, it will longjmp()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1486 back to the place that established the catch (in this case,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1487 condition_case_1). See below for more info.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1488 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1489
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1490 DEFUN ("throw", Fthrow, Sthrow, 2, 2, 0 /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1491 (throw TAG VALUE): throw to the catch for TAG and return VALUE from it.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1492 Both TAG and VALUE are evalled.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1493 */ )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1494 (tag, val)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1495 Lisp_Object tag, val;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1496 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1497 throw_or_bomb_out (tag, val, 0, Qnil, Qnil); /* Doesn't return */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1498 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1499 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1500
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1501 DEFUN ("unwind-protect", Funwind_protect, Sunwind_protect, 1, UNEVALLED, 0 /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1502 Do BODYFORM, protecting with UNWINDFORMS.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1503 Usage looks like (unwind-protect BODYFORM UNWINDFORMS...).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1504 If BODYFORM completes normally, its value is returned
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1505 after executing the UNWINDFORMS.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1506 If BODYFORM exits nonlocally, the UNWINDFORMS are executed anyway.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1507 */ )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1508 (args)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1509 Lisp_Object args;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1510 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1511 /* This function can GC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1512 Lisp_Object val;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1513 int speccount = specpdl_depth_counter;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1514
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1515 record_unwind_protect (Fprogn, Fcdr (args));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1516 val = Feval (Fcar (args));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1517 return unbind_to (speccount, val);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1518 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1519
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1520
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1521 /**********************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1522 /* Signalling and trapping errors */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1523 /**********************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1524
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1525 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1526 condition_bind_unwind (Lisp_Object loser)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1527 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1528 struct Lisp_Cons *victim;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1529 /* ((handler-fun . handler-args) ... other handlers) */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1530 Lisp_Object tem = XCAR (loser);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1531
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1532 while (CONSP (tem))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1533 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1534 victim = XCONS (tem);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1535 tem = victim->cdr;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1536 free_cons (victim);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1537 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1538 victim = XCONS (loser);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1539
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1540 if (EQ (loser, Vcondition_handlers)) /* may have been rebound to some tail */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1541 Vcondition_handlers = victim->cdr;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1542
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1543 free_cons (victim);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1544 return (Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1545 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1546
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1547 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1548 condition_case_unwind (Lisp_Object loser)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1549 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1550 struct Lisp_Cons *victim;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1551
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1552 /* ((<unbound> . clauses) ... other handlers */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1553 victim = XCONS (XCAR (loser));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1554 free_cons (victim);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1555
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1556 victim = XCONS (loser);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1557 if (EQ (loser, Vcondition_handlers)) /* may have been rebound to some tail */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1558 Vcondition_handlers = victim->cdr;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1559
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1560 free_cons (victim);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1561 return (Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1562 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1563
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1564 /* Split out from condition_case_3 so that primitive C callers
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1565 don't have to cons up a lisp handler form to be evaluated. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1566
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1567 /* Call a function BFUN of one argument BARG, trapping errors as
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1568 specified by HANDLERS. If no error occurs that is indicated by
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1569 HANDLERS as something to be caught, the return value of this
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1570 function is the return value from BFUN. If such an error does
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1571 occur, HFUN is called, and its return value becomes the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1572 return value of condition_case_1(). The second argument passed
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1573 to HFUN will always be HARG. The first argument depends on
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1574 HANDLERS:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1575
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1576 If HANDLERS is Qt, all errors (this includes QUIT, but not
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1577 non-local exits with `throw') cause HFUN to be invoked, and VAL
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1578 (the first argument to HFUN) is a cons (SIG . DATA) of the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1579 arguments passed to `signal'. The debugger is not invoked even if
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1580 `debug-on-error' was set.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1581
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1582 A HANDLERS value of Qerror is the same as Qt except that the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1583 debugger is invoked if `debug-on-error' was set.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1584
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1585 Otherwise, HANDLERS should be a list of lists (CONDITION-NAME BODY ...)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1586 exactly as in `condition-case', and errors will be trapped
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1587 as indicated in HANDLERS. VAL (the first argument to HFUN) will
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1588 be a cons whose car is the cons (SIG . DATA) and whose CDR is the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1589 list (BODY ...) from the appropriate slot in HANDLERS.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1590
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1591 This function pushes HANDLERS onto the front of Vcondition_handlers
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1592 (actually with a Qunbound marker as well -- see Fthrow() above
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1593 for why), establishes a catch whose tag is this new value of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1594 Vcondition_handlers, and calls BFUN. When Fsignal() is called,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1595 it calls Fthrow(), setting TAG to this same new value of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1596 Vcondition_handlers and setting VAL to the same thing that will
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1597 be passed to HFUN, as above. Fthrow() longjmp()s back to the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1598 jump point we just established, and we in turn just call the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1599 HFUN and return its value.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1600
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1601 For a real condition-case, HFUN will always be
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1602 run_condition_case_handlers() and HARG is the argument VAR
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1603 to condition-case. That function just binds VAR to the cons
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1604 (SIG . DATA) that is the CAR of VAL, and calls the handler
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1605 (BODY ...) that is the CDR of VAL. Note that before calling
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1606 Fthrow(), Fsignal() restored Vcondition_handlers to the value
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1607 it had *before* condition_case_1() was called. This maintains
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1608 consistency (so that the state of things at exit of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1609 condition_case_1() is the same as at entry), and implies
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1610 that the handler can signal the same error again (possibly
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1611 after processing of its own), without getting in an infinite
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1612 loop. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1613
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1614 Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1615 condition_case_1 (Lisp_Object handlers,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1616 Lisp_Object (*bfun) (Lisp_Object barg),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1617 Lisp_Object barg,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1618 Lisp_Object (*hfun) (Lisp_Object val, Lisp_Object harg),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1619 Lisp_Object harg)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1620 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1621 int speccount = specpdl_depth_counter;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1622 struct catchtag c;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1623 struct gcpro gcpro1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1624
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1625 #if 0 /* FSFmacs */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1626 c.tag = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1627 #else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1628 /* Do consing now so out-of-memory error happens up front */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1629 /* (unbound . stuff) is a special condition-case kludge marker
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1630 which is known specially by Fsignal.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1631 This is an abomination, but to fix it would require either
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1632 making condition_case cons (a union of the conditions of the clauses)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1633 or changing the byte-compiler output (no thanks). */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1634 c.tag = noseeum_cons (noseeum_cons (Qunbound, handlers),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1635 Vcondition_handlers);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1636 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1637 c.val = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1638 c.backlist = backtrace_list;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1639 #if 0 /* FSFmacs */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1640 /* #### */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1641 c.handlerlist = handlerlist;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1642 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1643 c.lisp_eval_depth = lisp_eval_depth;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1644 c.pdlcount = specpdl_depth_counter;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1645 #if 0 /* FSFmacs */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1646 c.poll_suppress_count = async_timer_suppress_count;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1647 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1648 c.gcpro = gcprolist;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1649 /* #### FSFmacs does the following statement *after* the setjmp(). */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1650 c.next = catchlist;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1651
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1652 if (SETJMP (c.jmp))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1653 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1654 /* throw does ungcpro, etc */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1655 return ((*hfun) (c.val, harg));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1656 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1657
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1658 record_unwind_protect (condition_case_unwind, c.tag);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1659
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1660 catchlist = &c;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1661 #if 0 /* FSFmacs */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1662 h.handler = handlers;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1663 h.var = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1664 h.next = handlerlist;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1665 h.tag = &c;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1666 handlerlist = &h;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1667 #else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1668 Vcondition_handlers = c.tag;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1669 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1670 GCPRO1 (harg); /* Somebody has to gc-protect */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1671
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1672 c.val = ((*bfun) (barg));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1673
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1674 /* The following is *not* true: (ben)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1675
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1676 ungcpro, restoring catchlist and condition_handlers are actually
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1677 redundant since unbind_to now restores them. But it looks funny not to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1678 have this code here, and it doesn't cost anything, so I'm leaving it.*/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1679 UNGCPRO;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1680 catchlist = c.next;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1681 Vcondition_handlers = XCDR (c.tag);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1682
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1683 return (unbind_to (speccount, c.val));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1684 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1685
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1686 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1687 run_condition_case_handlers (Lisp_Object val, Lisp_Object var)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1688 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1689 /* This function can GC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1690 #if 0 /* FSFmacs */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1691 if (!NILP (h.var))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1692 specbind (h.var, c.val);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1693 val = Fprogn (Fcdr (h.chosen_clause));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1694
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1695 /* Note that this just undoes the binding of h.var; whoever
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1696 longjumped to us unwound the stack to c.pdlcount before
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1697 throwing. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1698 unbind_to (c.pdlcount, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1699 return val;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1700 #else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1701 int speccount;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1702
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1703 if (NILP (var))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1704 return (Fprogn (Fcdr (val))); /* tailcall */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1705
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1706 speccount = specpdl_depth_counter;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1707 specbind (var, Fcar (val));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1708 val = Fprogn (Fcdr (val));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1709 return unbind_to (speccount, val);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1710 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1711 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1712
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1713 /* Here for bytecode to call non-consfully. This is exactly like
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1714 condition-case except that it takes three arguments rather
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1715 than a single list of arguments. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1716 Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1717 Fcondition_case_3 (Lisp_Object bodyform,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1718 Lisp_Object var, Lisp_Object handlers)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1719 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1720 /* This function can GC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1721 Lisp_Object val;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1722
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1723 CHECK_SYMBOL (var);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1724
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1725 for (val = handlers; ! NILP (val); val = Fcdr (val))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1726 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1727 Lisp_Object tem;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1728 tem = Fcar (val);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1729 if ((!NILP (tem))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1730 && (!CONSP (tem)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1731 || (!SYMBOLP (XCAR (tem)) && !CONSP (XCAR (tem)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1732 signal_simple_error ("Invalid condition handler", tem);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1733 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1734
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1735 return condition_case_1 (handlers,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1736 Feval, bodyform,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1737 run_condition_case_handlers,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1738 var);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1739 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1740
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1741 DEFUN ("condition-case", Fcondition_case, Scondition_case, 2, UNEVALLED, 0 /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1742 Regain control when an error is signalled.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1743 Usage looks like (condition-case VAR BODYFORM HANDLERS...).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1744 executes BODYFORM and returns its value if no error happens.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1745 Each element of HANDLERS looks like (CONDITION-NAME BODY...)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1746 where the BODY is made of Lisp expressions.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1747
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1748 A handler is applicable to an error if CONDITION-NAME is one of the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1749 error's condition names. If an error happens, the first applicable
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1750 handler is run. As a special case, a CONDITION-NAME of t matches
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1751 all errors, even those without the `error' condition name on them
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1752 (e.g. `quit').
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1753
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1754 The car of a handler may be a list of condition names
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1755 instead of a single condition name.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1756
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1757 When a handler handles an error,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1758 control returns to the condition-case and the handler BODY... is executed
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1759 with VAR bound to (SIGNALED-CONDITIONS . SIGNAL-DATA).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1760 VAR may be nil; then you do not get access to the signal information.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1761
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1762 The value of the last BODY form is returned from the condition-case.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1763 See also the function `signal' for more info.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1764
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1765 Note that at the time the condition handler is invoked, the Lisp stack
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1766 and the current catches, condition-cases, and bindings have all been
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1767 popped back to the state they were in just before the call to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1768 `condition-case'. This means that resignalling the error from
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1769 within the handler will not result in an infinite loop.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1770
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1771 If you want to establish an error handler that is called with the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1772 Lisp stack, bindings, etc. as they were when `signal' was called,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1773 rather than when the handler was set, use `call-with-condition-handler'.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1774 */ )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1775 (args)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1776 Lisp_Object args;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1777 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1778 /* This function can GC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1779 return Fcondition_case_3 (Fcar (Fcdr (args)),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1780 Fcar (args),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1781 Fcdr (Fcdr (args)));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1782 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1783
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1784 DEFUN ("call-with-condition-handler",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1785 Fcall_with_condition_handler,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1786 Scall_with_condition_handler, 2, MANY, 0 /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1787 Regain control when an error is signalled, without popping the stack.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1788 Usage looks like (call-with-condition-handler HANDLER FUNCTION &rest ARGS).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1789 This function is similar to `condition-case', but the handler is invoked
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1790 with the same environment (Lisp stack, bindings, catches, condition-cases)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1791 that was current when `signal' was called, rather than when the handler
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1792 was established.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1793
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1794 HANDLER should be a function of one argument, which is a cons of the args
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1795 (SIG . DATA) that were passed to `signal'. It is invoked whenever
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1796 `signal' is called (this differs from `condition-case', which allows
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1797 you to specify which errors are trapped). If the handler function
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1798 returns, `signal' continues as if the handler were never invoked.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1799 (It continues to look for handlers established earlier than this one,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1800 and invokes the standard error-handler if none is found.)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1801 */ )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1802 (nargs, args) /* Note! Args side-effected! */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1803 int nargs;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1804 Lisp_Object *args;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1805 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1806 /* This function can GC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1807 int speccount = specpdl_depth_counter;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1808 Lisp_Object tem;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1809
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1810 /* #### If there were a way to check that args[0] were a function
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1811 which accepted one arg, that should be done here ... */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1812
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1813 /* (handler-fun . handler-args) */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1814 tem = noseeum_cons (list1 (args[0]), Vcondition_handlers);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1815 record_unwind_protect (condition_bind_unwind, tem);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1816 Vcondition_handlers = tem;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1817
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1818 /* Caller should have GC-protected args */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1819 tem = Ffuncall (nargs - 1, args + 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1820 return (unbind_to (speccount, tem));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1821 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1822
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1823 static int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1824 condition_type_p (Lisp_Object type, Lisp_Object conditions)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1825 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1826 if (EQ (type, Qt))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1827 /* (condition-case c # (t c)) catches -all- signals
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1828 * Use with caution! */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1829 return (1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1830 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1831 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1832 if (SYMBOLP (type))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1833 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1834 return (!NILP (Fmemq (type, conditions)));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1835 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1836 else if (CONSP (type))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1837 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1838 while (CONSP (type))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1839 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1840 if (!NILP (Fmemq (Fcar (type), conditions)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1841 return 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1842 type = XCDR (type);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1843 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1844 return 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1845 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1846 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1847 return 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1848 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1849 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1850
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1851 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1852 return_from_signal (Lisp_Object value)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1853 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1854 #if 1 /* RMS Claims: */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1855 /* Most callers are not prepared to handle gc if this
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1856 returns. So, since this feature is not very useful,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1857 take it out. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1858 /* Have called debugger; return value to signaller */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1859 return (value);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1860 #else /* But the reality is that that stinks, because: */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1861 /* GACK!!! Really want some way for debug-on-quit errors
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1862 to be continuable!! */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1863 error ("Returning a value from an error is no longer supported");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1864 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1865 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1866
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1867 extern int in_display;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1868 extern int gc_in_progress;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1869
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1870
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1871 /****************** the workhorse error-signaling function ******************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1872
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1873 /* #### This function has not been synched with FSF. It diverges
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1874 significantly. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1875
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1876 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1877 signal_1 (Lisp_Object sig, Lisp_Object data)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1878 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1879 /* This function can GC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1880 struct gcpro gcpro1, gcpro2;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1881 Lisp_Object conditions;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1882 Lisp_Object handlers;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1883 /* signal_call_debugger() could get called more than once
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1884 (once when a call-with-condition-handler is about to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1885 be dealt with, and another when a condition-case handler
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1886 is about to be invoked). So make sure the debugger and/or
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1887 stack trace aren't done more than once. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1888 int stack_trace_displayed = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1889 int debugger_entered = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1890 GCPRO2 (conditions, handlers);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1891
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1892 if (!initialized)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1893 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1894 /* who knows how much has been initialized? Safest bet is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1895 just to bomb out immediately. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1896 fprintf (stderr, "Error before initialization is complete!\n");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1897 abort ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1898 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1899
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1900 if (gc_in_progress || in_display)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1901 /* This is one of many reasons why you can't run lisp code from redisplay.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1902 There is no sensible way to handle errors there. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1903 abort ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1904
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1905 conditions = Fget (sig, Qerror_conditions, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1906
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1907 for (handlers = Vcondition_handlers;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1908 CONSP (handlers);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1909 handlers = XCDR (handlers))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1910 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1911 Lisp_Object handler_fun = XCAR (XCAR (handlers));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1912 Lisp_Object handler_data = XCDR (XCAR (handlers));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1913 Lisp_Object outer_handlers = XCDR (handlers);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1914
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1915 if (!UNBOUNDP (handler_fun))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1916 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1917 /* call-with-condition-handler */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1918 Lisp_Object tem;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1919 Lisp_Object all_handlers = Vcondition_handlers;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1920 struct gcpro ngcpro1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1921 NGCPRO1 (all_handlers);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1922 Vcondition_handlers = outer_handlers;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1923
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1924 tem = signal_call_debugger (conditions, sig, data,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1925 outer_handlers, 1,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1926 &stack_trace_displayed,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1927 &debugger_entered);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1928 if (!UNBOUNDP (tem))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1929 RETURN_NUNGCPRO (return_from_signal (tem));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1930
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1931 tem = Fcons (sig, data);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1932 if (NILP (handler_data))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1933 tem = call1 (handler_fun, tem);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1934 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1935 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1936 /* (This code won't be used (for now?).) */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1937 struct gcpro nngcpro1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1938 Lisp_Object args[3];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1939 NNGCPRO1 (args[0]);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1940 nngcpro1.nvars = 3;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1941 args[0] = handler_fun;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1942 args[1] = tem;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1943 args[2] = handler_data;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1944 nngcpro1.var = args;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1945 tem = Fapply (3, args);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1946 NNUNGCPRO;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1947 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1948 NUNGCPRO;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1949 #if 0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1950 if (!EQ (tem, Qsignal))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1951 return (return_from_signal (tem));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1952 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1953 /* If handler didn't throw, try another handler */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1954 Vcondition_handlers = all_handlers;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1955 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1956
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1957 /* It's a condition-case handler */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1958
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1959 /* t is used by handlers for all conditions, set up by C code.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1960 * debugger is not called even if debug_on_error */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1961 else if (EQ (handler_data, Qt))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1962 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1963 UNGCPRO;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1964 return (Fthrow (handlers, Fcons (sig, data)));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1965 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1966 /* `error' is used similarly to the way `t' is used, but in
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1967 addition it invokes the debugger if debug_on_error.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1968 This is normally used for the outer command-loop error
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1969 handler. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1970 else if (EQ (handler_data, Qerror))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1971 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1972 Lisp_Object tem = signal_call_debugger (conditions, sig, data,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1973 outer_handlers, 0,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1974 &stack_trace_displayed,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1975 &debugger_entered);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1976
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1977 UNGCPRO;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1978 if (!UNBOUNDP (tem))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1979 return (return_from_signal (tem));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1980
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1981 tem = Fcons (sig, data);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1982 return (Fthrow (handlers, tem));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1983 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1984 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1985 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1986 /* handler established by real (Lisp) condition-case */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1987 Lisp_Object h;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1988
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1989 for (h = handler_data; CONSP (h); h = Fcdr (h))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1990 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1991 Lisp_Object clause = Fcar (h);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1992 Lisp_Object tem = Fcar (clause);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1993
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1994 if (condition_type_p (tem, conditions))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1995 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1996 tem = signal_call_debugger (conditions, sig, data,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1997 outer_handlers, 1,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1998 &stack_trace_displayed,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1999 &debugger_entered);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2000 UNGCPRO;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2001 if (!UNBOUNDP (tem))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2002 return (return_from_signal (tem));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2003
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2004 /* Doesn't return */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2005 tem = Fcons (Fcons (sig, data), Fcdr (clause));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2006 return (Fthrow (handlers, tem));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2007 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2008 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2009 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2010 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2011
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2012 /* If no handler is present now, try to run the debugger,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2013 and if that fails, throw to top level.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2014
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2015 #### The only time that no handler is present is during
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2016 temacs or perhaps very early in XEmacs. In both cases,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2017 there is no 'top-level catch. (That's why the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2018 "bomb-out" hack was added.)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2019
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2020 #### Fix this horrifitude!
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2021 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2022 signal_call_debugger (conditions, sig, data, Qnil, 0,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2023 &stack_trace_displayed,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2024 &debugger_entered);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2025 UNGCPRO;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2026 throw_or_bomb_out (Qtop_level, Qt, 1, sig, data); /* Doesn't return */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2027 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2028 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2029
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2030
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2031 /****************** Error functions class 1 ******************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2032
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2033 /* Class 1: General functions that signal an error.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2034 These functions take an error type and a list of associated error
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2035 data. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2036
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2037 /* The simplest external error function: it would be called
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2038 signal_continuable_error() in the terminology below, but it's
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2039 Lisp-callable. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2040
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2041 DEFUN ("signal", Fsignal, Ssignal, 2, 2, 0 /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2042 Signal a continuable error. Args are ERROR-SYMBOL, and associated DATA.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2043 An error symbol is a symbol defined using `define-error'.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2044 DATA should be a list. Its elements are printed as part of the error message.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2045 If the signal is handled, DATA is made available to the handler.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2046 See also the function `signal-error', and the functions to handle errors:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2047 `condition-case' and `call-with-condition-handler'.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2048
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2049 Note that this function can return, if the debugger is invoked and the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2050 user invokes the "return from signal" option.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2051 */ )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2052 (error_symbol, data)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2053 Lisp_Object error_symbol, data;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2054 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2055 /* Fsignal() is one of these functions that's called all the time
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2056 with newly-created Lisp objects. We allow this; but we must GC-
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2057 protect the objects because all sorts of weird stuff could
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2058 happen. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2059
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2060 struct gcpro gcpro1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2061
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2062 GCPRO1 (data);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2063 if (!NILP (Vcurrent_error_state))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2064 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2065 if (!NILP (Vcurrent_warning_class))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2066 warn_when_safe_lispobj (Vcurrent_warning_class, Qwarning,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2067 Fcons (error_symbol, data));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2068 Fthrow (Qunbound_suspended_errors_tag, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2069 abort (); /* Better not get here! */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2070 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2071 RETURN_UNGCPRO (signal_1 (error_symbol, data));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2072 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2073
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2074 /* Signal a non-continuable error. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2075
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2076 DOESNT_RETURN
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2077 signal_error (Lisp_Object sig, Lisp_Object data)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2078 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2079 for (;;)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2080 Fsignal (sig, data);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2081 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2082
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2083 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2084 call_with_suspended_errors_1 (Lisp_Object opaque_arg)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2085 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2086 Lisp_Object *kludgy_args = (Lisp_Object *) get_opaque_ptr (opaque_arg);
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2087 return (primitive_funcall ((lisp_fn_t) get_opaque_ptr (kludgy_args[0]),
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2088 XINT (kludgy_args[1]), kludgy_args + 2));
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2089 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2090
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2091 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2092 restore_current_warning_class (Lisp_Object warning_class)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2093 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2094 Vcurrent_warning_class = warning_class;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2095 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2096 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2097
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2098 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2099 restore_current_error_state (Lisp_Object error_state)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2100 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2101 Vcurrent_error_state = error_state;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2102 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2103 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2104
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2105 /* Many functions would like to do one of three things if an error
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2106 occurs:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2107
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2108 (1) signal the error, as usual.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2109 (2) silently fail and return some error value.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2110 (3) do as (2) but issue a warning in the process.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2111
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2112 Currently there's lots of stuff that passes an Error_behavior
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2113 value and calls maybe_signal_error() and other such functions.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2114 This approach is inherently error-prone and broken. A much
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2115 more robust and easier approach is to use call_with_suspended_errors().
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2116 Wrap this around any function in which you might want errors
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2117 to not be errors.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2118 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2119
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2120 Lisp_Object
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2121 call_with_suspended_errors (lisp_fn_t fun, Lisp_Object retval,
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2122 Lisp_Object class, Error_behavior errb,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2123 int nargs, ...)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2124 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2125 va_list vargs;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2126 int speccount;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2127 Lisp_Object kludgy_args[22];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2128 Lisp_Object *args = kludgy_args + 2;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2129 int i;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2130 Lisp_Object no_error;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2131
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2132 assert (SYMBOLP (class)); /* sanity-check */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2133 assert (!NILP (class));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2134 assert (nargs >= 0 && nargs < 20);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2135
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2136 /* ERROR_ME means don't trap errors. (However, if errors are
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2137 already trapped, we leave them trapped.)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2138
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2139 Otherwise, we trap errors, and trap warnings if ERROR_ME_WARN.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2140
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2141 If ERROR_ME_NOT, it causes no warnings even if warnings
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2142 were previously enabled. However, we never change the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2143 warning class from one to another. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2144 if (!ERRB_EQ (errb, ERROR_ME))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2145 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2146 if (ERRB_EQ (errb, ERROR_ME_NOT)) /* person wants no warnings */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2147 class = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2148 errb = ERROR_ME_NOT;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2149 no_error = Qt;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2150 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2151 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2152 no_error = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2153
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2154 va_start (vargs, nargs);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2155 for (i = 0; i < nargs; i++)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2156 args[i] = va_arg (vargs, Lisp_Object);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2157 va_end (vargs);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2158
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2159 /* If error-checking is not disabled, just call the function.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2160 It's important not to override disabled error-checking with
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2161 enabled error-checking. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2162
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2163 if (ERRB_EQ (errb, ERROR_ME))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2164 return primitive_funcall (fun, nargs, args);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2165
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2166 speccount = specpdl_depth ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2167 if (NILP (class) || NILP (Vcurrent_warning_class))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2168 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2169 /* If we're currently calling for no warnings, then make it so.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2170 If we're currently calling for warnings and we weren't
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2171 previously, then set our warning class; otherwise, leave
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2172 the existing one alone. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2173 record_unwind_protect (restore_current_warning_class,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2174 Vcurrent_warning_class);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2175 Vcurrent_warning_class = class;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2176 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2177 if (!EQ (Vcurrent_error_state, no_error))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2178 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2179 record_unwind_protect (restore_current_error_state,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2180 Vcurrent_error_state);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2181 Vcurrent_error_state = no_error;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2182 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2183
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2184 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2185 int threw;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2186 Lisp_Object the_retval;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2187 Lisp_Object opaque1 = make_opaque_ptr (kludgy_args);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2188 Lisp_Object opaque2 = make_opaque_ptr ((void *) fun);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2189 struct gcpro gcpro1, gcpro2;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2190
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2191 GCPRO2 (opaque1, opaque2);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2192 kludgy_args[0] = opaque2;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2193 kludgy_args[1] = make_int (nargs);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2194 the_retval = internal_catch (Qunbound_suspended_errors_tag,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2195 call_with_suspended_errors_1,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2196 opaque1, &threw);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2197 free_opaque_ptr (opaque1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2198 free_opaque_ptr (opaque2);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2199 UNGCPRO;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2200 /* Use the returned value except in non-local exit, when
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2201 RETVAL applies. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2202 if (!threw)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2203 retval = the_retval;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2204 return unbind_to (speccount, retval);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2205 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2206 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2207
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2208 /* Signal a non-continuable error or display a warning or do nothing,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2209 according to ERRB. CLASS is the class of warning and should
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2210 refer to what sort of operation is being done (e.g. Qtoolbar,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2211 Qresource, etc.). */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2212
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2213 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2214 maybe_signal_error (Lisp_Object sig, Lisp_Object data, Lisp_Object class,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2215 Error_behavior errb)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2216 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2217 if (ERRB_EQ (errb, ERROR_ME_NOT))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2218 return;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2219 else if (ERRB_EQ (errb, ERROR_ME_WARN))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2220 warn_when_safe_lispobj (class, Qwarning, Fcons (sig, data));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2221 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2222 for (;;)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2223 Fsignal (sig, data);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2224 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2225
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2226 /* Signal a continuable error or display a warning or do nothing,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2227 according to ERRB. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2228
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2229 Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2230 maybe_signal_continuable_error (Lisp_Object sig, Lisp_Object data,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2231 Lisp_Object class, Error_behavior errb)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2232 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2233 if (ERRB_EQ (errb, ERROR_ME_NOT))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2234 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2235 else if (ERRB_EQ (errb, ERROR_ME_WARN))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2236 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2237 warn_when_safe_lispobj (class, Qwarning, Fcons (sig, data));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2238 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2239 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2240 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2241 return Fsignal (sig, data);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2242 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2243
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2244
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2245 /****************** Error functions class 2 ******************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2246
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2247 /* Class 2: Printf-like functions that signal an error.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2248 These functions signal an error of type Qerror, whose data
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2249 is a single string, created using the arguments. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2250
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2251 /* dump an error message; called like printf */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2252
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2253 DOESNT_RETURN
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2254 error (CONST char *fmt, ...)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2255 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2256 Lisp_Object obj;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2257 va_list args;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2258
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2259 va_start (args, fmt);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2260 obj = emacs_doprnt_string_va ((CONST Bufbyte *) GETTEXT (fmt), Qnil, -1,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2261 args);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2262 va_end (args);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2263
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2264 /* Fsignal GC-protects its args */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2265 signal_error (Qerror, list1 (obj));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2266 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2267
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2268 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2269 maybe_error (Lisp_Object class, Error_behavior errb, CONST char *fmt, ...)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2270 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2271 Lisp_Object obj;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2272 va_list args;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2273
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2274 /* Optimization: */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2275 if (ERRB_EQ (errb, ERROR_ME_NOT))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2276 return;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2277
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2278 va_start (args, fmt);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2279 obj = emacs_doprnt_string_va ((CONST Bufbyte *) GETTEXT (fmt), Qnil, -1,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2280 args);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2281 va_end (args);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2282
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2283 /* Fsignal GC-protects its args */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2284 maybe_signal_error (Qerror, list1 (obj), class, errb);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2285 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2286
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2287 Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2288 continuable_error (CONST char *fmt, ...)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2289 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2290 Lisp_Object obj;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2291 va_list args;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2292
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2293 va_start (args, fmt);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2294 obj = emacs_doprnt_string_va ((CONST Bufbyte *) GETTEXT (fmt), Qnil, -1,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2295 args);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2296 va_end (args);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2297
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2298 /* Fsignal GC-protects its args */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2299 return Fsignal (Qerror, list1 (obj));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2300 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2301
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2302 Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2303 maybe_continuable_error (Lisp_Object class, Error_behavior errb,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2304 CONST char *fmt, ...)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2305 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2306 Lisp_Object obj;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2307 va_list args;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2308
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2309 /* Optimization: */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2310 if (ERRB_EQ (errb, ERROR_ME_NOT))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2311 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2312
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2313 va_start (args, fmt);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2314 obj = emacs_doprnt_string_va ((CONST Bufbyte *) GETTEXT (fmt), Qnil, -1,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2315 args);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2316 va_end (args);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2317
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2318 /* Fsignal GC-protects its args */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2319 return maybe_signal_continuable_error (Qerror, list1 (obj), class, errb);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2320 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2321
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2322
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2323 /****************** Error functions class 3 ******************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2324
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2325 /* Class 3: Signal an error with a string and an associated object.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2326 These functions signal an error of type Qerror, whose data
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2327 is two objects, a string and a related Lisp object (usually the object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2328 where the error is occurring). */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2329
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2330 DOESNT_RETURN
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2331 signal_simple_error (CONST char *reason, Lisp_Object frob)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2332 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2333 signal_error (Qerror, list2 (build_translated_string (reason), frob));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2334 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2335
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2336 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2337 maybe_signal_simple_error (CONST char *reason, Lisp_Object frob,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2338 Lisp_Object class, Error_behavior errb)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2339 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2340 /* Optimization: */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2341 if (ERRB_EQ (errb, ERROR_ME_NOT))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2342 return;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2343 maybe_signal_error (Qerror, list2 (build_translated_string (reason), frob),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2344 class, errb);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2345 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2346
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2347 Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2348 signal_simple_continuable_error (CONST char *reason, Lisp_Object frob)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2349 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2350 return Fsignal (Qerror, list2 (build_translated_string (reason), frob));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2351 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2352
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2353 Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2354 maybe_signal_simple_continuable_error (CONST char *reason, Lisp_Object frob,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2355 Lisp_Object class, Error_behavior errb)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2356 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2357 /* Optimization: */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2358 if (ERRB_EQ (errb, ERROR_ME_NOT))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2359 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2360 return maybe_signal_continuable_error
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2361 (Qerror, list2 (build_translated_string (reason),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2362 frob), class, errb);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2363 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2364
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2365
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2366 /****************** Error functions class 4 ******************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2367
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2368 /* Class 4: Printf-like functions that signal an error.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2369 These functions signal an error of type Qerror, whose data
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2370 is a two objects, a string (created using the arguments) and a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2371 Lisp object.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2372 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2373
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2374 DOESNT_RETURN
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2375 error_with_frob (Lisp_Object frob, CONST char *fmt, ...)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2376 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2377 Lisp_Object obj;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2378 va_list args;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2379
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2380 va_start (args, fmt);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2381 obj = emacs_doprnt_string_va ((CONST Bufbyte *) GETTEXT (fmt), Qnil, -1,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2382 args);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2383 va_end (args);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2384
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2385 /* Fsignal GC-protects its args */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2386 signal_error (Qerror, list2 (obj, frob));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2387 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2388
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2389 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2390 maybe_error_with_frob (Lisp_Object frob, Lisp_Object class,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2391 Error_behavior errb, CONST char *fmt, ...)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2392 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2393 Lisp_Object obj;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2394 va_list args;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2395
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2396 /* Optimization: */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2397 if (ERRB_EQ (errb, ERROR_ME_NOT))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2398 return;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2399
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2400 va_start (args, fmt);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2401 obj = emacs_doprnt_string_va ((CONST Bufbyte *) GETTEXT (fmt), Qnil, -1,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2402 args);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2403 va_end (args);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2404
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2405 /* Fsignal GC-protects its args */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2406 maybe_signal_error (Qerror, list2 (obj, frob), class, errb);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2407 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2408
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2409 Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2410 continuable_error_with_frob (Lisp_Object frob, CONST char *fmt, ...)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2411 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2412 Lisp_Object obj;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2413 va_list args;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2414
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2415 va_start (args, fmt);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2416 obj = emacs_doprnt_string_va ((CONST Bufbyte *) GETTEXT (fmt), Qnil, -1,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2417 args);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2418 va_end (args);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2419
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2420 /* Fsignal GC-protects its args */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2421 return Fsignal (Qerror, list2 (obj, frob));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2422 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2423
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2424 Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2425 maybe_continuable_error_with_frob (Lisp_Object frob, Lisp_Object class,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2426 Error_behavior errb, CONST char *fmt, ...)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2427 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2428 Lisp_Object obj;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2429 va_list args;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2430
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2431 /* Optimization: */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2432 if (ERRB_EQ (errb, ERROR_ME_NOT))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2433 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2434
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2435 va_start (args, fmt);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2436 obj = emacs_doprnt_string_va ((CONST Bufbyte *) GETTEXT (fmt), Qnil, -1,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2437 args);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2438 va_end (args);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2439
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2440 /* Fsignal GC-protects its args */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2441 return maybe_signal_continuable_error (Qerror, list2 (obj, frob),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2442 class, errb);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2443 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2444
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2445
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2446 /****************** Error functions class 5 ******************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2447
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2448 /* Class 5: Signal an error with a string and two associated objects.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2449 These functions signal an error of type Qerror, whose data
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2450 is three objects, a string and two related Lisp objects. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2451
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2452 DOESNT_RETURN
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2453 signal_simple_error_2 (CONST char *reason,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2454 Lisp_Object frob0, Lisp_Object frob1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2455 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2456 signal_error (Qerror, list3 (build_translated_string (reason), frob0,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2457 frob1));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2458 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2459
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2460 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2461 maybe_signal_simple_error_2 (CONST char *reason, Lisp_Object frob0,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2462 Lisp_Object frob1, Lisp_Object class,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2463 Error_behavior errb)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2464 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2465 /* Optimization: */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2466 if (ERRB_EQ (errb, ERROR_ME_NOT))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2467 return;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2468 maybe_signal_error (Qerror, list3 (build_translated_string (reason), frob0,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2469 frob1), class, errb);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2470 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2471
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2472
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2473 Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2474 signal_simple_continuable_error_2 (CONST char *reason, Lisp_Object frob0,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2475 Lisp_Object frob1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2476 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2477 return Fsignal (Qerror, list3 (build_translated_string (reason), frob0,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2478 frob1));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2479 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2480
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2481 Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2482 maybe_signal_simple_continuable_error_2 (CONST char *reason, Lisp_Object frob0,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2483 Lisp_Object frob1, Lisp_Object class,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2484 Error_behavior errb)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2485 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2486 /* Optimization: */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2487 if (ERRB_EQ (errb, ERROR_ME_NOT))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2488 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2489 return maybe_signal_continuable_error
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2490 (Qerror, list3 (build_translated_string (reason), frob0,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2491 frob1),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2492 class, errb);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2493 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2494
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2495
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2496 /* This is what the QUIT macro calls to signal a quit */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2497 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2498 signal_quit (void)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2499 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2500 /* This function can GC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2501 if (EQ (Vquit_flag, Qcritical))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2502 debug_on_quit |= 2; /* set critical bit. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2503 Vquit_flag = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2504 /* note that this is continuable. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2505 Fsignal (Qquit, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2506 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2507
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2508
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2509 /**********************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2510 /* User commands */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2511 /**********************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2512
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2513 DEFUN ("commandp", Fcommandp, Scommandp, 1, 1, 0 /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2514 T if FUNCTION makes provisions for interactive calling.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2515 This means it contains a description for how to read arguments to give it.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2516 The value is nil for an invalid function or a symbol with no function
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2517 definition.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2518
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2519 Interactively callable functions include
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2520
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2521 -- strings and vectors (treated as keyboard macros)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2522 -- lambda-expressions that contain a top-level call to `interactive'
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2523 -- autoload definitions made by `autoload' with non-nil fourth argument
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2524 (i.e. the interactive flag)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2525 -- compiled-function objects with a non-nil `compiled-function-interactive'
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2526 value
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2527 -- subrs (built-in functions) that are interactively callable
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2528
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2529 Also, a symbol satisfies `commandp' if its function definition does so.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2530 */ )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2531 (function)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2532 Lisp_Object function;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2533 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2534 REGISTER Lisp_Object fun;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2535 REGISTER Lisp_Object funcar;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2536
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2537 fun = function;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2538
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2539 fun = indirect_function (fun, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2540 if (UNBOUNDP (fun))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2541 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2542
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2543 /* Emacs primitives are interactive if their DEFUN specifies an
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2544 interactive spec. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2545 if (SUBRP (fun))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2546 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2547 if (XSUBR (fun)->prompt)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2548 return Qt;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2549 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2550 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2551 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2552
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2553 else if (COMPILED_FUNCTIONP (fun))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2554 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2555 return (((XCOMPILED_FUNCTION (fun)->flags.interactivep) ? Qt : Qnil));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2556 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2557
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2558 /* Strings and vectors are keyboard macros. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2559 if (VECTORP (fun) || STRINGP (fun))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2560 return Qt;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2561
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2562 /* Lists may represent commands. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2563 if (!CONSP (fun))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2564 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2565 funcar = Fcar (fun);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2566 if (!SYMBOLP (funcar))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2567 return Fsignal (Qinvalid_function, list1 (fun));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2568 if (EQ (funcar, Qlambda))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2569 return Fassq (Qinteractive, Fcdr (Fcdr (fun)));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2570 #ifdef MOCKLISP_SUPPORT
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2571 if (EQ (funcar, Qmocklisp))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2572 return Qt; /* All mocklisp functions can be called interactively */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2573 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2574 if (EQ (funcar, Qautoload))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2575 return Fcar (Fcdr (Fcdr (Fcdr (fun))));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2576 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2577 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2578 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2579
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2580 DEFUN ("command-execute", Fcommand_execute, Scommand_execute, 1, 3, 0 /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2581 Execute CMD as an editor command.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2582 CMD must be an object that satisfies the `commandp' predicate.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2583 Optional second arg RECORD-FLAG is as in `call-interactively'.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2584 The argument KEYS specifies the value to use instead of (this-command-keys)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2585 when reading the arguments.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2586 */ )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2587 (cmd, record, keys)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2588 Lisp_Object cmd, record, keys;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2589 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2590 /* This function can GC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2591 Lisp_Object prefixarg;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2592 Lisp_Object final = cmd;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2593 struct backtrace backtrace;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2594 struct console *con = XCONSOLE (Vselected_console);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2595
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2596 prefixarg = con->prefix_arg;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2597 con->prefix_arg = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2598 Vcurrent_prefix_arg = prefixarg;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2599 debug_on_next_call = 0; /* #### from FSFmacs; correct? */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2600
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2601 if (SYMBOLP (cmd) && !NILP (Fget (cmd, Qdisabled, Qnil)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2602 return run_hook (Vdisabled_command_hook);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2603
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2604 for (;;)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2605 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2606 final = indirect_function (cmd, 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2607 if (CONSP (final) && EQ (Fcar (final), Qautoload))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2608 do_autoload (final, cmd);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2609 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2610 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2611 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2612
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2613 if (CONSP (final) || SUBRP (final) || COMPILED_FUNCTIONP (final))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2614 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2615 #ifdef EMACS_BTL
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2616 backtrace.id_number = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2617 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2618 backtrace.next = backtrace_list;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2619 backtrace_list = &backtrace;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2620 backtrace.function = &Qcall_interactively;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2621 backtrace.args = &cmd;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2622 backtrace.nargs = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2623 backtrace.evalargs = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2624 backtrace.pdlcount = specpdl_depth ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2625 backtrace.debug_on_exit = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2626
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2627 final = Fcall_interactively (cmd, record, keys);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2628
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2629 backtrace_list = backtrace.next;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2630 return (final);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2631 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2632 else if (STRINGP (final) || VECTORP (final))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2633 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2634 return Fexecute_kbd_macro (final, prefixarg);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2635 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2636 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2637 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2638 Fsignal (Qwrong_type_argument,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2639 Fcons (Qcommandp,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2640 ((EQ (cmd, final))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2641 ? list1 (cmd)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2642 : list2 (cmd, final))));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2643 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2644 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2645 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2646
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2647 DEFUN ("interactive-p", Finteractive_p, Sinteractive_p, 0, 0, 0 /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2648 Return t if function in which this appears was called interactively.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2649 This means that the function was called with call-interactively (which
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2650 includes being called as the binding of a key)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2651 and input is currently coming from the keyboard (not in keyboard macro).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2652 */ )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2653 ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2654 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2655 REGISTER struct backtrace *btp;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2656 REGISTER Lisp_Object fun;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2657
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2658 if (!INTERACTIVE)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2659 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2660
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2661 /* Unless the object was compiled, skip the frame of interactive-p itself
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2662 (if interpreted) or the frame of byte-code (if called from a compiled
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2663 function). Note that *btp->function may be a symbol pointing at a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2664 compiled function. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2665 btp = backtrace_list;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2666
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2667 #if 0 /* FSFmacs */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2668
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2669 /* #### FSFmacs does the following instead. I can't figure
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2670 out which one is more correct. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2671 /* If this isn't a byte-compiled function, there may be a frame at
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2672 the top for Finteractive_p itself. If so, skip it. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2673 fun = Findirect_function (*btp->function);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2674 if (SUBRP (fun) && XSUBR (fun) == &Sinteractive_p)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2675 btp = btp->next;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2676
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2677 /* If we're running an Emacs 18-style byte-compiled function, there
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2678 may be a frame for Fbyte_code. Now, given the strictest
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2679 definition, this function isn't really being called
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2680 interactively, but because that's the way Emacs 18 always builds
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2681 byte-compiled functions, we'll accept it for now. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2682 if (EQ (*btp->function, Qbyte_code))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2683 btp = btp->next;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2684
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2685 /* If this isn't a byte-compiled function, then we may now be
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2686 looking at several frames for special forms. Skip past them. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2687 while (btp &&
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2688 btp->nargs == UNEVALLED)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2689 btp = btp->next;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2690
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2691 #else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2692
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2693 if (! (COMPILED_FUNCTIONP (Findirect_function (*btp->function))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2694 btp = btp->next;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2695 for (;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2696 btp && (btp->nargs == UNEVALLED
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2697 || EQ (*btp->function, Qbyte_code));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2698 btp = btp->next)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2699 {}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2700 /* btp now points at the frame of the innermost function
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2701 that DOES eval its args.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2702 If it is a built-in function (such as load or eval-region)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2703 return nil. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2704 /* Beats me why this is necessary, but it is */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2705 if (btp && EQ (*btp->function, Qcall_interactively))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2706 return Qt;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2707
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2708 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2709
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2710 fun = Findirect_function (*btp->function);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2711 if (SUBRP (fun))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2712 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2713 /* btp points to the frame of a Lisp function that called interactive-p.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2714 Return t if that function was called interactively. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2715 if (btp && btp->next && EQ (*btp->next->function, Qcall_interactively))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2716 return Qt;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2717 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2718 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2719
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2720
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2721 /**********************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2722 /* Autoloading */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2723 /**********************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2724
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2725 DEFUN ("autoload", Fautoload, Sautoload, 2, 5, 0 /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2726 Define FUNCTION to autoload from FILE.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2727 FUNCTION is a symbol; FILE is a file name string to pass to `load'.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2728 Third arg DOCSTRING is documentation for the function.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2729 Fourth arg INTERACTIVE if non-nil says function can be called interactively.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2730 Fifth arg TYPE indicates the type of the object:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2731 nil or omitted says FUNCTION is a function,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2732 `keymap' says FUNCTION is really a keymap, and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2733 `macro' or t says FUNCTION is really a macro.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2734 Third through fifth args give info about the real definition.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2735 They default to nil.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2736 If FUNCTION is already defined other than as an autoload,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2737 this does nothing and returns nil.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2738 */ )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2739 (function, file, docstring, interactive, type)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2740 Lisp_Object function, file, docstring, interactive, type;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2741 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2742 /* This function can GC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2743 CHECK_SYMBOL (function);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2744 CHECK_STRING (file);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2745
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2746 /* If function is defined and not as an autoload, don't override */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2747 if (!UNBOUNDP (XSYMBOL (function)->function)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2748 && !(CONSP (XSYMBOL (function)->function)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2749 && EQ (XCAR (XSYMBOL (function)->function), Qautoload)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2750 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2751
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2752 if (purify_flag)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2753 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2754 /* Attempt to avoid consing identical (string=) pure strings. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2755 file = Fsymbol_name (Fintern (file, Qnil));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2756 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2757
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2758 return Ffset (function,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2759 Fpurecopy (Fcons (Qautoload, list4 (file,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2760 docstring,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2761 interactive,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2762 type))));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2763 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2764
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2765 Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2766 un_autoload (Lisp_Object oldqueue)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2767 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2768 /* This function can GC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2769 REGISTER Lisp_Object queue, first, second;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2770
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2771 /* Queue to unwind is current value of Vautoload_queue.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2772 oldqueue is the shadowed value to leave in Vautoload_queue. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2773 queue = Vautoload_queue;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2774 Vautoload_queue = oldqueue;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2775 while (CONSP (queue))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2776 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2777 first = Fcar (queue);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2778 second = Fcdr (first);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2779 first = Fcar (first);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2780 if (NILP (second))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2781 Vfeatures = first;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2782 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2783 Ffset (first, second);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2784 queue = Fcdr (queue);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2785 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2786 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2787 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2788
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2789 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2790 do_autoload (Lisp_Object fundef,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2791 Lisp_Object funname)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2792 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2793 /* This function can GC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2794 int speccount = specpdl_depth_counter;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2795 Lisp_Object fun = funname;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2796 struct gcpro gcpro1, gcpro2;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2797
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2798 CHECK_SYMBOL (funname);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2799 GCPRO2 (fun, funname);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2800
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2801 /* Value saved here is to be restored into Vautoload_queue */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2802 record_unwind_protect (un_autoload, Vautoload_queue);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2803 Vautoload_queue = Qt;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2804 call4 (Qload, Fcar (Fcdr (fundef)), Qnil, noninteractive ? Qt : Qnil,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2805 Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2806
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2807 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2808 Lisp_Object queue = Vautoload_queue;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2809
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2810 /* Save the old autoloads, in case we ever do an unload. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2811 queue = Vautoload_queue;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2812 while (CONSP (queue))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2813 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2814 Lisp_Object first = Fcar (queue);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2815 Lisp_Object second = Fcdr (first);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2816
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2817 first = Fcar (first);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2818
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2819 /* Note: This test is subtle. The cdr of an autoload-queue entry
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2820 may be an atom if the autoload entry was generated by a defalias
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2821 or fset. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2822 if (CONSP (second))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2823 Fput (first, Qautoload, (Fcdr (second)));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2824
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2825 queue = Fcdr (queue);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2826 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2827 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2828
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2829 /* Once loading finishes, don't undo it. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2830 Vautoload_queue = Qt;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2831 unbind_to (speccount, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2832
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2833 fun = indirect_function (fun, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2834
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2835 #if 0 /* FSFmacs */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2836 if (!NILP (Fequal (fun, fundef)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2837 #else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2838 if (UNBOUNDP (fun)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2839 || (CONSP (fun)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2840 && EQ (XCAR (fun), Qautoload)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2841 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2842 error ("Autoloading failed to define function %s",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2843 string_data (XSYMBOL (funname)->name));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2844 UNGCPRO;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2845 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2846
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2847
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2848 /**********************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2849 /* eval, funcall, apply */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2850 /**********************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2851
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2852 static Lisp_Object funcall_lambda (Lisp_Object fun,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2853 int nargs, Lisp_Object args[]);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2854 static Lisp_Object apply_lambda (Lisp_Object fun,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2855 int nargs, Lisp_Object args);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2856 static Lisp_Object funcall_subr (struct Lisp_Subr *sub, Lisp_Object args[]);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2857
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2858 static int in_warnings;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2859
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2860 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2861 in_warnings_restore (Lisp_Object minimus)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2862 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2863 in_warnings = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2864 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2865 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2866
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2867
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2868 DEFUN ("eval", Feval, Seval, 1, 1, 0 /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2869 Evaluate FORM and return its value.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2870 */ )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2871 (form)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2872 Lisp_Object form;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2873 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2874 /* This function can GC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2875 Lisp_Object fun, val, original_fun, original_args;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2876 int nargs;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2877 struct backtrace backtrace;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2878
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2879 /* I think this is a pretty safe place to call Lisp code, don't you? */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2880 while (!in_warnings && !NILP (Vpending_warnings))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2881 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2882 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2883 int speccount = specpdl_depth ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2884 Lisp_Object this_warning_cons, this_warning, class, level, messij;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2885
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2886 record_unwind_protect (in_warnings_restore, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2887 in_warnings = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2888 this_warning_cons = Vpending_warnings;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2889 this_warning = XCAR (this_warning_cons);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2890 /* in case an error occurs in the warn function, at least
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2891 it won't happen infinitely */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2892 Vpending_warnings = XCDR (Vpending_warnings);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2893 free_cons (XCONS (this_warning_cons));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2894 class = XCAR (this_warning);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2895 level = XCAR (XCDR (this_warning));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2896 messij = XCAR (XCDR (XCDR (this_warning)));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2897 free_list (this_warning);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2898
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2899 if (NILP (Vpending_warnings))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2900 Vpending_warnings_tail = Qnil; /* perhaps not strictly necessary,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2901 but safer */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2902
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2903 GCPRO4 (form, class, level, messij);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2904 if (!STRINGP (messij))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2905 messij = Fprin1_to_string (messij, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2906 call3 (Qdisplay_warning, class, messij, level);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2907 UNGCPRO;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2908 unbind_to (speccount, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2909 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2910
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2911 if (!CONSP (form))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2912 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2913 if (!SYMBOLP (form))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2914 return form;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2915
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2916 val = Fsymbol_value (form);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2917
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2918 #ifdef MOCKLISP_SUPPORT
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2919 if (!EQ (Vmocklisp_arguments, Qt))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2920 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2921 if (NILP (val))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2922 val = Qzero;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2923 else if (EQ (val, Qt))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2924 val = make_int (1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2925 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2926 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2927 return val;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2928 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2929
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2930 QUIT;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2931 if ((consing_since_gc > gc_cons_threshold) || always_gc)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2932 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2933 struct gcpro gcpro1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2934 GCPRO1 (form);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2935 garbage_collect_1 ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2936 UNGCPRO;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2937 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2938
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2939 if (++lisp_eval_depth > max_lisp_eval_depth)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2940 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2941 if (max_lisp_eval_depth < 100)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2942 max_lisp_eval_depth = 100;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2943 if (lisp_eval_depth > max_lisp_eval_depth)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2944 error ("Lisp nesting exceeds `max-lisp-eval-depth'");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2945 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2946
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2947 original_fun = Fcar (form);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2948 original_args = Fcdr (form);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2949 nargs = XINT (Flength (original_args));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2950
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2951 #ifdef EMACS_BTL
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2952 backtrace.id_number = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2953 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2954 backtrace.pdlcount = specpdl_depth_counter;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2955 backtrace.next = backtrace_list;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2956 backtrace_list = &backtrace;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2957 backtrace.function = &original_fun; /* This also protects them from gc */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2958 backtrace.args = &original_args;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2959 backtrace.nargs = UNEVALLED;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2960 backtrace.evalargs = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2961 backtrace.debug_on_exit = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2962
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2963 if (debug_on_next_call)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2964 do_debug_on_call (Qt);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2965
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2966 /* At this point, only original_fun and original_args
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2967 have values that will be used below */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2968 retry:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2969 fun = indirect_function (original_fun, 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2970
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2971 if (SUBRP (fun))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2972 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2973 struct Lisp_Subr *subr = XSUBR (fun);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2974 int max_args = subr->max_args;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2975 Lisp_Object argvals[SUBR_MAX_ARGS];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2976 Lisp_Object args_left;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2977 REGISTER int i;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2978
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2979 args_left = original_args;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2980
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2981 if (nargs < subr->min_args
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2982 || (max_args >= 0 && max_args < nargs))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2983 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2984 return Fsignal (Qwrong_number_of_arguments,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2985 list2 (fun, make_int (nargs)));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2986 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2987
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2988 if (max_args == UNEVALLED)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2989 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2990 backtrace.evalargs = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2991 val = ((subr_function (subr)) (args_left));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2992 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2993
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2994 else if (max_args == MANY)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2995 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2996 /* Pass a vector of evaluated arguments */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2997 Lisp_Object *vals;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2998 REGISTER int argnum;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2999 struct gcpro gcpro1, gcpro2, gcpro3;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3000
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3001 vals = (Lisp_Object *) alloca (nargs * sizeof (Lisp_Object));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3002
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3003 GCPRO3 (args_left, fun, vals[0]);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3004 gcpro3.nvars = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3005
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3006 argnum = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3007 while (!NILP (args_left))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3008 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3009 vals[argnum++] = Feval (Fcar (args_left));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3010 args_left = Fcdr (args_left);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3011 gcpro3.nvars = argnum;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3012 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3013
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3014 backtrace.args = vals;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3015 backtrace.nargs = nargs;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3016
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
3017 val = ((Lisp_Object (*) (int, Lisp_Object *)) (subr_function (subr)))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
3018 (nargs, vals);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3019
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3020 /* Have to duplicate this code because if the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3021 * debugger is called it must be in a scope in
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3022 * which the `alloca'-ed data in vals is still valid.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3023 * (And GC-protected.)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3024 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3025 lisp_eval_depth--;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3026 #ifdef MOCKLISP_SUPPORT
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3027 if (!EQ (Vmocklisp_arguments, Qt))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3028 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3029 if (NILP (val))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3030 val = Qzero;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3031 else if (EQ (val, Qt))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3032 val = make_int (1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3033 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3034 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3035 if (backtrace.debug_on_exit)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3036 val = do_debug_on_exit (val);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3037 backtrace_list = backtrace.next;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3038 UNGCPRO;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3039 return (val);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3040 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3041
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3042 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3043 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3044 struct gcpro gcpro1, gcpro2, gcpro3;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3045
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3046 GCPRO3 (args_left, fun, fun);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3047 gcpro3.var = argvals;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3048 gcpro3.nvars = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3049
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3050 for (i = 0; i < nargs; args_left = Fcdr (args_left))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3051 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3052 argvals[i] = Feval (Fcar (args_left));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3053 gcpro3.nvars = ++i;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3054 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3055
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3056 UNGCPRO;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3057
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3058 for (i = nargs; i < max_args; i++)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3059 argvals[i] = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3060
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3061 backtrace.args = argvals;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3062 backtrace.nargs = nargs;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3063
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3064 val = funcall_subr (subr, argvals);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3065 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3066 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3067 else if (COMPILED_FUNCTIONP (fun))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3068 val = apply_lambda (fun, nargs, original_args);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3069 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3070 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3071 Lisp_Object funcar;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3072
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3073 if (!CONSP (fun))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3074 goto invalid_function;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3075 funcar = Fcar (fun);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3076 if (!SYMBOLP (funcar))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3077 goto invalid_function;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3078 if (EQ (funcar, Qautoload))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3079 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3080 do_autoload (fun, original_fun);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3081 goto retry;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3082 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3083 if (EQ (funcar, Qmacro))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3084 val = Feval (apply1 (Fcdr (fun), original_args));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3085 else if (EQ (funcar, Qlambda))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3086 val = apply_lambda (fun, nargs, original_args);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3087 #ifdef MOCKLISP_SUPPORT
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3088 else if (EQ (funcar, Qmocklisp))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3089 val = ml_apply (fun, original_args);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3090 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3091 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3092 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3093 invalid_function:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3094 return Fsignal (Qinvalid_function, list1 (fun));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3095 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3096 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3097
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3098 lisp_eval_depth--;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3099 #ifdef MOCKLISP_SUPPORT
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3100 if (!EQ (Vmocklisp_arguments, Qt))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3101 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3102 if (NILP (val))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3103 val = Qzero;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3104 else if (EQ (val, Qt))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3105 val = make_int (1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3106 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3107 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3108 if (backtrace.debug_on_exit)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3109 val = do_debug_on_exit (val);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3110 backtrace_list = backtrace.next;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3111 return (val);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3112 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3113
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3114
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3115 Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3116 funcall_recording_as (Lisp_Object recorded_as, int nargs,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3117 Lisp_Object *args)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3118 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3119 /* This function can GC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3120 Lisp_Object fun;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3121 Lisp_Object val;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3122 struct backtrace backtrace;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3123 REGISTER int i;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3124
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3125 QUIT;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3126 if ((consing_since_gc > gc_cons_threshold) || always_gc)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3127 /* Callers should gcpro lexpr args */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3128 garbage_collect_1 ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3129
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3130 if (++lisp_eval_depth > max_lisp_eval_depth)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3131 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3132 if (max_lisp_eval_depth < 100)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3133 max_lisp_eval_depth = 100;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3134 if (lisp_eval_depth > max_lisp_eval_depth)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3135 error ("Lisp nesting exceeds `max-lisp-eval-depth'");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3136 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3137
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3138 /* Count number of arguments to function */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3139 nargs = nargs - 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3140
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3141 #ifdef EMACS_BTL
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3142 backtrace.id_number = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3143 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3144 backtrace.pdlcount = specpdl_depth_counter;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3145 backtrace.next = backtrace_list;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3146 backtrace.function = &args[0];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3147 backtrace.args = &args[1];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3148 backtrace.nargs = nargs;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3149 backtrace.evalargs = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3150 backtrace.debug_on_exit = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3151 /* XEmacs: make sure this is done last so we don't get race
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3152 conditions in the profiling code. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3153 backtrace_list = &backtrace;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3154
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3155 if (debug_on_next_call)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3156 do_debug_on_call (Qlambda);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3157
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3158 retry:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3159
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3160 fun = args[0];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3161
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3162 #ifdef EMACS_BTL
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3163 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3164 extern int emacs_btl_elisp_only_p;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3165 extern int btl_symbol_id_number ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3166 if (emacs_btl_elisp_only_p)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3167 backtrace.id_number = btl_symbol_id_number (fun);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3168 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3169 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3170
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3171 if (SYMBOLP (fun))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3172 fun = indirect_function (fun, 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3173
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3174 if (SUBRP (fun))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3175 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3176 struct Lisp_Subr *subr = XSUBR (fun);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3177 int max_args = subr->max_args;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3178
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3179 if (max_args == UNEVALLED)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3180 return Fsignal (Qinvalid_function, list1 (fun));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3181
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3182 if (nargs < subr->min_args
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3183 || (max_args >= 0 && max_args < nargs))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3184 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3185 return Fsignal (Qwrong_number_of_arguments,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3186 list2 (fun, make_int (nargs)));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3187 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3188
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3189 if (max_args == MANY)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3190 {
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
3191 val = ((Lisp_Object (*) (int, Lisp_Object *)) (subr_function (subr)))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
3192 (nargs, args + 1);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3193 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3194
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3195 else if (max_args > nargs)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3196 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3197 Lisp_Object argvals[SUBR_MAX_ARGS];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3198
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3199 /* Default optionals to nil */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3200 for (i = 0; i < nargs; i++)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3201 argvals[i] = args[i + 1];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3202 for (i = nargs; i < max_args; i++)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3203 argvals[i] = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3204
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3205 val = funcall_subr (subr, argvals);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3206 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3207 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3208 val = funcall_subr (subr, args + 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3209 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3210 else if (COMPILED_FUNCTIONP (fun))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3211 val = funcall_lambda (fun, nargs, args + 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3212 else if (!CONSP (fun))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3213 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3214 invalid_function:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3215 return Fsignal (Qinvalid_function, list1 (fun));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3216 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3217 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3218 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3219 Lisp_Object funcar = Fcar (fun);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3220
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3221 if (!SYMBOLP (funcar))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3222 goto invalid_function;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3223 if (EQ (funcar, Qlambda))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3224 val = funcall_lambda (fun, nargs, args + 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3225 #ifdef MOCKLISP_SUPPORT
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3226 else if (EQ (funcar, Qmocklisp))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3227 val = ml_apply (fun, Flist (nargs, args + 1));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3228 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3229 else if (EQ (funcar, Qautoload))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3230 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3231 do_autoload (fun, args[0]);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3232 goto retry;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3233 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3234 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3235 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3236 goto invalid_function;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3237 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3238 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3239 lisp_eval_depth--;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3240 if (backtrace.debug_on_exit)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3241 val = do_debug_on_exit (val);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3242 backtrace_list = backtrace.next;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3243 return val;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3244 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3245
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3246 DEFUN ("funcall", Ffuncall, Sfuncall, 1, MANY, 0 /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3247 Call first argument as a function, passing remaining arguments to it.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3248 Thus, (funcall 'cons 'x 'y) returns (x . y).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3249 */ )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3250 (nargs, args)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3251 int nargs;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3252 Lisp_Object *args;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3253 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3254 return funcall_recording_as (args[0], nargs, args);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3255 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3256
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3257 DEFUN ("function-min-args", Ffunction_min_args, Sfunction_min_args,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3258 1, 1, 0 /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3259 Return the number of arguments a function may be called with. The
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3260 function may be any form that can be passed to `funcall', any special
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3261 form, or any macro.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3262 */ )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3263 (function)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3264 Lisp_Object function;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3265 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3266 Lisp_Object orig_function = function;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3267 Lisp_Object arglist;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3268 int argcount;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3269
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3270 retry:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3271
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3272 if (SYMBOLP (function))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3273 function = indirect_function (function, 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3274
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3275 if (SUBRP (function))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3276 return Fsubr_min_args (function);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3277 else if (!COMPILED_FUNCTIONP (function) && !CONSP (function))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3278 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3279 invalid_function:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3280 return Fsignal (Qinvalid_function, list1 (function));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3281 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3282
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3283 if (CONSP (function))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3284 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3285 Lisp_Object funcar = Fcar (function);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3286
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3287 if (!SYMBOLP (funcar))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3288 goto invalid_function;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3289 if (EQ (funcar, Qmacro))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3290 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3291 function = Fcdr (function);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3292 goto retry;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3293 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3294 if (EQ (funcar, Qautoload))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3295 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3296 do_autoload (function, orig_function);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3297 goto retry;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3298 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3299 if (EQ (funcar, Qlambda))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3300 arglist = Fcar (Fcdr (function));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3301 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3302 goto invalid_function;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3303 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3304 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3305 arglist = XCOMPILED_FUNCTION (function)->arglist;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3306
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3307 argcount = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3308 while (!NILP (arglist))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3309 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3310 QUIT;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3311 if (EQ (Fcar (arglist), Qand_optional)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3312 || EQ (Fcar (arglist), Qand_rest))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3313 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3314 argcount++;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3315 arglist = Fcdr (arglist);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3316 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3317
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3318 return make_int (argcount);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3319 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3320
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3321 DEFUN ("function-max-args", Ffunction_max_args, Sfunction_max_args,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3322 1, 1, 0 /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3323 Return the number of arguments a function may be called with. If the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3324 function takes an arbitrary number of arguments or is a built-in
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3325 special form, nil is returned. The function may be any form that can
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3326 be passed to `funcall', any special form, or any macro.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3327 */ )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3328 (function)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3329 Lisp_Object function;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3330 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3331 Lisp_Object orig_function = function;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3332 Lisp_Object arglist;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3333 int argcount;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3334
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3335 retry:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3336
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3337 if (SYMBOLP (function))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3338 function = indirect_function (function, 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3339
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3340 if (SUBRP (function))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3341 return Fsubr_max_args (function);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3342 else if (!COMPILED_FUNCTIONP (function) && !CONSP (function))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3343 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3344 invalid_function:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3345 return Fsignal (Qinvalid_function, list1 (function));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3346 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3347
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3348 if (CONSP (function))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3349 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3350 Lisp_Object funcar = Fcar (function);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3351
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3352 if (!SYMBOLP (funcar))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3353 goto invalid_function;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3354 if (EQ (funcar, Qmacro))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3355 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3356 function = Fcdr (function);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3357 goto retry;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3358 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3359 if (EQ (funcar, Qautoload))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3360 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3361 do_autoload (function, orig_function);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3362 goto retry;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3363 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3364 if (EQ (funcar, Qlambda))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3365 arglist = Fcar (Fcdr (function));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3366 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3367 goto invalid_function;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3368 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3369 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3370 arglist = XCOMPILED_FUNCTION (function)->arglist;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3371
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3372 argcount = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3373 while (!NILP (arglist))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3374 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3375 QUIT;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3376 if (EQ (Fcar (arglist), Qand_optional))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3377 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3378 arglist = Fcdr (arglist);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3379 continue;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3380 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3381 if (EQ (Fcar (arglist), Qand_rest))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3382 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3383 argcount++;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3384 arglist = Fcdr (arglist);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3385 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3386
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3387 return make_int (argcount);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3388 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3389
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3390
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3391 DEFUN ("apply", Fapply, Sapply, 2, MANY, 0 /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3392 Call FUNCTION with our remaining args, using our last arg as list of args.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3393 Thus, (apply '+ 1 2 '(3 4)) returns 10.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3394 */ )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3395 (nargs, args)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3396 int nargs;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3397 Lisp_Object *args;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3398 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3399 /* This function can GC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3400 Lisp_Object fun = args[0];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3401 Lisp_Object spread_arg = args [nargs - 1];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3402 int numargs;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3403 int funcall_nargs;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3404
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3405 CHECK_LIST (spread_arg);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3406
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3407 numargs = XINT (Flength (spread_arg));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3408
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3409 if (numargs == 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3410 /* (apply foo 0 1 '()) */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3411 return Ffuncall (nargs - 1, args);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3412 else if (numargs == 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3413 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3414 /* (apply foo 0 1 '(2)) */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3415 args [nargs - 1] = XCAR (spread_arg);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3416 return Ffuncall (nargs, args);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3417 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3418
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3419 /* -1 for function, -1 for spread arg */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3420 numargs = nargs - 2 + numargs;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3421 /* +1 for function */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3422 funcall_nargs = 1 + numargs;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3423
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3424 if (SYMBOLP (fun))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3425 fun = indirect_function (fun, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3426 if (UNBOUNDP (fun))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3427 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3428 /* Let funcall get the error */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3429 fun = args[0];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3430 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3431 else if (SUBRP (fun))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3432 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3433 struct Lisp_Subr *subr = XSUBR (fun);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3434 int max_args = subr->max_args;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3435
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3436 if (numargs < subr->min_args
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3437 || (max_args >= 0 && max_args < numargs))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3438 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3439 /* Let funcall get the error */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3440 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3441 else if (max_args > numargs)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3442 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3443 /* Avoid having funcall cons up yet another new vector of arguments
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3444 by explicitly supplying nil's for optional values */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3445 funcall_nargs += (max_args - numargs);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3446 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3447 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3448 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3449 REGISTER int i;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3450 REGISTER Lisp_Object *funcall_args
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3451 = (Lisp_Object *) alloca (funcall_nargs * sizeof (Lisp_Object));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3452 struct gcpro gcpro1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3453
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3454 GCPRO1 (*funcall_args);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3455 gcpro1.nvars = funcall_nargs;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3456
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3457 /* Copy in the unspread args */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3458 memcpy (funcall_args, args, (nargs - 1) * sizeof (Lisp_Object));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3459 /* Spread the last arg we got. Its first element goes in
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3460 the slot that it used to occupy, hence this value of I. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3461 for (i = nargs - 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3462 !NILP (spread_arg); /* i < 1 + numargs */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3463 i++, spread_arg = XCDR (spread_arg))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3464 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3465 funcall_args [i] = XCAR (spread_arg);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3466 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3467 /* Supply nil for optional args (to subrs) */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3468 for (; i < funcall_nargs; i++)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3469 funcall_args[i] = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3470
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3471
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3472 RETURN_UNGCPRO (Ffuncall (funcall_nargs, funcall_args));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3473 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3474 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3475
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3476
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
3477 /* Define proper types and argument lists simultaneously */
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
3478 #define PRIMITIVE_FUNCALL(n) ((Lisp_Object (*) (PRIMITIVE_FUNCALL_##n)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
3479 #define PRIMITIVE_FUNCALL_0 void)) (fn)) (
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
3480 #define PRIMITIVE_FUNCALL_1 Lisp_Object)) (fn)) (args[0]
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
3481 #define PRIMITIVE_FUNCALL_2 Lisp_Object, PRIMITIVE_FUNCALL_1, args[1]
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
3482 #define PRIMITIVE_FUNCALL_3 Lisp_Object, PRIMITIVE_FUNCALL_2, args[2]
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
3483 #define PRIMITIVE_FUNCALL_4 Lisp_Object, PRIMITIVE_FUNCALL_3, args[3]
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
3484 #define PRIMITIVE_FUNCALL_5 Lisp_Object, PRIMITIVE_FUNCALL_4, args[4]
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
3485 #define PRIMITIVE_FUNCALL_6 Lisp_Object, PRIMITIVE_FUNCALL_5, args[5]
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
3486 #define PRIMITIVE_FUNCALL_7 Lisp_Object, PRIMITIVE_FUNCALL_6, args[6]
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
3487 #define PRIMITIVE_FUNCALL_8 Lisp_Object, PRIMITIVE_FUNCALL_7, args[7]
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
3488 #define PRIMITIVE_FUNCALL_9 Lisp_Object, PRIMITIVE_FUNCALL_8, args[8]
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
3489 #define PRIMITIVE_FUNCALL_10 Lisp_Object, PRIMITIVE_FUNCALL_9, args[9]
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
3490 #define PRIMITIVE_FUNCALL_11 Lisp_Object, PRIMITIVE_FUNCALL_10, args[10]
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
3491 #define PRIMITIVE_FUNCALL_12 Lisp_Object, PRIMITIVE_FUNCALL_11, args[11]
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
3492
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3493 static Lisp_Object
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
3494 primitive_funcall (lisp_fn_t fn, int nargs, Lisp_Object args[])
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3495 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3496 switch (nargs)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3497 {
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
3498 case 0: return PRIMITIVE_FUNCALL(0);
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
3499 case 1: return PRIMITIVE_FUNCALL(1);
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
3500 case 2: return PRIMITIVE_FUNCALL(2);
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
3501 case 3: return PRIMITIVE_FUNCALL(3);
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
3502 case 4: return PRIMITIVE_FUNCALL(4);
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
3503 case 5: return PRIMITIVE_FUNCALL(5);
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
3504 case 6: return PRIMITIVE_FUNCALL(6);
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
3505 case 7: return PRIMITIVE_FUNCALL(7);
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
3506 case 8: return PRIMITIVE_FUNCALL(8);
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
3507 case 9: return PRIMITIVE_FUNCALL(9);
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
3508 case 10: return PRIMITIVE_FUNCALL(10);
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
3509 case 11: return PRIMITIVE_FUNCALL(11);
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
3510 case 12: return PRIMITIVE_FUNCALL(12);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3511 }
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
3512
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
3513 /* Someone has created a subr that takes more arguments than is
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
3514 supported by this code. We need to either rewrite the subr to
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
3515 use a different argument protocol, or add more cases to this
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
3516 switch. */
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
3517 abort ();
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3518 return Qnil; /* suppress compiler warning */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3519 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3520
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3521 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3522 funcall_subr (struct Lisp_Subr *subr, Lisp_Object args[])
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3523 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3524 return primitive_funcall (subr_function (subr), subr->max_args, args);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3525 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3526
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3527 /* FSFmacs has an extra arg EVAL_FLAG. If false, some of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3528 the statements below are not done. But it's always true
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3529 in all the calls to apply_lambda(). */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3530
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3531 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3532 apply_lambda (Lisp_Object fun, int numargs, Lisp_Object unevalled_args)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3533 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3534 /* This function can GC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3535 struct gcpro gcpro1, gcpro2, gcpro3;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3536 REGISTER int i;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3537 REGISTER Lisp_Object tem;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3538 REGISTER Lisp_Object *arg_vector
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3539 = (Lisp_Object *) alloca (numargs * sizeof (Lisp_Object));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3540
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3541 GCPRO3 (*arg_vector, unevalled_args, fun);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3542 gcpro1.nvars = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3543
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3544 for (i = 0; i < numargs;)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3545 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3546 tem = Fcar (unevalled_args), unevalled_args = Fcdr (unevalled_args);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3547 tem = Feval (tem);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3548 arg_vector[i++] = tem;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3549 gcpro1.nvars = i;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3550 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3551
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3552 UNGCPRO;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3553
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3554 backtrace_list->args = arg_vector;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3555 backtrace_list->nargs = i;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3556 backtrace_list->evalargs = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3557 tem = funcall_lambda (fun, numargs, arg_vector);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3558
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3559 /* Do the debug-on-exit now, while arg_vector still exists. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3560 if (backtrace_list->debug_on_exit)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3561 tem = do_debug_on_exit (tem);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3562 /* Don't do it again when we return to eval. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3563 backtrace_list->debug_on_exit = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3564 return (tem);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3565 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3566
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3567 /* Apply a Lisp function FUN to the NARGS evaluated arguments in ARG_VECTOR
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3568 and return the result of evaluation.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3569 FUN must be either a lambda-expression or a compiled-code object. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3570
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3571 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3572 funcall_lambda (Lisp_Object fun, int nargs, Lisp_Object arg_vector[])
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3573 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3574 /* This function can GC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3575 Lisp_Object val, tem;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3576 REGISTER Lisp_Object syms_left;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3577 REGISTER Lisp_Object next;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3578 int speccount = specpdl_depth_counter;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3579 REGISTER int i;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3580 int optional = 0, rest = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3581
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3582 #ifdef MOCKLISP_SUPPORT
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3583 if (!EQ (Vmocklisp_arguments, Qt))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3584 specbind (Qmocklisp_arguments, Qt); /* t means NOT mocklisp! */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3585 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3586
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3587 if (CONSP (fun))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3588 syms_left = Fcar (Fcdr (fun));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3589 else if (COMPILED_FUNCTIONP (fun))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3590 syms_left = XCOMPILED_FUNCTION (fun)->arglist;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3591 else abort ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3592
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3593 i = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3594 for (; !NILP (syms_left); syms_left = Fcdr (syms_left))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3595 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3596 QUIT;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3597 next = Fcar (syms_left);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3598 if (!SYMBOLP (next))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3599 signal_error (Qinvalid_function, list1 (fun));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3600 if (EQ (next, Qand_rest))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3601 rest = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3602 else if (EQ (next, Qand_optional))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3603 optional = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3604 else if (rest)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3605 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3606 specbind (next, Flist (nargs - i, &arg_vector[i]));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3607 i = nargs;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3608 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3609 else if (i < nargs)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3610 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3611 tem = arg_vector[i++];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3612 specbind (next, tem);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3613 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3614 else if (!optional)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3615 return Fsignal (Qwrong_number_of_arguments,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3616 list2 (fun, make_int (nargs)));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3617 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3618 specbind (next, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3619 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3620
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3621 if (i < nargs)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3622 return Fsignal (Qwrong_number_of_arguments,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3623 list2 (fun, make_int (nargs)));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3624
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3625 if (CONSP (fun))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3626 val = Fprogn (Fcdr (Fcdr (fun)));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3627 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3628 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3629 struct Lisp_Compiled_Function *b = XCOMPILED_FUNCTION (fun);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3630 /* If we have not actually read the bytecode string
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3631 and constants vector yet, fetch them from the file. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3632 if (CONSP (b->bytecodes))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3633 Ffetch_bytecode (fun);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3634 val = Fbyte_code (b->bytecodes,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3635 b->constants,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3636 make_int (b->maxdepth));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3637 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3638 return unbind_to (speccount, val);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3639 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3640
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3641 DEFUN ("fetch-bytecode", Ffetch_bytecode, Sfetch_bytecode,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3642 1, 1, 0 /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3643 If byte-compiled OBJECT is lazy-loaded, fetch it now.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3644 */ )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3645 (object)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3646 Lisp_Object object;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3647 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3648 Lisp_Object tem;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3649
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3650 if (COMPILED_FUNCTIONP (object)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3651 && CONSP (XCOMPILED_FUNCTION (object)->bytecodes))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3652 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3653 tem = read_doc_string (XCOMPILED_FUNCTION (object)->bytecodes);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3654 if (!CONSP (tem))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3655 signal_simple_error ("invalid lazy-loaded byte code", tem);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3656 /* VERY IMPORTANT to purecopy here!!!!!
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3657 See load_force_doc_string_unwind. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3658 XCOMPILED_FUNCTION (object)->bytecodes = Fpurecopy (XCAR (tem));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3659 XCOMPILED_FUNCTION (object)->constants = Fpurecopy (XCDR (tem));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3660 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3661 return object;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3662 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3663
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3664
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3665 /**********************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3666 /* Run hook variables in various ways. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3667 /**********************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3668
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3669 DEFUN ("run-hooks", Frun_hooks, Srun_hooks, 1, MANY, 0 /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3670 Run each hook in HOOKS. Major mode functions use this.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3671 Each argument should be a symbol, a hook variable.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3672 These symbols are processed in the order specified.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3673 If a hook symbol has a non-nil value, that value may be a function
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3674 or a list of functions to be called to run the hook.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3675 If the value is a function, it is called with no arguments.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3676 If it is a list, the elements are called, in order, with no arguments.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3677
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3678 To make a hook variable buffer-local, use `make-local-hook',
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3679 not `make-local-variable'.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3680 */ )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3681 (nargs, args)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3682 int nargs;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3683 Lisp_Object *args;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3684 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3685 Lisp_Object hook[1];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3686 REGISTER int i;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3687
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3688 for (i = 0; i < nargs; i++)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3689 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3690 hook[0] = args[i];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3691 run_hook_with_args (1, hook, RUN_HOOKS_TO_COMPLETION);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3692 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3693
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3694 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3695 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3696
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3697 DEFUN ("run-hook-with-args",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3698 Frun_hook_with_args, Srun_hook_with_args, 1, MANY, 0 /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3699 Run HOOK with the specified arguments ARGS.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3700 HOOK should be a symbol, a hook variable. If HOOK has a non-nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3701 value, that value may be a function or a list of functions to be
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3702 called to run the hook. If the value is a function, it is called with
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3703 the given arguments and its return value is returned. If it is a list
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3704 of functions, those functions are called, in order,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3705 with the given arguments ARGS.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3706 It is best not to depend on the value return by `run-hook-with-args',
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3707 as that may change.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3708
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3709 To make a hook variable buffer-local, use `make-local-hook',
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3710 not `make-local-variable'.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3711 */ )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3712 (nargs, args)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3713 int nargs;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3714 Lisp_Object *args;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3715 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3716 return run_hook_with_args (nargs, args, RUN_HOOKS_TO_COMPLETION);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3717 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3718
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3719 DEFUN ("run-hook-with-args-until-success",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3720 Frun_hook_with_args_until_success, Srun_hook_with_args_until_success,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3721 1, MANY, 0 /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3722 Run HOOK with the specified arguments ARGS.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3723 HOOK should be a symbol, a hook variable. Its value should
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3724 be a list of functions. We call those functions, one by one,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3725 passing arguments ARGS to each of them, until one of them
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3726 returns a non-nil value. Then we return that value.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3727 If all the functions return nil, we return nil.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3728
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3729 To make a hook variable buffer-local, use `make-local-hook',
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3730 not `make-local-variable'.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3731 */ )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3732 (nargs, args)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3733 int nargs;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3734 Lisp_Object *args;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3735 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3736 return run_hook_with_args (nargs, args, RUN_HOOKS_UNTIL_SUCCESS);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3737 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3738
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3739 DEFUN ("run-hook-with-args-until-failure",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3740 Frun_hook_with_args_until_failure, Srun_hook_with_args_until_failure,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3741 1, MANY, 0 /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3742 Run HOOK with the specified arguments ARGS.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3743 HOOK should be a symbol, a hook variable. Its value should
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3744 be a list of functions. We call those functions, one by one,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3745 passing arguments ARGS to each of them, until one of them
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3746 returns nil. Then we return nil.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3747 If all the functions return non-nil, we return non-nil.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3748
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3749 To make a hook variable buffer-local, use `make-local-hook',
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3750 not `make-local-variable'.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3751 */ )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3752 (nargs, args)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3753 int nargs;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3754 Lisp_Object *args;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3755 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3756 return run_hook_with_args (nargs, args, RUN_HOOKS_UNTIL_FAILURE);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3757 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3758
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3759 /* ARGS[0] should be a hook symbol.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3760 Call each of the functions in the hook value, passing each of them
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3761 as arguments all the rest of ARGS (all NARGS - 1 elements).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3762 COND specifies a condition to test after each call
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3763 to decide whether to stop.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3764 The caller (or its caller, etc) must gcpro all of ARGS,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3765 except that it isn't necessary to gcpro ARGS[0]. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3766
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3767 Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3768 run_hook_with_args_in_buffer (struct buffer *buf, int nargs, Lisp_Object *args,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3769 enum run_hooks_condition cond)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3770 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3771 Lisp_Object sym, val, ret;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3772 struct gcpro gcpro1, gcpro2;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3773
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3774 if (!initialized || preparing_for_armageddon)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3775 /* We need to bail out of here pronto. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3776 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3777
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3778 /* Whenever gc_in_progress is true, preparing_for_armageddon
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3779 will also be true unless something is really hosed. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3780 assert (!gc_in_progress);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3781
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3782 sym = args[0];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3783 val = symbol_value_in_buffer (sym, make_buffer (buf));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3784 ret = (cond == RUN_HOOKS_UNTIL_FAILURE ? Qt : Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3785
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3786 if (UNBOUNDP (val) || NILP (val))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3787 return ret;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3788 else if (!CONSP (val) || EQ (XCAR (val), Qlambda))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3789 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3790 args[0] = val;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3791 return Ffuncall (nargs, args);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3792 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3793 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3794 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3795 GCPRO2 (sym, val);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3796
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3797 for (;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3798 CONSP (val) && ((cond == RUN_HOOKS_TO_COMPLETION)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3799 || (cond == RUN_HOOKS_UNTIL_SUCCESS ? NILP (ret)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3800 : !NILP (ret)));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3801 val = XCDR (val))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3802 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3803 if (EQ (XCAR (val), Qt))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3804 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3805 /* t indicates this hook has a local binding;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3806 it means to run the global binding too. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3807 Lisp_Object globals;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3808
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3809 for (globals = Fdefault_value (sym);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3810 CONSP (globals) && ((cond == RUN_HOOKS_TO_COMPLETION)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3811 || (cond == RUN_HOOKS_UNTIL_SUCCESS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3812 ? NILP (ret)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3813 : !NILP (ret)));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3814 globals = XCDR (globals))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3815 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3816 args[0] = XCAR (globals);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3817 /* In a global value, t should not occur. If it does, we
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3818 must ignore it to avoid an endless loop. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3819 if (!EQ (args[0], Qt))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3820 ret = Ffuncall (nargs, args);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3821 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3822 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3823 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3824 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3825 args[0] = XCAR (val);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3826 ret = Ffuncall (nargs, args);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3827 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3828 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3829
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3830 UNGCPRO;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3831 return ret;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3832 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3833 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3834
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3835 Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3836 run_hook_with_args (int nargs, Lisp_Object *args,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3837 enum run_hooks_condition cond)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3838 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3839 return run_hook_with_args_in_buffer (current_buffer, nargs, args, cond);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3840 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3841
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3842 #if 0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3843
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3844 /* From FSF 19.30, not currently used */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3845
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3846 /* Run a hook symbol ARGS[0], but use FUNLIST instead of the actual
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3847 present value of that symbol.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3848 Call each element of FUNLIST,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3849 passing each of them the rest of ARGS.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3850 The caller (or its caller, etc) must gcpro all of ARGS,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3851 except that it isn't necessary to gcpro ARGS[0]. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3852
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3853 Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3854 run_hook_list_with_args (Lisp_Object funlist, int nargs, Lisp_Object *args)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3855 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3856 Lisp_Object sym;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3857 Lisp_Object val;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3858 struct gcpro gcpro1, gcpro2;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3859
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3860 sym = args[0];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3861 GCPRO2 (sym, val);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3862
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3863 for (val = funlist; CONSP (val); val = XCDR (val))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3864 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3865 if (EQ (XCAR (val), Qt))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3866 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3867 /* t indicates this hook has a local binding;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3868 it means to run the global binding too. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3869 Lisp_Object globals;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3870
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3871 for (globals = Fdefault_value (sym);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3872 CONSP (globals);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3873 globals = XCDR (globals))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3874 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3875 args[0] = XCAR (globals);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3876 /* In a global value, t should not occur. If it does, we
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3877 must ignore it to avoid an endless loop. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3878 if (!EQ (args[0], Qt))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3879 Ffuncall (nargs, args);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3880 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3881 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3882 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3883 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3884 args[0] = XCAR (val);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3885 Ffuncall (nargs, args);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3886 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3887 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3888 UNGCPRO;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3889 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3890 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3891
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3892 #endif /* 0 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3893
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3894 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3895 va_run_hook_with_args (Lisp_Object hook_var, int nargs, ...)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3896 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3897 /* This function can GC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3898 struct gcpro gcpro1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3899 int i;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3900 va_list vargs;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3901 Lisp_Object *funcall_args =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3902 (Lisp_Object *) alloca ((1 + nargs) * sizeof (Lisp_Object));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3903
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3904 va_start (vargs, nargs);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3905 funcall_args[0] = hook_var;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3906 for (i = 0; i < nargs; i++)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3907 funcall_args[i + 1] = va_arg (vargs, Lisp_Object);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3908 va_end (vargs);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3909
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3910 GCPRO1 (*funcall_args);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3911 gcpro1.nvars = nargs + 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3912 run_hook_with_args (nargs + 1, funcall_args, RUN_HOOKS_TO_COMPLETION);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3913 UNGCPRO;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3914 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3915
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3916 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3917 va_run_hook_with_args_in_buffer (struct buffer *buf, Lisp_Object hook_var,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3918 int nargs, ...)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3919 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3920 /* This function can GC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3921 struct gcpro gcpro1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3922 int i;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3923 va_list vargs;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3924 Lisp_Object *funcall_args =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3925 (Lisp_Object *) alloca ((1 + nargs) * sizeof (Lisp_Object));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3926
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3927 va_start (vargs, nargs);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3928 funcall_args[0] = hook_var;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3929 for (i = 0; i < nargs; i++)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3930 funcall_args[i + 1] = va_arg (vargs, Lisp_Object);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3931 va_end (vargs);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3932
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3933 GCPRO1 (*funcall_args);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3934 gcpro1.nvars = nargs + 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3935 run_hook_with_args_in_buffer (buf, nargs + 1, funcall_args,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3936 RUN_HOOKS_TO_COMPLETION);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3937 UNGCPRO;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3938 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3939
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3940 Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3941 run_hook (Lisp_Object hook)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3942 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3943 Frun_hooks (1, &hook);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3944 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3945 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3946
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3947
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3948 /**********************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3949 /* Front-ends to eval, funcall, apply */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3950 /**********************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3951
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3952 /* Apply fn to arg */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3953 Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3954 apply1 (Lisp_Object fn, Lisp_Object arg)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3955 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3956 /* This function can GC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3957 struct gcpro gcpro1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3958 Lisp_Object args[2];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3959
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3960 if (NILP (arg))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3961 return (Ffuncall (1, &fn));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3962 GCPRO1 (args[0]);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3963 gcpro1.nvars = 2;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3964 args[0] = fn;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3965 args[1] = arg;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3966 RETURN_UNGCPRO (Fapply (2, args));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3967 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3968
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3969 /* Call function fn on no arguments */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3970 Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3971 call0 (Lisp_Object fn)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3972 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3973 /* This function can GC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3974 struct gcpro gcpro1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3975
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3976 GCPRO1 (fn);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3977 RETURN_UNGCPRO (Ffuncall (1, &fn));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3978 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3979
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3980 /* Call function fn with argument arg0 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3981 Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3982 call1 (Lisp_Object fn,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3983 Lisp_Object arg0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3984 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3985 /* This function can GC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3986 struct gcpro gcpro1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3987 Lisp_Object args[2];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3988 args[0] = fn;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3989 args[1] = arg0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3990 GCPRO1 (args[0]);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3991 gcpro1.nvars = 2;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3992 RETURN_UNGCPRO (Ffuncall (2, args));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3993 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3994
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3995 /* Call function fn with arguments arg0, arg1 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3996 Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3997 call2 (Lisp_Object fn,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3998 Lisp_Object arg0, Lisp_Object arg1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3999 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4000 /* This function can GC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4001 struct gcpro gcpro1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4002 Lisp_Object args[3];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4003 args[0] = fn;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4004 args[1] = arg0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4005 args[2] = arg1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4006 GCPRO1 (args[0]);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4007 gcpro1.nvars = 3;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4008 RETURN_UNGCPRO (Ffuncall (3, args));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4009 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4010
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4011 /* Call function fn with arguments arg0, arg1, arg2 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4012 Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4013 call3 (Lisp_Object fn,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4014 Lisp_Object arg0, Lisp_Object arg1, Lisp_Object arg2)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4015 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4016 /* This function can GC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4017 struct gcpro gcpro1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4018 Lisp_Object args[4];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4019 args[0] = fn;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4020 args[1] = arg0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4021 args[2] = arg1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4022 args[3] = arg2;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4023 GCPRO1 (args[0]);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4024 gcpro1.nvars = 4;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4025 RETURN_UNGCPRO (Ffuncall (4, args));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4026 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4027
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4028 /* Call function fn with arguments arg0, arg1, arg2, arg3 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4029 Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4030 call4 (Lisp_Object fn,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4031 Lisp_Object arg0, Lisp_Object arg1, Lisp_Object arg2,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4032 Lisp_Object arg3)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4033 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4034 /* This function can GC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4035 struct gcpro gcpro1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4036 Lisp_Object args[5];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4037 args[0] = fn;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4038 args[1] = arg0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4039 args[2] = arg1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4040 args[3] = arg2;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4041 args[4] = arg3;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4042 GCPRO1 (args[0]);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4043 gcpro1.nvars = 5;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4044 RETURN_UNGCPRO (Ffuncall (5, args));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4045 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4046
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4047 /* Call function fn with arguments arg0, arg1, arg2, arg3, arg4 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4048 Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4049 call5 (Lisp_Object fn,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4050 Lisp_Object arg0, Lisp_Object arg1, Lisp_Object arg2,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4051 Lisp_Object arg3, Lisp_Object arg4)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4052 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4053 /* This function can GC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4054 struct gcpro gcpro1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4055 Lisp_Object args[6];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4056 args[0] = fn;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4057 args[1] = arg0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4058 args[2] = arg1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4059 args[3] = arg2;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4060 args[4] = arg3;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4061 args[5] = arg4;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4062 GCPRO1 (args[0]);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4063 gcpro1.nvars = 6;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4064 RETURN_UNGCPRO (Ffuncall (6, args));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4065 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4066
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4067 Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4068 call6 (Lisp_Object fn,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4069 Lisp_Object arg0, Lisp_Object arg1, Lisp_Object arg2,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4070 Lisp_Object arg3, Lisp_Object arg4, Lisp_Object arg5)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4071 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4072 /* This function can GC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4073 struct gcpro gcpro1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4074 Lisp_Object args[7];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4075 args[0] = fn;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4076 args[1] = arg0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4077 args[2] = arg1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4078 args[3] = arg2;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4079 args[4] = arg3;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4080 args[5] = arg4;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4081 args[6] = arg5;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4082 GCPRO1 (args[0]);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4083 gcpro1.nvars = 7;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4084 RETURN_UNGCPRO (Ffuncall (7, args));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4085 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4086
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4087 Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4088 call7 (Lisp_Object fn,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4089 Lisp_Object arg0, Lisp_Object arg1, Lisp_Object arg2,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4090 Lisp_Object arg3, Lisp_Object arg4, Lisp_Object arg5,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4091 Lisp_Object arg6)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4092 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4093 /* This function can GC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4094 struct gcpro gcpro1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4095 Lisp_Object args[8];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4096 args[0] = fn;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4097 args[1] = arg0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4098 args[2] = arg1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4099 args[3] = arg2;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4100 args[4] = arg3;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4101 args[5] = arg4;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4102 args[6] = arg5;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4103 args[7] = arg6;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4104 GCPRO1 (args[0]);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4105 gcpro1.nvars = 8;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4106 RETURN_UNGCPRO (Ffuncall (8, args));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4107 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4108
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4109 Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4110 call8 (Lisp_Object fn,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4111 Lisp_Object arg0, Lisp_Object arg1, Lisp_Object arg2,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4112 Lisp_Object arg3, Lisp_Object arg4, Lisp_Object arg5,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4113 Lisp_Object arg6, Lisp_Object arg7)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4114 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4115 /* This function can GC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4116 struct gcpro gcpro1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4117 Lisp_Object args[9];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4118 args[0] = fn;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4119 args[1] = arg0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4120 args[2] = arg1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4121 args[3] = arg2;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4122 args[4] = arg3;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4123 args[5] = arg4;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4124 args[6] = arg5;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4125 args[7] = arg6;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4126 args[8] = arg7;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4127 GCPRO1 (args[0]);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4128 gcpro1.nvars = 9;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4129 RETURN_UNGCPRO (Ffuncall (9, args));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4130 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4131
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4132 Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4133 call0_in_buffer (struct buffer *buf, Lisp_Object fn)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4134 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4135 int speccount = specpdl_depth ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4136 Lisp_Object val;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4137
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4138 if (current_buffer != buf)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4139 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4140 record_unwind_protect (Fset_buffer, Fcurrent_buffer ());
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4141 set_buffer_internal (buf);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4142 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4143 val = call0 (fn);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4144 unbind_to (speccount, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4145 return val;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4146 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4147
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4148 Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4149 call1_in_buffer (struct buffer *buf, Lisp_Object fn,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4150 Lisp_Object arg0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4151 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4152 int speccount = specpdl_depth ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4153 Lisp_Object val;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4154
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4155 if (current_buffer != buf)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4156 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4157 record_unwind_protect (Fset_buffer, Fcurrent_buffer ());
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4158 set_buffer_internal (buf);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4159 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4160 val = call1 (fn, arg0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4161 unbind_to (speccount, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4162 return val;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4163 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4164
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4165 Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4166 call2_in_buffer (struct buffer *buf, Lisp_Object fn,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4167 Lisp_Object arg0, Lisp_Object arg1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4168 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4169 int speccount = specpdl_depth ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4170 Lisp_Object val;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4171
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4172 if (current_buffer != buf)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4173 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4174 record_unwind_protect (Fset_buffer, Fcurrent_buffer ());
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4175 set_buffer_internal (buf);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4176 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4177 val = call2 (fn, arg0, arg1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4178 unbind_to (speccount, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4179 return val;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4180 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4181
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4182 Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4183 call3_in_buffer (struct buffer *buf, Lisp_Object fn,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4184 Lisp_Object arg0, Lisp_Object arg1, Lisp_Object arg2)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4185 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4186 int speccount = specpdl_depth ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4187 Lisp_Object val;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4188
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4189 if (current_buffer != buf)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4190 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4191 record_unwind_protect (Fset_buffer, Fcurrent_buffer ());
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4192 set_buffer_internal (buf);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4193 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4194 val = call3 (fn, arg0, arg1, arg2);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4195 unbind_to (speccount, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4196 return val;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4197 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4198
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4199 Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4200 call4_in_buffer (struct buffer *buf, Lisp_Object fn,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4201 Lisp_Object arg0, Lisp_Object arg1, Lisp_Object arg2,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4202 Lisp_Object arg3)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4203 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4204 int speccount = specpdl_depth ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4205 Lisp_Object val;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4206
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4207 if (current_buffer != buf)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4208 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4209 record_unwind_protect (Fset_buffer, Fcurrent_buffer ());
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4210 set_buffer_internal (buf);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4211 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4212 val = call4 (fn, arg0, arg1, arg2, arg3);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4213 unbind_to (speccount, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4214 return val;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4215 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4216
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4217 Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4218 call5_in_buffer (struct buffer *buf, Lisp_Object fn,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4219 Lisp_Object arg0, Lisp_Object arg1, Lisp_Object arg2,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4220 Lisp_Object arg3, Lisp_Object arg4)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4221 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4222 int speccount = specpdl_depth ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4223 Lisp_Object val;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4224
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4225 if (current_buffer != buf)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4226 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4227 record_unwind_protect (Fset_buffer, Fcurrent_buffer ());
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4228 set_buffer_internal (buf);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4229 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4230 val = call5 (fn, arg0, arg1, arg2, arg3, arg4);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4231 unbind_to (speccount, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4232 return val;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4233 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4234
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4235 Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4236 call6_in_buffer (struct buffer *buf, Lisp_Object fn,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4237 Lisp_Object arg0, Lisp_Object arg1, Lisp_Object arg2,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4238 Lisp_Object arg3, Lisp_Object arg4, Lisp_Object arg5)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4239 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4240 int speccount = specpdl_depth ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4241 Lisp_Object val;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4242
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4243 if (current_buffer != buf)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4244 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4245 record_unwind_protect (Fset_buffer, Fcurrent_buffer ());
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4246 set_buffer_internal (buf);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4247 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4248 val = call6 (fn, arg0, arg1, arg2, arg3, arg4, arg5);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4249 unbind_to (speccount, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4250 return val;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4251 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4252
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4253 Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4254 eval_in_buffer (struct buffer *buf, Lisp_Object form)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4255 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4256 int speccount = specpdl_depth ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4257 Lisp_Object val;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4258
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4259 if (current_buffer != buf)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4260 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4261 record_unwind_protect (Fset_buffer, Fcurrent_buffer ());
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4262 set_buffer_internal (buf);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4263 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4264 val = Feval (form);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4265 unbind_to (speccount, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4266 return val;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4267 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4268
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4269
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4270 /***** Error-catching front-ends to eval, funcall, apply */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4271
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4272 /* Call function fn on no arguments, with condition handler */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4273 Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4274 call0_with_handler (Lisp_Object handler, Lisp_Object fn)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4275 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4276 /* This function can GC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4277 struct gcpro gcpro1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4278 Lisp_Object args[2];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4279 args[0] = handler;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4280 args[1] = fn;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4281 GCPRO1 (args[0]);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4282 gcpro1.nvars = 2;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4283 RETURN_UNGCPRO (Fcall_with_condition_handler (2, args));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4284 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4285
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4286 /* Call function fn with argument arg0, with condition handler */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4287 Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4288 call1_with_handler (Lisp_Object handler, Lisp_Object fn,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4289 Lisp_Object arg0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4290 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4291 /* This function can GC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4292 struct gcpro gcpro1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4293 Lisp_Object args[3];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4294 args[0] = handler;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4295 args[1] = fn;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4296 args[2] = arg0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4297 GCPRO1 (args[0]);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4298 gcpro1.nvars = 3;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4299 RETURN_UNGCPRO (Fcall_with_condition_handler (3, args));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4300 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4301
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4302
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4303 /* The following functions provide you with error-trapping versions
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4304 of the various front-ends above. They take an additional
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4305 "warning_string" argument; if non-zero, a warning with this
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4306 string and the actual error that occurred will be displayed
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4307 in the *Warnings* buffer if an error occurs. In all cases,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4308 QUIT is inhibited while these functions are running, and if
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4309 an error occurs, Qunbound is returned instead of the normal
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4310 return value.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4311 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4312
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4313 /* #### This stuff needs to catch throws as well. We need to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4314 improve internal_catch() so it can take a "catch anything"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4315 argument similar to Qt or Qerror for condition_case_1(). */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4316
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4317 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4318 caught_a_squirmer (Lisp_Object errordata, Lisp_Object arg)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4319 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4320 if (!NILP (errordata))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4321 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4322 Lisp_Object args[2];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4323
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4324 if (!NILP (arg))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4325 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4326 char *str = (char *) get_opaque_ptr (arg);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4327 args[0] = build_string (str);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4328 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4329 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4330 args[0] = build_string ("error");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4331 /* #### This should call
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4332 (with-output-to-string (display-error errordata))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4333 but that stuff is all in Lisp currently. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4334 args[1] = errordata;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4335 warn_when_safe_lispobj
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4336 (Qerror, Qwarning,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4337 emacs_doprnt_string_lisp ((CONST Bufbyte *) "%s: %s",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4338 Qnil, -1, 2, args));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4339 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4340 return Qunbound;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4341 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4342
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4343 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4344 allow_quit_caught_a_squirmer (Lisp_Object errordata, Lisp_Object arg)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4345 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4346 if (CONSP (errordata) && EQ (XCAR (errordata), Qquit))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4347 return Fsignal (Qquit, XCDR (errordata));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4348 return caught_a_squirmer (errordata, arg);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4349 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4350
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4351 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4352 safe_run_hook_caught_a_squirmer (Lisp_Object errordata, Lisp_Object arg)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4353 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4354 Lisp_Object hook = Fcar (arg);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4355 arg = Fcdr (arg);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4356 /* Clear out the hook. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4357 Fset (hook, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4358 return caught_a_squirmer (errordata, arg);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4359 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4360
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4361 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4362 allow_quit_safe_run_hook_caught_a_squirmer (Lisp_Object errordata,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4363 Lisp_Object arg)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4364 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4365 Lisp_Object hook = Fcar (arg);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4366 arg = Fcdr (arg);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4367 if (!CONSP (errordata) || !EQ (XCAR (errordata), Qquit))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4368 /* Clear out the hook. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4369 Fset (hook, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4370 return allow_quit_caught_a_squirmer (errordata, arg);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4371 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4372
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4373 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4374 catch_them_squirmers_eval_in_buffer (Lisp_Object cons)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4375 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4376 return eval_in_buffer (XBUFFER (XCAR (cons)), XCDR (cons));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4377 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4378
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4379 Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4380 eval_in_buffer_trapping_errors (CONST char *warning_string,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4381 struct buffer *buf, Lisp_Object form)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4382 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4383 int speccount = specpdl_depth ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4384 Lisp_Object tem;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4385 Lisp_Object buffer = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4386 Lisp_Object cons;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4387 Lisp_Object opaque;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4388 struct gcpro gcpro1, gcpro2;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4389
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4390 XSETBUFFER (buffer, buf);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4391
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4392 specbind (Qinhibit_quit, Qt);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4393 /* gc_currently_forbidden = 1; Currently no reason to do this; */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4394
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4395 cons = noseeum_cons (buffer, form);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4396 opaque = (warning_string ? make_opaque_ptr (warning_string) : Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4397 GCPRO2 (cons, opaque);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4398 /* Qerror not Qt, so you can get a backtrace */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4399 tem = condition_case_1 (Qerror,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4400 catch_them_squirmers_eval_in_buffer, cons,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4401 caught_a_squirmer, opaque);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4402 free_cons (XCONS (cons));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4403 if (OPAQUEP (opaque))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4404 free_opaque_ptr (opaque);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4405 UNGCPRO;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4406
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4407 /* gc_currently_forbidden = 0; */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4408 return unbind_to (speccount, tem);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4409 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4410
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4411 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4412 catch_them_squirmers_run_hook (Lisp_Object hook_symbol)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4413 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4414 /* This function can GC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4415 run_hook (hook_symbol);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4416 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4417 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4418
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4419 Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4420 run_hook_trapping_errors (CONST char *warning_string, Lisp_Object hook_symbol)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4421 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4422 int speccount = specpdl_depth ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4423 Lisp_Object tem;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4424 Lisp_Object opaque;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4425 struct gcpro gcpro1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4426
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4427 if (!initialized || preparing_for_armageddon)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4428 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4429 tem = find_symbol_value (hook_symbol);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4430 if (NILP (tem) || UNBOUNDP (tem))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4431 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4432
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4433 specbind (Qinhibit_quit, Qt);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4434
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4435 opaque = (warning_string ? make_opaque_ptr (warning_string) : Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4436 GCPRO1 (opaque);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4437 /* Qerror not Qt, so you can get a backtrace */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4438 tem = condition_case_1 (Qerror,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4439 catch_them_squirmers_run_hook, hook_symbol,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4440 caught_a_squirmer, opaque);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4441 if (OPAQUEP (opaque))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4442 free_opaque_ptr (opaque);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4443 UNGCPRO;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4444
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4445 return unbind_to (speccount, tem);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4446 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4447
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4448 /* Same as run_hook_trapping_errors() but also set the hook to nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4449 if an error occurs. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4450
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4451 Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4452 safe_run_hook_trapping_errors (CONST char *warning_string,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4453 Lisp_Object hook_symbol,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4454 int allow_quit)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4455 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4456 int speccount = specpdl_depth ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4457 Lisp_Object tem;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4458 Lisp_Object cons = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4459 struct gcpro gcpro1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4460
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4461 if (!initialized || preparing_for_armageddon)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4462 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4463 tem = find_symbol_value (hook_symbol);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4464 if (NILP (tem) || UNBOUNDP (tem))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4465 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4466
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4467 if (!allow_quit)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4468 specbind (Qinhibit_quit, Qt);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4469
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4470 cons = noseeum_cons (hook_symbol,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4471 warning_string ? make_opaque_ptr (warning_string)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4472 : Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4473 GCPRO1 (cons);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4474 /* Qerror not Qt, so you can get a backtrace */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4475 tem = condition_case_1 (Qerror,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4476 catch_them_squirmers_run_hook,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4477 hook_symbol,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4478 allow_quit ?
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4479 allow_quit_safe_run_hook_caught_a_squirmer :
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4480 safe_run_hook_caught_a_squirmer,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4481 cons);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4482 if (OPAQUEP (XCDR (cons)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4483 free_opaque_ptr (XCDR (cons));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4484 free_cons (XCONS (cons));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4485 UNGCPRO;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4486
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4487 return unbind_to (speccount, tem);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4488 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4489
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4490 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4491 catch_them_squirmers_call0 (Lisp_Object function)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4492 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4493 /* This function can GC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4494 return call0 (function);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4495 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4496
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4497 Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4498 call0_trapping_errors (CONST char *warning_string, Lisp_Object function)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4499 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4500 int speccount = specpdl_depth ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4501 Lisp_Object tem;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4502 Lisp_Object opaque = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4503 struct gcpro gcpro1, gcpro2;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4504
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4505 if (SYMBOLP (function))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4506 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4507 tem = XSYMBOL (function)->function;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4508 if (NILP (tem) || UNBOUNDP (tem))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4509 return (Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4510 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4511
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4512 GCPRO2 (opaque, function);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4513 specbind (Qinhibit_quit, Qt);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4514 /* gc_currently_forbidden = 1; Currently no reason to do this; */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4515
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4516 opaque = (warning_string ? make_opaque_ptr (warning_string) : Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4517 /* Qerror not Qt, so you can get a backtrace */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4518 tem = condition_case_1 (Qerror,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4519 catch_them_squirmers_call0, function,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4520 caught_a_squirmer, opaque);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4521 if (OPAQUEP (opaque))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4522 free_opaque_ptr (opaque);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4523 UNGCPRO;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4524
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4525 /* gc_currently_forbidden = 0; */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4526 return unbind_to (speccount, tem);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4527 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4528
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4529 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4530 catch_them_squirmers_call1 (Lisp_Object cons)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4531 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4532 /* This function can GC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4533 return call1 (XCAR (cons), XCDR (cons));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4534 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4535
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4536 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4537 catch_them_squirmers_call2 (Lisp_Object cons)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4538 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4539 /* This function can GC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4540 return call2 (XCAR (cons), XCAR (XCDR (cons)), XCAR (XCDR (XCDR (cons))));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4541 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4542
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4543 Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4544 call1_trapping_errors (CONST char *warning_string, Lisp_Object function,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4545 Lisp_Object object)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4546 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4547 int speccount = specpdl_depth ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4548 Lisp_Object tem;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4549 Lisp_Object cons = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4550 Lisp_Object opaque = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4551 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4552
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4553 if (SYMBOLP (function))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4554 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4555 tem = XSYMBOL (function)->function;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4556 if (NILP (tem) || UNBOUNDP (tem))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4557 return (Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4558 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4559
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4560 GCPRO4 (cons, opaque, function, object);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4561
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4562 specbind (Qinhibit_quit, Qt);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4563 /* gc_currently_forbidden = 1; Currently no reason to do this; */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4564
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4565 cons = noseeum_cons (function, object);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4566 opaque = (warning_string ? make_opaque_ptr (warning_string) : Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4567 /* Qerror not Qt, so you can get a backtrace */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4568 tem = condition_case_1 (Qerror,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4569 catch_them_squirmers_call1, cons,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4570 caught_a_squirmer, opaque);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4571 if (OPAQUEP (opaque))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4572 free_opaque_ptr (opaque);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4573 free_cons (XCONS (cons));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4574 UNGCPRO;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4575
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4576 /* gc_currently_forbidden = 0; */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4577 return unbind_to (speccount, tem);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4578 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4579
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4580 Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4581 call2_trapping_errors (CONST char *warning_string, Lisp_Object function,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4582 Lisp_Object object1, Lisp_Object object2)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4583 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4584 int speccount = specpdl_depth ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4585 Lisp_Object tem;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4586 Lisp_Object cons = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4587 Lisp_Object opaque = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4588 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4, gcpro5;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4589
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4590 if (SYMBOLP (function))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4591 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4592 tem = XSYMBOL (function)->function;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4593 if (NILP (tem) || UNBOUNDP (tem))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4594 return (Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4595 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4596
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4597 GCPRO5 (cons, opaque, function, object1, object2);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4598 specbind (Qinhibit_quit, Qt);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4599 /* gc_currently_forbidden = 1; Currently no reason to do this; */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4600
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4601 cons = list3 (function, object1, object2);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4602 opaque = (warning_string ? make_opaque_ptr (warning_string) : Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4603 /* Qerror not Qt, so you can get a backtrace */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4604 tem = condition_case_1 (Qerror,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4605 catch_them_squirmers_call2, cons,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4606 caught_a_squirmer, opaque);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4607 if (OPAQUEP (opaque))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4608 free_opaque_ptr (opaque);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4609 free_list (cons);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4610 UNGCPRO;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4611
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4612 /* gc_currently_forbidden = 0; */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4613 return unbind_to (speccount, tem);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4614 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4615
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4616
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4617 /**********************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4618 /* The special binding stack */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4619 /**********************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4620
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
4621 #define min_max_specpdl_size 400
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
4622
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4623 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4624 grow_specpdl (void)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4625 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4626 if (specpdl_size >= max_specpdl_size)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4627 {
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
4628 if (max_specpdl_size < min_max_specpdl_size)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
4629 max_specpdl_size = min_max_specpdl_size;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4630 if (specpdl_size >= max_specpdl_size)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4631 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4632 if (!NILP (Vdebug_on_error) || !NILP (Vdebug_on_signal))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4633 /* Leave room for some specpdl in the debugger. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4634 max_specpdl_size = specpdl_size + 100;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4635 continuable_error
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4636 ("Variable binding depth exceeds max-specpdl-size");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4637 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4638 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4639 specpdl_size *= 2;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4640 if (specpdl_size > max_specpdl_size)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4641 specpdl_size = max_specpdl_size;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4642 specpdl = ((struct specbinding *)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4643 xrealloc (specpdl, specpdl_size * sizeof (struct specbinding)));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4644 specpdl_ptr = specpdl + specpdl_depth_counter;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4645 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4646
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4647
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4648 /* Handle unbinding buffer-local variables */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4649 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4650 specbind_unwind_local (Lisp_Object ovalue)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4651 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4652 Lisp_Object current = Fcurrent_buffer ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4653 Lisp_Object symbol = specpdl_ptr->symbol;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4654 struct Lisp_Cons *victim = XCONS (ovalue);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4655 Lisp_Object buf = get_buffer (victim->car, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4656 ovalue = victim->cdr;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4657
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4658 free_cons (victim);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4659
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4660 if (NILP (buf))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4661 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4662 /* Deleted buffer -- do nothing */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4663 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4664 else if (symbol_value_buffer_local_info (symbol, XBUFFER (buf)) == 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4665 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4666 /* Was buffer-local when binding was made, now no longer is.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4667 * (kill-local-variable can do this.)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4668 * Do nothing in this case.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4669 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4670 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4671 else if (EQ (buf, current))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4672 Fset (symbol, ovalue);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4673 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4674 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4675 /* Urk! Somebody switched buffers */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4676 struct gcpro gcpro1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4677 GCPRO1 (current);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4678 Fset_buffer (buf);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4679 Fset (symbol, ovalue);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4680 Fset_buffer (current);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4681 UNGCPRO;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4682 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4683 return (symbol);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4684 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4685
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4686 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4687 specbind_unwind_wasnt_local (Lisp_Object buffer)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4688 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4689 Lisp_Object current = Fcurrent_buffer ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4690 Lisp_Object symbol = specpdl_ptr->symbol;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4691
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4692 buffer = get_buffer (buffer, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4693 if (NILP (buffer))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4694 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4695 /* Deleted buffer -- do nothing */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4696 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4697 else if (symbol_value_buffer_local_info (symbol, XBUFFER (buffer)) == 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4698 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4699 /* Was buffer-local when binding was made, now no longer is.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4700 * (kill-local-variable can do this.)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4701 * Do nothing in this case.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4702 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4703 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4704 else if (EQ (buffer, current))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4705 Fkill_local_variable (symbol);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4706 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4707 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4708 /* Urk! Somebody switched buffers */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4709 struct gcpro gcpro1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4710 GCPRO1 (current);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4711 Fset_buffer (buffer);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4712 Fkill_local_variable (symbol);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4713 Fset_buffer (current);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4714 UNGCPRO;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4715 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4716 return (symbol);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4717 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4718
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4719
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4720 /* Don't want to include buffer.h just for this */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4721 extern struct buffer *current_buffer;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4722
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4723 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4724 specbind (Lisp_Object symbol, Lisp_Object value)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4725 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4726 int buffer_local;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4727
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4728 CHECK_SYMBOL (symbol);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4729
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4730 if (specpdl_depth_counter >= specpdl_size)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4731 grow_specpdl ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4732
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4733 buffer_local = symbol_value_buffer_local_info (symbol, current_buffer);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4734 if (buffer_local == 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4735 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4736 specpdl_ptr->old_value = find_symbol_value (symbol);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4737 specpdl_ptr->func = 0; /* Handled specially by unbind_to */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4738 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4739 else if (buffer_local > 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4740 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4741 /* Already buffer-local */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4742 specpdl_ptr->old_value = noseeum_cons (Fcurrent_buffer (),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4743 find_symbol_value (symbol));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4744 specpdl_ptr->func = specbind_unwind_local;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4745 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4746 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4747 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4748 /* About to become buffer-local */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4749 specpdl_ptr->old_value = Fcurrent_buffer ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4750 specpdl_ptr->func = specbind_unwind_wasnt_local;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4751 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4752
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4753 specpdl_ptr->symbol = symbol;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4754 specpdl_ptr++;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4755 specpdl_depth_counter++;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4756
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4757 Fset (symbol, value);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4758 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4759
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4760 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4761 record_unwind_protect (Lisp_Object (*function) (Lisp_Object arg),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4762 Lisp_Object arg)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4763 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4764 if (specpdl_depth_counter >= specpdl_size)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4765 grow_specpdl ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4766 specpdl_ptr->func = function;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4767 specpdl_ptr->symbol = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4768 specpdl_ptr->old_value = arg;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4769 specpdl_ptr++;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4770 specpdl_depth_counter++;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4771 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4772
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4773 extern int check_sigio (void);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4774
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4775 Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4776 unbind_to (int count, Lisp_Object value)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4777 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4778 int quitf;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4779 struct gcpro gcpro1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4780
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4781 GCPRO1 (value);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4782
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4783 check_quit (); /* make Vquit_flag accurate */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4784 quitf = !NILP (Vquit_flag);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4785 Vquit_flag = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4786
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4787 while (specpdl_depth_counter != count)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4788 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4789 Lisp_Object ovalue;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4790 --specpdl_ptr;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4791 --specpdl_depth_counter;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4792
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4793 ovalue = specpdl_ptr->old_value;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4794 if (specpdl_ptr->func != 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4795 /* An unwind-protect */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4796 (*specpdl_ptr->func) (ovalue);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4797 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4798 Fset (specpdl_ptr->symbol, ovalue);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4799
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4800 #ifndef EXCEEDINGLY_QUESTIONABLE_CODE
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4801 /* There should never be anything here for us to remove.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4802 If so, it indicates a logic error in Emacs. Catches
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4803 should get removed when a throw or signal occurs, or
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4804 when a catch or condition-case exits normally. But
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4805 it's too dangerous to just remove this code. --ben */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4806
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4807 /* Furthermore, this code is not in FSFmacs!!!
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4808 Braino on mly's part? */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4809 /* If we're unwound past the pdlcount of a catch frame,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4810 that catch can't possibly still be valid. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4811 while (catchlist && catchlist->pdlcount > specpdl_depth_counter)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4812 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4813 catchlist = catchlist->next;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4814 /* Don't mess with gcprolist, backtrace_list here */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4815 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4816 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4817 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4818 if (quitf)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4819 Vquit_flag = Qt;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4820
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4821 UNGCPRO;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4822
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4823 return (value);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4824 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4825
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4826
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4827 int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4828 specpdl_depth (void)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4829 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4830 return (specpdl_depth_counter);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4831 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4832
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4833
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4834 /* Get the value of symbol's global binding, even if that binding is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4835 not now dynamically visible. May return Qunbound or magic values. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4836
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4837 Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4838 top_level_value (Lisp_Object symbol)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4839 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4840 REGISTER struct specbinding *ptr = specpdl;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4841
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4842 CHECK_SYMBOL (symbol);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4843 for (; ptr != specpdl_ptr; ptr++)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4844 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4845 if (EQ (ptr->symbol, symbol))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4846 return ptr->old_value;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4847 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4848 return XSYMBOL (symbol)->value;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4849 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4850
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4851 #if 0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4852
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4853 Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4854 top_level_set (Lisp_Object symbol, Lisp_Object newval)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4855 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4856 REGISTER struct specbinding *ptr = specpdl;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4857
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4858 CHECK_SYMBOL (symbol);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4859 for (; ptr != specpdl_ptr; ptr++)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4860 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4861 if (EQ (ptr->symbol, symbol))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4862 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4863 ptr->old_value = newval;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4864 return newval;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4865 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4866 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4867 return Fset (symbol, newval);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4868 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4869
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4870 #endif /* 0 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4871
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4872
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4873 /**********************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4874 /* Backtraces */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4875 /**********************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4876
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4877 DEFUN ("backtrace-debug", Fbacktrace_debug, Sbacktrace_debug, 2, 2, 0 /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4878 Set the debug-on-exit flag of eval frame LEVEL levels down to FLAG.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4879 The debugger is entered when that frame exits, if the flag is non-nil.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4880 */ )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4881 (level, flag)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4882 Lisp_Object level, flag;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4883 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4884 REGISTER struct backtrace *backlist = backtrace_list;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4885 REGISTER int i;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4886
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4887 CHECK_INT (level);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4888
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4889 for (i = 0; backlist && i < XINT (level); i++)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4890 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4891 backlist = backlist->next;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4892 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4893
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4894 if (backlist)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4895 backlist->debug_on_exit = !NILP (flag);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4896
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4897 return flag;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4898 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4899
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4900 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4901 backtrace_specials (int speccount, int speclimit, Lisp_Object stream)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4902 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4903 int printing_bindings = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4904
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4905 for (; speccount > speclimit; speccount--)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4906 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4907 if (specpdl[speccount - 1].func == 0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4908 || specpdl[speccount - 1].func == specbind_unwind_local
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4909 || specpdl[speccount - 1].func == specbind_unwind_wasnt_local)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4910 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4911 write_c_string (((!printing_bindings) ? " # bind (" : " "),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4912 stream);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4913 Fprin1 (specpdl[speccount - 1].symbol, stream);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4914 printing_bindings = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4915 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4916 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4917 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4918 if (printing_bindings) write_c_string (")\n", stream);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4919 write_c_string (" # (unwind-protect ...)\n", stream);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4920 printing_bindings = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4921 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4922 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4923 if (printing_bindings) write_c_string (")\n", stream);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4924 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4925
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4926 DEFUN ("backtrace", Fbacktrace, Sbacktrace, 0, 2, "" /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4927 Print a trace of Lisp function calls currently active.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4928 Option arg STREAM specifies the output stream to send the backtrace to,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4929 and defaults to the value of `standard-output'. Optional second arg
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4930 DETAILED means show places where currently active variable bindings,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4931 catches, condition-cases, and unwind-protects were made as well as
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4932 function calls.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4933 */ )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4934 (stream, detailed)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4935 Lisp_Object stream, detailed;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4936 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4937 struct backtrace *backlist = backtrace_list;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4938 struct catchtag *catches = catchlist;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4939 int speccount = specpdl_depth_counter;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4940
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4941 int old_nl = print_escape_newlines;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4942 int old_pr = print_readably;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4943 Lisp_Object old_level = Vprint_level;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4944 Lisp_Object oiq = Vinhibit_quit;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4945 struct gcpro gcpro1, gcpro2;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4946
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4947 /* We can't allow quits in here because that could cause the values
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4948 of print_readably and print_escape_newlines to get screwed up.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4949 Normally we would use a record_unwind_protect but that would
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4950 screw up the functioning of this function. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4951 Vinhibit_quit = Qt;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4952
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4953 entering_debugger = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4954
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4955 Vprint_level = make_int (3);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4956 print_readably = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4957 print_escape_newlines = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4958
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4959 GCPRO2 (stream, old_level);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4960
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4961 if (NILP (stream))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4962 stream = Vstandard_output;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4963 if (!noninteractive && (NILP (stream) || EQ (stream, Qt)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4964 stream = Fselected_frame (Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4965
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4966 for (;;)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4967 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4968 if (!NILP (detailed) && catches && catches->backlist == backlist)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4969 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4970 int catchpdl = catches->pdlcount;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4971 if (specpdl[catchpdl].func == condition_case_unwind
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4972 && speccount > catchpdl)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4973 /* This is a condition-case catchpoint */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4974 catchpdl = catchpdl + 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4975
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4976 backtrace_specials (speccount, catchpdl, stream);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4977
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4978 speccount = catches->pdlcount;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4979 if (catchpdl == speccount)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4980 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4981 write_c_string (" # (catch ", stream);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4982 Fprin1 (catches->tag, stream);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4983 write_c_string (" ...)\n", stream);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4984 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4985 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4986 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4987 write_c_string (" # (condition-case ... . ", stream);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4988 Fprin1 (Fcdr (Fcar (catches->tag)), stream);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4989 write_c_string (")\n", stream);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4990 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4991 catches = catches->next;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4992 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4993 else if (!backlist)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4994 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4995 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4996 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4997 if (!NILP (detailed) && backlist->pdlcount < speccount)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4998 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4999 backtrace_specials (speccount, backlist->pdlcount, stream);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5000 speccount = backlist->pdlcount;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5001 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5002 write_c_string (((backlist->debug_on_exit) ? "* " : " "),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5003 stream);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5004 if (backlist->nargs == UNEVALLED)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5005 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5006 Fprin1 (Fcons (*backlist->function, *backlist->args), stream);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5007 write_c_string ("\n", stream); /* from FSFmacs 19.30 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5008 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5009 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5010 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5011 Lisp_Object tem = *backlist->function;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5012 Fprin1 (tem, stream); /* This can QUIT */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5013 write_c_string ("(", stream);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5014 if (backlist->nargs == MANY)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5015 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5016 int i;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5017 Lisp_Object tail = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5018 struct gcpro ngcpro1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5019
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5020 NGCPRO1 (tail);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5021 for (tail = *backlist->args, i = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5022 !NILP (tail);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5023 tail = Fcdr (tail), i++)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5024 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5025 if (i != 0) write_c_string (" ", stream);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5026 Fprin1 (Fcar (tail), stream);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5027 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5028 NUNGCPRO;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5029 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5030 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5031 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5032 int i;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5033 for (i = 0; i < backlist->nargs; i++)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5034 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5035 if (i != 0) write_c_string (" ", stream);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5036 Fprin1 (backlist->args[i], stream);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5037 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5038 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5039 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5040 write_c_string (")\n", stream);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5041 backlist = backlist->next;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5042 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5043 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5044 Vprint_level = old_level;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5045 print_readably = old_pr;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5046 print_escape_newlines = old_nl;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5047 UNGCPRO;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5048 Vinhibit_quit = oiq;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5049 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5050 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5051
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5052
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5053 DEFUN ("backtrace-frame", Fbacktrace_frame, Sbacktrace_frame, 1, 1, "" /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5054 Return the function and arguments N frames up from current execution point.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5055 If that frame has not evaluated the arguments yet (or is a special form),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5056 the value is (nil FUNCTION ARG-FORMS...).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5057 If that frame has evaluated its arguments and called its function already,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5058 the value is (t FUNCTION ARG-VALUES...).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5059 A &rest arg is represented as the tail of the list ARG-VALUES.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5060 FUNCTION is whatever was supplied as car of evaluated list,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5061 or a lambda expression for macro calls.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5062 If N is more than the number of frames, the value is nil.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5063 */ )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5064 (nframes)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5065 Lisp_Object nframes;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5066 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5067 REGISTER struct backtrace *backlist = backtrace_list;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5068 REGISTER int i;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5069 Lisp_Object tem;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5070
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5071 CHECK_NATNUM (nframes);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5072
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5073 /* Find the frame requested. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5074 for (i = XINT (nframes); backlist && (i-- > 0);)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5075 backlist = backlist->next;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5076
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5077 if (!backlist)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5078 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5079 if (backlist->nargs == UNEVALLED)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5080 return Fcons (Qnil, Fcons (*backlist->function, *backlist->args));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5081 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5082 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5083 if (backlist->nargs == MANY)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5084 tem = *backlist->args;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5085 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5086 tem = Flist (backlist->nargs, backlist->args);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5087
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5088 return Fcons (Qt, Fcons (*backlist->function, tem));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5089 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5090 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5091
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5092
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5093 /**********************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5094 /* Warnings */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5095 /**********************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5096
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5097 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5098 warn_when_safe_lispobj (Lisp_Object class, Lisp_Object level,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5099 Lisp_Object obj)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5100 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5101 obj = list1 (list3 (class, level, obj));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5102 if (NILP (Vpending_warnings))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5103 Vpending_warnings = Vpending_warnings_tail = obj;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5104 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5105 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5106 Fsetcdr (Vpending_warnings_tail, obj);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5107 Vpending_warnings_tail = obj;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5108 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5109 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5110
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5111 /* #### This should probably accept Lisp objects; but then we have
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5112 to make sure that Feval() isn't called, since it might not be safe.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5113
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5114 An alternative approach is to just pass some non-string type of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5115 Lisp Object to warn_when_safe_lispobj(); `prin1-to-string' will
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5116 automatically be called when it is safe to do so. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5117
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5118 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5119 warn_when_safe (Lisp_Object class, Lisp_Object level, CONST char *fmt, ...)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5120 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5121 Lisp_Object obj;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5122 va_list args;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5123
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5124 va_start (args, fmt);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5125 obj = emacs_doprnt_string_va ((CONST Bufbyte *) GETTEXT (fmt),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5126 Qnil, -1, args);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5127 va_end (args);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5128
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5129 warn_when_safe_lispobj (class, level, obj);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5130 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5131
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5132
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5133
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5134
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5135 /**********************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5136 /* Initialization */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5137 /**********************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5138
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5139 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5140 syms_of_eval (void)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5141 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5142 defsymbol (&Qinhibit_quit, "inhibit-quit");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5143 defsymbol (&Qautoload, "autoload");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5144 defsymbol (&Qdebug_on_error, "debug-on-error");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5145 defsymbol (&Qstack_trace_on_error, "stack-trace-on-error");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5146 defsymbol (&Qdebug_on_signal, "debug-on-signal");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5147 defsymbol (&Qstack_trace_on_signal, "stack-trace-on-signal");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5148 defsymbol (&Qdebugger, "debugger");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5149 defsymbol (&Qmacro, "macro");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5150 defsymbol (&Qand_rest, "&rest");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5151 defsymbol (&Qand_optional, "&optional");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5152 /* Note that the process code also uses Qexit */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5153 defsymbol (&Qexit, "exit");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5154 defsymbol (&Qsetq, "setq");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5155 defsymbol (&Qinteractive, "interactive");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5156 defsymbol (&Qcommandp, "commandp");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5157 defsymbol (&Qdefun, "defun");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5158 defsymbol (&Qprogn, "progn");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5159 defsymbol (&Qvalues, "values");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5160 defsymbol (&Qdisplay_warning, "display-warning");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5161 defsymbol (&Qrun_hooks, "run-hooks");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5162
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5163 defsubr (&Sor);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5164 defsubr (&Sand);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5165 defsubr (&Sif);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5166 defsubr (&Scond);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5167 defsubr (&Sprogn);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5168 defsubr (&Sprog1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5169 defsubr (&Sprog2);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5170 defsubr (&Ssetq);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5171 defsubr (&Squote);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5172 defsubr (&Sfunction);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5173 defsubr (&Sdefun);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5174 defsubr (&Sdefmacro);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5175 defsubr (&Sdefvar);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5176 defsubr (&Sdefconst);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5177 defsubr (&Suser_variable_p);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5178 defsubr (&Slet);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5179 defsubr (&SletX);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5180 defsubr (&Swhile);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5181 defsubr (&Smacroexpand_internal);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5182 defsubr (&Scatch);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5183 defsubr (&Sthrow);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5184 defsubr (&Sunwind_protect);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5185 defsubr (&Scondition_case);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5186 defsubr (&Scall_with_condition_handler);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5187 defsubr (&Ssignal);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5188 defsubr (&Sinteractive_p);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5189 defsubr (&Scommandp);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5190 defsubr (&Scommand_execute);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5191 defsubr (&Sautoload);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5192 defsubr (&Seval);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5193 defsubr (&Sapply);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5194 defsubr (&Sfuncall);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5195 defsubr (&Sfunction_min_args);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5196 defsubr (&Sfunction_max_args);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5197 defsubr (&Srun_hooks);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5198 defsubr (&Srun_hook_with_args);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5199 defsubr (&Srun_hook_with_args_until_success);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5200 defsubr (&Srun_hook_with_args_until_failure);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5201 defsubr (&Sfetch_bytecode);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5202 defsubr (&Sbacktrace_debug);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5203 defsubr (&Sbacktrace);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5204 defsubr (&Sbacktrace_frame);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5205 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5206
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5207 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5208 reinit_eval (void)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5209 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5210 specpdl_ptr = specpdl;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5211 specpdl_depth_counter = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5212 catchlist = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5213 Vcondition_handlers = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5214 backtrace_list = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5215 Vquit_flag = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5216 debug_on_next_call = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5217 lisp_eval_depth = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5218 entering_debugger = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5219 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5220
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5221 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5222 vars_of_eval (void)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5223 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5224 DEFVAR_INT ("max-specpdl-size", &max_specpdl_size /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5225 Limit on number of Lisp variable bindings & unwind-protects before error.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5226 */ );
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5227
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5228 DEFVAR_INT ("max-lisp-eval-depth", &max_lisp_eval_depth /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5229 Limit on depth in `eval', `apply' and `funcall' before error.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5230 This limit is to catch infinite recursions for you before they cause
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5231 actual stack overflow in C, which would be fatal for Emacs.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5232 You can safely make it considerably larger than its default value,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5233 if that proves inconveniently small.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5234 */ );
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5235
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5236 DEFVAR_LISP ("quit-flag", &Vquit_flag /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5237 Non-nil causes `eval' to abort, unless `inhibit-quit' is non-nil.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5238 Typing C-G sets `quit-flag' non-nil, regardless of `inhibit-quit'.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5239 */ );
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5240 Vquit_flag = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5241
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5242 DEFVAR_LISP ("inhibit-quit", &Vinhibit_quit /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5243 Non-nil inhibits C-g quitting from happening immediately.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5244 Note that `quit-flag' will still be set by typing C-g,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5245 so a quit will be signalled as soon as `inhibit-quit' is nil.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5246 To prevent this happening, set `quit-flag' to nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5247 before making `inhibit-quit' nil. The value of `inhibit-quit' is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5248 ignored if a critical quit is requested by typing control-shift-G in
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5249 an X frame.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5250 */ );
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5251 Vinhibit_quit = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5252
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5253 DEFVAR_LISP ("stack-trace-on-error", &Vstack_trace_on_error /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5254 *Non-nil means automatically display a backtrace buffer
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5255 after any error that is not handled by a `condition-case'.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5256 If the value is a list, an error only means to display a backtrace
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5257 if one of its condition symbols appears in the list.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5258 See also variable `stack-trace-on-signal'.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5259 */ );
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5260 Vstack_trace_on_error = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5261
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5262 DEFVAR_LISP ("stack-trace-on-signal", &Vstack_trace_on_signal /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5263 *Non-nil means automatically display a backtrace buffer
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5264 after any error that is signalled, whether or not it is handled by
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5265 a `condition-case'.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5266 If the value is a list, an error only means to display a backtrace
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5267 if one of its condition symbols appears in the list.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5268 See also variable `stack-trace-on-error'.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5269 */ );
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5270 Vstack_trace_on_signal = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5271
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5272 DEFVAR_LISP ("debug-on-error", &Vdebug_on_error /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5273 *Non-nil means enter debugger if an unhandled error is signalled.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5274 The debugger will not be entered if the error is handled by
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5275 a `condition-case'.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5276 If the value is a list, an error only means to enter the debugger
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5277 if one of its condition symbols appears in the list.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5278 See also variables `debug-on-quit' and `debug-on-signal'.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5279 */ );
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5280 Vdebug_on_error = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5281
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5282 DEFVAR_LISP ("debug-on-signal", &Vdebug_on_signal /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5283 *Non-nil means enter debugger if an error is signalled.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5284 The debugger will be entered whether or not the error is handled by
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5285 a `condition-case'.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5286 If the value is a list, an error only means to enter the debugger
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5287 if one of its condition symbols appears in the list.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5288 See also variable `debug-on-quit'.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5289 */ );
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5290 Vdebug_on_signal = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5291
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5292 DEFVAR_BOOL ("debug-on-quit", &debug_on_quit /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5293 *Non-nil means enter debugger if quit is signalled (C-G, for example).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5294 Does not apply if quit is handled by a `condition-case'. Entering the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5295 debugger can also be achieved at any time (for X11 console) by typing
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5296 control-shift-G to signal a critical quit.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5297 */ );
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5298 debug_on_quit = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5299
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5300 DEFVAR_BOOL ("debug-on-next-call", &debug_on_next_call /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5301 Non-nil means enter debugger before next `eval', `apply' or `funcall'.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5302 */ );
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5303
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5304 DEFVAR_LISP ("debugger", &Vdebugger /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5305 Function to call to invoke debugger.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5306 If due to frame exit, args are `exit' and the value being returned;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5307 this function's value will be returned instead of that.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5308 If due to error, args are `error' and a list of the args to `signal'.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5309 If due to `apply' or `funcall' entry, one arg, `lambda'.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5310 If due to `eval' entry, one arg, t.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5311 */ );
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5312 Vdebugger = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5313
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5314 preparing_for_armageddon = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5315
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5316 staticpro (&Vpending_warnings);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5317 Vpending_warnings = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5318 Vpending_warnings_tail = Qnil; /* no need to protect this */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5319
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5320 in_warnings = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5321
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5322 staticpro (&Vautoload_queue);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5323 Vautoload_queue = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5324
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5325 staticpro (&Vcondition_handlers);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5326
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5327 staticpro (&Vcurrent_warning_class);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5328 Vcurrent_warning_class = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5329
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5330 staticpro (&Vcurrent_error_state);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5331 Vcurrent_error_state = Qnil; /* errors as normal */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5332
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5333 Qunbound_suspended_errors_tag = make_opaque_long (0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5334 staticpro (&Qunbound_suspended_errors_tag);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5335
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5336 specpdl_size = 50;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5337 specpdl_depth_counter = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5338 specpdl = (struct specbinding *)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5339 xmalloc (specpdl_size * sizeof (struct specbinding));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5340 /* XEmacs change: increase these values. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5341 max_specpdl_size = 3000;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5342 max_lisp_eval_depth = 500;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5343 throw_level = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5344
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5345 reinit_eval ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5346 }