annotate src/eval.c @ 308:33bdb3d4b97f r21-0b52

Import from CVS: tag r21-0b52
author cvs
date Mon, 13 Aug 2007 10:42:44 +0200
parents 70ad99077275
children 851ff35f137f
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 #include "commands.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
32 #include "backtrace.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
33 #include "bytecode.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
34 #include "buffer.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
35 #include "console.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
36 #include "opaque.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
37
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
38 struct backtrace *backtrace_list;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
39
116
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 94
diff changeset
40 /* Note you must always fill all of the fields in a backtrace structure
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 94
diff changeset
41 before pushing them on the backtrace_list. The profiling code depends
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 94
diff changeset
42 on this. */
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 94
diff changeset
43
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 94
diff changeset
44 #define PUSH_BACKTRACE(bt) \
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 94
diff changeset
45 do { (bt).next = backtrace_list; backtrace_list = &(bt); } while (0)
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 94
diff changeset
46
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 94
diff changeset
47 #define POP_BACKTRACE(bt) \
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 94
diff changeset
48 do { backtrace_list = (bt).next; } while (0)
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 94
diff changeset
49
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
50 /* This is the list of current catches (and also condition-cases).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
51 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
52 list. Catches are created by declaring a 'struct catchtag'
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
53 locally, filling the .TAG field in with the tag, and doing
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
54 a setjmp() on .JMP. Fthrow() will store the value passed
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
55 to it in .VAL and longjmp() back to .JMP, back to the function
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
56 that established the catch. This will always be either
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
57 internal_catch() (catches established internally or through
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
58 `catch') or condition_case_1 (condition-cases established
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
59 internally or through `condition-case').
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
60
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
61 The catchtag also records the current position in the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
62 call stack (stored in BACKTRACE_LIST), the current position
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
63 in the specpdl stack (used for variable bindings and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
64 unwind-protects), the value of LISP_EVAL_DEPTH, and the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
65 current position in the GCPRO stack. All of these are
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
66 restored by Fthrow().
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
67 */
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
68
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
69 struct catchtag *catchlist;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
70
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
71 Lisp_Object Qautoload, Qmacro, Qexit;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
72 Lisp_Object Qinteractive, Qcommandp, Qdefun, Qprogn, Qvalues;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
73 Lisp_Object Vquit_flag, Vinhibit_quit;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
74 Lisp_Object Qand_rest, Qand_optional;
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
75 Lisp_Object Qdebug_on_error, Qstack_trace_on_error;
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
76 Lisp_Object Qdebug_on_signal, Qstack_trace_on_signal;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
77 Lisp_Object Qdebugger;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
78 Lisp_Object Qinhibit_quit;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
79 Lisp_Object Qrun_hooks;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
80 Lisp_Object Qsetq;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
81 Lisp_Object Qdisplay_warning;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
82 Lisp_Object Vpending_warnings, Vpending_warnings_tail;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
83
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
84 /* Records whether we want errors to occur. This will be a boolean,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
85 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
86 throw to Qunbound_suspended_errors_tag.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
87
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
88 See call_with_suspended_errors(). */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
89 Lisp_Object Vcurrent_error_state;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
90
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
91 /* Current warning class when warnings occur, or nil for no warnings.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
92 Only meaningful when Vcurrent_error_state is non-nil.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
93 See call_with_suspended_errors(). */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
94 Lisp_Object Vcurrent_warning_class;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
95
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
96 /* Special catch tag used in call_with_suspended_errors(). */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
97 Lisp_Object Qunbound_suspended_errors_tag;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
98
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
99 /* 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
100 or do other non-essential stuff. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
101 int preparing_for_armageddon;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
102
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
103 /* Non-nil means record all fset's and provide's, to be undone
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
104 if the file being autoloaded is not fully loaded.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
105 They are recorded by being consed onto the front of Vautoload_queue:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
106 (FUN . ODEF) for a defun, (OFEATURES . nil) for a provide. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
107
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
108 Lisp_Object Vautoload_queue;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
109
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
110 /* Current number of specbindings allocated in specpdl. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
111 static int specpdl_size;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
112
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
113 /* Pointer to beginning of specpdl. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
114 struct specbinding *specpdl;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
115
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
116 /* Pointer to first unused element in specpdl. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
117 struct specbinding *specpdl_ptr;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
118
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
119 /* specpdl_ptr - specpdl. Callers outside this file should use
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
120 * specpdl_depth () function-call */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
121 static int specpdl_depth_counter;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
122
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
123 /* Maximum size allowed for specpdl allocation */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
124 int max_specpdl_size;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
125
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
126 /* Depth in Lisp evaluations and function calls. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
127 int lisp_eval_depth;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
128
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
129 /* Maximum allowed depth in Lisp evaluations and function calls. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
130 int max_lisp_eval_depth;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
131
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
132 /* Nonzero means enter debugger before next function call */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
133 static int debug_on_next_call;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
134
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
135 /* List of conditions (non-nil atom means all) which cause a backtrace
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
136 if an error is handled by the command loop's error handler. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
137 Lisp_Object Vstack_trace_on_error;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
138
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
139 /* List of conditions (non-nil atom means all) which enter the debugger
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
140 if an error is handled by the command loop's error handler. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
141 Lisp_Object Vdebug_on_error;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
142
163
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 153
diff changeset
143 /* List of conditions and regexps specifying error messages which
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 153
diff changeset
144 do not enter the debugger even if Vdebug_on_error says they should. */
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 153
diff changeset
145 Lisp_Object Vdebug_ignored_errors;
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 153
diff changeset
146
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
147 /* List of conditions (non-nil atom means all) which cause a backtrace
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
148 if any error is signalled. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
149 Lisp_Object Vstack_trace_on_signal;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
150
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
151 /* List of conditions (non-nil atom means all) which enter the debugger
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
152 if any error is signalled. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
153 Lisp_Object Vdebug_on_signal;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
154
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
155 /* Nonzero means enter debugger if a quit signal
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
156 is handled by the command loop's error handler.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
157
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
158 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
159 But, eval.c temporarily uses the second bit of this variable to indicate
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
160 that a critical_quit is in progress. The second bit is reset immediately
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
161 after it is processed in signal_call_debugger(). */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
162 int debug_on_quit;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
163
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
164 #if 0 /* FSFmacs */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
165 /* entering_debugger is basically equivalent */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
166 /* The value of num_nonmacro_input_chars as of the last time we
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
167 started to enter the debugger. If we decide to enter the debugger
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
168 again when this is still equal to num_nonmacro_input_chars, then we
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
169 know that the debugger itself has an error, and we should just
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
170 signal the error instead of entering an infinite loop of debugger
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
171 invocations. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
172 int when_entered_debugger;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
173 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
174
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
175 /* Nonzero means we are trying to enter the debugger.
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
176 This is to prevent recursive attempts.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
177 Cleared by the debugger calling Fbacktrace */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
178 static int entering_debugger;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
179
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
180 /* Function to call to invoke the debugger */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
181 Lisp_Object Vdebugger;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
182
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
183 /* Chain of condition handlers currently in effect.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
184 The elements of this chain are contained in the stack frames
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
185 of Fcondition_case and internal_condition_case.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
186 When an error is signaled (by calling Fsignal, below),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
187 this chain is searched for an element that applies.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
188
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
189 Each element of this list is one of the following:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
190
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
191 A list of a handler function and possibly args to pass to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
192 the function. This is a handler established with
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
193 `call-with-condition-handler' (q.v.).
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 Qt.
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(). All errors are
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
198 trapped; the debugger is not invoked even if
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
199 `debug-on-error' was set.
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 Qerror.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
202 This is a special condition-case handler established
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
203 by C code with condition_case_1(). It is like Qt
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
204 except that the debugger is invoked normally if it is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
205 called for.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
206
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
207 A list whose car is Qunbound and whose cdr is a list
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
208 of lists (CONDITION-NAME BODY ...) exactly as in
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
209 `condition-case'. This is a normal `condition-case'
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
210 handler.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
211
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
212 Note that in all cases *except* the first, there is a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
213 corresponding catch, whose TAG is the value of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
214 Vcondition_handlers just after the handler data just
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
215 described is pushed onto it. The reason is that
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
216 `condition-case' handlers need to throw back to the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
217 place where the handler was installed before invoking
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
218 it, while `call-with-condition-handler' handlers are
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
219 invoked in the environment that `signal' was invoked
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
220 in.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
221 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
222 static Lisp_Object Vcondition_handlers;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
223
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
224 /* Used for error catching purposes by throw_or_bomb_out */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
225 static int throw_level;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
226
74
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 70
diff changeset
227 static Lisp_Object primitive_funcall (lisp_fn_t fn, int nargs,
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
228 Lisp_Object args[]);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
229
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
230
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
231 /**********************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
232 /* The subr and compiled-function types */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
233 /**********************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
234
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
235 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
236 print_subr (Lisp_Object obj, Lisp_Object printcharfun, int escapeflag)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
237 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
238 struct Lisp_Subr *subr = XSUBR (obj);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
239
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
240 if (print_readably)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
241 error ("printing unreadable object #<subr %s>",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
242 subr_name (subr));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
243
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
244 write_c_string (((subr->max_args == UNEVALLED)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
245 ? "#<special-form "
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
246 : "#<subr "),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
247 printcharfun);
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
248
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
249 write_c_string (subr_name (subr), printcharfun);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
250 write_c_string (((subr->prompt) ? " (interactive)>" : ">"),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
251 printcharfun);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
252 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
253
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
254 DEFINE_LRECORD_IMPLEMENTATION ("subr", subr,
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
255 this_one_is_unmarkable, print_subr, 0, 0, 0,
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
256 struct Lisp_Subr);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
257
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
258 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
259 mark_compiled_function (Lisp_Object obj, void (*markobj) (Lisp_Object))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
260 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
261 struct Lisp_Compiled_Function *b = XCOMPILED_FUNCTION (obj);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
262
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
263 ((markobj) (b->bytecodes));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
264 ((markobj) (b->arglist));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
265 ((markobj) (b->doc_and_interactive));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
266 #ifdef COMPILED_FUNCTION_ANNOTATION_HACK
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
267 ((markobj) (b->annotated));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
268 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
269 /* tail-recurse on constants */
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 167
diff changeset
270 return b->constants;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
271 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
272
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
273 static int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
274 compiled_function_equal (Lisp_Object o1, Lisp_Object o2, int depth)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
275 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
276 struct Lisp_Compiled_Function *b1 = XCOMPILED_FUNCTION (o1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
277 struct Lisp_Compiled_Function *b2 = XCOMPILED_FUNCTION (o2);
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
278 return
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
279 (b1->flags.documentationp == b2->flags.documentationp &&
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
280 b1->flags.interactivep == b2->flags.interactivep &&
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
281 b1->flags.domainp == b2->flags.domainp && /* I18N3 */
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
282 internal_equal (b1->bytecodes, b2->bytecodes, depth + 1) &&
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
283 internal_equal (b1->constants, b2->constants, depth + 1) &&
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
284 internal_equal (b1->arglist, b2->arglist, depth + 1) &&
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
285 internal_equal (b1->doc_and_interactive,
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
286 b2->doc_and_interactive, depth + 1));
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
287 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
288
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
289 static unsigned long
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
290 compiled_function_hash (Lisp_Object obj, int depth)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
291 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
292 struct Lisp_Compiled_Function *b = XCOMPILED_FUNCTION (obj);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
293 return HASH3 ((b->flags.documentationp << 2) +
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
294 (b->flags.interactivep << 1) +
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
295 b->flags.domainp,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
296 internal_hash (b->bytecodes, depth + 1),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
297 internal_hash (b->constants, depth + 1));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
298 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
299
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
300 DEFINE_BASIC_LRECORD_IMPLEMENTATION ("compiled-function", compiled_function,
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
301 mark_compiled_function,
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
302 print_compiled_function, 0,
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
303 compiled_function_equal,
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
304 compiled_function_hash,
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
305 struct Lisp_Compiled_Function);
0
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 /* Entering the debugger */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
309 /**********************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
310
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
311 /* unwind-protect used by call_debugger() to restore the value of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
312 enterring_debugger. (We cannot use specbind() because the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
313 variable is not Lisp-accessible.) */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
314
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
315 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
316 restore_entering_debugger (Lisp_Object arg)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
317 {
179
9ad43877534d Import from CVS: tag r20-3b16
cvs
parents: 173
diff changeset
318 entering_debugger = ! NILP (arg);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
319 return arg;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
320 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
321
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
322 /* Actually call the debugger. ARG is a list of args that will be
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
323 passed to the debugger function, as follows;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
324
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
325 If due to frame exit, args are `exit' and the value being returned;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
326 this function's value will be returned instead of that.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
327 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
328 If due to `apply' or `funcall' entry, one arg, `lambda'.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
329 If due to `eval' entry, one arg, t.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
330
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 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
334 call_debugger_259 (Lisp_Object arg)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
335 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
336 return apply1 (Vdebugger, arg);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
337 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
338
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
339 /* Call the debugger, doing some encapsulation. We make sure we have
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
340 some room on the eval and specpdl stacks, and bind enterring_debugger
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
341 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
342 when enterring the debugger (e.g. the value of `debugger' is invalid),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
343 so that the debugger will not be recursively entered if debug-on-error
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
344 is set. (Otherwise, XEmacs would infinitely recurse, attempting to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
345 enter the debugger.) enterring_debugger gets reset to 0 as soon
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
346 as a backtrace is displayed, so that further errors can indeed be
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
347 handled normally.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
348
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
349 We also establish a catch for 'debugger. If the debugger function
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
350 throws to this instead of returning a value, it means that the user
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
351 pressed 'c' (pretend like the debugger was never entered). The
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
352 function then returns Qunbound. (If the user pressed 'r', for
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
353 return a value, then the debugger function returns normally with
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
354 this value.)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
355
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
356 The difference between 'c' and 'r' is as follows:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
357
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
358 debug-on-call:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
359 No difference. The call proceeds as normal.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
360 debug-on-exit:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
361 With 'r', the specified value is returned as the function's
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
362 return value. With 'c', the value that would normally be
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
363 returned is returned.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
364 signal:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
365 With 'r', the specified value is returned as the return
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
366 value of `signal'. (This is the only time that `signal'
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
367 can return, instead of making a non-local exit.) With `c',
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
368 `signal' will continue looking for handlers as if the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
369 debugger was never entered, and will probably end up
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
370 throwing to a handler or to top-level.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
371 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
372
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
373 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
374 call_debugger (Lisp_Object arg)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
375 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
376 int threw;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
377 Lisp_Object val;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
378 int speccount;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
379
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
380 if (lisp_eval_depth + 20 > max_lisp_eval_depth)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
381 max_lisp_eval_depth = lisp_eval_depth + 20;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
382 if (specpdl_size + 40 > max_specpdl_size)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
383 max_specpdl_size = specpdl_size + 40;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
384 debug_on_next_call = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
385
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
386 speccount = specpdl_depth_counter;
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
387 record_unwind_protect (restore_entering_debugger,
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
388 (entering_debugger ? Qt : Qnil));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
389 entering_debugger = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
390 val = internal_catch (Qdebugger, call_debugger_259, arg, &threw);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
391
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
392 return unbind_to (speccount, ((threw)
179
9ad43877534d Import from CVS: tag r20-3b16
cvs
parents: 173
diff changeset
393 ? Qunbound /* Not returning a value */
9ad43877534d Import from CVS: tag r20-3b16
cvs
parents: 173
diff changeset
394 : val));
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
395 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
396
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
397 /* Called when debug-on-exit behavior is called for. Enter the debugger
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
398 with the appropriate args for this. VAL is the exit value that is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
399 about to be returned. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
400
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
401 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
402 do_debug_on_exit (Lisp_Object val)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
403 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
404 /* This is falsified by call_debugger */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
405 Lisp_Object v = call_debugger (list2 (Qexit, val));
94
1040fe1366ac Import from CVS: tag xemacs-20-0f2
cvs
parents: 74
diff changeset
406
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 167
diff changeset
407 return !UNBOUNDP (v) ? v : val;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
408 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
409
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
410 /* Called when debug-on-call behavior is called for. Enter the debugger
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
411 with the appropriate args for this. VAL is either t for a call
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
412 through `eval' or 'lambda for a call through `funcall'.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
413
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
414 #### The differentiation here between EVAL and FUNCALL is bogus.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
415 FUNCALL can be defined as
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
416
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
417 (defmacro func (fun &rest args)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
418 (cons (eval fun) args))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
419
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
420 and should be treated as such.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
421 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
422
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
423 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
424 do_debug_on_call (Lisp_Object code)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
425 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
426 debug_on_next_call = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
427 backtrace_list->debug_on_exit = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
428 call_debugger (list1 (code));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
429 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
430
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
431 /* LIST is the value of one of the variables `debug-on-error',
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
432 `debug-on-signal', `stack-trace-on-error', or `stack-trace-on-signal',
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
433 and CONDITIONS is the list of error conditions associated with
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
434 the error being signalled. This returns non-nil if LIST
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
435 matches CONDITIONS. (A nil value for LIST does not match
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
436 CONDITIONS. A non-list value for LIST does match CONDITIONS.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
437 A list matches CONDITIONS when one of the symbols in LIST is the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
438 same as one of the symbols in CONDITIONS.) */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
439
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
440 static int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
441 wants_debugger (Lisp_Object list, Lisp_Object conditions)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
442 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
443 if (NILP (list))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
444 return 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
445 if (! CONSP (list))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
446 return 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
447
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
448 while (CONSP (conditions))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
449 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
450 Lisp_Object this, tail;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
451 this = XCAR (conditions);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
452 for (tail = list; CONSP (tail); tail = XCDR (tail))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
453 if (EQ (XCAR (tail), this))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
454 return 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
455 conditions = XCDR (conditions);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
456 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
457 return 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
458 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
459
163
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 153
diff changeset
460
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 153
diff changeset
461 /* Return 1 if an error with condition-symbols CONDITIONS,
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 153
diff changeset
462 and described by SIGNAL-DATA, should skip the debugger
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 153
diff changeset
463 according to debugger-ignore-errors. */
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 153
diff changeset
464
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 153
diff changeset
465 static int
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 153
diff changeset
466 skip_debugger (Lisp_Object conditions, Lisp_Object data)
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 153
diff changeset
467 {
167
85ec50267440 Import from CVS: tag r20-3b10
cvs
parents: 165
diff changeset
468 /* This function can GC */
163
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 153
diff changeset
469 Lisp_Object tail;
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 153
diff changeset
470 int first_string = 1;
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 167
diff changeset
471 Lisp_Object error_message = Qnil;
163
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 153
diff changeset
472
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 153
diff changeset
473 for (tail = Vdebug_ignored_errors; CONSP (tail); tail = XCDR (tail))
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 153
diff changeset
474 {
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 153
diff changeset
475 if (STRINGP (XCAR (tail)))
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 153
diff changeset
476 {
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 153
diff changeset
477 if (first_string)
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 153
diff changeset
478 {
165
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents: 163
diff changeset
479 error_message = Ferror_message_string (data);
163
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 153
diff changeset
480 first_string = 0;
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 153
diff changeset
481 }
167
85ec50267440 Import from CVS: tag r20-3b10
cvs
parents: 165
diff changeset
482 if (fast_lisp_string_match (XCAR (tail), error_message) >= 0)
163
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 153
diff changeset
483 return 1;
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 153
diff changeset
484 }
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 153
diff changeset
485 else
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 153
diff changeset
486 {
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 153
diff changeset
487 Lisp_Object contail;
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 153
diff changeset
488
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 153
diff changeset
489 for (contail = conditions; CONSP (contail); contail = XCDR (contail))
167
85ec50267440 Import from CVS: tag r20-3b10
cvs
parents: 165
diff changeset
490 if (EQ (XCAR (tail), XCAR (contail)))
163
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 153
diff changeset
491 return 1;
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 153
diff changeset
492 }
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 153
diff changeset
493 }
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 153
diff changeset
494
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 153
diff changeset
495 return 0;
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 153
diff changeset
496 }
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 153
diff changeset
497
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
498 /* Actually generate a backtrace on STREAM. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
499
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
500 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
501 backtrace_259 (Lisp_Object stream)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
502 {
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 167
diff changeset
503 return Fbacktrace (stream, Qt);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
504 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
505
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
506 /* An error was signaled. Maybe call the debugger, if the `debug-on-error'
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
507 etc. variables call for this. CONDITIONS is the list of conditions
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
508 associated with the error being signalled. SIG is the actual error
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
509 being signalled, and DATA is the associated data (these are exactly
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
510 the same as the arguments to `signal'). ACTIVE_HANDLERS is the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
511 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
512 is called. This is generally the remaining handlers that are
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
513 outside of the innermost handler trapping this error. This way,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
514 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
515 the debugger entered recursively.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
516
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
517 This function returns Qunbound if it didn't call the debugger or if
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
518 the user asked (through 'c') that XEmacs should pretend like the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
519 debugger was never entered. Otherwise, it returns the value
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
520 that the user specified with `r'. (Note that much of the time,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
521 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
522 return anything at all.)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
523
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
524 SIGNAL_VARS_ONLY means we should only look at debug-on-signal
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
525 and stack-trace-on-signal to control whether we do anything.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
526 This is so that debug-on-error doesn't make handled errors
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
527 cause the debugger to get invoked.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
528
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
529 STACK_TRACE_DISPLAYED and DEBUGGER_ENTERED are used so that
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
530 those functions aren't done more than once in a single `signal'
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
531 session. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
532
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
533 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
534 signal_call_debugger (Lisp_Object conditions,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
535 Lisp_Object sig, Lisp_Object data,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
536 Lisp_Object active_handlers,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
537 int signal_vars_only,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
538 int *stack_trace_displayed,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
539 int *debugger_entered)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
540 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
541 /* This function can GC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
542 Lisp_Object val = Qunbound;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
543 Lisp_Object all_handlers = Vcondition_handlers;
167
85ec50267440 Import from CVS: tag r20-3b10
cvs
parents: 165
diff changeset
544 Lisp_Object temp_data = Qnil;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
545 int speccount = specpdl_depth_counter;
167
85ec50267440 Import from CVS: tag r20-3b10
cvs
parents: 165
diff changeset
546 struct gcpro gcpro1, gcpro2;
85ec50267440 Import from CVS: tag r20-3b10
cvs
parents: 165
diff changeset
547 GCPRO2 (all_handlers, temp_data);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
548
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
549 Vcondition_handlers = active_handlers;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
550
167
85ec50267440 Import from CVS: tag r20-3b10
cvs
parents: 165
diff changeset
551 temp_data = Fcons (sig, data); /* needed for skip_debugger */
163
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 153
diff changeset
552
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 153
diff changeset
553 if (!entering_debugger && !*stack_trace_displayed && !signal_vars_only
167
85ec50267440 Import from CVS: tag r20-3b10
cvs
parents: 165
diff changeset
554 && wants_debugger (Vstack_trace_on_error, conditions)
85ec50267440 Import from CVS: tag r20-3b10
cvs
parents: 165
diff changeset
555 && !skip_debugger (conditions, temp_data))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
556 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
557 specbind (Qdebug_on_error, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
558 specbind (Qstack_trace_on_error, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
559 specbind (Qdebug_on_signal, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
560 specbind (Qstack_trace_on_signal, Qnil);
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
561
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
562 internal_with_output_to_temp_buffer ("*Backtrace*",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
563 backtrace_259,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
564 Qnil,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
565 Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
566 unbind_to (speccount, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
567 *stack_trace_displayed = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
568 }
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
569
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
570 if (!entering_debugger && !*debugger_entered && !signal_vars_only
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
571 && (EQ (sig, Qquit)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
572 ? debug_on_quit
167
85ec50267440 Import from CVS: tag r20-3b10
cvs
parents: 165
diff changeset
573 : wants_debugger (Vdebug_on_error, conditions))
85ec50267440 Import from CVS: tag r20-3b10
cvs
parents: 165
diff changeset
574 && !skip_debugger (conditions, temp_data))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
575 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
576 debug_on_quit &= ~2; /* reset critical bit */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
577 specbind (Qdebug_on_error, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
578 specbind (Qstack_trace_on_error, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
579 specbind (Qdebug_on_signal, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
580 specbind (Qstack_trace_on_signal, Qnil);
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
581
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
582 val = call_debugger (list2 (Qerror, (Fcons (sig, data))));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
583 *debugger_entered = 1;
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 if (!entering_debugger && !*stack_trace_displayed
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
587 && wants_debugger (Vstack_trace_on_signal, conditions))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
588 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
589 specbind (Qdebug_on_error, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
590 specbind (Qstack_trace_on_error, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
591 specbind (Qdebug_on_signal, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
592 specbind (Qstack_trace_on_signal, Qnil);
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
593
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
594 internal_with_output_to_temp_buffer ("*Backtrace*",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
595 backtrace_259,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
596 Qnil,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
597 Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
598 unbind_to (speccount, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
599 *stack_trace_displayed = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
600 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
601
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
602 if (!entering_debugger && !*debugger_entered
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
603 && (EQ (sig, Qquit)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
604 ? debug_on_quit
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
605 : wants_debugger (Vdebug_on_signal, conditions)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
606 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
607 debug_on_quit &= ~2; /* reset critical bit */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
608 specbind (Qdebug_on_error, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
609 specbind (Qstack_trace_on_error, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
610 specbind (Qdebug_on_signal, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
611 specbind (Qstack_trace_on_signal, Qnil);
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
612
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
613 val = call_debugger (list2 (Qerror, (Fcons (sig, data))));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
614 *debugger_entered = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
615 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
616
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
617 UNGCPRO;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
618 Vcondition_handlers = all_handlers;
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 167
diff changeset
619 return unbind_to (speccount, val);
0
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
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
623 /**********************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
624 /* The basic special forms */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
625 /**********************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
626
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
627 /* NOTE!!! Every function that can call EVAL must protect its args
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
628 and temporaries from garbage collection while it needs them.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
629 The definition of `For' shows what you have to do. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
630
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
631 DEFUN ("or", For, 0, UNEVALLED, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
632 Eval args until one of them yields non-nil, then return that value.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
633 The remaining args are not evalled at all.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
634 If all args return nil, return nil.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
635 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
636 (args))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
637 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
638 /* This function can GC */
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
639 REGISTER Lisp_Object tail;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
640 struct gcpro gcpro1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
641
243
f220cc83d72e Import from CVS: tag r20-5b20
cvs
parents: 241
diff changeset
642 GCPRO1 (args);
f220cc83d72e Import from CVS: tag r20-5b20
cvs
parents: 241
diff changeset
643
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
644 LIST_LOOP (tail, args)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
645 {
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
646 Lisp_Object val = Feval (XCAR (tail));
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
647 if (!NILP (val))
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
648 {
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
649 UNGCPRO;
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
650 return val;
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
651 }
0
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 UNGCPRO;
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
655 return Qnil;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
656 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
657
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
658 DEFUN ("and", Fand, 0, UNEVALLED, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
659 Eval args until one of them yields nil, then return nil.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
660 The remaining args are not evalled at all.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
661 If no arg yields nil, return the last arg's value.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
662 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
663 (args))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
664 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
665 /* This function can GC */
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
666 REGISTER Lisp_Object tail, val = Qt;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
667 struct gcpro gcpro1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
668
243
f220cc83d72e Import from CVS: tag r20-5b20
cvs
parents: 241
diff changeset
669 GCPRO1 (args);
f220cc83d72e Import from CVS: tag r20-5b20
cvs
parents: 241
diff changeset
670
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
671 LIST_LOOP (tail, args)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
672 {
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
673 val = Feval (XCAR (tail));
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
674 if (NILP (val))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
675 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
676 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
677
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
678 UNGCPRO;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
679 return val;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
680 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
681
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
682 DEFUN ("if", Fif, 2, UNEVALLED, 0, /*
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
683 \(if COND THEN ELSE...): if COND yields non-nil, do THEN, else do ELSE...
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
684 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
685 THEN must be one expression, but ELSE... can be zero or more expressions.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
686 If COND yields nil, and there are no ELSE's, the value is nil.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
687 */
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
688 (args))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
689 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
690 /* This function can GC */
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
691 Lisp_Object val;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
692 struct gcpro gcpro1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
693
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
694 GCPRO1 (args);
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
695
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
696 if (!NILP (Feval (XCAR (args))))
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
697 val = Feval (XCAR (XCDR ((args))));
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
698 else
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
699 val = Fprogn (XCDR (XCDR (args)));
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
700
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
701 UNGCPRO;
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
702 return val;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
703 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
704
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
705 DEFUN ("cond", Fcond, 0, UNEVALLED, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
706 (cond CLAUSES...): try each clause until one succeeds.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
707 Each clause looks like (CONDITION BODY...). CONDITION is evaluated
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
708 and, if the value is non-nil, this clause succeeds:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
709 then the expressions in BODY are evaluated and the last one's
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
710 value is the value of the cond-form.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
711 If no clause succeeds, cond returns nil.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
712 If a clause has one element, as in (CONDITION),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
713 CONDITION's value if non-nil is returned from the cond-form.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
714 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
715 (args))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
716 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
717 /* This function can GC */
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
718 REGISTER Lisp_Object tail;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
719 struct gcpro gcpro1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
720
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
721 GCPRO1 (args);
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
722
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
723 LIST_LOOP (tail, args)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
724 {
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
725 Lisp_Object val;
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
726 Lisp_Object clause = XCAR (tail);
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
727 CHECK_CONS (clause);
243
f220cc83d72e Import from CVS: tag r20-5b20
cvs
parents: 241
diff changeset
728 val = Feval (XCAR (clause));
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
729 if (!NILP (val))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
730 {
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
731 Lisp_Object clause_tail = XCDR (clause);
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
732 if (!NILP (clause_tail))
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
733 {
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
734 CHECK_TRUE_LIST (clause_tail);
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
735 val = Fprogn (clause_tail);
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
736 }
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
737 UNGCPRO;
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
738 return val;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
739 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
740 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
741 UNGCPRO;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
742
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
743 return Qnil;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
744 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
745
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
746 DEFUN ("progn", Fprogn, 0, UNEVALLED, 0, /*
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
747 \(progn BODY...): eval BODY forms sequentially and return value of last one.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
748 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
749 (args))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
750 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
751 /* This function can GC */
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
752 REGISTER Lisp_Object tail, val = Qnil;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
753 struct gcpro gcpro1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
754
243
f220cc83d72e Import from CVS: tag r20-5b20
cvs
parents: 241
diff changeset
755 GCPRO1 (args);
f220cc83d72e Import from CVS: tag r20-5b20
cvs
parents: 241
diff changeset
756
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
757 LIST_LOOP (tail, args)
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
758 val = Feval (XCAR (tail));
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
759
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
760 UNGCPRO;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
761 return val;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
762 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
763
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
764 DEFUN ("prog1", Fprog1, 1, UNEVALLED, 0, /*
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
765 \(prog1 FIRST BODY...): eval FIRST and BODY sequentially; value from FIRST.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
766 The value of FIRST is saved during the evaluation of the remaining args,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
767 whose values are discarded.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
768 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
769 (args))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
770 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
771 /* This function can GC */
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
772 REGISTER Lisp_Object tail = args;
245
51092a27c943 Import from CVS: tag r20-5b21
cvs
parents: 243
diff changeset
773 Lisp_Object val = Qnil;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
774 struct gcpro gcpro1, gcpro2;
243
f220cc83d72e Import from CVS: tag r20-5b20
cvs
parents: 241
diff changeset
775
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
776 GCPRO2 (args, val);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
777
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
778 val = Feval (XCAR (tail));
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
779
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
780 LIST_LOOP (tail, XCDR (tail))
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
781 Feval (XCAR (tail));
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
782
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
783 UNGCPRO;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
784 return val;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
785 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
786
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
787 DEFUN ("prog2", Fprog2, 2, UNEVALLED, 0, /*
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
788 \(prog2 X Y BODY...): eval X, Y and BODY sequentially; value from Y.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
789 The value of Y is saved during the evaluation of the remaining args,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
790 whose values are discarded.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
791 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
792 (args))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
793 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
794 /* This function can GC */
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
795 REGISTER Lisp_Object tail = args;
245
51092a27c943 Import from CVS: tag r20-5b21
cvs
parents: 243
diff changeset
796 Lisp_Object val = Qnil;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
797 struct gcpro gcpro1, gcpro2;
243
f220cc83d72e Import from CVS: tag r20-5b20
cvs
parents: 241
diff changeset
798
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
799 GCPRO2 (args, val);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
800
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
801 Feval (XCAR (tail));
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
802 tail = XCDR (tail);
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
803 val = Feval (XCAR (tail));
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
804
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
805 LIST_LOOP (tail, XCDR (tail))
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
806 Feval (XCAR (tail));
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
807
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
808 UNGCPRO;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
809 return val;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
810 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
811
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
812 DEFUN ("let*", FletX, 1, UNEVALLED, 0, /*
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
813 \(let* VARLIST BODY...): bind variables according to VARLIST then eval BODY.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
814 The value of the last form in BODY is returned.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
815 Each element of VARLIST is a symbol (which is bound to nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
816 or a list (SYMBOL VALUEFORM) (which binds SYMBOL to the value of VALUEFORM).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
817 Each VALUEFORM can refer to the symbols already bound by this VARLIST.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
818 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
819 (args))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
820 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
821 /* This function can GC */
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
822 Lisp_Object varlist = XCAR (args);
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
823 Lisp_Object tail;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
824 int speccount = specpdl_depth_counter;
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
825 struct gcpro gcpro1;
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
826
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
827 GCPRO1 (args);
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
828
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
829 EXTERNAL_LIST_LOOP (tail, varlist)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
830 {
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
831 Lisp_Object elt = XCAR (tail);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
832 QUIT;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
833 if (SYMBOLP (elt))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
834 specbind (elt, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
835 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
836 {
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
837 Lisp_Object sym, form;
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
838 CHECK_CONS (elt);
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
839 sym = XCAR (elt);
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
840 elt = XCDR (elt);
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
841 if (NILP (elt))
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
842 form = Qnil;
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
843 else
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
844 {
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
845 CHECK_CONS (elt);
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
846 form = XCAR (elt);
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
847 elt = XCDR (elt);
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
848 if (!NILP (elt))
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
849 signal_simple_error
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
850 ("`let' bindings can have only one value-form",
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
851 XCAR (tail));
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
852 }
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
853 specbind (sym, Feval (form));
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
854 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
855 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
856 UNGCPRO;
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
857 return unbind_to (speccount, Fprogn (XCDR (args)));
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
858 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
859
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
860 DEFUN ("let", Flet, 1, UNEVALLED, 0, /*
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
861 \(let VARLIST BODY...): bind variables according to VARLIST then eval BODY.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
862 The value of the last form in BODY is returned.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
863 Each element of VARLIST is a symbol (which is bound to nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
864 or a list (SYMBOL VALUEFORM) (which binds SYMBOL to the value of VALUEFORM).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
865 All the VALUEFORMs are evalled before any symbols are bound.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
866 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
867 (args))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
868 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
869 /* This function can GC */
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
870 Lisp_Object varlist = XCAR (args);
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
871 REGISTER Lisp_Object tail;
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
872 Lisp_Object *temps;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
873 int speccount = specpdl_depth_counter;
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
874 REGISTER int argnum = 0;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
875 struct gcpro gcpro1, gcpro2;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
876
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
877 /* Make space to hold the values to give the bound variables. */
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
878 {
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
879 int varcount = 0;
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
880 EXTERNAL_LIST_LOOP (tail, varlist)
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
881 varcount++;
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
882 temps = alloca_array (Lisp_Object, varcount);
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
883 }
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
884
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
885 /* Compute the values and store them in `temps' */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
886
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
887 GCPRO2 (args, *temps);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
888 gcpro2.nvars = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
889
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
890 LIST_LOOP (tail, varlist)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
891 {
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
892 Lisp_Object elt = XCAR (tail);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
893 QUIT;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
894 if (SYMBOLP (elt))
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
895 temps[argnum++] = Qnil;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
896 else
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
897 {
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
898 CHECK_CONS (elt);
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
899 elt = XCDR (elt);
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
900 if (NILP (elt))
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
901 temps[argnum++] = Qnil;
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
902 else
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
903 {
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
904 CHECK_CONS (elt);
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
905 temps[argnum++] = Feval (XCAR (elt));
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
906 gcpro2.nvars = argnum;
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
907
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
908 if (!NILP (XCDR (elt)))
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
909 signal_simple_error
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
910 ("`let' bindings can have only one value-form",
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
911 XCAR (tail));
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
912 }
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
913 }
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
914 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
915 UNGCPRO;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
916
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
917 argnum = 0;
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
918 LIST_LOOP (tail, varlist)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
919 {
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
920 Lisp_Object elt = XCAR (tail);
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
921 specbind (SYMBOLP (elt) ? elt : XCAR (elt), temps[argnum++]);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
922 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
923
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
924 return unbind_to (speccount, Fprogn (XCDR (args)));
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
925 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
926
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
927 DEFUN ("while", Fwhile, 1, UNEVALLED, 0, /*
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
928 \(while TEST BODY...): if TEST yields non-nil, eval BODY... and repeat.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
929 The order of execution is thus TEST, BODY, TEST, BODY and so on
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
930 until TEST returns nil.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
931 */
243
f220cc83d72e Import from CVS: tag r20-5b20
cvs
parents: 241
diff changeset
932 (args))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
933 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
934 /* This function can GC */
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
935 Lisp_Object tem;
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
936 Lisp_Object test = XCAR (args);
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
937 Lisp_Object body = XCDR (args);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
938 struct gcpro gcpro1, gcpro2;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
939
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
940 GCPRO2 (test, body);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
941
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
942 while (tem = Feval (test), !NILP (tem))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
943 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
944 QUIT;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
945 Fprogn (body);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
946 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
947
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
948 UNGCPRO;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
949 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
950 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
951
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
952 DEFUN ("setq", Fsetq, 0, UNEVALLED, 0, /*
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
953 \(setq SYM VAL SYM VAL ...): set each SYM to the value of its VAL.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
954 The symbols SYM are variables; they are literal (not evaluated).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
955 The values VAL are expressions; they are evaluated.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
956 Thus, (setq x (1+ y)) sets `x' to the value of `(1+ y)'.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
957 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
958 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
959 The return value of the `setq' form is the value of the last VAL.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
960 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
961 (args))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
962 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
963 /* This function can GC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
964 struct gcpro gcpro1;
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
965 Lisp_Object val = Qnil;
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
966
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
967 GCPRO1 (args);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
968
195
a2f645c6b9f8 Import from CVS: tag r20-3b24
cvs
parents: 187
diff changeset
969 {
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
970 REGISTER int i = 0;
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
971 Lisp_Object args2;
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
972 for (args2 = args; !NILP (args2); args2 = XCDR (args2))
195
a2f645c6b9f8 Import from CVS: tag r20-3b24
cvs
parents: 187
diff changeset
973 {
a2f645c6b9f8 Import from CVS: tag r20-3b24
cvs
parents: 187
diff changeset
974 i++;
a2f645c6b9f8 Import from CVS: tag r20-3b24
cvs
parents: 187
diff changeset
975 /*
a2f645c6b9f8 Import from CVS: tag r20-3b24
cvs
parents: 187
diff changeset
976 * uncomment the QUIT if there is some way a circular
a2f645c6b9f8 Import from CVS: tag r20-3b24
cvs
parents: 187
diff changeset
977 * arglist can get in here. I think Feval or Fapply would
243
f220cc83d72e Import from CVS: tag r20-5b20
cvs
parents: 241
diff changeset
978 * spin first and the list would never get here.
195
a2f645c6b9f8 Import from CVS: tag r20-3b24
cvs
parents: 187
diff changeset
979 */
a2f645c6b9f8 Import from CVS: tag r20-3b24
cvs
parents: 187
diff changeset
980 /* QUIT; */
a2f645c6b9f8 Import from CVS: tag r20-3b24
cvs
parents: 187
diff changeset
981 }
a2f645c6b9f8 Import from CVS: tag r20-3b24
cvs
parents: 187
diff changeset
982 if (i & 1) /* Odd number of arguments? */
a2f645c6b9f8 Import from CVS: tag r20-3b24
cvs
parents: 187
diff changeset
983 Fsignal (Qwrong_number_of_arguments, list2 (Qsetq, make_int(i)));
a2f645c6b9f8 Import from CVS: tag r20-3b24
cvs
parents: 187
diff changeset
984 }
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
985
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
986 while (!NILP (args))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
987 {
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
988 Lisp_Object sym = XCAR (args);
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
989 val = Feval (XCAR (XCDR (args)));
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
990 Fset (sym, val);
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
991 args = XCDR (XCDR (args));
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
992 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
993
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
994 UNGCPRO;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
995 return val;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
996 }
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
997
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
998 DEFUN ("quote", Fquote, 1, UNEVALLED, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
999 Return the argument, without evaluating it. `(quote x)' yields `x'.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1000 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1001 (args))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1002 {
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
1003 return XCAR (args);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1004 }
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
1005
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1006 DEFUN ("function", Ffunction, 1, UNEVALLED, 0, /*
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.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1010 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1011 (args))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1012 {
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
1013 return XCAR (args);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1014 }
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 /* Defining functions/variables */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1019 /**********************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1020
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1021 DEFUN ("defun", Fdefun, 2, UNEVALLED, 0, /*
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
1022 \(defun NAME ARGLIST [DOCSTRING] BODY...): define NAME as a function.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1023 The definition is (lambda ARGLIST [DOCSTRING] BODY...).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1024 See also the function `interactive'.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1025 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1026 (args))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1027 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1028 /* This function can GC */
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
1029 Lisp_Object fn_name = XCAR (args);
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
1030 Lisp_Object defn = Fcons (Qlambda, XCDR (args));
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
1031
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1032 if (purify_flag)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1033 defn = Fpurecopy (defn);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1034 Ffset (fn_name, defn);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1035 LOADHIST_ATTACH (fn_name);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1036 return fn_name;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1037 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1038
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1039 DEFUN ("defmacro", Fdefmacro, 2, UNEVALLED, 0, /*
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
1040 \(defmacro NAME ARGLIST [DOCSTRING] BODY...): define NAME as a macro.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1041 The definition is (macro lambda ARGLIST [DOCSTRING] BODY...).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1042 When the macro is called, as in (NAME ARGS...),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1043 the function (lambda ARGLIST BODY...) is applied to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1044 the list ARGS... as it appears in the expression,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1045 and the result should be a form to be evaluated instead of the original.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1046 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1047 (args))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1048 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1049 /* This function can GC */
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
1050 Lisp_Object fn_name = XCAR (args);
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
1051 Lisp_Object defn = Fcons (Qmacro, Fcons (Qlambda, XCDR (args)));
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
1052
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1053 if (purify_flag)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1054 defn = Fpurecopy (defn);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1055 Ffset (fn_name, defn);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1056 LOADHIST_ATTACH (fn_name);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1057 return fn_name;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1058 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1059
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1060 DEFUN ("defvar", Fdefvar, 1, UNEVALLED, 0, /*
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
1061 \(defvar SYMBOL INITVALUE DOCSTRING): define SYMBOL as a variable.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1062 You are not required to define a variable in order to use it,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1063 but the definition can supply documentation and an initial value
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1064 in a way that tags can recognize.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1065
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1066 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
1067 void. (However, when you evaluate a defvar interactively, it acts like a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1068 defconst: SYMBOL's value is always set regardless of whether it's currently
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1069 void.)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1070 If SYMBOL is buffer-local, its default value is what is set;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1071 buffer-local values are not affected.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1072 INITVALUE and DOCSTRING are optional.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1073 If DOCSTRING starts with *, this variable is identified as a user option.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1074 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
1075 If INITVALUE is missing, SYMBOL's value is not set.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1076
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1077 In lisp-interaction-mode defvar is treated as defconst.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1078 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1079 (args))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1080 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1081 /* This function can GC */
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
1082 Lisp_Object sym = XCAR (args);
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
1083
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
1084 if (!NILP (args = XCDR (args)))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1085 {
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
1086 Lisp_Object val = XCAR (args);
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
1087
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
1088 if (NILP (Fdefault_boundp (sym)))
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
1089 Fset_default (sym, Feval (val));
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
1090
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
1091 if (!NILP (args = XCDR (args)))
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
1092 {
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
1093 Lisp_Object doc = XCAR (args);
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
1094 #if 0 /* FSFmacs */
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
1095 /* #### We should probably do this but it might be dangerous */
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
1096 if (purify_flag)
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
1097 doc = Fpurecopy (doc);
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
1098 Fput (sym, Qvariable_documentation, doc);
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
1099 #else
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
1100 pure_put (sym, Qvariable_documentation, doc);
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
1101 #endif
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
1102 if (!NILP (args = XCDR (args)))
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
1103 error ("too many arguments");
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
1104 }
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1105 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1106
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1107 #ifdef I18N3
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1108 if (!NILP (Vfile_domain))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1109 pure_put (sym, Qvariable_domain, Vfile_domain);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1110 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1111
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1112 LOADHIST_ATTACH (sym);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1113 return sym;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1114 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1115
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1116 DEFUN ("defconst", Fdefconst, 2, UNEVALLED, 0, /*
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
1117 \(defconst SYMBOL INITVALUE DOCSTRING): define SYMBOL as a constant
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1118 variable.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1119 The intent is that programs do not change this value, but users may.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1120 Always sets the value of SYMBOL to the result of evalling INITVALUE.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1121 If SYMBOL is buffer-local, its default value is what is set;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1122 buffer-local values are not affected.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1123 DOCSTRING is optional.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1124 If DOCSTRING starts with *, this variable is identified as a user option.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1125 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
1126
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1127 Note: do not use `defconst' for user options in libraries that are not
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1128 normally loaded, since it is useful for users to be able to specify
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1129 their own values for such variables before loading the library.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1130 Since `defconst' unconditionally assigns the variable,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1131 it would override the user's choice.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1132 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1133 (args))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1134 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1135 /* This function can GC */
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
1136 Lisp_Object sym = XCAR (args);
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
1137 Lisp_Object val = XCAR (args = XCDR (args));
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
1138
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
1139 Fset_default (sym, Feval (val));
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
1140
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
1141 if (!NILP (args = XCDR (args)))
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
1142 {
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
1143 Lisp_Object doc = XCAR (args);
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
1144 #if 0 /* FSFmacs */
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
1145 /* #### We should probably do this but it might be dangerous */
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
1146 if (purify_flag)
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
1147 doc = Fpurecopy (doc);
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
1148 Fput (sym, Qvariable_documentation, doc);
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
1149 #else
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
1150 pure_put (sym, Qvariable_documentation, doc);
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
1151 #endif
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
1152 if (!NILP (args = XCDR (args)))
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
1153 error ("too many arguments");
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
1154 }
0
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 LOADHIST_ATTACH (sym);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1162 return sym;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1163 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1164
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1165 DEFUN ("user-variable-p", Fuser_variable_p, 1, 1, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1166 Return t if VARIABLE is intended to be set and modified by users.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1167 \(The alternative is a variable used internally in a Lisp program.)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1168 Determined by whether the first character of the documentation
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1169 for the variable is `*'.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1170 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1171 (variable))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1172 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1173 Lisp_Object documentation;
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
1174
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1175 documentation = Fget (variable, Qvariable_documentation, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1176 if (INTP (documentation) && XINT (documentation) < 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1177 return Qt;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1178 if ((STRINGP (documentation)) &&
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1179 (string_byte (XSTRING (documentation), 0) == '*'))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1180 return Qt;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1181 /* If it is (STRING . INTEGER), a negative integer means a user variable. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1182 if (CONSP (documentation)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1183 && STRINGP (XCAR (documentation))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1184 && INTP (XCDR (documentation))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1185 && XINT (XCDR (documentation)) < 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1186 return Qt;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1187 return Qnil;
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
1188 }
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1189
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1190 DEFUN ("macroexpand-internal", Fmacroexpand_internal, 1, 2, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1191 Return result of expanding macros at top level of FORM.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1192 If FORM is not a macro call, it is returned unchanged.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1193 Otherwise, the macro is expanded and the expansion is considered
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1194 in place of FORM. When a non-macro-call results, it is returned.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1195
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1196 The second optional arg ENVIRONMENT species an environment of macro
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1197 definitions to shadow the loaded ones for use in file byte-compilation.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1198 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1199 (form, env))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1200 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1201 /* This function can GC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1202 /* With cleanups from Hallvard Furuseth. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1203 REGISTER Lisp_Object expander, sym, def, tem;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1204
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1205 while (1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1206 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1207 /* Come back here each time we expand a macro call,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1208 in case it expands into another macro call. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1209 if (!CONSP (form))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1210 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1211 /* 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
1212 def = sym = XCAR (form);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1213 tem = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1214 /* Trace symbols aliases to other symbols
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1215 until we get a symbol that is not an alias. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1216 while (SYMBOLP (def))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1217 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1218 QUIT;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1219 sym = def;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1220 tem = Fassq (sym, env);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1221 if (NILP (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 def = XSYMBOL (sym)->function;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1224 if (!UNBOUNDP (def))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1225 continue;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1226 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1227 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1228 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1229 /* Right now TEM is the result from SYM in ENV,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1230 and if TEM is nil then DEF is SYM's function definition. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1231 if (NILP (tem))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1232 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1233 /* SYM is not mentioned in ENV.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1234 Look at its function definition. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1235 if (UNBOUNDP (def)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1236 || !CONSP (def))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1237 /* Not defined or definition not suitable */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1238 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1239 if (EQ (XCAR (def), Qautoload))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1240 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1241 /* Autoloading function: will it be a macro when loaded? */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1242 tem = Felt (def, make_int (4));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1243 if (EQ (tem, Qt) || EQ (tem, Qmacro))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1244 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1245 /* Yes, load it and try again. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1246 do_autoload (def, sym);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1247 continue;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1248 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1249 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1250 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1251 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1252 else if (!EQ (XCAR (def), Qmacro))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1253 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1254 else expander = XCDR (def);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1255 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1256 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1257 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1258 expander = XCDR (tem);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1259 if (NILP (expander))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1260 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1261 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1262 form = apply1 (expander, XCDR (form));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1263 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1264 return form;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1265 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1266
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1267
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1268 /**********************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1269 /* Non-local exits */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1270 /**********************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1271
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1272 DEFUN ("catch", Fcatch, 1, UNEVALLED, 0, /*
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
1273 \(catch TAG BODY...): eval BODY allowing nonlocal exits using `throw'.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1274 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
1275 Within BODY, (throw TAG) with same tag exits BODY and exits this `catch'.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1276 If no throw happens, `catch' returns the value of the last BODY form.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1277 If a throw happens, it specifies the value to return from `catch'.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1278 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1279 (args))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1280 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1281 /* This function can GC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1282 Lisp_Object tag;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1283 struct gcpro gcpro1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1284
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1285 GCPRO1 (args);
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
1286 tag = Feval (XCAR (args));
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1287 UNGCPRO;
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
1288 return internal_catch (tag, Fprogn, XCDR (args), 0);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1289 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1290
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1291 /* Set up a catch, then call C function FUNC on argument ARG.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1292 FUNC should return a Lisp_Object.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1293 This is how catches are done from within C code. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1294
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1295 Lisp_Object
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
1296 internal_catch (Lisp_Object tag,
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1297 Lisp_Object (*func) (Lisp_Object arg),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1298 Lisp_Object arg,
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
1299 int * volatile threw)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1300 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1301 /* This structure is made part of the chain `catchlist'. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1302 struct catchtag c;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1303
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1304 /* Fill in the components of c, and put it on the list. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1305 c.next = catchlist;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1306 c.tag = tag;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1307 c.val = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1308 c.backlist = backtrace_list;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1309 #if 0 /* FSFmacs */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1310 /* #### */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1311 c.handlerlist = handlerlist;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1312 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1313 c.lisp_eval_depth = lisp_eval_depth;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1314 c.pdlcount = specpdl_depth_counter;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1315 #if 0 /* FSFmacs */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1316 c.poll_suppress_count = async_timer_suppress_count;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1317 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1318 c.gcpro = gcprolist;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1319 catchlist = &c;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1320
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1321 /* Call FUNC. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1322 if (SETJMP (c.jmp))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1323 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1324 /* Throw works by a longjmp that comes right here. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1325 if (threw) *threw = 1;
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 167
diff changeset
1326 return c.val;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1327 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1328 c.val = (*func) (arg);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1329 if (threw) *threw = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1330 catchlist = c.next;
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 167
diff changeset
1331 return c.val;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1332 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1333
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1334
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1335 /* Unwind the specbind, catch, and handler stacks back to CATCH, and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1336 jump to that CATCH, returning VALUE as the value of that catch.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1337
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1338 This is the guts Fthrow and Fsignal; they differ only in the way
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1339 they choose the catch tag to throw to. A catch tag for a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1340 condition-case form has a TAG of Qnil.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1341
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1342 Before each catch is discarded, unbind all special bindings and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1343 execute all unwind-protect clauses made above that catch. Unwind
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1344 the handler stack as we go, so that the proper handlers are in
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1345 effect for each unwind-protect clause we run. At the end, restore
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1346 some static info saved in CATCH, and longjmp to the location
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1347 specified in the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1348
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1349 This is used for correct unwinding in Fthrow and Fsignal. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1350
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1351 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1352 unwind_to_catch (struct catchtag *c, Lisp_Object val)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1353 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1354 #if 0 /* FSFmacs */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1355 /* #### */
203
850242ba4a81 Import from CVS: tag r20-3b28
cvs
parents: 195
diff changeset
1356 REGISTER int last_time;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1357 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1358
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1359 /* Unwind the specbind, catch, and handler stacks back to CATCH
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1360 Before each catch is discarded, unbind all special bindings
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1361 and execute all unwind-protect clauses made above that catch.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1362 At the end, restore some static info saved in CATCH,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1363 and longjmp to the location specified.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1364 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1365
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1366 /* Save the value somewhere it will be GC'ed.
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
1367 (Can't overwrite tag slot because an unwind-protect may
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1368 want to throw to this same tag, which isn't yet invalid.) */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1369 c->val = val;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1370
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1371 #if 0 /* FSFmacs */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1372 /* Restore the polling-suppression count. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1373 set_poll_suppress_count (catch->poll_suppress_count);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1374 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1375
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1376 #if 0 /* FSFmacs */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1377 /* #### FSFmacs has the following loop. Is it more correct? */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1378 do
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1379 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1380 last_time = catchlist == c;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1381
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1382 /* Unwind the specpdl stack, and then restore the proper set of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1383 handlers. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1384 unbind_to (catchlist->pdlcount, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1385 handlerlist = catchlist->handlerlist;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1386 catchlist = catchlist->next;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1387 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1388 while (! last_time);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1389 #else /* Actual XEmacs code */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1390 /* Unwind the specpdl stack */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1391 unbind_to (c->pdlcount, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1392 catchlist = c->next;
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 gcprolist = c->gcpro;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1396 backtrace_list = c->backlist;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1397 lisp_eval_depth = c->lisp_eval_depth;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1398
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1399 throw_level = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1400 LONGJMP (c->jmp, 1);
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
1401 }
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1402
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1403 static DOESNT_RETURN
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1404 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
1405 Lisp_Object sig, Lisp_Object data)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1406 {
211
78478c60bfcd Import from CVS: tag r20-4b4
cvs
parents: 203
diff changeset
1407 #if 0
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1408 /* die if we recurse more than is reasonable */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1409 if (++throw_level > 20)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1410 abort();
211
78478c60bfcd Import from CVS: tag r20-4b4
cvs
parents: 203
diff changeset
1411 #endif
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1412
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1413 /* 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
1414 "last resort" when there is no handler for this error and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1415 the debugger couldn't be invoked, so we are throwing to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1416 'top-level. If this tag doesn't exist (happens during the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1417 initialization stages) we would get in an infinite recursive
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1418 Fsignal/Fthrow loop, so instead we bomb out to the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1419 really-early-error-handler.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1420
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1421 Note that in fact the only time that the "last resort"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1422 occurs is when there's no catch for 'top-level -- the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1423 'top-level catch and the catch-all error handler are
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1424 established at the same time, in initial_command_loop/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1425 top_level_1.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1426
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
1427 #### Fix this horrifitude!
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1428 */
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
1429
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1430 while (1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1431 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1432 REGISTER struct catchtag *c;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1433
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1434 #if 0 /* FSFmacs */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1435 if (!NILP (tag)) /* #### */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1436 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1437 for (c = catchlist; c; c = c->next)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1438 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1439 if (EQ (c->tag, tag))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1440 unwind_to_catch (c, val);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1441 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1442 if (!bomb_out_p)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1443 tag = Fsignal (Qno_catch, list2 (tag, val));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1444 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1445 call1 (Qreally_early_error_handler, Fcons (sig, data));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1446 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1447
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1448 /* can't happen. who cares? - (Sun's compiler does) */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1449 /* throw_level--; */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1450 /* getting tired of compilation warnings */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1451 /* return Qnil; */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1452 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1453
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1454 /* See above, where CATCHLIST is defined, for a description of how
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1455 Fthrow() works.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1456
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1457 Fthrow() is also called by Fsignal(), to do a non-local jump
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1458 back to the appropriate condition-case handler after (maybe)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1459 the debugger is entered. In that case, TAG is the value
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1460 of Vcondition_handlers that was in place just after the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1461 condition-case handler was set up. The car of this will be
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1462 some data referring to the handler: Its car will be Qunbound
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1463 (thus, this tag can never be generated by Lisp code), and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1464 its CDR will be the HANDLERS argument to condition_case_1()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1465 (either Qerror, Qt, or a list of handlers as in `condition-case').
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1466 This works fine because Fthrow() does not care what TAG was
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1467 passed to it: it just looks up the catch list for something
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1468 that is EQ() to TAG. When it finds it, it will longjmp()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1469 back to the place that established the catch (in this case,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1470 condition_case_1). See below for more info.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1471 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1472
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1473 DEFUN ("throw", Fthrow, 2, 2, 0, /*
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
1474 \(throw TAG VALUE): throw to the catch for TAG and return VALUE from it.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1475 Both TAG and VALUE are evalled.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1476 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1477 (tag, val))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1478 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1479 throw_or_bomb_out (tag, val, 0, Qnil, Qnil); /* Doesn't return */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1480 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1481 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1482
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1483 DEFUN ("unwind-protect", Funwind_protect, 1, UNEVALLED, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1484 Do BODYFORM, protecting with UNWINDFORMS.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1485 Usage looks like (unwind-protect BODYFORM UNWINDFORMS...).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1486 If BODYFORM completes normally, its value is returned
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1487 after executing the UNWINDFORMS.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1488 If BODYFORM exits nonlocally, the UNWINDFORMS are executed anyway.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1489 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1490 (args))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1491 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1492 /* This function can GC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1493 Lisp_Object val;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1494 int speccount = specpdl_depth_counter;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1495
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
1496 record_unwind_protect (Fprogn, XCDR (args));
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
1497 val = Feval (XCAR (args));
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1498 return unbind_to (speccount, val);
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
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1502 /**********************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1503 /* Signalling and trapping errors */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1504 /**********************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1505
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1506 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1507 condition_bind_unwind (Lisp_Object loser)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1508 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1509 struct Lisp_Cons *victim;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1510 /* ((handler-fun . handler-args) ... other handlers) */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1511 Lisp_Object tem = XCAR (loser);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1512
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1513 while (CONSP (tem))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1514 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1515 victim = XCONS (tem);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1516 tem = victim->cdr;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1517 free_cons (victim);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1518 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1519 victim = XCONS (loser);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1520
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1521 if (EQ (loser, Vcondition_handlers)) /* may have been rebound to some tail */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1522 Vcondition_handlers = victim->cdr;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1523
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1524 free_cons (victim);
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 167
diff changeset
1525 return Qnil;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1526 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1527
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1528 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1529 condition_case_unwind (Lisp_Object loser)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1530 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1531 struct Lisp_Cons *victim;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1532
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1533 /* ((<unbound> . clauses) ... other handlers */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1534 victim = XCONS (XCAR (loser));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1535 free_cons (victim);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1536
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1537 victim = XCONS (loser);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1538 if (EQ (loser, Vcondition_handlers)) /* may have been rebound to some tail */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1539 Vcondition_handlers = victim->cdr;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1540
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1541 free_cons (victim);
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 167
diff changeset
1542 return Qnil;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1543 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1544
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1545 /* Split out from condition_case_3 so that primitive C callers
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1546 don't have to cons up a lisp handler form to be evaluated. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1547
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1548 /* Call a function BFUN of one argument BARG, trapping errors as
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1549 specified by HANDLERS. If no error occurs that is indicated by
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1550 HANDLERS as something to be caught, the return value of this
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1551 function is the return value from BFUN. If such an error does
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1552 occur, HFUN is called, and its return value becomes the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1553 return value of condition_case_1(). The second argument passed
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1554 to HFUN will always be HARG. The first argument depends on
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1555 HANDLERS:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1556
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1557 If HANDLERS is Qt, all errors (this includes QUIT, but not
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1558 non-local exits with `throw') cause HFUN to be invoked, and VAL
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1559 (the first argument to HFUN) is a cons (SIG . DATA) of the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1560 arguments passed to `signal'. The debugger is not invoked even if
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1561 `debug-on-error' was set.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1562
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1563 A HANDLERS value of Qerror is the same as Qt except that the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1564 debugger is invoked if `debug-on-error' was set.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1565
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1566 Otherwise, HANDLERS should be a list of lists (CONDITION-NAME BODY ...)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1567 exactly as in `condition-case', and errors will be trapped
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1568 as indicated in HANDLERS. VAL (the first argument to HFUN) will
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1569 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
1570 list (BODY ...) from the appropriate slot in HANDLERS.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1571
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1572 This function pushes HANDLERS onto the front of Vcondition_handlers
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1573 (actually with a Qunbound marker as well -- see Fthrow() above
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1574 for why), establishes a catch whose tag is this new value of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1575 Vcondition_handlers, and calls BFUN. When Fsignal() is called,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1576 it calls Fthrow(), setting TAG to this same new value of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1577 Vcondition_handlers and setting VAL to the same thing that will
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1578 be passed to HFUN, as above. Fthrow() longjmp()s back to the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1579 jump point we just established, and we in turn just call the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1580 HFUN and return its value.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1581
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1582 For a real condition-case, HFUN will always be
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1583 run_condition_case_handlers() and HARG is the argument VAR
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1584 to condition-case. That function just binds VAR to the cons
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1585 (SIG . DATA) that is the CAR of VAL, and calls the handler
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1586 (BODY ...) that is the CDR of VAL. Note that before calling
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1587 Fthrow(), Fsignal() restored Vcondition_handlers to the value
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1588 it had *before* condition_case_1() was called. This maintains
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1589 consistency (so that the state of things at exit of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1590 condition_case_1() is the same as at entry), and implies
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1591 that the handler can signal the same error again (possibly
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1592 after processing of its own), without getting in an infinite
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1593 loop. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1594
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1595 Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1596 condition_case_1 (Lisp_Object handlers,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1597 Lisp_Object (*bfun) (Lisp_Object barg),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1598 Lisp_Object barg,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1599 Lisp_Object (*hfun) (Lisp_Object val, Lisp_Object harg),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1600 Lisp_Object harg)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1601 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1602 int speccount = specpdl_depth_counter;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1603 struct catchtag c;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1604 struct gcpro gcpro1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1605
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1606 #if 0 /* FSFmacs */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1607 c.tag = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1608 #else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1609 /* Do consing now so out-of-memory error happens up front */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1610 /* (unbound . stuff) is a special condition-case kludge marker
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1611 which is known specially by Fsignal.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1612 This is an abomination, but to fix it would require either
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1613 making condition_case cons (a union of the conditions of the clauses)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1614 or changing the byte-compiler output (no thanks). */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1615 c.tag = noseeum_cons (noseeum_cons (Qunbound, handlers),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1616 Vcondition_handlers);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1617 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1618 c.val = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1619 c.backlist = backtrace_list;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1620 #if 0 /* FSFmacs */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1621 /* #### */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1622 c.handlerlist = handlerlist;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1623 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1624 c.lisp_eval_depth = lisp_eval_depth;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1625 c.pdlcount = specpdl_depth_counter;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1626 #if 0 /* FSFmacs */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1627 c.poll_suppress_count = async_timer_suppress_count;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1628 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1629 c.gcpro = gcprolist;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1630 /* #### FSFmacs does the following statement *after* the setjmp(). */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1631 c.next = catchlist;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1632
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1633 if (SETJMP (c.jmp))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1634 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1635 /* throw does ungcpro, etc */
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 167
diff changeset
1636 return (*hfun) (c.val, harg);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1637 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1638
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1639 record_unwind_protect (condition_case_unwind, c.tag);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1640
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1641 catchlist = &c;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1642 #if 0 /* FSFmacs */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1643 h.handler = handlers;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1644 h.var = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1645 h.next = handlerlist;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1646 h.tag = &c;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1647 handlerlist = &h;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1648 #else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1649 Vcondition_handlers = c.tag;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1650 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1651 GCPRO1 (harg); /* Somebody has to gc-protect */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1652
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1653 c.val = ((*bfun) (barg));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1654
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1655 /* The following is *not* true: (ben)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1656
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1657 ungcpro, restoring catchlist and condition_handlers are actually
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1658 redundant since unbind_to now restores them. But it looks funny not to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1659 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
1660 UNGCPRO;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1661 catchlist = c.next;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1662 Vcondition_handlers = XCDR (c.tag);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1663
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 167
diff changeset
1664 return unbind_to (speccount, c.val);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1665 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1666
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1667 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1668 run_condition_case_handlers (Lisp_Object val, Lisp_Object var)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1669 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1670 /* This function can GC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1671 #if 0 /* FSFmacs */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1672 if (!NILP (h.var))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1673 specbind (h.var, c.val);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1674 val = Fprogn (Fcdr (h.chosen_clause));
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
1675
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1676 /* Note that this just undoes the binding of h.var; whoever
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1677 longjumped to us unwound the stack to c.pdlcount before
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1678 throwing. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1679 unbind_to (c.pdlcount, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1680 return val;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1681 #else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1682 int speccount;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1683
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1684 if (NILP (var))
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 167
diff changeset
1685 return Fprogn (Fcdr (val)); /* tailcall */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1686
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1687 speccount = specpdl_depth_counter;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1688 specbind (var, Fcar (val));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1689 val = Fprogn (Fcdr (val));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1690 return unbind_to (speccount, val);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1691 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1692 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1693
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1694 /* Here for bytecode to call non-consfully. This is exactly like
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1695 condition-case except that it takes three arguments rather
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1696 than a single list of arguments. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1697 Lisp_Object
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
1698 condition_case_3 (Lisp_Object bodyform, Lisp_Object var, Lisp_Object handlers)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1699 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1700 /* This function can GC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1701 Lisp_Object val;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1702
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1703 CHECK_SYMBOL (var);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1704
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1705 for (val = handlers; ! NILP (val); val = Fcdr (val))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1706 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1707 Lisp_Object tem;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1708 tem = Fcar (val);
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
1709 if ((!NILP (tem))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1710 && (!CONSP (tem)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1711 || (!SYMBOLP (XCAR (tem)) && !CONSP (XCAR (tem)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1712 signal_simple_error ("Invalid condition handler", tem);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1713 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1714
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
1715 return condition_case_1 (handlers,
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1716 Feval, bodyform,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1717 run_condition_case_handlers,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1718 var);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1719 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1720
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1721 DEFUN ("condition-case", Fcondition_case, 2, UNEVALLED, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1722 Regain control when an error is signalled.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1723 Usage looks like (condition-case VAR BODYFORM HANDLERS...).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1724 executes BODYFORM and returns its value if no error happens.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1725 Each element of HANDLERS looks like (CONDITION-NAME BODY...)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1726 where the BODY is made of Lisp expressions.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1727
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1728 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
1729 error's condition names. If an error happens, the first applicable
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1730 handler is run. As a special case, a CONDITION-NAME of t matches
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1731 all errors, even those without the `error' condition name on them
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
1732 \(e.g. `quit').
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1733
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1734 The car of a handler may be a list of condition names
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1735 instead of a single condition name.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1736
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1737 When a handler handles an error,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1738 control returns to the condition-case and the handler BODY... is executed
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1739 with VAR bound to (SIGNALED-CONDITIONS . SIGNAL-DATA).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1740 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
1741
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1742 The value of the last BODY form is returned from the condition-case.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1743 See also the function `signal' for more info.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1744
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1745 Note that at the time the condition handler is invoked, the Lisp stack
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1746 and the current catches, condition-cases, and bindings have all been
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1747 popped back to the state they were in just before the call to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1748 `condition-case'. This means that resignalling the error from
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1749 within the handler will not result in an infinite loop.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1750
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1751 If you want to establish an error handler that is called with the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1752 Lisp stack, bindings, etc. as they were when `signal' was called,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1753 rather than when the handler was set, use `call-with-condition-handler'.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1754 */
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 44
diff changeset
1755 (args))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1756 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1757 /* This function can GC */
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
1758 return condition_case_3 (XCAR (XCDR (args)),
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
1759 XCAR (args),
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
1760 XCDR (XCDR (args)));
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
1761 }
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1762
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1763 DEFUN ("call-with-condition-handler", Fcall_with_condition_handler, 2, MANY, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1764 Regain control when an error is signalled, without popping the stack.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1765 Usage looks like (call-with-condition-handler HANDLER FUNCTION &rest ARGS).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1766 This function is similar to `condition-case', but the handler is invoked
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1767 with the same environment (Lisp stack, bindings, catches, condition-cases)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1768 that was current when `signal' was called, rather than when the handler
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1769 was established.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1770
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1771 HANDLER should be a function of one argument, which is a cons of the args
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
1772 \(SIG . DATA) that were passed to `signal'. It is invoked whenever
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1773 `signal' is called (this differs from `condition-case', which allows
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1774 you to specify which errors are trapped). If the handler function
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1775 returns, `signal' continues as if the handler were never invoked.
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
1776 \(It continues to look for handlers established earlier than this one,
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1777 and invokes the standard error-handler if none is found.)
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1778 */
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
1779 (int nargs, Lisp_Object *args)) /* Note! Args side-effected! */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1780 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1781 /* This function can GC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1782 int speccount = specpdl_depth_counter;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1783 Lisp_Object tem;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1784
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1785 /* #### If there were a way to check that args[0] were a function
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1786 which accepted one arg, that should be done here ... */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1787
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1788 /* (handler-fun . handler-args) */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1789 tem = noseeum_cons (list1 (args[0]), Vcondition_handlers);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1790 record_unwind_protect (condition_bind_unwind, tem);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1791 Vcondition_handlers = tem;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1792
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1793 /* Caller should have GC-protected args */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1794 tem = Ffuncall (nargs - 1, args + 1);
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 167
diff changeset
1795 return unbind_to (speccount, tem);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1796 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1797
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1798 static int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1799 condition_type_p (Lisp_Object type, Lisp_Object conditions)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1800 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1801 if (EQ (type, Qt))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1802 /* (condition-case c # (t c)) catches -all- signals
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1803 * Use with caution! */
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 167
diff changeset
1804 return 1;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1805 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1806 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1807 if (SYMBOLP (type))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1808 {
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 167
diff changeset
1809 return !NILP (Fmemq (type, conditions));
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1810 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1811 else if (CONSP (type))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1812 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1813 while (CONSP (type))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1814 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1815 if (!NILP (Fmemq (Fcar (type), conditions)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1816 return 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1817 type = XCDR (type);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1818 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1819 return 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1820 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1821 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1822 return 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1823 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1824 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1825
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1826 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1827 return_from_signal (Lisp_Object value)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1828 {
251
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 249
diff changeset
1829 #if 1
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1830 /* Most callers are not prepared to handle gc if this
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1831 returns. So, since this feature is not very useful,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1832 take it out. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1833 /* Have called debugger; return value to signaller */
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 167
diff changeset
1834 return value;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1835 #else /* But the reality is that that stinks, because: */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1836 /* GACK!!! Really want some way for debug-on-quit errors
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1837 to be continuable!! */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1838 error ("Returning a value from an error is no longer supported");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1839 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1840 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1841
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1842 extern int in_display;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1843
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1844
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1845 /****************** the workhorse error-signaling function ******************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1846
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1847 /* #### This function has not been synched with FSF. It diverges
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1848 significantly. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1849
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1850 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1851 signal_1 (Lisp_Object sig, Lisp_Object data)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1852 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1853 /* This function can GC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1854 struct gcpro gcpro1, gcpro2;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1855 Lisp_Object conditions;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1856 Lisp_Object handlers;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1857 /* signal_call_debugger() could get called more than once
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1858 (once when a call-with-condition-handler is about to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1859 be dealt with, and another when a condition-case handler
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1860 is about to be invoked). So make sure the debugger and/or
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1861 stack trace aren't done more than once. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1862 int stack_trace_displayed = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1863 int debugger_entered = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1864 GCPRO2 (conditions, handlers);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1865
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1866 if (!initialized)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1867 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1868 /* who knows how much has been initialized? Safest bet is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1869 just to bomb out immediately. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1870 fprintf (stderr, "Error before initialization is complete!\n");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1871 abort ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1872 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1873
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1874 if (gc_in_progress || in_display)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1875 /* 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
1876 There is no sensible way to handle errors there. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1877 abort ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1878
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1879 conditions = Fget (sig, Qerror_conditions, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1880
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1881 for (handlers = Vcondition_handlers;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1882 CONSP (handlers);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1883 handlers = XCDR (handlers))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1884 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1885 Lisp_Object handler_fun = XCAR (XCAR (handlers));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1886 Lisp_Object handler_data = XCDR (XCAR (handlers));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1887 Lisp_Object outer_handlers = XCDR (handlers);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1888
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1889 if (!UNBOUNDP (handler_fun))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1890 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1891 /* call-with-condition-handler */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1892 Lisp_Object tem;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1893 Lisp_Object all_handlers = Vcondition_handlers;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1894 struct gcpro ngcpro1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1895 NGCPRO1 (all_handlers);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1896 Vcondition_handlers = outer_handlers;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1897
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1898 tem = signal_call_debugger (conditions, sig, data,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1899 outer_handlers, 1,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1900 &stack_trace_displayed,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1901 &debugger_entered);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1902 if (!UNBOUNDP (tem))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1903 RETURN_NUNGCPRO (return_from_signal (tem));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1904
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1905 tem = Fcons (sig, data);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1906 if (NILP (handler_data))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1907 tem = call1 (handler_fun, tem);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1908 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1909 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1910 /* (This code won't be used (for now?).) */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1911 struct gcpro nngcpro1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1912 Lisp_Object args[3];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1913 NNGCPRO1 (args[0]);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1914 nngcpro1.nvars = 3;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1915 args[0] = handler_fun;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1916 args[1] = tem;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1917 args[2] = handler_data;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1918 nngcpro1.var = args;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1919 tem = Fapply (3, args);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1920 NNUNGCPRO;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1921 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1922 NUNGCPRO;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1923 #if 0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1924 if (!EQ (tem, Qsignal))
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 167
diff changeset
1925 return return_from_signal (tem);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1926 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1927 /* If handler didn't throw, try another handler */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1928 Vcondition_handlers = all_handlers;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1929 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1930
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1931 /* It's a condition-case handler */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1932
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
1933 /* t is used by handlers for all conditions, set up by C code.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1934 * debugger is not called even if debug_on_error */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1935 else if (EQ (handler_data, Qt))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1936 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1937 UNGCPRO;
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 167
diff changeset
1938 return Fthrow (handlers, Fcons (sig, data));
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1939 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1940 /* `error' is used similarly to the way `t' is used, but in
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1941 addition it invokes the debugger if debug_on_error.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1942 This is normally used for the outer command-loop error
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1943 handler. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1944 else if (EQ (handler_data, Qerror))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1945 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1946 Lisp_Object tem = signal_call_debugger (conditions, sig, data,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1947 outer_handlers, 0,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1948 &stack_trace_displayed,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1949 &debugger_entered);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1950
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1951 UNGCPRO;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1952 if (!UNBOUNDP (tem))
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 167
diff changeset
1953 return return_from_signal (tem);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1954
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1955 tem = Fcons (sig, data);
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 167
diff changeset
1956 return Fthrow (handlers, tem);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1957 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1958 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1959 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1960 /* handler established by real (Lisp) condition-case */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1961 Lisp_Object h;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1962
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1963 for (h = handler_data; CONSP (h); h = Fcdr (h))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1964 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1965 Lisp_Object clause = Fcar (h);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1966 Lisp_Object tem = Fcar (clause);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1967
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1968 if (condition_type_p (tem, conditions))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1969 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1970 tem = signal_call_debugger (conditions, sig, data,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1971 outer_handlers, 1,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1972 &stack_trace_displayed,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1973 &debugger_entered);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1974 UNGCPRO;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1975 if (!UNBOUNDP (tem))
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 167
diff changeset
1976 return return_from_signal (tem);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1977
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1978 /* Doesn't return */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1979 tem = Fcons (Fcons (sig, data), Fcdr (clause));
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 167
diff changeset
1980 return Fthrow (handlers, tem);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1981 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1982 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1983 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1984 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1985
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1986 /* If no handler is present now, try to run the debugger,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1987 and if that fails, throw to top level.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1988
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1989 #### The only time that no handler is present is during
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1990 temacs or perhaps very early in XEmacs. In both cases,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1991 there is no 'top-level catch. (That's why the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1992 "bomb-out" hack was added.)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1993
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
1994 #### Fix this horrifitude!
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1995 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1996 signal_call_debugger (conditions, sig, data, Qnil, 0,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1997 &stack_trace_displayed,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1998 &debugger_entered);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1999 UNGCPRO;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2000 throw_or_bomb_out (Qtop_level, Qt, 1, sig, data); /* Doesn't return */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2001 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2002 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2003
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2004
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2005 /****************** Error functions class 1 ******************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2006
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2007 /* Class 1: General functions that signal an error.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2008 These functions take an error type and a list of associated error
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2009 data. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2010
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2011 /* The simplest external error function: it would be called
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2012 signal_continuable_error() in the terminology below, but it's
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2013 Lisp-callable. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2014
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2015 DEFUN ("signal", Fsignal, 2, 2, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2016 Signal a continuable error. Args are ERROR-SYMBOL, and associated DATA.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2017 An error symbol is a symbol defined using `define-error'.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2018 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
2019 If the signal is handled, DATA is made available to the handler.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2020 See also the function `signal-error', and the functions to handle errors:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2021 `condition-case' and `call-with-condition-handler'.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2022
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2023 Note that this function can return, if the debugger is invoked and the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2024 user invokes the "return from signal" option.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2025 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2026 (error_symbol, data))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2027 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2028 /* Fsignal() is one of these functions that's called all the time
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2029 with newly-created Lisp objects. We allow this; but we must GC-
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2030 protect the objects because all sorts of weird stuff could
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2031 happen. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2032
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2033 struct gcpro gcpro1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2034
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2035 GCPRO1 (data);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2036 if (!NILP (Vcurrent_error_state))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2037 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2038 if (!NILP (Vcurrent_warning_class))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2039 warn_when_safe_lispobj (Vcurrent_warning_class, Qwarning,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2040 Fcons (error_symbol, data));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2041 Fthrow (Qunbound_suspended_errors_tag, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2042 abort (); /* Better not get here! */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2043 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2044 RETURN_UNGCPRO (signal_1 (error_symbol, data));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2045 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2046
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2047 /* Signal a non-continuable error. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2048
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2049 DOESNT_RETURN
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2050 signal_error (Lisp_Object sig, Lisp_Object data)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2051 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2052 for (;;)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2053 Fsignal (sig, 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
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2056 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2057 call_with_suspended_errors_1 (Lisp_Object opaque_arg)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2058 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2059 Lisp_Object *kludgy_args = (Lisp_Object *) get_opaque_ptr (opaque_arg);
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 167
diff changeset
2060 return primitive_funcall ((lisp_fn_t) get_opaque_ptr (kludgy_args[0]),
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 167
diff changeset
2061 XINT (kludgy_args[1]), kludgy_args + 2);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2062 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2063
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2064 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2065 restore_current_warning_class (Lisp_Object warning_class)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2066 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2067 Vcurrent_warning_class = warning_class;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2068 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2069 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2070
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2071 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2072 restore_current_error_state (Lisp_Object error_state)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2073 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2074 Vcurrent_error_state = error_state;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2075 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2076 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2077
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2078 /* Many functions would like to do one of three things if an error
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2079 occurs:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2080
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2081 (1) signal the error, as usual.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2082 (2) silently fail and return some error value.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2083 (3) do as (2) but issue a warning in the process.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2084
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2085 Currently there's lots of stuff that passes an Error_behavior
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2086 value and calls maybe_signal_error() and other such functions.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2087 This approach is inherently error-prone and broken. A much
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2088 more robust and easier approach is to use call_with_suspended_errors().
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2089 Wrap this around any function in which you might want errors
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2090 to not be errors.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2091 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2092
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2093 Lisp_Object
179
9ad43877534d Import from CVS: tag r20-3b16
cvs
parents: 173
diff changeset
2094 call_with_suspended_errors (lisp_fn_t fun, volatile Lisp_Object retval,
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2095 Lisp_Object class, Error_behavior errb,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2096 int nargs, ...)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2097 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2098 va_list vargs;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2099 int speccount;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2100 Lisp_Object kludgy_args[22];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2101 Lisp_Object *args = kludgy_args + 2;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2102 int i;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2103 Lisp_Object no_error;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2104
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2105 assert (SYMBOLP (class)); /* sanity-check */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2106 assert (!NILP (class));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2107 assert (nargs >= 0 && nargs < 20);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2108
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2109 /* ERROR_ME means don't trap errors. (However, if errors are
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2110 already trapped, we leave them trapped.)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2111
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2112 Otherwise, we trap errors, and trap warnings if ERROR_ME_WARN.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2113
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2114 If ERROR_ME_NOT, it causes no warnings even if warnings
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2115 were previously enabled. However, we never change the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2116 warning class from one to another. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2117 if (!ERRB_EQ (errb, ERROR_ME))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2118 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2119 if (ERRB_EQ (errb, ERROR_ME_NOT)) /* person wants no warnings */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2120 class = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2121 errb = ERROR_ME_NOT;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2122 no_error = Qt;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2123 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2124 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2125 no_error = Qnil;
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
2126
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2127 va_start (vargs, nargs);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2128 for (i = 0; i < nargs; i++)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2129 args[i] = va_arg (vargs, Lisp_Object);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2130 va_end (vargs);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2131
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2132 /* If error-checking is not disabled, just call the function.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2133 It's important not to override disabled error-checking with
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2134 enabled error-checking. */
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
2135
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2136 if (ERRB_EQ (errb, ERROR_ME))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2137 return primitive_funcall (fun, nargs, args);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2138
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
2139 speccount = specpdl_depth_counter;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2140 if (NILP (class) || NILP (Vcurrent_warning_class))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2141 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2142 /* If we're currently calling for no warnings, then make it so.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2143 If we're currently calling for warnings and we weren't
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2144 previously, then set our warning class; otherwise, leave
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2145 the existing one alone. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2146 record_unwind_protect (restore_current_warning_class,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2147 Vcurrent_warning_class);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2148 Vcurrent_warning_class = class;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2149 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2150 if (!EQ (Vcurrent_error_state, no_error))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2151 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2152 record_unwind_protect (restore_current_error_state,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2153 Vcurrent_error_state);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2154 Vcurrent_error_state = no_error;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2155 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2156
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2157 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2158 int threw;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2159 Lisp_Object the_retval;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2160 Lisp_Object opaque1 = make_opaque_ptr (kludgy_args);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2161 Lisp_Object opaque2 = make_opaque_ptr ((void *) fun);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2162 struct gcpro gcpro1, gcpro2;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2163
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2164 GCPRO2 (opaque1, opaque2);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2165 kludgy_args[0] = opaque2;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2166 kludgy_args[1] = make_int (nargs);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2167 the_retval = internal_catch (Qunbound_suspended_errors_tag,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2168 call_with_suspended_errors_1,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2169 opaque1, &threw);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2170 free_opaque_ptr (opaque1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2171 free_opaque_ptr (opaque2);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2172 UNGCPRO;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2173 /* Use the returned value except in non-local exit, when
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2174 RETVAL applies. */
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
2175 /* Some perverse compilers require the perverse cast below. */
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
2176 return unbind_to (speccount,
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
2177 threw ? *((Lisp_Object*) &(retval)) : the_retval);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2178 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2179 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2180
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2181 /* Signal a non-continuable error or display a warning or do nothing,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2182 according to ERRB. CLASS is the class of warning and should
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2183 refer to what sort of operation is being done (e.g. Qtoolbar,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2184 Qresource, etc.). */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2185
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2186 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2187 maybe_signal_error (Lisp_Object sig, Lisp_Object data, Lisp_Object class,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2188 Error_behavior errb)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2189 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2190 if (ERRB_EQ (errb, ERROR_ME_NOT))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2191 return;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2192 else if (ERRB_EQ (errb, ERROR_ME_WARN))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2193 warn_when_safe_lispobj (class, Qwarning, Fcons (sig, data));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2194 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2195 for (;;)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2196 Fsignal (sig, data);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2197 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2198
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2199 /* Signal a continuable error or display a warning or do nothing,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2200 according to ERRB. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2201
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2202 Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2203 maybe_signal_continuable_error (Lisp_Object sig, Lisp_Object data,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2204 Lisp_Object class, Error_behavior errb)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2205 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2206 if (ERRB_EQ (errb, ERROR_ME_NOT))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2207 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2208 else if (ERRB_EQ (errb, ERROR_ME_WARN))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2209 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2210 warn_when_safe_lispobj (class, Qwarning, Fcons (sig, data));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2211 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2212 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2213 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2214 return Fsignal (sig, data);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2215 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2216
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2217
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2218 /****************** Error functions class 2 ******************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2219
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2220 /* Class 2: Printf-like functions that signal an error.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2221 These functions signal an error of type Qerror, whose data
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2222 is a single string, created using the arguments. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2223
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2224 /* dump an error message; called like printf */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2225
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2226 DOESNT_RETURN
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2227 error (CONST char *fmt, ...)
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 obj;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2230 va_list args;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2231
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2232 va_start (args, fmt);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2233 obj = emacs_doprnt_string_va ((CONST Bufbyte *) GETTEXT (fmt), Qnil, -1,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2234 args);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2235 va_end (args);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2236
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2237 /* Fsignal GC-protects its args */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2238 signal_error (Qerror, list1 (obj));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2239 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2240
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2241 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2242 maybe_error (Lisp_Object class, Error_behavior errb, CONST char *fmt, ...)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2243 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2244 Lisp_Object obj;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2245 va_list args;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2246
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2247 /* Optimization: */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2248 if (ERRB_EQ (errb, ERROR_ME_NOT))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2249 return;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2250
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2251 va_start (args, fmt);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2252 obj = emacs_doprnt_string_va ((CONST Bufbyte *) GETTEXT (fmt), Qnil, -1,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2253 args);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2254 va_end (args);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2255
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2256 /* Fsignal GC-protects its args */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2257 maybe_signal_error (Qerror, list1 (obj), class, errb);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2258 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2259
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2260 Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2261 continuable_error (CONST char *fmt, ...)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2262 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2263 Lisp_Object obj;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2264 va_list args;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2265
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2266 va_start (args, fmt);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2267 obj = emacs_doprnt_string_va ((CONST Bufbyte *) GETTEXT (fmt), Qnil, -1,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2268 args);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2269 va_end (args);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2270
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2271 /* Fsignal GC-protects its args */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2272 return Fsignal (Qerror, list1 (obj));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2273 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2274
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2275 Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2276 maybe_continuable_error (Lisp_Object class, Error_behavior errb,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2277 CONST char *fmt, ...)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2278 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2279 Lisp_Object obj;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2280 va_list args;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2281
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2282 /* Optimization: */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2283 if (ERRB_EQ (errb, ERROR_ME_NOT))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2284 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2285
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2286 va_start (args, fmt);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2287 obj = emacs_doprnt_string_va ((CONST Bufbyte *) GETTEXT (fmt), Qnil, -1,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2288 args);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2289 va_end (args);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2290
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2291 /* Fsignal GC-protects its args */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2292 return maybe_signal_continuable_error (Qerror, list1 (obj), class, errb);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2293 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2294
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2295
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2296 /****************** Error functions class 3 ******************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2297
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2298 /* Class 3: Signal an error with a string and an associated object.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2299 These functions signal an error of type Qerror, whose data
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2300 is two objects, a string and a related Lisp object (usually the object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2301 where the error is occurring). */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2302
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2303 DOESNT_RETURN
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2304 signal_simple_error (CONST char *reason, Lisp_Object frob)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2305 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2306 signal_error (Qerror, list2 (build_translated_string (reason), frob));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2307 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2308
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2309 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2310 maybe_signal_simple_error (CONST char *reason, Lisp_Object frob,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2311 Lisp_Object class, Error_behavior errb)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2312 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2313 /* Optimization: */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2314 if (ERRB_EQ (errb, ERROR_ME_NOT))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2315 return;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2316 maybe_signal_error (Qerror, list2 (build_translated_string (reason), frob),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2317 class, errb);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2318 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2319
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2320 Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2321 signal_simple_continuable_error (CONST char *reason, Lisp_Object frob)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2322 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2323 return Fsignal (Qerror, list2 (build_translated_string (reason), frob));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2324 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2325
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2326 Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2327 maybe_signal_simple_continuable_error (CONST char *reason, Lisp_Object frob,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2328 Lisp_Object class, Error_behavior errb)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2329 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2330 /* Optimization: */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2331 if (ERRB_EQ (errb, ERROR_ME_NOT))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2332 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2333 return maybe_signal_continuable_error
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2334 (Qerror, list2 (build_translated_string (reason),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2335 frob), class, errb);
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
2336 }
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2337
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2338
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2339 /****************** Error functions class 4 ******************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2340
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2341 /* Class 4: Printf-like functions that signal an error.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2342 These functions signal an error of type Qerror, whose data
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2343 is a two objects, a string (created using the arguments) and a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2344 Lisp object.
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 DOESNT_RETURN
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2348 error_with_frob (Lisp_Object frob, CONST char *fmt, ...)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2349 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2350 Lisp_Object obj;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2351 va_list args;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2352
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2353 va_start (args, fmt);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2354 obj = emacs_doprnt_string_va ((CONST Bufbyte *) GETTEXT (fmt), Qnil, -1,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2355 args);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2356 va_end (args);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2357
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2358 /* Fsignal GC-protects its args */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2359 signal_error (Qerror, list2 (obj, frob));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2360 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2361
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2362 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2363 maybe_error_with_frob (Lisp_Object frob, Lisp_Object class,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2364 Error_behavior errb, CONST char *fmt, ...)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2365 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2366 Lisp_Object obj;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2367 va_list args;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2368
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2369 /* Optimization: */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2370 if (ERRB_EQ (errb, ERROR_ME_NOT))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2371 return;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2372
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2373 va_start (args, fmt);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2374 obj = emacs_doprnt_string_va ((CONST Bufbyte *) GETTEXT (fmt), Qnil, -1,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2375 args);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2376 va_end (args);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2377
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2378 /* Fsignal GC-protects its args */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2379 maybe_signal_error (Qerror, list2 (obj, frob), class, errb);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2380 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2381
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2382 Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2383 continuable_error_with_frob (Lisp_Object frob, CONST char *fmt, ...)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2384 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2385 Lisp_Object obj;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2386 va_list args;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2387
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2388 va_start (args, fmt);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2389 obj = emacs_doprnt_string_va ((CONST Bufbyte *) GETTEXT (fmt), Qnil, -1,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2390 args);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2391 va_end (args);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2392
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2393 /* Fsignal GC-protects its args */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2394 return Fsignal (Qerror, list2 (obj, frob));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2395 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2396
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2397 Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2398 maybe_continuable_error_with_frob (Lisp_Object frob, Lisp_Object class,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2399 Error_behavior errb, CONST char *fmt, ...)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2400 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2401 Lisp_Object obj;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2402 va_list args;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2403
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2404 /* Optimization: */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2405 if (ERRB_EQ (errb, ERROR_ME_NOT))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2406 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2407
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2408 va_start (args, fmt);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2409 obj = emacs_doprnt_string_va ((CONST Bufbyte *) GETTEXT (fmt), Qnil, -1,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2410 args);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2411 va_end (args);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2412
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2413 /* Fsignal GC-protects its args */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2414 return maybe_signal_continuable_error (Qerror, list2 (obj, frob),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2415 class, errb);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2416 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2417
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2418
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2419 /****************** Error functions class 5 ******************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2420
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2421 /* Class 5: Signal an error with a string and two associated objects.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2422 These functions signal an error of type Qerror, whose data
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2423 is three objects, a string and two related Lisp objects. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2424
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2425 DOESNT_RETURN
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2426 signal_simple_error_2 (CONST char *reason,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2427 Lisp_Object frob0, Lisp_Object frob1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2428 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2429 signal_error (Qerror, list3 (build_translated_string (reason), frob0,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2430 frob1));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2431 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2432
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2433 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2434 maybe_signal_simple_error_2 (CONST char *reason, Lisp_Object frob0,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2435 Lisp_Object frob1, Lisp_Object class,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2436 Error_behavior errb)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2437 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2438 /* Optimization: */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2439 if (ERRB_EQ (errb, ERROR_ME_NOT))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2440 return;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2441 maybe_signal_error (Qerror, list3 (build_translated_string (reason), frob0,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2442 frob1), 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 Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2447 signal_simple_continuable_error_2 (CONST char *reason, Lisp_Object frob0,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2448 Lisp_Object frob1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2449 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2450 return Fsignal (Qerror, list3 (build_translated_string (reason), frob0,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2451 frob1));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2452 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2453
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2454 Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2455 maybe_signal_simple_continuable_error_2 (CONST char *reason, Lisp_Object frob0,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2456 Lisp_Object frob1, Lisp_Object class,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2457 Error_behavior errb)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2458 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2459 /* Optimization: */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2460 if (ERRB_EQ (errb, ERROR_ME_NOT))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2461 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2462 return maybe_signal_continuable_error
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2463 (Qerror, list3 (build_translated_string (reason), frob0,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2464 frob1),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2465 class, errb);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2466 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2467
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2468
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2469 /* This is what the QUIT macro calls to signal a quit */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2470 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2471 signal_quit (void)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2472 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2473 /* This function can GC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2474 if (EQ (Vquit_flag, Qcritical))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2475 debug_on_quit |= 2; /* set critical bit. */
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
2476 Vquit_flag = Qnil;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2477 /* note that this is continuable. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2478 Fsignal (Qquit, Qnil);
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
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2482 /**********************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2483 /* User commands */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2484 /**********************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2485
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2486 DEFUN ("commandp", Fcommandp, 1, 1, 0, /*
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
2487 Return t if FUNCTION makes provisions for interactive calling.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2488 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
2489 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
2490 definition.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2491
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2492 Interactively callable functions include
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2493
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2494 -- strings and vectors (treated as keyboard macros)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2495 -- lambda-expressions that contain a top-level call to `interactive'
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2496 -- autoload definitions made by `autoload' with non-nil fourth argument
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2497 (i.e. the interactive flag)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2498 -- compiled-function objects with a non-nil `compiled-function-interactive'
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2499 value
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2500 -- subrs (built-in functions) that are interactively callable
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2501
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2502 Also, a symbol satisfies `commandp' if its function definition does so.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2503 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2504 (function))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2505 {
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
2506 Lisp_Object fun = indirect_function (function, 0);
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
2507
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2508 if (UNBOUNDP (fun))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2509 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2510
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2511 /* Emacs primitives are interactive if their DEFUN specifies an
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2512 interactive spec. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2513 if (SUBRP (fun))
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 116
diff changeset
2514 return XSUBR (fun)->prompt ? Qt : Qnil;
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 116
diff changeset
2515
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 116
diff changeset
2516 if (COMPILED_FUNCTIONP (fun))
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 116
diff changeset
2517 return XCOMPILED_FUNCTION (fun)->flags.interactivep ? Qt : Qnil;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2518
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2519 /* Strings and vectors are keyboard macros. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2520 if (VECTORP (fun) || STRINGP (fun))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2521 return Qt;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2522
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2523 /* Lists may represent commands. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2524 if (!CONSP (fun))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2525 return Qnil;
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
2526 {
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
2527 Lisp_Object funcar = XCAR (fun);
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
2528 if (!SYMBOLP (funcar))
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
2529 return Fsignal (Qinvalid_function, list1 (fun));
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
2530 if (EQ (funcar, Qlambda))
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
2531 return Fassq (Qinteractive, Fcdr (Fcdr (fun)));
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
2532 if (EQ (funcar, Qautoload))
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
2533 return Fcar (Fcdr (Fcdr (Fcdr (fun))));
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
2534 else
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
2535 return Qnil;
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
2536 }
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2537 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2538
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2539 DEFUN ("command-execute", Fcommand_execute, 1, 3, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2540 Execute CMD as an editor command.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2541 CMD must be an object that satisfies the `commandp' predicate.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2542 Optional second arg RECORD-FLAG is as in `call-interactively'.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2543 The argument KEYS specifies the value to use instead of (this-command-keys)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2544 when reading the arguments.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2545 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2546 (cmd, record, keys))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2547 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2548 /* This function can GC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2549 Lisp_Object prefixarg;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2550 Lisp_Object final = cmd;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2551 struct backtrace backtrace;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2552 struct console *con = XCONSOLE (Vselected_console);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2553
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2554 prefixarg = con->prefix_arg;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2555 con->prefix_arg = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2556 Vcurrent_prefix_arg = prefixarg;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2557 debug_on_next_call = 0; /* #### from FSFmacs; correct? */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2558
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2559 if (SYMBOLP (cmd) && !NILP (Fget (cmd, Qdisabled, Qnil)))
308
33bdb3d4b97f Import from CVS: tag r21-0b52
cvs
parents: 298
diff changeset
2560 {
33bdb3d4b97f Import from CVS: tag r21-0b52
cvs
parents: 298
diff changeset
2561 Lisp_Object tem = Fsymbol_value(Vdisabled_command_hook);
33bdb3d4b97f Import from CVS: tag r21-0b52
cvs
parents: 298
diff changeset
2562
33bdb3d4b97f Import from CVS: tag r21-0b52
cvs
parents: 298
diff changeset
2563 if (!NILP(tem))
33bdb3d4b97f Import from CVS: tag r21-0b52
cvs
parents: 298
diff changeset
2564 {
33bdb3d4b97f Import from CVS: tag r21-0b52
cvs
parents: 298
diff changeset
2565 return Frun_hooks (1, &Vdisabled_command_hook);
33bdb3d4b97f Import from CVS: tag r21-0b52
cvs
parents: 298
diff changeset
2566 }
33bdb3d4b97f Import from CVS: tag r21-0b52
cvs
parents: 298
diff changeset
2567 }
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2568
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2569 for (;;)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2570 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2571 final = indirect_function (cmd, 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2572 if (CONSP (final) && EQ (Fcar (final), Qautoload))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2573 do_autoload (final, cmd);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2574 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2575 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2576 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2577
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2578 if (CONSP (final) || SUBRP (final) || COMPILED_FUNCTIONP (final))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2579 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2580 #ifdef EMACS_BTL
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2581 backtrace.id_number = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2582 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2583 backtrace.function = &Qcall_interactively;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2584 backtrace.args = &cmd;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2585 backtrace.nargs = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2586 backtrace.evalargs = 0;
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
2587 backtrace.pdlcount = specpdl_depth_counter;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2588 backtrace.debug_on_exit = 0;
116
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 94
diff changeset
2589 PUSH_BACKTRACE (backtrace);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2590
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2591 final = Fcall_interactively (cmd, record, keys);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2592
116
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 94
diff changeset
2593 POP_BACKTRACE (backtrace);
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 167
diff changeset
2594 return final;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2595 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2596 else if (STRINGP (final) || VECTORP (final))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2597 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2598 return Fexecute_kbd_macro (final, prefixarg);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2599 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2600 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2601 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2602 Fsignal (Qwrong_type_argument,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2603 Fcons (Qcommandp,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2604 ((EQ (cmd, final))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2605 ? list1 (cmd)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2606 : list2 (cmd, final))));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2607 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2608 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2609 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2610
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2611 DEFUN ("interactive-p", Finteractive_p, 0, 0, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2612 Return t if function in which this appears was called interactively.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2613 This means that the function was called with call-interactively (which
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2614 includes being called as the binding of a key)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2615 and input is currently coming from the keyboard (not in keyboard macro).
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2616 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2617 ())
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2618 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2619 REGISTER struct backtrace *btp;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2620 REGISTER Lisp_Object fun;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2621
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2622 if (!INTERACTIVE)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2623 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2624
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2625 /* Unless the object was compiled, skip the frame of interactive-p itself
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2626 (if interpreted) or the frame of byte-code (if called from a compiled
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2627 function). Note that *btp->function may be a symbol pointing at a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2628 compiled function. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2629 btp = backtrace_list;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2630
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2631 #if 0 /* FSFmacs */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2632
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2633 /* #### FSFmacs does the following instead. I can't figure
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2634 out which one is more correct. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2635 /* 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
2636 the top for Finteractive_p itself. If so, skip it. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2637 fun = Findirect_function (*btp->function);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2638 if (SUBRP (fun) && XSUBR (fun) == &Sinteractive_p)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2639 btp = btp->next;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2640
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2641 /* If we're running an Emacs 18-style byte-compiled function, there
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2642 may be a frame for Fbyte_code. Now, given the strictest
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2643 definition, this function isn't really being called
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2644 interactively, but because that's the way Emacs 18 always builds
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2645 byte-compiled functions, we'll accept it for now. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2646 if (EQ (*btp->function, Qbyte_code))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2647 btp = btp->next;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2648
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2649 /* If this isn't a byte-compiled function, then we may now be
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2650 looking at several frames for special forms. Skip past them. */
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
2651 while (btp &&
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2652 btp->nargs == UNEVALLED)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2653 btp = btp->next;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2654
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2655 #else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2656
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2657 if (! (COMPILED_FUNCTIONP (Findirect_function (*btp->function))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2658 btp = btp->next;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2659 for (;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2660 btp && (btp->nargs == UNEVALLED
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2661 || EQ (*btp->function, Qbyte_code));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2662 btp = btp->next)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2663 {}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2664 /* btp now points at the frame of the innermost function
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2665 that DOES eval its args.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2666 If it is a built-in function (such as load or eval-region)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2667 return nil. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2668 /* Beats me why this is necessary, but it is */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2669 if (btp && EQ (*btp->function, Qcall_interactively))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2670 return Qt;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2671
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2672 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2673
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2674 fun = Findirect_function (*btp->function);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2675 if (SUBRP (fun))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2676 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2677 /* btp points to the frame of a Lisp function that called interactive-p.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2678 Return t if that function was called interactively. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2679 if (btp && btp->next && EQ (*btp->next->function, Qcall_interactively))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2680 return Qt;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2681 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2682 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2683
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2684
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2685 /**********************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2686 /* Autoloading */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2687 /**********************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2688
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2689 DEFUN ("autoload", Fautoload, 2, 5, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2690 Define FUNCTION to autoload from FILE.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2691 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
2692 Third arg DOCSTRING is documentation for the function.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2693 Fourth arg INTERACTIVE if non-nil says function can be called interactively.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2694 Fifth arg TYPE indicates the type of the object:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2695 nil or omitted says FUNCTION is a function,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2696 `keymap' says FUNCTION is really a keymap, and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2697 `macro' or t says FUNCTION is really a macro.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2698 Third through fifth args give info about the real definition.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2699 They default to nil.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2700 If FUNCTION is already defined other than as an autoload,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2701 this does nothing and returns nil.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2702 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2703 (function, file, docstring, interactive, type))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2704 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2705 /* This function can GC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2706 CHECK_SYMBOL (function);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2707 CHECK_STRING (file);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2708
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2709 /* If function is defined and not as an autoload, don't override */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2710 if (!UNBOUNDP (XSYMBOL (function)->function)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2711 && !(CONSP (XSYMBOL (function)->function)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2712 && EQ (XCAR (XSYMBOL (function)->function), Qautoload)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2713 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2714
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2715 if (purify_flag)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2716 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2717 /* Attempt to avoid consing identical (string=) pure strings. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2718 file = Fsymbol_name (Fintern (file, Qnil));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2719 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2720
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
2721 return Ffset (function,
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2722 Fpurecopy (Fcons (Qautoload, list4 (file,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2723 docstring,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2724 interactive,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2725 type))));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2726 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2727
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2728 Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2729 un_autoload (Lisp_Object oldqueue)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2730 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2731 /* This function can GC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2732 REGISTER Lisp_Object queue, first, second;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2733
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2734 /* Queue to unwind is current value of Vautoload_queue.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2735 oldqueue is the shadowed value to leave in Vautoload_queue. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2736 queue = Vautoload_queue;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2737 Vautoload_queue = oldqueue;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2738 while (CONSP (queue))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2739 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2740 first = Fcar (queue);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2741 second = Fcdr (first);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2742 first = Fcar (first);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2743 if (NILP (second))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2744 Vfeatures = first;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2745 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2746 Ffset (first, second);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2747 queue = Fcdr (queue);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2748 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2749 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2750 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2751
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2752 void
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
2753 do_autoload (Lisp_Object fundef,
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2754 Lisp_Object funname)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2755 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2756 /* This function can GC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2757 int speccount = specpdl_depth_counter;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2758 Lisp_Object fun = funname;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2759 struct gcpro gcpro1, gcpro2;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2760
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2761 CHECK_SYMBOL (funname);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2762 GCPRO2 (fun, funname);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2763
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2764 /* Value saved here is to be restored into Vautoload_queue */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2765 record_unwind_protect (un_autoload, Vautoload_queue);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2766 Vautoload_queue = Qt;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2767 call4 (Qload, Fcar (Fcdr (fundef)), Qnil, noninteractive ? Qt : Qnil,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2768 Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2769
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2770 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2771 Lisp_Object queue = Vautoload_queue;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2772
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2773 /* Save the old autoloads, in case we ever do an unload. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2774 queue = Vautoload_queue;
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 Lisp_Object first = Fcar (queue);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2778 Lisp_Object second = Fcdr (first);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2779
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2780 first = Fcar (first);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2781
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2782 /* Note: This test is subtle. The cdr of an autoload-queue entry
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2783 may be an atom if the autoload entry was generated by a defalias
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2784 or fset. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2785 if (CONSP (second))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2786 Fput (first, Qautoload, (Fcdr (second)));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2787
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2788 queue = Fcdr (queue);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2789 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2790 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2791
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2792 /* Once loading finishes, don't undo it. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2793 Vautoload_queue = Qt;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2794 unbind_to (speccount, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2795
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2796 fun = indirect_function (fun, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2797
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2798 #if 0 /* FSFmacs */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2799 if (!NILP (Fequal (fun, fundef)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2800 #else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2801 if (UNBOUNDP (fun)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2802 || (CONSP (fun)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2803 && EQ (XCAR (fun), Qautoload)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2804 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2805 error ("Autoloading failed to define function %s",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2806 string_data (XSYMBOL (funname)->name));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2807 UNGCPRO;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2808 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2809
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2810
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2811 /**********************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2812 /* eval, funcall, apply */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2813 /**********************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2814
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
2815 static Lisp_Object funcall_lambda (Lisp_Object fun,
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2816 int nargs, Lisp_Object args[]);
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
2817 static Lisp_Object apply_lambda (Lisp_Object fun,
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2818 int nargs, Lisp_Object args);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2819 static int in_warnings;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2820
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2821 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2822 in_warnings_restore (Lisp_Object minimus)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2823 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2824 in_warnings = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2825 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2826 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2827
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
2828 #define AV_0(av)
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
2829 #define AV_1(av) av[0]
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
2830 #define AV_2(av) AV_1(av), av[1]
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
2831 #define AV_3(av) AV_2(av), av[2]
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
2832 #define AV_4(av) AV_3(av), av[3]
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
2833 #define AV_5(av) AV_4(av), av[4]
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
2834 #define AV_6(av) AV_5(av), av[5]
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
2835 #define AV_7(av) AV_6(av), av[6]
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
2836 #define AV_8(av) AV_7(av), av[7]
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
2837
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
2838 #define PRIMITIVE_FUNCALL(fn, av, ac) \
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
2839 (((Lisp_Object (*)(EXFUN_##ac)) (fn)) (AV_##ac (av)))
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
2840
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
2841 /* If subr's take more than 8 arguments, more cases need to be added
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
2842 to this switch. (But don't do it - if you really need a SUBR with
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
2843 more than 8 arguments, use max_args == MANY.
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
2844 See the DEFUN macro in lisp.h) */
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
2845 #define inline_funcall_fn(rv, fn, av, ac) do { \
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
2846 switch (ac) { \
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
2847 case 0: rv = PRIMITIVE_FUNCALL(fn, av, 0); break; \
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
2848 case 1: rv = PRIMITIVE_FUNCALL(fn, av, 1); break; \
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
2849 case 2: rv = PRIMITIVE_FUNCALL(fn, av, 2); break; \
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
2850 case 3: rv = PRIMITIVE_FUNCALL(fn, av, 3); break; \
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
2851 case 4: rv = PRIMITIVE_FUNCALL(fn, av, 4); break; \
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
2852 case 5: rv = PRIMITIVE_FUNCALL(fn, av, 5); break; \
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
2853 case 6: rv = PRIMITIVE_FUNCALL(fn, av, 6); break; \
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
2854 case 7: rv = PRIMITIVE_FUNCALL(fn, av, 7); break; \
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
2855 case 8: rv = PRIMITIVE_FUNCALL(fn, av, 8); break; \
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
2856 default: abort(); rv = Qnil; break; \
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
2857 } \
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
2858 } while (0)
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
2859
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
2860 #define inline_funcall_subr(rv, subr, av) do { \
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
2861 void (*fn)() = (void (*)()) (subr_function(subr)); \
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
2862 inline_funcall_fn (rv, fn, av, subr->max_args); \
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
2863 } while (0)
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
2864
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
2865 static Lisp_Object
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
2866 primitive_funcall (lisp_fn_t fn, int nargs, Lisp_Object args[])
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
2867 {
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
2868 Lisp_Object rv;
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
2869 inline_funcall_fn (rv, fn, args, nargs);
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
2870 return rv;
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
2871 }
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2872
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2873 DEFUN ("eval", Feval, 1, 1, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2874 Evaluate FORM and return its value.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2875 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2876 (form))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2877 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2878 /* This function can GC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2879 Lisp_Object fun, val, original_fun, original_args;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2880 int nargs;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2881 struct backtrace backtrace;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2882
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2883 /* 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
2884 while (!in_warnings && !NILP (Vpending_warnings))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2885 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2886 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4;
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
2887 int speccount = specpdl_depth_counter;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2888 Lisp_Object this_warning_cons, this_warning, class, level, messij;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2889
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2890 record_unwind_protect (in_warnings_restore, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2891 in_warnings = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2892 this_warning_cons = Vpending_warnings;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2893 this_warning = XCAR (this_warning_cons);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2894 /* in case an error occurs in the warn function, at least
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2895 it won't happen infinitely */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2896 Vpending_warnings = XCDR (Vpending_warnings);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2897 free_cons (XCONS (this_warning_cons));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2898 class = XCAR (this_warning);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2899 level = XCAR (XCDR (this_warning));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2900 messij = XCAR (XCDR (XCDR (this_warning)));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2901 free_list (this_warning);
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
2902
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2903 if (NILP (Vpending_warnings))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2904 Vpending_warnings_tail = Qnil; /* perhaps not strictly necessary,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2905 but safer */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2906
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2907 GCPRO4 (form, class, level, messij);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2908 if (!STRINGP (messij))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2909 messij = Fprin1_to_string (messij, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2910 call3 (Qdisplay_warning, class, messij, level);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2911 UNGCPRO;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2912 unbind_to (speccount, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2913 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2914
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
2915 if (SYMBOLP (form))
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
2916 return Fsymbol_value (form);
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
2917
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2918 if (!CONSP (form))
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
2919 return form;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2920
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2921 QUIT;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2922 if ((consing_since_gc > gc_cons_threshold) || always_gc)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2923 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2924 struct gcpro gcpro1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2925 GCPRO1 (form);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2926 garbage_collect_1 ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2927 UNGCPRO;
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 if (++lisp_eval_depth > max_lisp_eval_depth)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2931 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2932 if (max_lisp_eval_depth < 100)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2933 max_lisp_eval_depth = 100;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2934 if (lisp_eval_depth > max_lisp_eval_depth)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2935 error ("Lisp nesting exceeds `max-lisp-eval-depth'");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2936 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2937
195
a2f645c6b9f8 Import from CVS: tag r20-3b24
cvs
parents: 187
diff changeset
2938 /*
a2f645c6b9f8 Import from CVS: tag r20-3b24
cvs
parents: 187
diff changeset
2939 * At this point we know that `form' is a Lisp_Cons so we can safely
a2f645c6b9f8 Import from CVS: tag r20-3b24
cvs
parents: 187
diff changeset
2940 * use XCAR and XCDR.
a2f645c6b9f8 Import from CVS: tag r20-3b24
cvs
parents: 187
diff changeset
2941 */
a2f645c6b9f8 Import from CVS: tag r20-3b24
cvs
parents: 187
diff changeset
2942 original_fun = XCAR (form);
a2f645c6b9f8 Import from CVS: tag r20-3b24
cvs
parents: 187
diff changeset
2943 original_args = XCDR (form);
a2f645c6b9f8 Import from CVS: tag r20-3b24
cvs
parents: 187
diff changeset
2944
a2f645c6b9f8 Import from CVS: tag r20-3b24
cvs
parents: 187
diff changeset
2945 /*
a2f645c6b9f8 Import from CVS: tag r20-3b24
cvs
parents: 187
diff changeset
2946 * Formerly we used a call to Flength here, but that is slow and
a2f645c6b9f8 Import from CVS: tag r20-3b24
cvs
parents: 187
diff changeset
2947 * wasteful due to type checking, stack push/pop and initialization.
a2f645c6b9f8 Import from CVS: tag r20-3b24
cvs
parents: 187
diff changeset
2948 * We know we're dealing with a cons, so open code it for speed.
a2f645c6b9f8 Import from CVS: tag r20-3b24
cvs
parents: 187
diff changeset
2949 *
a2f645c6b9f8 Import from CVS: tag r20-3b24
cvs
parents: 187
diff changeset
2950 * We call QUIT in the loop so that a circular arg list won't lock
a2f645c6b9f8 Import from CVS: tag r20-3b24
cvs
parents: 187
diff changeset
2951 * up the editor.
a2f645c6b9f8 Import from CVS: tag r20-3b24
cvs
parents: 187
diff changeset
2952 */
a2f645c6b9f8 Import from CVS: tag r20-3b24
cvs
parents: 187
diff changeset
2953 for (nargs = 0, val = original_args ; CONSP (val) ; val = XCDR (val))
a2f645c6b9f8 Import from CVS: tag r20-3b24
cvs
parents: 187
diff changeset
2954 {
a2f645c6b9f8 Import from CVS: tag r20-3b24
cvs
parents: 187
diff changeset
2955 nargs++;
a2f645c6b9f8 Import from CVS: tag r20-3b24
cvs
parents: 187
diff changeset
2956 QUIT;
a2f645c6b9f8 Import from CVS: tag r20-3b24
cvs
parents: 187
diff changeset
2957 }
a2f645c6b9f8 Import from CVS: tag r20-3b24
cvs
parents: 187
diff changeset
2958 if (! NILP (val))
a2f645c6b9f8 Import from CVS: tag r20-3b24
cvs
parents: 187
diff changeset
2959 signal_simple_error ("Argument list must be nil-terminated",
a2f645c6b9f8 Import from CVS: tag r20-3b24
cvs
parents: 187
diff changeset
2960 original_args);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2961
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2962 #ifdef EMACS_BTL
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2963 backtrace.id_number = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2964 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2965 backtrace.pdlcount = specpdl_depth_counter;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2966 backtrace.function = &original_fun; /* This also protects them from gc */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2967 backtrace.args = &original_args;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2968 backtrace.nargs = UNEVALLED;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2969 backtrace.evalargs = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2970 backtrace.debug_on_exit = 0;
116
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 94
diff changeset
2971 PUSH_BACKTRACE (backtrace);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2972
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2973 if (debug_on_next_call)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2974 do_debug_on_call (Qt);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2975
245
51092a27c943 Import from CVS: tag r20-5b21
cvs
parents: 243
diff changeset
2976 if (profiling_active)
51092a27c943 Import from CVS: tag r20-5b21
cvs
parents: 243
diff changeset
2977 profile_increase_call_count (original_fun);
51092a27c943 Import from CVS: tag r20-5b21
cvs
parents: 243
diff changeset
2978
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2979 /* At this point, only original_fun and original_args
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2980 have values that will be used below */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2981 retry:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2982 fun = indirect_function (original_fun, 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2983
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2984 if (SUBRP (fun))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2985 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2986 struct Lisp_Subr *subr = XSUBR (fun);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2987 int max_args = subr->max_args;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2988 Lisp_Object argvals[SUBR_MAX_ARGS];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2989 Lisp_Object args_left;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2990 REGISTER int i;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2991
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2992 args_left = original_args;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2993
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2994 if (nargs < subr->min_args
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2995 || (max_args >= 0 && max_args < nargs))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2996 {
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
2997 return Fsignal (Qwrong_number_of_arguments,
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2998 list2 (fun, make_int (nargs)));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2999 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3000
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3001 if (max_args == UNEVALLED)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3002 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3003 backtrace.evalargs = 0;
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
3004 val = ((Lisp_Object (*) (Lisp_Object)) (subr_function (subr))) (args_left);
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
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3007 else if (max_args == MANY)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3008 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3009 /* Pass a vector of evaluated arguments */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3010 Lisp_Object *vals;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3011 REGISTER int argnum;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3012 struct gcpro gcpro1, gcpro2, gcpro3;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3013
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
3014 vals = alloca_array (Lisp_Object, nargs);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3015
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3016 GCPRO3 (args_left, fun, vals[0]);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3017 gcpro3.nvars = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3018
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3019 argnum = 0;
195
a2f645c6b9f8 Import from CVS: tag r20-3b24
cvs
parents: 187
diff changeset
3020 while (CONSP (args_left))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3021 {
195
a2f645c6b9f8 Import from CVS: tag r20-3b24
cvs
parents: 187
diff changeset
3022 vals[argnum++] = Feval (XCAR (args_left));
a2f645c6b9f8 Import from CVS: tag r20-3b24
cvs
parents: 187
diff changeset
3023 args_left = XCDR (args_left);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3024 gcpro3.nvars = argnum;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3025 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3026
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3027 backtrace.args = vals;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3028 backtrace.nargs = nargs;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3029
74
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 70
diff changeset
3030 val = ((Lisp_Object (*) (int, Lisp_Object *)) (subr_function (subr)))
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 70
diff changeset
3031 (nargs, vals);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3032
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3033 /* Have to duplicate this code because if the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3034 * debugger is called it must be in a scope in
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3035 * which the `alloca'-ed data in vals is still valid.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3036 * (And GC-protected.)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3037 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3038 lisp_eval_depth--;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3039 if (backtrace.debug_on_exit)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3040 val = do_debug_on_exit (val);
116
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 94
diff changeset
3041 POP_BACKTRACE (backtrace);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3042 UNGCPRO;
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 167
diff changeset
3043 return val;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3044 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3045
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3046 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3047 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3048 struct gcpro gcpro1, gcpro2, gcpro3;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3049
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3050 GCPRO3 (args_left, fun, fun);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3051 gcpro3.var = argvals;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3052 gcpro3.nvars = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3053
195
a2f645c6b9f8 Import from CVS: tag r20-3b24
cvs
parents: 187
diff changeset
3054 for (i = 0; i < nargs; args_left = XCDR (args_left))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3055 {
195
a2f645c6b9f8 Import from CVS: tag r20-3b24
cvs
parents: 187
diff changeset
3056 argvals[i] = Feval (XCAR (args_left));
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3057 gcpro3.nvars = ++i;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3058 }
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
3059
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3060 UNGCPRO;
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
3061
195
a2f645c6b9f8 Import from CVS: tag r20-3b24
cvs
parents: 187
diff changeset
3062 /* i == nargs at this point */
a2f645c6b9f8 Import from CVS: tag r20-3b24
cvs
parents: 187
diff changeset
3063 for (; i < max_args; i++)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3064 argvals[i] = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3065
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3066 backtrace.args = argvals;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3067 backtrace.nargs = nargs;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3068
195
a2f645c6b9f8 Import from CVS: tag r20-3b24
cvs
parents: 187
diff changeset
3069 /* val = funcall_subr (subr, argvals); */
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
3070 inline_funcall_subr (val, subr, argvals);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3071 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3072 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3073 else if (COMPILED_FUNCTIONP (fun))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3074 val = apply_lambda (fun, nargs, original_args);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3075 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3076 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3077 Lisp_Object funcar;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3078
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3079 if (!CONSP (fun))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3080 goto invalid_function;
195
a2f645c6b9f8 Import from CVS: tag r20-3b24
cvs
parents: 187
diff changeset
3081 funcar = XCAR (fun);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3082 if (!SYMBOLP (funcar))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3083 goto invalid_function;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3084 if (EQ (funcar, Qautoload))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3085 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3086 do_autoload (fun, original_fun);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3087 goto retry;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3088 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3089 if (EQ (funcar, Qmacro))
195
a2f645c6b9f8 Import from CVS: tag r20-3b24
cvs
parents: 187
diff changeset
3090 val = Feval (apply1 (XCDR (fun), original_args));
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3091 else if (EQ (funcar, Qlambda))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3092 val = apply_lambda (fun, nargs, original_args);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3093 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3094 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3095 invalid_function:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3096 return Fsignal (Qinvalid_function, list1 (fun));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3097 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3098 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3099
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3100 lisp_eval_depth--;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3101 if (backtrace.debug_on_exit)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3102 val = do_debug_on_exit (val);
116
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 94
diff changeset
3103 POP_BACKTRACE (backtrace);
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 167
diff changeset
3104 return val;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3105 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3106
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3107
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3108 Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3109 funcall_recording_as (Lisp_Object recorded_as, int nargs,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3110 Lisp_Object *args)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3111 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3112 /* This function can GC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3113 Lisp_Object fun;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3114 Lisp_Object val;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3115 struct backtrace backtrace;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3116 REGISTER int i;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3117
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3118 QUIT;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3119 if ((consing_since_gc > gc_cons_threshold) || always_gc)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3120 /* Callers should gcpro lexpr args */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3121 garbage_collect_1 ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3122
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3123 if (++lisp_eval_depth > max_lisp_eval_depth)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3124 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3125 if (max_lisp_eval_depth < 100)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3126 max_lisp_eval_depth = 100;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3127 if (lisp_eval_depth > max_lisp_eval_depth)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3128 error ("Lisp nesting exceeds `max-lisp-eval-depth'");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3129 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3130
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3131 /* Count number of arguments to function */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3132 nargs = nargs - 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3133
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3134 #ifdef EMACS_BTL
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3135 backtrace.id_number = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3136 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3137 backtrace.pdlcount = specpdl_depth_counter;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3138 backtrace.function = &args[0];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3139 backtrace.args = &args[1];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3140 backtrace.nargs = nargs;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3141 backtrace.evalargs = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3142 backtrace.debug_on_exit = 0;
116
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 94
diff changeset
3143 PUSH_BACKTRACE (backtrace);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3144
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3145 if (debug_on_next_call)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3146 do_debug_on_call (Qlambda);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3147
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3148 retry:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3149
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3150 fun = args[0];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3151
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3152 #ifdef EMACS_BTL
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3153 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3154 extern int emacs_btl_elisp_only_p;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3155 extern int btl_symbol_id_number ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3156 if (emacs_btl_elisp_only_p)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3157 backtrace.id_number = btl_symbol_id_number (fun);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3158 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3159 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3160
241
f955c73f5258 Import from CVS: tag r20-5b19
cvs
parents: 223
diff changeset
3161 /* It might be useful to place this *after* all the checks. */
f955c73f5258 Import from CVS: tag r20-5b19
cvs
parents: 223
diff changeset
3162 if (profiling_active)
f955c73f5258 Import from CVS: tag r20-5b19
cvs
parents: 223
diff changeset
3163 profile_increase_call_count (fun);
f955c73f5258 Import from CVS: tag r20-5b19
cvs
parents: 223
diff changeset
3164
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3165 if (SYMBOLP (fun))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3166 fun = indirect_function (fun, 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3167
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3168 if (SUBRP (fun))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3169 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3170 struct Lisp_Subr *subr = XSUBR (fun);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3171 int max_args = subr->max_args;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3172
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3173 if (max_args == UNEVALLED)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3174 return Fsignal (Qinvalid_function, list1 (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 if (nargs < subr->min_args
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3177 || (max_args >= 0 && max_args < nargs))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3178 {
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
3179 return Fsignal (Qwrong_number_of_arguments,
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3180 list2 (fun, make_int (nargs)));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3181 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3182
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3183 if (max_args == MANY)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3184 {
74
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 70
diff changeset
3185 val = ((Lisp_Object (*) (int, Lisp_Object *)) (subr_function (subr)))
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 70
diff changeset
3186 (nargs, args + 1);
0
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 else if (max_args > nargs)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3190 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3191 Lisp_Object argvals[SUBR_MAX_ARGS];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3192
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3193 /* Default optionals to nil */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3194 for (i = 0; i < nargs; i++)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3195 argvals[i] = args[i + 1];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3196 for (i = nargs; i < max_args; i++)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3197 argvals[i] = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3198
195
a2f645c6b9f8 Import from CVS: tag r20-3b24
cvs
parents: 187
diff changeset
3199 /* val = funcall_subr (subr, argvals); */
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
3200 inline_funcall_subr (val, subr, argvals);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3201 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3202 else
195
a2f645c6b9f8 Import from CVS: tag r20-3b24
cvs
parents: 187
diff changeset
3203 /* val = funcall_subr (subr, args + 1); */
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
3204 inline_funcall_subr (val, subr, (&args[1]));
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3205 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3206 else if (COMPILED_FUNCTIONP (fun))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3207 val = funcall_lambda (fun, nargs, args + 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3208 else if (!CONSP (fun))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3209 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3210 invalid_function:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3211 return Fsignal (Qinvalid_function, list1 (fun));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3212 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3213 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3214 {
195
a2f645c6b9f8 Import from CVS: tag r20-3b24
cvs
parents: 187
diff changeset
3215 /* `fun' is a Lisp_Cons so XCAR is safe */
a2f645c6b9f8 Import from CVS: tag r20-3b24
cvs
parents: 187
diff changeset
3216 Lisp_Object funcar = XCAR (fun);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3217
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3218 if (!SYMBOLP (funcar))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3219 goto invalid_function;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3220 if (EQ (funcar, Qlambda))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3221 val = funcall_lambda (fun, nargs, args + 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3222 else if (EQ (funcar, Qautoload))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3223 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3224 do_autoload (fun, args[0]);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3225 goto retry;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3226 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3227 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3228 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3229 goto invalid_function;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3230 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3231 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3232 lisp_eval_depth--;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3233 if (backtrace.debug_on_exit)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3234 val = do_debug_on_exit (val);
116
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 94
diff changeset
3235 POP_BACKTRACE (backtrace);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3236 return val;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3237 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3238
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3239 DEFUN ("funcall", Ffuncall, 1, MANY, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3240 Call first argument as a function, passing remaining arguments to it.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3241 Thus, (funcall 'cons 'x 'y) returns (x . y).
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3242 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3243 (int nargs, Lisp_Object *args))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3244 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3245 return funcall_recording_as (args[0], nargs, args);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3246 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3247
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3248 DEFUN ("function-min-args", Ffunction_min_args, 1, 1, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3249 Return the number of arguments a function may be called with. The
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3250 function may be any form that can be passed to `funcall', any special
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3251 form, or any macro.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3252 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3253 (function))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3254 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3255 Lisp_Object orig_function = function;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3256 Lisp_Object arglist;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3257 int argcount;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3258
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3259 retry:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3260
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3261 if (SYMBOLP (function))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3262 function = indirect_function (function, 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3263
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3264 if (SUBRP (function))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3265 return Fsubr_min_args (function);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3266 else if (!COMPILED_FUNCTIONP (function) && !CONSP (function))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3267 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3268 invalid_function:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3269 return Fsignal (Qinvalid_function, list1 (function));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3270 }
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 (CONSP (function))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3273 {
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
3274 Lisp_Object funcar = XCAR (function);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3275
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3276 if (!SYMBOLP (funcar))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3277 goto invalid_function;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3278 if (EQ (funcar, Qmacro))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3279 {
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
3280 function = XCDR (function);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3281 goto retry;
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 (EQ (funcar, Qautoload))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3284 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3285 do_autoload (function, orig_function);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3286 goto retry;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3287 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3288 if (EQ (funcar, Qlambda))
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
3289 arglist = Fcar (XCDR (function));
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3290 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3291 goto invalid_function;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3292 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3293 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3294 arglist = XCOMPILED_FUNCTION (function)->arglist;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3295
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3296 argcount = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3297 while (!NILP (arglist))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3298 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3299 QUIT;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3300 if (EQ (Fcar (arglist), Qand_optional)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3301 || EQ (Fcar (arglist), Qand_rest))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3302 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3303 argcount++;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3304 arglist = Fcdr (arglist);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3305 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3306
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3307 return make_int (argcount);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3308 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3309
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3310 DEFUN ("function-max-args", Ffunction_max_args, 1, 1, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3311 Return the number of arguments a function may be called with. If the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3312 function takes an arbitrary number of arguments or is a built-in
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3313 special form, nil is returned. The function may be any form that can
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3314 be passed to `funcall', any special form, or any macro.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3315 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3316 (function))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3317 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3318 Lisp_Object orig_function = function;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3319 Lisp_Object arglist;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3320 int argcount;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3321
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3322 retry:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3323
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3324 if (SYMBOLP (function))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3325 function = indirect_function (function, 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3326
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3327 if (SUBRP (function))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3328 return Fsubr_max_args (function);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3329 else if (!COMPILED_FUNCTIONP (function) && !CONSP (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 invalid_function:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3332 return Fsignal (Qinvalid_function, list1 (function));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3333 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3334
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3335 if (CONSP (function))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3336 {
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
3337 Lisp_Object funcar = XCAR (function);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3338
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3339 if (!SYMBOLP (funcar))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3340 goto invalid_function;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3341 if (EQ (funcar, Qmacro))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3342 {
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
3343 function = XCDR (function);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3344 goto retry;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3345 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3346 if (EQ (funcar, Qautoload))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3347 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3348 do_autoload (function, orig_function);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3349 goto retry;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3350 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3351 if (EQ (funcar, Qlambda))
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
3352 arglist = Fcar (XCDR (function));
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3353 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3354 goto invalid_function;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3355 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3356 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3357 arglist = XCOMPILED_FUNCTION (function)->arglist;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3358
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3359 argcount = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3360 while (!NILP (arglist))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3361 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3362 QUIT;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3363 if (EQ (Fcar (arglist), Qand_optional))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3364 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3365 arglist = Fcdr (arglist);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3366 continue;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3367 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3368 if (EQ (Fcar (arglist), Qand_rest))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3369 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3370 argcount++;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3371 arglist = Fcdr (arglist);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3372 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3373
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3374 return make_int (argcount);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3375 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3376
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3377
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3378 DEFUN ("apply", Fapply, 2, MANY, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3379 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
3380 Thus, (apply '+ 1 2 '(3 4)) returns 10.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3381 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3382 (int nargs, Lisp_Object *args))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3383 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3384 /* This function can GC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3385 Lisp_Object fun = args[0];
195
a2f645c6b9f8 Import from CVS: tag r20-3b24
cvs
parents: 187
diff changeset
3386 Lisp_Object spread_arg = args [nargs - 1], p;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3387 int numargs;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3388 int funcall_nargs;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3389
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3390 CHECK_LIST (spread_arg);
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
3391
195
a2f645c6b9f8 Import from CVS: tag r20-3b24
cvs
parents: 187
diff changeset
3392 /*
a2f645c6b9f8 Import from CVS: tag r20-3b24
cvs
parents: 187
diff changeset
3393 * Formerly we used a call to Flength here, but that is slow and
a2f645c6b9f8 Import from CVS: tag r20-3b24
cvs
parents: 187
diff changeset
3394 * wasteful due to type checking, stack push/pop and initialization.
a2f645c6b9f8 Import from CVS: tag r20-3b24
cvs
parents: 187
diff changeset
3395 * We know we're dealing with a cons, so open code it for speed.
a2f645c6b9f8 Import from CVS: tag r20-3b24
cvs
parents: 187
diff changeset
3396 *
a2f645c6b9f8 Import from CVS: tag r20-3b24
cvs
parents: 187
diff changeset
3397 * We call QUIT in the loop so that a circular arg list won't lock
a2f645c6b9f8 Import from CVS: tag r20-3b24
cvs
parents: 187
diff changeset
3398 * up the editor.
a2f645c6b9f8 Import from CVS: tag r20-3b24
cvs
parents: 187
diff changeset
3399 */
a2f645c6b9f8 Import from CVS: tag r20-3b24
cvs
parents: 187
diff changeset
3400 for (numargs = 0, p = spread_arg ; CONSP (p) ; p = XCDR (p))
a2f645c6b9f8 Import from CVS: tag r20-3b24
cvs
parents: 187
diff changeset
3401 {
a2f645c6b9f8 Import from CVS: tag r20-3b24
cvs
parents: 187
diff changeset
3402 numargs++;
a2f645c6b9f8 Import from CVS: tag r20-3b24
cvs
parents: 187
diff changeset
3403 QUIT;
a2f645c6b9f8 Import from CVS: tag r20-3b24
cvs
parents: 187
diff changeset
3404 }
a2f645c6b9f8 Import from CVS: tag r20-3b24
cvs
parents: 187
diff changeset
3405 if (! NILP (p))
a2f645c6b9f8 Import from CVS: tag r20-3b24
cvs
parents: 187
diff changeset
3406 signal_simple_error ("Argument list must be nil-terminated", spread_arg);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3407
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3408 if (numargs == 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3409 /* (apply foo 0 1 '()) */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3410 return Ffuncall (nargs - 1, args);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3411 else if (numargs == 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3412 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3413 /* (apply foo 0 1 '(2)) */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3414 args [nargs - 1] = XCAR (spread_arg);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3415 return Ffuncall (nargs, args);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3416 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3417
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3418 /* -1 for function, -1 for spread arg */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3419 numargs = nargs - 2 + numargs;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3420 /* +1 for function */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3421 funcall_nargs = 1 + numargs;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3422
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3423 if (SYMBOLP (fun))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3424 fun = indirect_function (fun, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3425 if (UNBOUNDP (fun))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3426 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3427 /* Let funcall get the error */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3428 fun = args[0];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3429 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3430 else if (SUBRP (fun))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3431 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3432 struct Lisp_Subr *subr = XSUBR (fun);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3433 int max_args = subr->max_args;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3434
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3435 if (numargs < subr->min_args
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3436 || (max_args >= 0 && max_args < numargs))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3437 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3438 /* Let funcall get the error */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3439 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3440 else if (max_args > numargs)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3441 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3442 /* Avoid having funcall cons up yet another new vector of arguments
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3443 by explicitly supplying nil's for optional values */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3444 funcall_nargs += (max_args - numargs);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3445 }
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 REGISTER int i;
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
3449 Lisp_Object *funcall_args = alloca_array (Lisp_Object, funcall_nargs);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3450 struct gcpro gcpro1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3451
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3452 GCPRO1 (*funcall_args);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3453 gcpro1.nvars = funcall_nargs;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3454
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3455 /* Copy in the unspread args */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3456 memcpy (funcall_args, args, (nargs - 1) * sizeof (Lisp_Object));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3457 /* Spread the last arg we got. Its first element goes in
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3458 the slot that it used to occupy, hence this value of I. */
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
3459 for (i = nargs - 1;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3460 !NILP (spread_arg); /* i < 1 + numargs */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3461 i++, spread_arg = XCDR (spread_arg))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3462 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3463 funcall_args [i] = XCAR (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 /* Supply nil for optional args (to subrs) */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3466 for (; i < funcall_nargs; i++)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3467 funcall_args[i] = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3468
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3469
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3470 RETURN_UNGCPRO (Ffuncall (funcall_nargs, funcall_args));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3471 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3472 }
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 /* FSFmacs has an extra arg EVAL_FLAG. If false, some of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3476 the statements below are not done. But it's always true
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3477 in all the calls to apply_lambda(). */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3478
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3479 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3480 apply_lambda (Lisp_Object fun, int numargs, Lisp_Object unevalled_args)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3481 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3482 /* This function can GC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3483 struct gcpro gcpro1, gcpro2, gcpro3;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3484 REGISTER int i;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3485 REGISTER Lisp_Object tem;
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
3486 REGISTER Lisp_Object *arg_vector = alloca_array (Lisp_Object, numargs);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3487
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3488 GCPRO3 (*arg_vector, unevalled_args, fun);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3489 gcpro1.nvars = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3490
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3491 for (i = 0; i < numargs;)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3492 {
195
a2f645c6b9f8 Import from CVS: tag r20-3b24
cvs
parents: 187
diff changeset
3493 /*
a2f645c6b9f8 Import from CVS: tag r20-3b24
cvs
parents: 187
diff changeset
3494 * unevalled_args is always a normal list, or Feval would have
a2f645c6b9f8 Import from CVS: tag r20-3b24
cvs
parents: 187
diff changeset
3495 * rejected it, so use XCAR and XCDR.
a2f645c6b9f8 Import from CVS: tag r20-3b24
cvs
parents: 187
diff changeset
3496 */
a2f645c6b9f8 Import from CVS: tag r20-3b24
cvs
parents: 187
diff changeset
3497 tem = XCAR (unevalled_args), unevalled_args = XCDR (unevalled_args);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3498 tem = Feval (tem);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3499 arg_vector[i++] = tem;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3500 gcpro1.nvars = i;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3501 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3502
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3503 UNGCPRO;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3504
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3505 backtrace_list->args = arg_vector;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3506 backtrace_list->nargs = i;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3507 backtrace_list->evalargs = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3508 tem = funcall_lambda (fun, numargs, arg_vector);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3509
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3510 /* Do the debug-on-exit now, while arg_vector still exists. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3511 if (backtrace_list->debug_on_exit)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3512 tem = do_debug_on_exit (tem);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3513 /* Don't do it again when we return to eval. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3514 backtrace_list->debug_on_exit = 0;
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 167
diff changeset
3515 return tem;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3516 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3517
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
3518 DEFUN ("fetch-bytecode", Ffetch_bytecode, 1, 1, 0, /*
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
3519 If byte-compiled OBJECT is lazy-loaded, fetch it now.
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
3520 */
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
3521 (object))
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
3522 {
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
3523 if (COMPILED_FUNCTIONP (object)
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
3524 && CONSP (XCOMPILED_FUNCTION (object)->bytecodes))
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
3525 {
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
3526 Lisp_Object tem =
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
3527 read_doc_string (XCOMPILED_FUNCTION (object)->bytecodes);
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
3528 if (!CONSP (tem))
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
3529 signal_simple_error ("invalid lazy-loaded byte code", tem);
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
3530 /* v18 or v19 bytecode file. Need to Ebolify. */
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
3531 if (XCOMPILED_FUNCTION (object)->flags.ebolified
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
3532 && VECTORP (XCDR (tem)))
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
3533 ebolify_bytecode_constants (XCDR (tem));
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
3534 /* VERY IMPORTANT to purecopy here!!!!!
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
3535 See load_force_doc_string_unwind. */
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
3536 XCOMPILED_FUNCTION (object)->bytecodes = Fpurecopy (XCAR (tem));
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
3537 XCOMPILED_FUNCTION (object)->constants = Fpurecopy (XCDR (tem));
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
3538 }
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
3539 return object;
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
3540 }
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
3541
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3542 /* Apply a Lisp function FUN to the NARGS evaluated arguments in ARG_VECTOR
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3543 and return the result of evaluation.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3544 FUN must be either a lambda-expression or a compiled-code object. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3545
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3546 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3547 funcall_lambda (Lisp_Object fun, int nargs, Lisp_Object arg_vector[])
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3548 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3549 /* This function can GC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3550 Lisp_Object val, tem;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3551 REGISTER Lisp_Object syms_left;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3552 REGISTER Lisp_Object next;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3553 int speccount = specpdl_depth_counter;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3554 REGISTER int i;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3555 int optional = 0, rest = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3556
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3557 if (CONSP (fun))
195
a2f645c6b9f8 Import from CVS: tag r20-3b24
cvs
parents: 187
diff changeset
3558 syms_left = Fcar (XCDR (fun));
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3559 else if (COMPILED_FUNCTIONP (fun))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3560 syms_left = XCOMPILED_FUNCTION (fun)->arglist;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3561 else abort ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3562
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3563 i = 0;
195
a2f645c6b9f8 Import from CVS: tag r20-3b24
cvs
parents: 187
diff changeset
3564 for (; CONSP (syms_left); syms_left = XCDR (syms_left))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3565 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3566 QUIT;
195
a2f645c6b9f8 Import from CVS: tag r20-3b24
cvs
parents: 187
diff changeset
3567 next = XCAR (syms_left);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3568 if (!SYMBOLP (next))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3569 signal_error (Qinvalid_function, list1 (fun));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3570 if (EQ (next, Qand_rest))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3571 rest = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3572 else if (EQ (next, Qand_optional))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3573 optional = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3574 else if (rest)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3575 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3576 specbind (next, Flist (nargs - i, &arg_vector[i]));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3577 i = nargs;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3578 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3579 else if (i < nargs)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3580 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3581 tem = arg_vector[i++];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3582 specbind (next, tem);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3583 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3584 else if (!optional)
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
3585 return Fsignal (Qwrong_number_of_arguments,
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3586 list2 (fun, make_int (nargs)));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3587 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3588 specbind (next, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3589 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3590
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3591 if (i < nargs)
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
3592 return Fsignal (Qwrong_number_of_arguments,
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3593 list2 (fun, make_int (nargs)));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3594
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3595 if (CONSP (fun))
195
a2f645c6b9f8 Import from CVS: tag r20-3b24
cvs
parents: 187
diff changeset
3596 val = Fprogn (Fcdr (XCDR (fun)));
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3597 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3598 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3599 struct Lisp_Compiled_Function *b = XCOMPILED_FUNCTION (fun);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3600 /* If we have not actually read the bytecode string
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3601 and constants vector yet, fetch them from the file. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3602 if (CONSP (b->bytecodes))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3603 Ffetch_bytecode (fun);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3604 val = Fbyte_code (b->bytecodes,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3605 b->constants,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3606 make_int (b->maxdepth));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3607 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3608 return unbind_to (speccount, val);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3609 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3610
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3611 /**********************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3612 /* Run hook variables in various ways. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3613 /**********************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3614
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3615 DEFUN ("run-hooks", Frun_hooks, 1, MANY, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3616 Run each hook in HOOKS. Major mode functions use this.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3617 Each argument should be a symbol, a hook variable.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3618 These symbols are processed in the order specified.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3619 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
3620 or a list of functions to be called to run the hook.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3621 If the value is a function, it is called with no arguments.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3622 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
3623
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3624 To make a hook variable buffer-local, use `make-local-hook',
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3625 not `make-local-variable'.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3626 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3627 (int nargs, Lisp_Object *args))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3628 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3629 REGISTER int i;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3630
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3631 for (i = 0; i < nargs; i++)
187
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 185
diff changeset
3632 run_hook_with_args (1, args + i, RUN_HOOKS_TO_COMPLETION);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3633
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3634 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3635 }
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
3636
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3637 DEFUN ("run-hook-with-args", Frun_hook_with_args, 1, MANY, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3638 Run HOOK with the specified arguments ARGS.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3639 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
3640 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
3641 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
3642 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
3643 of functions, those functions are called, in order,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3644 with the given arguments ARGS.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3645 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
3646 as that may change.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3647
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3648 To make a hook variable buffer-local, use `make-local-hook',
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3649 not `make-local-variable'.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3650 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3651 (int nargs, Lisp_Object *args))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3652 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3653 return run_hook_with_args (nargs, args, RUN_HOOKS_TO_COMPLETION);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3654 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3655
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3656 DEFUN ("run-hook-with-args-until-success", Frun_hook_with_args_until_success, 1, MANY, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3657 Run HOOK with the specified arguments ARGS.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3658 HOOK should be a symbol, a hook variable. Its value should
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3659 be a list of functions. We call those functions, one by one,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3660 passing arguments ARGS to each of them, until one of them
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3661 returns a non-nil value. Then we return that value.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3662 If all the functions return nil, we return nil.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3663
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3664 To make a hook variable buffer-local, use `make-local-hook',
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3665 not `make-local-variable'.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3666 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3667 (int nargs, Lisp_Object *args))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3668 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3669 return run_hook_with_args (nargs, args, RUN_HOOKS_UNTIL_SUCCESS);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3670 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3671
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3672 DEFUN ("run-hook-with-args-until-failure", Frun_hook_with_args_until_failure, 1, MANY, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3673 Run HOOK with the specified arguments ARGS.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3674 HOOK should be a symbol, a hook variable. Its value should
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3675 be a list of functions. We call those functions, one by one,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3676 passing arguments ARGS to each of them, until one of them
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3677 returns nil. Then we return nil.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3678 If all the functions return non-nil, we return non-nil.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3679
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3680 To make a hook variable buffer-local, use `make-local-hook',
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3681 not `make-local-variable'.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3682 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3683 (int nargs, Lisp_Object *args))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3684 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3685 return run_hook_with_args (nargs, args, RUN_HOOKS_UNTIL_FAILURE);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3686 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3687
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3688 /* ARGS[0] should be a hook symbol.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3689 Call each of the functions in the hook value, passing each of them
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3690 as arguments all the rest of ARGS (all NARGS - 1 elements).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3691 COND specifies a condition to test after each call
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3692 to decide whether to stop.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3693 The caller (or its caller, etc) must gcpro all of ARGS,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3694 except that it isn't necessary to gcpro ARGS[0]. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3695
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3696 Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3697 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
3698 enum run_hooks_condition cond)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3699 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3700 Lisp_Object sym, val, ret;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3701 struct gcpro gcpro1, gcpro2;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3702
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3703 if (!initialized || preparing_for_armageddon)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3704 /* We need to bail out of here pronto. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3705 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3706
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3707 /* Whenever gc_in_progress is true, preparing_for_armageddon
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3708 will also be true unless something is really hosed. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3709 assert (!gc_in_progress);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3710
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3711 sym = args[0];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3712 val = symbol_value_in_buffer (sym, make_buffer (buf));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3713 ret = (cond == RUN_HOOKS_UNTIL_FAILURE ? Qt : Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3714
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3715 if (UNBOUNDP (val) || NILP (val))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3716 return ret;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3717 else if (!CONSP (val) || EQ (XCAR (val), Qlambda))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3718 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3719 args[0] = val;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3720 return Ffuncall (nargs, args);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3721 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3722 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3723 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3724 GCPRO2 (sym, val);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3725
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3726 for (;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3727 CONSP (val) && ((cond == RUN_HOOKS_TO_COMPLETION)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3728 || (cond == RUN_HOOKS_UNTIL_SUCCESS ? NILP (ret)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3729 : !NILP (ret)));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3730 val = XCDR (val))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3731 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3732 if (EQ (XCAR (val), Qt))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3733 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3734 /* t indicates this hook has a local binding;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3735 it means to run the global binding too. */
298
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents: 278
diff changeset
3736 Lisp_Object globals = Fdefault_value (sym);
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents: 278
diff changeset
3737
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents: 278
diff changeset
3738 if ((! CONSP (globals) || EQ (XCAR (globals), Qlambda)) &&
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents: 278
diff changeset
3739 ! NILP (globals))
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents: 278
diff changeset
3740 {
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents: 278
diff changeset
3741 args[0] = globals;
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents: 278
diff changeset
3742 ret = Ffuncall (nargs, args);
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents: 278
diff changeset
3743 }
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents: 278
diff changeset
3744 else
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3745 {
298
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents: 278
diff changeset
3746 for (;
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents: 278
diff changeset
3747 CONSP (globals) && ((cond == RUN_HOOKS_TO_COMPLETION)
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents: 278
diff changeset
3748 || (cond == RUN_HOOKS_UNTIL_SUCCESS
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents: 278
diff changeset
3749 ? NILP (ret)
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents: 278
diff changeset
3750 : !NILP (ret)));
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents: 278
diff changeset
3751 globals = XCDR (globals))
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents: 278
diff changeset
3752 {
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents: 278
diff changeset
3753 args[0] = XCAR (globals);
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents: 278
diff changeset
3754 /* In a global value, t should not occur. If it does, we
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents: 278
diff changeset
3755 must ignore it to avoid an endless loop. */
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents: 278
diff changeset
3756 if (!EQ (args[0], Qt))
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents: 278
diff changeset
3757 ret = Ffuncall (nargs, args);
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents: 278
diff changeset
3758 }
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3759 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3760 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3761 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3762 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3763 args[0] = XCAR (val);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3764 ret = Ffuncall (nargs, args);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3765 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3766 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3767
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3768 UNGCPRO;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3769 return ret;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3770 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3771 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3772
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3773 Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3774 run_hook_with_args (int nargs, Lisp_Object *args,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3775 enum run_hooks_condition cond)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3776 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3777 return run_hook_with_args_in_buffer (current_buffer, nargs, args, cond);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3778 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3779
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3780 #if 0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3781
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3782 /* From FSF 19.30, not currently used */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3783
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3784 /* Run a hook symbol ARGS[0], but use FUNLIST instead of the actual
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3785 present value of that symbol.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3786 Call each element of FUNLIST,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3787 passing each of them the rest of ARGS.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3788 The caller (or its caller, etc) must gcpro all of ARGS,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3789 except that it isn't necessary to gcpro ARGS[0]. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3790
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3791 Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3792 run_hook_list_with_args (Lisp_Object funlist, int nargs, Lisp_Object *args)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3793 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3794 Lisp_Object sym;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3795 Lisp_Object val;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3796 struct gcpro gcpro1, gcpro2;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3797
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3798 sym = args[0];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3799 GCPRO2 (sym, val);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3800
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3801 for (val = funlist; CONSP (val); 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);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3811 globals = XCDR (globals))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3812 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3813 args[0] = XCAR (globals);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3814 /* In a global value, t should not occur. If it does, we
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3815 must ignore it to avoid an endless loop. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3816 if (!EQ (args[0], Qt))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3817 Ffuncall (nargs, args);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3818 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3819 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3820 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3821 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3822 args[0] = XCAR (val);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3823 Ffuncall (nargs, args);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3824 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3825 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3826 UNGCPRO;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3827 return Qnil;
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 #endif /* 0 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3831
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3832 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3833 va_run_hook_with_args (Lisp_Object hook_var, int nargs, ...)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3834 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3835 /* This function can GC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3836 struct gcpro gcpro1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3837 int i;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3838 va_list vargs;
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
3839 Lisp_Object *funcall_args = alloca_array (Lisp_Object, 1 + nargs);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3840
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3841 va_start (vargs, nargs);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3842 funcall_args[0] = hook_var;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3843 for (i = 0; i < nargs; i++)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3844 funcall_args[i + 1] = va_arg (vargs, Lisp_Object);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3845 va_end (vargs);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3846
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3847 GCPRO1 (*funcall_args);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3848 gcpro1.nvars = nargs + 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3849 run_hook_with_args (nargs + 1, funcall_args, RUN_HOOKS_TO_COMPLETION);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3850 UNGCPRO;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3851 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3852
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3853 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3854 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
3855 int nargs, ...)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3856 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3857 /* This function can GC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3858 struct gcpro gcpro1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3859 int i;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3860 va_list vargs;
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
3861 Lisp_Object *funcall_args = alloca_array (Lisp_Object, 1 + nargs);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3862
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3863 va_start (vargs, nargs);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3864 funcall_args[0] = hook_var;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3865 for (i = 0; i < nargs; i++)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3866 funcall_args[i + 1] = va_arg (vargs, Lisp_Object);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3867 va_end (vargs);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3868
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3869 GCPRO1 (*funcall_args);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3870 gcpro1.nvars = nargs + 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3871 run_hook_with_args_in_buffer (buf, nargs + 1, funcall_args,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3872 RUN_HOOKS_TO_COMPLETION);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3873 UNGCPRO;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3874 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3875
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3876 Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3877 run_hook (Lisp_Object hook)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3878 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3879 Frun_hooks (1, &hook);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3880 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3881 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3882
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3883
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3884 /**********************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3885 /* Front-ends to eval, funcall, apply */
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 /* Apply fn to arg */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3889 Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3890 apply1 (Lisp_Object fn, Lisp_Object arg)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3891 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3892 /* This function can GC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3893 struct gcpro gcpro1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3894 Lisp_Object args[2];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3895
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3896 if (NILP (arg))
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 167
diff changeset
3897 return Ffuncall (1, &fn);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3898 GCPRO1 (args[0]);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3899 gcpro1.nvars = 2;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3900 args[0] = fn;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3901 args[1] = arg;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3902 RETURN_UNGCPRO (Fapply (2, args));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3903 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3904
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3905 /* Call function fn on no arguments */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3906 Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3907 call0 (Lisp_Object fn)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3908 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3909 /* This function can GC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3910 struct gcpro gcpro1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3911
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3912 GCPRO1 (fn);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3913 RETURN_UNGCPRO (Ffuncall (1, &fn));
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 /* Call function fn with argument arg0 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3917 Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3918 call1 (Lisp_Object fn,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3919 Lisp_Object arg0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3920 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3921 /* This function can GC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3922 struct gcpro gcpro1;
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
3923 Lisp_Object args[2];
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3924 args[0] = fn;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3925 args[1] = arg0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3926 GCPRO1 (args[0]);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3927 gcpro1.nvars = 2;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3928 RETURN_UNGCPRO (Ffuncall (2, args));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3929 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3930
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3931 /* Call function fn with arguments arg0, arg1 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3932 Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3933 call2 (Lisp_Object fn,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3934 Lisp_Object arg0, Lisp_Object arg1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3935 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3936 /* This function can GC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3937 struct gcpro gcpro1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3938 Lisp_Object args[3];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3939 args[0] = fn;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3940 args[1] = arg0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3941 args[2] = arg1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3942 GCPRO1 (args[0]);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3943 gcpro1.nvars = 3;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3944 RETURN_UNGCPRO (Ffuncall (3, args));
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 /* Call function fn with arguments arg0, arg1, arg2 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3948 Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3949 call3 (Lisp_Object fn,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3950 Lisp_Object arg0, Lisp_Object arg1, Lisp_Object arg2)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3951 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3952 /* This function can GC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3953 struct gcpro gcpro1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3954 Lisp_Object args[4];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3955 args[0] = fn;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3956 args[1] = arg0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3957 args[2] = arg1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3958 args[3] = arg2;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3959 GCPRO1 (args[0]);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3960 gcpro1.nvars = 4;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3961 RETURN_UNGCPRO (Ffuncall (4, args));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3962 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3963
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3964 /* Call function fn with arguments arg0, arg1, arg2, arg3 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3965 Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3966 call4 (Lisp_Object fn,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3967 Lisp_Object arg0, Lisp_Object arg1, Lisp_Object arg2,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3968 Lisp_Object arg3)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3969 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3970 /* This function can GC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3971 struct gcpro gcpro1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3972 Lisp_Object args[5];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3973 args[0] = fn;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3974 args[1] = arg0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3975 args[2] = arg1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3976 args[3] = arg2;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3977 args[4] = arg3;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3978 GCPRO1 (args[0]);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3979 gcpro1.nvars = 5;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3980 RETURN_UNGCPRO (Ffuncall (5, args));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3981 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3982
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3983 /* Call function fn with arguments arg0, arg1, arg2, arg3, arg4 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3984 Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3985 call5 (Lisp_Object fn,
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
3986 Lisp_Object arg0, Lisp_Object arg1, Lisp_Object arg2,
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3987 Lisp_Object arg3, Lisp_Object arg4)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3988 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3989 /* This function can GC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3990 struct gcpro gcpro1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3991 Lisp_Object args[6];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3992 args[0] = fn;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3993 args[1] = arg0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3994 args[2] = arg1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3995 args[3] = arg2;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3996 args[4] = arg3;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3997 args[5] = arg4;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3998 GCPRO1 (args[0]);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3999 gcpro1.nvars = 6;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4000 RETURN_UNGCPRO (Ffuncall (6, args));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4001 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4002
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4003 Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4004 call6 (Lisp_Object fn,
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
4005 Lisp_Object arg0, Lisp_Object arg1, Lisp_Object arg2,
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4006 Lisp_Object arg3, Lisp_Object arg4, Lisp_Object arg5)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4007 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4008 /* This function can GC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4009 struct gcpro gcpro1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4010 Lisp_Object args[7];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4011 args[0] = fn;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4012 args[1] = arg0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4013 args[2] = arg1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4014 args[3] = arg2;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4015 args[4] = arg3;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4016 args[5] = arg4;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4017 args[6] = arg5;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4018 GCPRO1 (args[0]);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4019 gcpro1.nvars = 7;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4020 RETURN_UNGCPRO (Ffuncall (7, args));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4021 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4022
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4023 Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4024 call7 (Lisp_Object fn,
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
4025 Lisp_Object arg0, Lisp_Object arg1, Lisp_Object arg2,
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4026 Lisp_Object arg3, Lisp_Object arg4, Lisp_Object arg5,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4027 Lisp_Object arg6)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4028 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4029 /* This function can GC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4030 struct gcpro gcpro1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4031 Lisp_Object args[8];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4032 args[0] = fn;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4033 args[1] = arg0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4034 args[2] = arg1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4035 args[3] = arg2;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4036 args[4] = arg3;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4037 args[5] = arg4;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4038 args[6] = arg5;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4039 args[7] = arg6;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4040 GCPRO1 (args[0]);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4041 gcpro1.nvars = 8;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4042 RETURN_UNGCPRO (Ffuncall (8, args));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4043 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4044
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4045 Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4046 call8 (Lisp_Object fn,
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
4047 Lisp_Object arg0, Lisp_Object arg1, Lisp_Object arg2,
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4048 Lisp_Object arg3, Lisp_Object arg4, Lisp_Object arg5,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4049 Lisp_Object arg6, Lisp_Object arg7)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4050 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4051 /* This function can GC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4052 struct gcpro gcpro1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4053 Lisp_Object args[9];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4054 args[0] = fn;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4055 args[1] = arg0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4056 args[2] = arg1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4057 args[3] = arg2;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4058 args[4] = arg3;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4059 args[5] = arg4;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4060 args[6] = arg5;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4061 args[7] = arg6;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4062 args[8] = arg7;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4063 GCPRO1 (args[0]);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4064 gcpro1.nvars = 9;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4065 RETURN_UNGCPRO (Ffuncall (9, args));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4066 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4067
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4068 Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4069 call0_in_buffer (struct buffer *buf, Lisp_Object fn)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4070 {
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
4071 if (current_buffer == buf)
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
4072 return call0 (fn);
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
4073 else
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4074 {
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
4075 Lisp_Object val;
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
4076 int speccount = specpdl_depth_counter;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4077 record_unwind_protect (Fset_buffer, Fcurrent_buffer ());
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4078 set_buffer_internal (buf);
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
4079 val = call0 (fn);
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
4080 unbind_to (speccount, Qnil);
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
4081 return val;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4082 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4083 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4084
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4085 Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4086 call1_in_buffer (struct buffer *buf, Lisp_Object fn,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4087 Lisp_Object arg0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4088 {
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
4089 if (current_buffer == buf)
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
4090 return call1 (fn, arg0);
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
4091 else
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4092 {
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
4093 Lisp_Object val;
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
4094 int speccount = specpdl_depth_counter;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4095 record_unwind_protect (Fset_buffer, Fcurrent_buffer ());
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4096 set_buffer_internal (buf);
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
4097 val = call1 (fn, arg0);
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
4098 unbind_to (speccount, Qnil);
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
4099 return val;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4100 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4101 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4102
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4103 Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4104 call2_in_buffer (struct buffer *buf, Lisp_Object fn,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4105 Lisp_Object arg0, Lisp_Object arg1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4106 {
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
4107 if (current_buffer == buf)
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
4108 return call2 (fn, arg0, arg1);
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
4109 else
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4110 {
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
4111 Lisp_Object val;
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
4112 int speccount = specpdl_depth_counter;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4113 record_unwind_protect (Fset_buffer, Fcurrent_buffer ());
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4114 set_buffer_internal (buf);
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
4115 val = call2 (fn, arg0, arg1);
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
4116 unbind_to (speccount, Qnil);
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
4117 return val;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4118 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4119 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4120
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4121 Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4122 call3_in_buffer (struct buffer *buf, Lisp_Object fn,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4123 Lisp_Object arg0, Lisp_Object arg1, Lisp_Object arg2)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4124 {
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
4125 if (current_buffer == buf)
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
4126 return call3 (fn, arg0, arg1, arg2);
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
4127 else
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4128 {
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
4129 Lisp_Object val;
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
4130 int speccount = specpdl_depth_counter;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4131 record_unwind_protect (Fset_buffer, Fcurrent_buffer ());
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4132 set_buffer_internal (buf);
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
4133 val = call3 (fn, arg0, arg1, arg2);
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
4134 unbind_to (speccount, Qnil);
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
4135 return val;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4136 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4137 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4138
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4139 Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4140 call4_in_buffer (struct buffer *buf, Lisp_Object fn,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4141 Lisp_Object arg0, Lisp_Object arg1, Lisp_Object arg2,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4142 Lisp_Object arg3)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4143 {
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
4144 if (current_buffer == buf)
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
4145 return call4 (fn, arg0, arg1, arg2, arg3);
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
4146 else
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4147 {
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
4148 Lisp_Object val;
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
4149 int speccount = specpdl_depth_counter;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4150 record_unwind_protect (Fset_buffer, Fcurrent_buffer ());
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4151 set_buffer_internal (buf);
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
4152 val = call4 (fn, arg0, arg1, arg2, arg3);
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
4153 unbind_to (speccount, Qnil);
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
4154 return val;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4155 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4156 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4157
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4158 Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4159 eval_in_buffer (struct buffer *buf, Lisp_Object form)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4160 {
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
4161 if (current_buffer == buf)
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
4162 return Feval (form);
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
4163 else
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4164 {
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
4165 Lisp_Object val;
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
4166 int speccount = specpdl_depth_counter;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4167 record_unwind_protect (Fset_buffer, Fcurrent_buffer ());
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4168 set_buffer_internal (buf);
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
4169 val = Feval (form);
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
4170 unbind_to (speccount, Qnil);
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
4171 return val;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4172 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4173 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4174
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4175
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4176 /***** Error-catching front-ends to eval, funcall, apply */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4177
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4178 /* Call function fn on no arguments, with condition handler */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4179 Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4180 call0_with_handler (Lisp_Object handler, Lisp_Object fn)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4181 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4182 /* This function can GC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4183 struct gcpro gcpro1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4184 Lisp_Object args[2];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4185 args[0] = handler;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4186 args[1] = fn;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4187 GCPRO1 (args[0]);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4188 gcpro1.nvars = 2;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4189 RETURN_UNGCPRO (Fcall_with_condition_handler (2, args));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4190 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4191
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4192 /* Call function fn with argument arg0, with condition handler */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4193 Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4194 call1_with_handler (Lisp_Object handler, Lisp_Object fn,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4195 Lisp_Object arg0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4196 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4197 /* This function can GC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4198 struct gcpro gcpro1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4199 Lisp_Object args[3];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4200 args[0] = handler;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4201 args[1] = fn;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4202 args[2] = arg0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4203 GCPRO1 (args[0]);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4204 gcpro1.nvars = 3;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4205 RETURN_UNGCPRO (Fcall_with_condition_handler (3, args));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4206 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4207
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4208
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4209 /* The following functions provide you with error-trapping versions
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4210 of the various front-ends above. They take an additional
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4211 "warning_string" argument; if non-zero, a warning with this
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4212 string and the actual error that occurred will be displayed
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4213 in the *Warnings* buffer if an error occurs. In all cases,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4214 QUIT is inhibited while these functions are running, and if
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4215 an error occurs, Qunbound is returned instead of the normal
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4216 return value.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4217 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4218
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
4219 /* #### This stuff needs to catch throws as well. We need to
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4220 improve internal_catch() so it can take a "catch anything"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4221 argument similar to Qt or Qerror for condition_case_1(). */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4222
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4223 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4224 caught_a_squirmer (Lisp_Object errordata, Lisp_Object arg)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4225 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4226 if (!NILP (errordata))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4227 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4228 Lisp_Object args[2];
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
4229
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4230 if (!NILP (arg))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4231 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4232 char *str = (char *) get_opaque_ptr (arg);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4233 args[0] = build_string (str);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4234 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4235 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4236 args[0] = build_string ("error");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4237 /* #### This should call
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4238 (with-output-to-string (display-error errordata))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4239 but that stuff is all in Lisp currently. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4240 args[1] = errordata;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4241 warn_when_safe_lispobj
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4242 (Qerror, Qwarning,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4243 emacs_doprnt_string_lisp ((CONST Bufbyte *) "%s: %s",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4244 Qnil, -1, 2, args));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4245 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4246 return Qunbound;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4247 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4248
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4249 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4250 allow_quit_caught_a_squirmer (Lisp_Object errordata, Lisp_Object arg)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4251 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4252 if (CONSP (errordata) && EQ (XCAR (errordata), Qquit))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4253 return Fsignal (Qquit, XCDR (errordata));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4254 return caught_a_squirmer (errordata, arg);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4255 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4256
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4257 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4258 safe_run_hook_caught_a_squirmer (Lisp_Object errordata, Lisp_Object arg)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4259 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4260 Lisp_Object hook = Fcar (arg);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4261 arg = Fcdr (arg);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4262 /* Clear out the hook. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4263 Fset (hook, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4264 return caught_a_squirmer (errordata, arg);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4265 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4266
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4267 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4268 allow_quit_safe_run_hook_caught_a_squirmer (Lisp_Object errordata,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4269 Lisp_Object arg)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4270 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4271 Lisp_Object hook = Fcar (arg);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4272 arg = Fcdr (arg);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4273 if (!CONSP (errordata) || !EQ (XCAR (errordata), Qquit))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4274 /* Clear out the hook. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4275 Fset (hook, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4276 return allow_quit_caught_a_squirmer (errordata, arg);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4277 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4278
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4279 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4280 catch_them_squirmers_eval_in_buffer (Lisp_Object cons)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4281 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4282 return eval_in_buffer (XBUFFER (XCAR (cons)), XCDR (cons));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4283 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4284
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4285 Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4286 eval_in_buffer_trapping_errors (CONST char *warning_string,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4287 struct buffer *buf, Lisp_Object form)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4288 {
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
4289 int speccount = specpdl_depth_counter;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4290 Lisp_Object tem;
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
4291 Lisp_Object buffer;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4292 Lisp_Object cons;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4293 Lisp_Object opaque;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4294 struct gcpro gcpro1, gcpro2;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4295
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4296 XSETBUFFER (buffer, buf);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4297
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4298 specbind (Qinhibit_quit, Qt);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4299 /* gc_currently_forbidden = 1; Currently no reason to do this; */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4300
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4301 cons = noseeum_cons (buffer, form);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4302 opaque = (warning_string ? make_opaque_ptr (warning_string) : Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4303 GCPRO2 (cons, opaque);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4304 /* Qerror not Qt, so you can get a backtrace */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4305 tem = condition_case_1 (Qerror,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4306 catch_them_squirmers_eval_in_buffer, cons,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4307 caught_a_squirmer, opaque);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4308 free_cons (XCONS (cons));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4309 if (OPAQUEP (opaque))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4310 free_opaque_ptr (opaque);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4311 UNGCPRO;
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
4312
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4313 /* gc_currently_forbidden = 0; */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4314 return unbind_to (speccount, tem);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4315 }
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 catch_them_squirmers_run_hook (Lisp_Object hook_symbol)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4319 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4320 /* This function can GC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4321 run_hook (hook_symbol);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4322 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4323 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4324
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4325 Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4326 run_hook_trapping_errors (CONST char *warning_string, Lisp_Object hook_symbol)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4327 {
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
4328 int speccount;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4329 Lisp_Object tem;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4330 Lisp_Object opaque;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4331 struct gcpro gcpro1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4332
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4333 if (!initialized || preparing_for_armageddon)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4334 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4335 tem = find_symbol_value (hook_symbol);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4336 if (NILP (tem) || UNBOUNDP (tem))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4337 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4338
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
4339 speccount = specpdl_depth_counter;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4340 specbind (Qinhibit_quit, Qt);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4341
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4342 opaque = (warning_string ? make_opaque_ptr (warning_string) : Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4343 GCPRO1 (opaque);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4344 /* Qerror not Qt, so you can get a backtrace */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4345 tem = condition_case_1 (Qerror,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4346 catch_them_squirmers_run_hook, hook_symbol,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4347 caught_a_squirmer, opaque);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4348 if (OPAQUEP (opaque))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4349 free_opaque_ptr (opaque);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4350 UNGCPRO;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4351
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4352 return unbind_to (speccount, tem);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4353 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4354
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4355 /* Same as run_hook_trapping_errors() but also set the hook to nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4356 if an error occurs. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4357
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4358 Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4359 safe_run_hook_trapping_errors (CONST char *warning_string,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4360 Lisp_Object hook_symbol,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4361 int allow_quit)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4362 {
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
4363 int speccount = specpdl_depth_counter;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4364 Lisp_Object tem;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4365 Lisp_Object cons = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4366 struct gcpro gcpro1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4367
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4368 if (!initialized || preparing_for_armageddon)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4369 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4370 tem = find_symbol_value (hook_symbol);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4371 if (NILP (tem) || UNBOUNDP (tem))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4372 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4373
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4374 if (!allow_quit)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4375 specbind (Qinhibit_quit, Qt);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4376
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
4377 cons = noseeum_cons (hook_symbol,
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4378 warning_string ? make_opaque_ptr (warning_string)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4379 : Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4380 GCPRO1 (cons);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4381 /* Qerror not Qt, so you can get a backtrace */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4382 tem = condition_case_1 (Qerror,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4383 catch_them_squirmers_run_hook,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4384 hook_symbol,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4385 allow_quit ?
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4386 allow_quit_safe_run_hook_caught_a_squirmer :
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4387 safe_run_hook_caught_a_squirmer,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4388 cons);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4389 if (OPAQUEP (XCDR (cons)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4390 free_opaque_ptr (XCDR (cons));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4391 free_cons (XCONS (cons));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4392 UNGCPRO;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4393
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4394 return unbind_to (speccount, tem);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4395 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4396
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4397 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4398 catch_them_squirmers_call0 (Lisp_Object function)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4399 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4400 /* This function can GC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4401 return call0 (function);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4402 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4403
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4404 Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4405 call0_trapping_errors (CONST char *warning_string, Lisp_Object function)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4406 {
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
4407 int speccount;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4408 Lisp_Object tem;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4409 Lisp_Object opaque = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4410 struct gcpro gcpro1, gcpro2;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4411
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4412 if (SYMBOLP (function))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4413 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4414 tem = XSYMBOL (function)->function;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4415 if (NILP (tem) || UNBOUNDP (tem))
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 167
diff changeset
4416 return Qnil;
0
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 GCPRO2 (opaque, function);
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
4420 speccount = specpdl_depth_counter;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4421 specbind (Qinhibit_quit, Qt);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4422 /* gc_currently_forbidden = 1; Currently no reason to do this; */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4423
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4424 opaque = (warning_string ? make_opaque_ptr (warning_string) : Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4425 /* Qerror not Qt, so you can get a backtrace */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4426 tem = condition_case_1 (Qerror,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4427 catch_them_squirmers_call0, function,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4428 caught_a_squirmer, opaque);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4429 if (OPAQUEP (opaque))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4430 free_opaque_ptr (opaque);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4431 UNGCPRO;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4432
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4433 /* gc_currently_forbidden = 0; */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4434 return unbind_to (speccount, tem);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4435 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4436
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4437 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4438 catch_them_squirmers_call1 (Lisp_Object cons)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4439 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4440 /* This function can GC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4441 return call1 (XCAR (cons), XCDR (cons));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4442 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4443
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4444 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4445 catch_them_squirmers_call2 (Lisp_Object cons)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4446 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4447 /* This function can GC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4448 return call2 (XCAR (cons), XCAR (XCDR (cons)), XCAR (XCDR (XCDR (cons))));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4449 }
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 call1_trapping_errors (CONST char *warning_string, Lisp_Object function,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4453 Lisp_Object object)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4454 {
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
4455 int speccount = specpdl_depth_counter;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4456 Lisp_Object tem;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4457 Lisp_Object cons = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4458 Lisp_Object opaque = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4459 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4;
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 (SYMBOLP (function))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4462 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4463 tem = XSYMBOL (function)->function;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4464 if (NILP (tem) || UNBOUNDP (tem))
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 167
diff changeset
4465 return Qnil;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4466 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4467
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4468 GCPRO4 (cons, opaque, function, object);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4469
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4470 specbind (Qinhibit_quit, Qt);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4471 /* gc_currently_forbidden = 1; Currently no reason to do this; */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4472
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4473 cons = noseeum_cons (function, object);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4474 opaque = (warning_string ? make_opaque_ptr (warning_string) : Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4475 /* Qerror not Qt, so you can get a backtrace */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4476 tem = condition_case_1 (Qerror,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4477 catch_them_squirmers_call1, cons,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4478 caught_a_squirmer, opaque);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4479 if (OPAQUEP (opaque))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4480 free_opaque_ptr (opaque);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4481 free_cons (XCONS (cons));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4482 UNGCPRO;
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
4483
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4484 /* gc_currently_forbidden = 0; */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4485 return unbind_to (speccount, tem);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4486 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4487
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4488 Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4489 call2_trapping_errors (CONST char *warning_string, Lisp_Object function,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4490 Lisp_Object object1, Lisp_Object object2)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4491 {
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
4492 int speccount = specpdl_depth_counter;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4493 Lisp_Object tem;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4494 Lisp_Object cons = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4495 Lisp_Object opaque = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4496 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4, gcpro5;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4497
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4498 if (SYMBOLP (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 tem = XSYMBOL (function)->function;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4501 if (NILP (tem) || UNBOUNDP (tem))
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 167
diff changeset
4502 return Qnil;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4503 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4504
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4505 GCPRO5 (cons, opaque, function, object1, object2);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4506 specbind (Qinhibit_quit, Qt);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4507 /* gc_currently_forbidden = 1; Currently no reason to do this; */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4508
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4509 cons = list3 (function, object1, object2);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4510 opaque = (warning_string ? make_opaque_ptr (warning_string) : Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4511 /* Qerror not Qt, so you can get a backtrace */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4512 tem = condition_case_1 (Qerror,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4513 catch_them_squirmers_call2, cons,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4514 caught_a_squirmer, opaque);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4515 if (OPAQUEP (opaque))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4516 free_opaque_ptr (opaque);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4517 free_list (cons);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4518 UNGCPRO;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4519
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4520 /* gc_currently_forbidden = 0; */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4521 return unbind_to (speccount, tem);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4522 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4523
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4524
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4525 /**********************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4526 /* The special binding stack */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4527 /**********************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4528
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
4529 #define min_max_specpdl_size 400
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
4530
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4531 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4532 grow_specpdl (void)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4533 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4534 if (specpdl_size >= max_specpdl_size)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4535 {
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
4536 if (max_specpdl_size < min_max_specpdl_size)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
4537 max_specpdl_size = min_max_specpdl_size;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4538 if (specpdl_size >= max_specpdl_size)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4539 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4540 if (!NILP (Vdebug_on_error) || !NILP (Vdebug_on_signal))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4541 /* Leave room for some specpdl in the debugger. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4542 max_specpdl_size = specpdl_size + 100;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4543 continuable_error
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4544 ("Variable binding depth exceeds max-specpdl-size");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4545 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4546 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4547 specpdl_size *= 2;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4548 if (specpdl_size > max_specpdl_size)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4549 specpdl_size = max_specpdl_size;
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
4550 XREALLOC_ARRAY (specpdl, struct specbinding, specpdl_size);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4551 specpdl_ptr = specpdl + specpdl_depth_counter;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4552 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4553
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4554
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4555 /* Handle unbinding buffer-local variables */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4556 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4557 specbind_unwind_local (Lisp_Object ovalue)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4558 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4559 Lisp_Object current = Fcurrent_buffer ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4560 Lisp_Object symbol = specpdl_ptr->symbol;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4561 struct Lisp_Cons *victim = XCONS (ovalue);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4562 Lisp_Object buf = get_buffer (victim->car, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4563 ovalue = victim->cdr;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4564
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4565 free_cons (victim);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4566
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4567 if (NILP (buf))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4568 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4569 /* Deleted buffer -- do nothing */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4570 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4571 else if (symbol_value_buffer_local_info (symbol, XBUFFER (buf)) == 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4572 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4573 /* Was buffer-local when binding was made, now no longer is.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4574 * (kill-local-variable can do this.)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4575 * Do nothing in this case.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4576 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4577 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4578 else if (EQ (buf, current))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4579 Fset (symbol, ovalue);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4580 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4581 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4582 /* Urk! Somebody switched buffers */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4583 struct gcpro gcpro1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4584 GCPRO1 (current);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4585 Fset_buffer (buf);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4586 Fset (symbol, ovalue);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4587 Fset_buffer (current);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4588 UNGCPRO;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4589 }
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 167
diff changeset
4590 return symbol;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4591 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4592
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4593 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4594 specbind_unwind_wasnt_local (Lisp_Object buffer)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4595 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4596 Lisp_Object current = Fcurrent_buffer ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4597 Lisp_Object symbol = specpdl_ptr->symbol;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4598
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4599 buffer = get_buffer (buffer, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4600 if (NILP (buffer))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4601 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4602 /* Deleted buffer -- do nothing */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4603 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4604 else if (symbol_value_buffer_local_info (symbol, XBUFFER (buffer)) == 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4605 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4606 /* Was buffer-local when binding was made, now no longer is.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4607 * (kill-local-variable can do this.)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4608 * Do nothing in this case.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4609 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4610 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4611 else if (EQ (buffer, current))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4612 Fkill_local_variable (symbol);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4613 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4614 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4615 /* Urk! Somebody switched buffers */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4616 struct gcpro gcpro1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4617 GCPRO1 (current);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4618 Fset_buffer (buffer);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4619 Fkill_local_variable (symbol);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4620 Fset_buffer (current);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4621 UNGCPRO;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4622 }
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 167
diff changeset
4623 return symbol;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4624 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4625
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4626
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4627 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4628 specbind (Lisp_Object symbol, Lisp_Object value)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4629 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4630 int buffer_local;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4631
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4632 CHECK_SYMBOL (symbol);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4633
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4634 if (specpdl_depth_counter >= specpdl_size)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4635 grow_specpdl ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4636
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4637 buffer_local = symbol_value_buffer_local_info (symbol, current_buffer);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4638 if (buffer_local == 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4639 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4640 specpdl_ptr->old_value = find_symbol_value (symbol);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4641 specpdl_ptr->func = 0; /* Handled specially by unbind_to */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4642 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4643 else if (buffer_local > 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4644 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4645 /* Already buffer-local */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4646 specpdl_ptr->old_value = noseeum_cons (Fcurrent_buffer (),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4647 find_symbol_value (symbol));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4648 specpdl_ptr->func = specbind_unwind_local;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4649 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4650 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4651 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4652 /* About to become buffer-local */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4653 specpdl_ptr->old_value = Fcurrent_buffer ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4654 specpdl_ptr->func = specbind_unwind_wasnt_local;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4655 }
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
4656
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4657 specpdl_ptr->symbol = symbol;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4658 specpdl_ptr++;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4659 specpdl_depth_counter++;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4660
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4661 Fset (symbol, value);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4662 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4663
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4664 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4665 record_unwind_protect (Lisp_Object (*function) (Lisp_Object arg),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4666 Lisp_Object arg)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4667 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4668 if (specpdl_depth_counter >= specpdl_size)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4669 grow_specpdl ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4670 specpdl_ptr->func = function;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4671 specpdl_ptr->symbol = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4672 specpdl_ptr->old_value = arg;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4673 specpdl_ptr++;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4674 specpdl_depth_counter++;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4675 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4676
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4677 extern int check_sigio (void);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4678
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4679 Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4680 unbind_to (int count, Lisp_Object value)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4681 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4682 int quitf;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4683 struct gcpro gcpro1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4684
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4685 GCPRO1 (value);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4686
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4687 check_quit (); /* make Vquit_flag accurate */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4688 quitf = !NILP (Vquit_flag);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4689 Vquit_flag = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4690
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4691 while (specpdl_depth_counter != count)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4692 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4693 Lisp_Object ovalue;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4694 --specpdl_ptr;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4695 --specpdl_depth_counter;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4696
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4697 ovalue = specpdl_ptr->old_value;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4698 if (specpdl_ptr->func != 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4699 /* An unwind-protect */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4700 (*specpdl_ptr->func) (ovalue);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4701 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4702 Fset (specpdl_ptr->symbol, ovalue);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4703
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4704 #ifndef EXCEEDINGLY_QUESTIONABLE_CODE
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4705 /* There should never be anything here for us to remove.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4706 If so, it indicates a logic error in Emacs. Catches
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4707 should get removed when a throw or signal occurs, or
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4708 when a catch or condition-case exits normally. But
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4709 it's too dangerous to just remove this code. --ben */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4710
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4711 /* Furthermore, this code is not in FSFmacs!!!
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4712 Braino on mly's part? */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4713 /* If we're unwound past the pdlcount of a catch frame,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4714 that catch can't possibly still be valid. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4715 while (catchlist && catchlist->pdlcount > specpdl_depth_counter)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4716 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4717 catchlist = catchlist->next;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4718 /* Don't mess with gcprolist, backtrace_list here */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4719 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4720 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4721 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4722 if (quitf)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4723 Vquit_flag = Qt;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4724
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4725 UNGCPRO;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4726
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 167
diff changeset
4727 return value;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4728 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4729
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4730
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4731 int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4732 specpdl_depth (void)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4733 {
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 167
diff changeset
4734 return specpdl_depth_counter;
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
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4737
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4738 /* Get the value of symbol's global binding, even if that binding is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4739 not now dynamically visible. May return Qunbound or magic values. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4740
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4741 Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4742 top_level_value (Lisp_Object symbol)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4743 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4744 REGISTER struct specbinding *ptr = specpdl;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4745
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4746 CHECK_SYMBOL (symbol);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4747 for (; ptr != specpdl_ptr; ptr++)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4748 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4749 if (EQ (ptr->symbol, symbol))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4750 return ptr->old_value;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4751 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4752 return XSYMBOL (symbol)->value;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4753 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4754
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4755 #if 0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4756
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4757 Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4758 top_level_set (Lisp_Object symbol, Lisp_Object newval)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4759 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4760 REGISTER struct specbinding *ptr = specpdl;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4761
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4762 CHECK_SYMBOL (symbol);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4763 for (; ptr != specpdl_ptr; ptr++)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4764 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4765 if (EQ (ptr->symbol, symbol))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4766 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4767 ptr->old_value = newval;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4768 return newval;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4769 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4770 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4771 return Fset (symbol, newval);
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
4772 }
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4773
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4774 #endif /* 0 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4775
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4776
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4777 /**********************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4778 /* Backtraces */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4779 /**********************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4780
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
4781 DEFUN ("backtrace-debug", Fbacktrace_debug, 2, 2, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4782 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
4783 The debugger is entered when that frame exits, if the flag is non-nil.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
4784 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
4785 (level, flag))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4786 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4787 REGISTER struct backtrace *backlist = backtrace_list;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4788 REGISTER int i;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4789
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4790 CHECK_INT (level);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4791
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4792 for (i = 0; backlist && i < XINT (level); i++)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4793 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4794 backlist = backlist->next;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4795 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4796
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4797 if (backlist)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4798 backlist->debug_on_exit = !NILP (flag);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4799
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4800 return flag;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4801 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4802
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4803 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4804 backtrace_specials (int speccount, int speclimit, Lisp_Object stream)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4805 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4806 int printing_bindings = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4807
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4808 for (; speccount > speclimit; speccount--)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4809 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4810 if (specpdl[speccount - 1].func == 0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4811 || specpdl[speccount - 1].func == specbind_unwind_local
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4812 || specpdl[speccount - 1].func == specbind_unwind_wasnt_local)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4813 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4814 write_c_string (((!printing_bindings) ? " # bind (" : " "),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4815 stream);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4816 Fprin1 (specpdl[speccount - 1].symbol, stream);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4817 printing_bindings = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4818 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4819 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4820 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4821 if (printing_bindings) write_c_string (")\n", stream);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4822 write_c_string (" # (unwind-protect ...)\n", stream);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4823 printing_bindings = 0;
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 if (printing_bindings) write_c_string (")\n", stream);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4827 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4828
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
4829 DEFUN ("backtrace", Fbacktrace, 0, 2, "", /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4830 Print a trace of Lisp function calls currently active.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4831 Option arg STREAM specifies the output stream to send the backtrace to,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4832 and defaults to the value of `standard-output'. Optional second arg
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4833 DETAILED means show places where currently active variable bindings,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4834 catches, condition-cases, and unwind-protects were made as well as
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
4835 function calls.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
4836 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
4837 (stream, detailed))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4838 {
249
83b3d10dcba9 Import from CVS: tag r20-5b23
cvs
parents: 245
diff changeset
4839 /* This function can GC */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4840 struct backtrace *backlist = backtrace_list;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4841 struct catchtag *catches = catchlist;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4842 int speccount = specpdl_depth_counter;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4843
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4844 int old_nl = print_escape_newlines;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4845 int old_pr = print_readably;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4846 Lisp_Object old_level = Vprint_level;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4847 Lisp_Object oiq = Vinhibit_quit;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4848 struct gcpro gcpro1, gcpro2;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4849
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4850 /* We can't allow quits in here because that could cause the values
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4851 of print_readably and print_escape_newlines to get screwed up.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4852 Normally we would use a record_unwind_protect but that would
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4853 screw up the functioning of this function. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4854 Vinhibit_quit = Qt;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4855
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4856 entering_debugger = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4857
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4858 Vprint_level = make_int (3);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4859 print_readably = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4860 print_escape_newlines = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4861
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4862 GCPRO2 (stream, old_level);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4863
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4864 if (NILP (stream))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4865 stream = Vstandard_output;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4866 if (!noninteractive && (NILP (stream) || EQ (stream, Qt)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4867 stream = Fselected_frame (Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4868
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4869 for (;;)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4870 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4871 if (!NILP (detailed) && catches && catches->backlist == backlist)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4872 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4873 int catchpdl = catches->pdlcount;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4874 if (specpdl[catchpdl].func == condition_case_unwind
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4875 && speccount > catchpdl)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4876 /* This is a condition-case catchpoint */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4877 catchpdl = catchpdl + 1;
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
4878
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4879 backtrace_specials (speccount, catchpdl, stream);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4880
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4881 speccount = catches->pdlcount;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4882 if (catchpdl == speccount)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4883 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4884 write_c_string (" # (catch ", stream);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4885 Fprin1 (catches->tag, stream);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4886 write_c_string (" ...)\n", stream);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4887 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4888 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4889 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4890 write_c_string (" # (condition-case ... . ", stream);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4891 Fprin1 (Fcdr (Fcar (catches->tag)), stream);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4892 write_c_string (")\n", stream);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4893 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4894 catches = catches->next;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4895 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4896 else if (!backlist)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4897 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4898 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4899 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4900 if (!NILP (detailed) && backlist->pdlcount < speccount)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4901 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4902 backtrace_specials (speccount, backlist->pdlcount, stream);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4903 speccount = backlist->pdlcount;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4904 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4905 write_c_string (((backlist->debug_on_exit) ? "* " : " "),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4906 stream);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4907 if (backlist->nargs == UNEVALLED)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4908 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4909 Fprin1 (Fcons (*backlist->function, *backlist->args), stream);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4910 write_c_string ("\n", stream); /* from FSFmacs 19.30 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4911 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4912 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4913 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4914 Lisp_Object tem = *backlist->function;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4915 Fprin1 (tem, stream); /* This can QUIT */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4916 write_c_string ("(", stream);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4917 if (backlist->nargs == MANY)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4918 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4919 int i;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4920 Lisp_Object tail = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4921 struct gcpro ngcpro1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4922
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4923 NGCPRO1 (tail);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4924 for (tail = *backlist->args, i = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4925 !NILP (tail);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4926 tail = Fcdr (tail), i++)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4927 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4928 if (i != 0) write_c_string (" ", stream);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4929 Fprin1 (Fcar (tail), stream);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4930 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4931 NUNGCPRO;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4932 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4933 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4934 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4935 int i;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4936 for (i = 0; i < backlist->nargs; i++)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4937 {
241
f955c73f5258 Import from CVS: tag r20-5b19
cvs
parents: 223
diff changeset
4938 if (!i && EQ(tem, Qbyte_code)) {
f955c73f5258 Import from CVS: tag r20-5b19
cvs
parents: 223
diff changeset
4939 write_c_string("\"...\"", stream);
f955c73f5258 Import from CVS: tag r20-5b19
cvs
parents: 223
diff changeset
4940 continue;
f955c73f5258 Import from CVS: tag r20-5b19
cvs
parents: 223
diff changeset
4941 }
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4942 if (i != 0) write_c_string (" ", stream);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4943 Fprin1 (backlist->args[i], stream);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4944 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4945 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4946 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4947 write_c_string (")\n", stream);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4948 backlist = backlist->next;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4949 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4950 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4951 Vprint_level = old_level;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4952 print_readably = old_pr;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4953 print_escape_newlines = old_nl;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4954 UNGCPRO;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4955 Vinhibit_quit = oiq;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4956 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4957 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4958
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4959
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
4960 DEFUN ("backtrace-frame", Fbacktrace_frame, 1, 1, "", /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4961 Return the function and arguments N frames up from current execution point.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4962 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
4963 the value is (nil FUNCTION ARG-FORMS...).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4964 If that frame has evaluated its arguments and called its function already,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4965 the value is (t FUNCTION ARG-VALUES...).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4966 A &rest arg is represented as the tail of the list ARG-VALUES.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4967 FUNCTION is whatever was supplied as car of evaluated list,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4968 or a lambda expression for macro calls.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4969 If N is more than the number of frames, the value is nil.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
4970 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
4971 (nframes))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4972 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4973 REGISTER struct backtrace *backlist = backtrace_list;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4974 REGISTER int i;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4975 Lisp_Object tem;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4976
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4977 CHECK_NATNUM (nframes);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4978
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4979 /* Find the frame requested. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4980 for (i = XINT (nframes); backlist && (i-- > 0);)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4981 backlist = backlist->next;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4982
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4983 if (!backlist)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4984 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4985 if (backlist->nargs == UNEVALLED)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4986 return Fcons (Qnil, Fcons (*backlist->function, *backlist->args));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4987 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4988 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4989 if (backlist->nargs == MANY)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4990 tem = *backlist->args;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4991 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4992 tem = Flist (backlist->nargs, backlist->args);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4993
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4994 return Fcons (Qt, Fcons (*backlist->function, tem));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4995 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4996 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4997
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4998
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4999 /**********************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5000 /* Warnings */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5001 /**********************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5002
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5003 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5004 warn_when_safe_lispobj (Lisp_Object class, Lisp_Object level,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5005 Lisp_Object obj)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5006 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5007 obj = list1 (list3 (class, level, obj));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5008 if (NILP (Vpending_warnings))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5009 Vpending_warnings = Vpending_warnings_tail = obj;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5010 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5011 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5012 Fsetcdr (Vpending_warnings_tail, obj);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5013 Vpending_warnings_tail = obj;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5014 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5015 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5016
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5017 /* #### This should probably accept Lisp objects; but then we have
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5018 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
5019
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5020 An alternative approach is to just pass some non-string type of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5021 Lisp Object to warn_when_safe_lispobj(); `prin1-to-string' will
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5022 automatically be called when it is safe to do so. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5023
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5024 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5025 warn_when_safe (Lisp_Object class, Lisp_Object level, CONST char *fmt, ...)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5026 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5027 Lisp_Object obj;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5028 va_list args;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5029
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5030 va_start (args, fmt);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5031 obj = emacs_doprnt_string_va ((CONST Bufbyte *) GETTEXT (fmt),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5032 Qnil, -1, args);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5033 va_end (args);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5034
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5035 warn_when_safe_lispobj (class, level, obj);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5036 }
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
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5041 /**********************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5042 /* Initialization */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5043 /**********************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5044
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5045 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5046 syms_of_eval (void)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5047 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5048 defsymbol (&Qinhibit_quit, "inhibit-quit");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5049 defsymbol (&Qautoload, "autoload");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5050 defsymbol (&Qdebug_on_error, "debug-on-error");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5051 defsymbol (&Qstack_trace_on_error, "stack-trace-on-error");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5052 defsymbol (&Qdebug_on_signal, "debug-on-signal");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5053 defsymbol (&Qstack_trace_on_signal, "stack-trace-on-signal");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5054 defsymbol (&Qdebugger, "debugger");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5055 defsymbol (&Qmacro, "macro");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5056 defsymbol (&Qand_rest, "&rest");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5057 defsymbol (&Qand_optional, "&optional");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5058 /* Note that the process code also uses Qexit */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5059 defsymbol (&Qexit, "exit");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5060 defsymbol (&Qsetq, "setq");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5061 defsymbol (&Qinteractive, "interactive");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5062 defsymbol (&Qcommandp, "commandp");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5063 defsymbol (&Qdefun, "defun");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5064 defsymbol (&Qprogn, "progn");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5065 defsymbol (&Qvalues, "values");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5066 defsymbol (&Qdisplay_warning, "display-warning");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5067 defsymbol (&Qrun_hooks, "run-hooks");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5068
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
5069 DEFSUBR (For);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
5070 DEFSUBR (Fand);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
5071 DEFSUBR (Fif);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
5072 DEFSUBR (Fcond);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
5073 DEFSUBR (Fprogn);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
5074 DEFSUBR (Fprog1);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
5075 DEFSUBR (Fprog2);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
5076 DEFSUBR (Fsetq);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
5077 DEFSUBR (Fquote);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
5078 DEFSUBR (Ffunction);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
5079 DEFSUBR (Fdefun);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
5080 DEFSUBR (Fdefmacro);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
5081 DEFSUBR (Fdefvar);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
5082 DEFSUBR (Fdefconst);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
5083 DEFSUBR (Fuser_variable_p);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
5084 DEFSUBR (Flet);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
5085 DEFSUBR (FletX);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
5086 DEFSUBR (Fwhile);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
5087 DEFSUBR (Fmacroexpand_internal);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
5088 DEFSUBR (Fcatch);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
5089 DEFSUBR (Fthrow);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
5090 DEFSUBR (Funwind_protect);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
5091 DEFSUBR (Fcondition_case);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
5092 DEFSUBR (Fcall_with_condition_handler);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
5093 DEFSUBR (Fsignal);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
5094 DEFSUBR (Finteractive_p);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
5095 DEFSUBR (Fcommandp);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
5096 DEFSUBR (Fcommand_execute);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
5097 DEFSUBR (Fautoload);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
5098 DEFSUBR (Feval);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
5099 DEFSUBR (Fapply);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
5100 DEFSUBR (Ffuncall);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
5101 DEFSUBR (Ffunction_min_args);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
5102 DEFSUBR (Ffunction_max_args);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
5103 DEFSUBR (Frun_hooks);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
5104 DEFSUBR (Frun_hook_with_args);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
5105 DEFSUBR (Frun_hook_with_args_until_success);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
5106 DEFSUBR (Frun_hook_with_args_until_failure);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
5107 DEFSUBR (Ffetch_bytecode);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
5108 DEFSUBR (Fbacktrace_debug);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
5109 DEFSUBR (Fbacktrace);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
5110 DEFSUBR (Fbacktrace_frame);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5111 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5112
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5113 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5114 reinit_eval (void)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5115 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5116 specpdl_ptr = specpdl;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5117 specpdl_depth_counter = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5118 catchlist = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5119 Vcondition_handlers = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5120 backtrace_list = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5121 Vquit_flag = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5122 debug_on_next_call = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5123 lisp_eval_depth = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5124 entering_debugger = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5125 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5126
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5127 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5128 vars_of_eval (void)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5129 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5130 DEFVAR_INT ("max-specpdl-size", &max_specpdl_size /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5131 Limit on number of Lisp variable bindings & unwind-protects before error.
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 DEFVAR_INT ("max-lisp-eval-depth", &max_lisp_eval_depth /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5135 Limit on depth in `eval', `apply' and `funcall' before error.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5136 This limit is to catch infinite recursions for you before they cause
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5137 actual stack overflow in C, which would be fatal for Emacs.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5138 You can safely make it considerably larger than its default value,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5139 if that proves inconveniently small.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5140 */ );
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5141
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5142 DEFVAR_LISP ("quit-flag", &Vquit_flag /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5143 Non-nil causes `eval' to abort, unless `inhibit-quit' is non-nil.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5144 Typing C-G sets `quit-flag' non-nil, regardless of `inhibit-quit'.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5145 */ );
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5146 Vquit_flag = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5147
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5148 DEFVAR_LISP ("inhibit-quit", &Vinhibit_quit /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5149 Non-nil inhibits C-g quitting from happening immediately.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5150 Note that `quit-flag' will still be set by typing C-g,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5151 so a quit will be signalled as soon as `inhibit-quit' is nil.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5152 To prevent this happening, set `quit-flag' to nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5153 before making `inhibit-quit' nil. The value of `inhibit-quit' is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5154 ignored if a critical quit is requested by typing control-shift-G in
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5155 an X frame.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5156 */ );
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5157 Vinhibit_quit = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5158
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5159 DEFVAR_LISP ("stack-trace-on-error", &Vstack_trace_on_error /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5160 *Non-nil means automatically display a backtrace buffer
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5161 after any error that is not handled by a `condition-case'.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5162 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
5163 if one of its condition symbols appears in the list.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5164 See also variable `stack-trace-on-signal'.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5165 */ );
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5166 Vstack_trace_on_error = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5167
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5168 DEFVAR_LISP ("stack-trace-on-signal", &Vstack_trace_on_signal /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5169 *Non-nil means automatically display a backtrace buffer
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5170 after any error that is signalled, whether or not it is handled by
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5171 a `condition-case'.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5172 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
5173 if one of its condition symbols appears in the list.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5174 See also variable `stack-trace-on-error'.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5175 */ );
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5176 Vstack_trace_on_signal = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5177
163
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 153
diff changeset
5178 DEFVAR_LISP ("debug-ignored-errors", &Vdebug_ignored_errors /*
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 153
diff changeset
5179 *List of errors for which the debugger should not be called.
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 153
diff changeset
5180 Each element may be a condition-name or a regexp that matches error messages.
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 153
diff changeset
5181 If any element applies to a given error, that error skips the debugger
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 153
diff changeset
5182 and just returns to top level.
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 153
diff changeset
5183 This overrides the variable `debug-on-error'.
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 153
diff changeset
5184 It does not apply to errors handled by `condition-case'.
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 153
diff changeset
5185 */ );
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 153
diff changeset
5186 Vdebug_ignored_errors = Qnil;
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 153
diff changeset
5187
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5188 DEFVAR_LISP ("debug-on-error", &Vdebug_on_error /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5189 *Non-nil means enter debugger if an unhandled error is signalled.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5190 The debugger will not be entered if the error is handled by
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5191 a `condition-case'.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5192 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
5193 if one of its condition symbols appears in the list.
181
bfd6434d15b3 Import from CVS: tag r20-3b17
cvs
parents: 179
diff changeset
5194 This variable is overridden by `debug-ignored-errors'.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5195 See also variables `debug-on-quit' and `debug-on-signal'.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5196 */ );
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5197 Vdebug_on_error = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5198
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5199 DEFVAR_LISP ("debug-on-signal", &Vdebug_on_signal /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5200 *Non-nil means enter debugger if an error is signalled.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5201 The debugger will be entered whether or not the error is handled by
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5202 a `condition-case'.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5203 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
5204 if one of its condition symbols appears in the list.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5205 See also variable `debug-on-quit'.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5206 */ );
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5207 Vdebug_on_signal = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5208
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5209 DEFVAR_BOOL ("debug-on-quit", &debug_on_quit /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5210 *Non-nil means enter debugger if quit is signalled (C-G, for example).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5211 Does not apply if quit is handled by a `condition-case'. Entering the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5212 debugger can also be achieved at any time (for X11 console) by typing
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5213 control-shift-G to signal a critical quit.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5214 */ );
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5215 debug_on_quit = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5216
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5217 DEFVAR_BOOL ("debug-on-next-call", &debug_on_next_call /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5218 Non-nil means enter debugger before next `eval', `apply' or `funcall'.
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 DEFVAR_LISP ("debugger", &Vdebugger /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5222 Function to call to invoke debugger.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5223 If due to frame exit, args are `exit' and the value being returned;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5224 this function's value will be returned instead of that.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5225 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
5226 If due to `apply' or `funcall' entry, one arg, `lambda'.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5227 If due to `eval' entry, one arg, t.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5228 */ );
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5229 Vdebugger = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5230
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5231 preparing_for_armageddon = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5232
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5233 staticpro (&Vpending_warnings);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5234 Vpending_warnings = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5235 Vpending_warnings_tail = Qnil; /* no need to protect this */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5236
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5237 in_warnings = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5238
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5239 staticpro (&Vautoload_queue);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5240 Vautoload_queue = 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 staticpro (&Vcondition_handlers);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5243
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5244 staticpro (&Vcurrent_warning_class);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5245 Vcurrent_warning_class = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5246
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5247 staticpro (&Vcurrent_error_state);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5248 Vcurrent_error_state = Qnil; /* errors as normal */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5249
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5250 Qunbound_suspended_errors_tag = make_opaque_long (0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5251 staticpro (&Qunbound_suspended_errors_tag);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5252
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5253 specpdl_size = 50;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5254 specpdl_depth_counter = 0;
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
5255 specpdl = xnew_array (struct specbinding, specpdl_size);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5256 /* XEmacs change: increase these values. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5257 max_specpdl_size = 3000;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5258 max_lisp_eval_depth = 500;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5259 throw_level = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5260
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5261 reinit_eval ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5262 }