annotate src/eval.c @ 13768:353d32d374db

(skip_debugger): New function. (find_handler_clause): Call skip_debugger. (Vdebug_ignored_errors): New variable. (syms_of_eval): Set up Lisp variable.
author Karl Heuer <kwzh@gnu.org>
date Thu, 21 Dec 1995 17:00:18 +0000
parents 17f3f1c1bdf8
children 6a653c300631
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1 /* Evaluator for GNU Emacs Lisp interpreter.
10342
01d13c22797e (Fcommandp): Use & PSEUDOVECTOR_SIZE_MASK on `size' field of compiled
Roland McGrath <roland@gnu.org>
parents: 10201
diff changeset
2 Copyright (C) 1985, 1986, 1987, 1993, 1994, 1995 Free Software Foundation, Inc.
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4 This file is part of GNU Emacs.
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6 GNU Emacs is free software; you can redistribute it and/or modify
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7 it under the terms of the GNU General Public License as published by
10342
01d13c22797e (Fcommandp): Use & PSEUDOVECTOR_SIZE_MASK on `size' field of compiled
Roland McGrath <roland@gnu.org>
parents: 10201
diff changeset
8 the Free Software Foundation; either version 2, or (at your option)
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
9 any later version.
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
10
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
11 GNU Emacs is distributed in the hope that it will be useful,
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
14 GNU General Public License for more details.
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
15
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
16 You should have received a copy of the GNU General Public License
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
17 along with GNU Emacs; see the file COPYING. If not, write to
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
18 the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
19
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
20
4696
1fc792473491 Include <config.h> instead of "config.h".
Roland McGrath <roland@gnu.org>
parents: 4474
diff changeset
21 #include <config.h>
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
22 #include "lisp.h"
2439
b6c62e4abf59 Put interrupt input blocking in a separate file from xterm.h.
Jim Blandy <jimb@redhat.com>
parents: 1564
diff changeset
23 #include "blockinput.h"
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
24
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
25 #ifndef standalone
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
26 #include "commands.h"
515
0005d4c90c97 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 485
diff changeset
27 #include "keyboard.h"
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
28 #else
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
29 #define INTERACTIVE 1
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
30 #endif
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
31
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
32 #include <setjmp.h>
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
33
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
34 /* This definition is duplicated in alloc.c and keyboard.c */
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
35 /* Putting it in lisp.h makes cc bomb out! */
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
36
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
37 struct backtrace
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
38 {
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
39 struct backtrace *next;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
40 Lisp_Object *function;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
41 Lisp_Object *args; /* Points to vector of args. */
727
540b047ece4d *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 706
diff changeset
42 int nargs; /* Length of vector.
540b047ece4d *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 706
diff changeset
43 If nargs is UNEVALLED, args points to slot holding
540b047ece4d *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 706
diff changeset
44 list of unevalled args */
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
45 char evalargs;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
46 /* Nonzero means call value of debugger when done with this operation. */
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
47 char debug_on_exit;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
48 };
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
49
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
50 struct backtrace *backtrace_list;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
51
1196
65e2edefe748 * eval.c (Fcondition_case): Rearranged for clarity. Don't worry
Jim Blandy <jimb@redhat.com>
parents: 940
diff changeset
52 /* This structure helps implement the `catch' and `throw' control
65e2edefe748 * eval.c (Fcondition_case): Rearranged for clarity. Don't worry
Jim Blandy <jimb@redhat.com>
parents: 940
diff changeset
53 structure. A struct catchtag contains all the information needed
65e2edefe748 * eval.c (Fcondition_case): Rearranged for clarity. Don't worry
Jim Blandy <jimb@redhat.com>
parents: 940
diff changeset
54 to restore the state of the interpreter after a non-local jump.
65e2edefe748 * eval.c (Fcondition_case): Rearranged for clarity. Don't worry
Jim Blandy <jimb@redhat.com>
parents: 940
diff changeset
55
65e2edefe748 * eval.c (Fcondition_case): Rearranged for clarity. Don't worry
Jim Blandy <jimb@redhat.com>
parents: 940
diff changeset
56 Handlers for error conditions (represented by `struct handler'
65e2edefe748 * eval.c (Fcondition_case): Rearranged for clarity. Don't worry
Jim Blandy <jimb@redhat.com>
parents: 940
diff changeset
57 structures) just point to a catch tag to do the cleanup required
65e2edefe748 * eval.c (Fcondition_case): Rearranged for clarity. Don't worry
Jim Blandy <jimb@redhat.com>
parents: 940
diff changeset
58 for their jumps.
65e2edefe748 * eval.c (Fcondition_case): Rearranged for clarity. Don't worry
Jim Blandy <jimb@redhat.com>
parents: 940
diff changeset
59
65e2edefe748 * eval.c (Fcondition_case): Rearranged for clarity. Don't worry
Jim Blandy <jimb@redhat.com>
parents: 940
diff changeset
60 catchtag structures are chained together in the C calling stack;
65e2edefe748 * eval.c (Fcondition_case): Rearranged for clarity. Don't worry
Jim Blandy <jimb@redhat.com>
parents: 940
diff changeset
61 the `next' member points to the next outer catchtag.
65e2edefe748 * eval.c (Fcondition_case): Rearranged for clarity. Don't worry
Jim Blandy <jimb@redhat.com>
parents: 940
diff changeset
62
65e2edefe748 * eval.c (Fcondition_case): Rearranged for clarity. Don't worry
Jim Blandy <jimb@redhat.com>
parents: 940
diff changeset
63 A call like (throw TAG VAL) searches for a catchtag whose `tag'
65e2edefe748 * eval.c (Fcondition_case): Rearranged for clarity. Don't worry
Jim Blandy <jimb@redhat.com>
parents: 940
diff changeset
64 member is TAG, and then unbinds to it. The `val' member is used to
65e2edefe748 * eval.c (Fcondition_case): Rearranged for clarity. Don't worry
Jim Blandy <jimb@redhat.com>
parents: 940
diff changeset
65 hold VAL while the stack is unwound; `val' is returned as the value
65e2edefe748 * eval.c (Fcondition_case): Rearranged for clarity. Don't worry
Jim Blandy <jimb@redhat.com>
parents: 940
diff changeset
66 of the catch form.
65e2edefe748 * eval.c (Fcondition_case): Rearranged for clarity. Don't worry
Jim Blandy <jimb@redhat.com>
parents: 940
diff changeset
67
65e2edefe748 * eval.c (Fcondition_case): Rearranged for clarity. Don't worry
Jim Blandy <jimb@redhat.com>
parents: 940
diff changeset
68 All the other members are concerned with restoring the interpreter
65e2edefe748 * eval.c (Fcondition_case): Rearranged for clarity. Don't worry
Jim Blandy <jimb@redhat.com>
parents: 940
diff changeset
69 state. */
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
70 struct catchtag
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
71 {
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
72 Lisp_Object tag;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
73 Lisp_Object val;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
74 struct catchtag *next;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
75 struct gcpro *gcpro;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
76 jmp_buf jmp;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
77 struct backtrace *backlist;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
78 struct handler *handlerlist;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
79 int lisp_eval_depth;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
80 int pdlcount;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
81 int poll_suppress_count;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
82 };
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
83
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
84 struct catchtag *catchlist;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
85
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
86 Lisp_Object Qautoload, Qmacro, Qexit, Qinteractive, Qcommandp, Qdefun;
381
0673e72f6c8c *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 323
diff changeset
87 Lisp_Object Qinhibit_quit, Vinhibit_quit, Vquit_flag;
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
88 Lisp_Object Qmocklisp_arguments, Vmocklisp_arguments, Qmocklisp;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
89 Lisp_Object Qand_rest, Qand_optional;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
90 Lisp_Object Qdebug_on_error;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
91
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
92 Lisp_Object Vrun_hooks;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
93
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
94 /* Non-nil means record all fset's and provide's, to be undone
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
95 if the file being autoloaded is not fully loaded.
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
96 They are recorded by being consed onto the front of Vautoload_queue:
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
97 (FUN . ODEF) for a defun, (OFEATURES . nil) for a provide. */
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
98
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
99 Lisp_Object Vautoload_queue;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
100
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
101 /* Current number of specbindings allocated in specpdl. */
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
102 int specpdl_size;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
103
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
104 /* Pointer to beginning of specpdl. */
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
105 struct specbinding *specpdl;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
106
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
107 /* Pointer to first unused element in specpdl. */
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
108 struct specbinding *specpdl_ptr;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
109
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
110 /* Maximum size allowed for specpdl allocation */
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
111 int max_specpdl_size;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
112
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
113 /* Depth in Lisp evaluations and function calls. */
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
114 int lisp_eval_depth;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
115
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
116 /* Maximum allowed depth in Lisp evaluations and function calls. */
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
117 int max_lisp_eval_depth;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
118
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
119 /* Nonzero means enter debugger before next function call */
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
120 int debug_on_next_call;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
121
684
bd574e49bfac *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 648
diff changeset
122 /* List of conditions (non-nil atom means all) which cause a backtrace
706
86cb5db0b6c3 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 687
diff changeset
123 if an error is handled by the command loop's error handler. */
684
bd574e49bfac *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 648
diff changeset
124 Lisp_Object Vstack_trace_on_error;
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
125
684
bd574e49bfac *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 648
diff changeset
126 /* List of conditions (non-nil atom means all) which enter the debugger
706
86cb5db0b6c3 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 687
diff changeset
127 if an error is handled by the command loop's error handler. */
684
bd574e49bfac *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 648
diff changeset
128 Lisp_Object Vdebug_on_error;
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
129
13768
353d32d374db (skip_debugger): New function.
Karl Heuer <kwzh@gnu.org>
parents: 13444
diff changeset
130 /* List of conditions and regexps specifying error messages which
353d32d374db (skip_debugger): New function.
Karl Heuer <kwzh@gnu.org>
parents: 13444
diff changeset
131 do not enter the debugger even if Vdebug_on_errors says they should. */
353d32d374db (skip_debugger): New function.
Karl Heuer <kwzh@gnu.org>
parents: 13444
diff changeset
132 Lisp_Object Vdebug_ignored_errors;
353d32d374db (skip_debugger): New function.
Karl Heuer <kwzh@gnu.org>
parents: 13444
diff changeset
133
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
134 /* Nonzero means enter debugger if a quit signal
684
bd574e49bfac *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 648
diff changeset
135 is handled by the command loop's error handler. */
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
136 int debug_on_quit;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
137
1196
65e2edefe748 * eval.c (Fcondition_case): Rearranged for clarity. Don't worry
Jim Blandy <jimb@redhat.com>
parents: 940
diff changeset
138 /* The value of num_nonmacro_input_chars as of the last time we
65e2edefe748 * eval.c (Fcondition_case): Rearranged for clarity. Don't worry
Jim Blandy <jimb@redhat.com>
parents: 940
diff changeset
139 started to enter the debugger. If we decide to enter the debugger
65e2edefe748 * eval.c (Fcondition_case): Rearranged for clarity. Don't worry
Jim Blandy <jimb@redhat.com>
parents: 940
diff changeset
140 again when this is still equal to num_nonmacro_input_chars, then we
65e2edefe748 * eval.c (Fcondition_case): Rearranged for clarity. Don't worry
Jim Blandy <jimb@redhat.com>
parents: 940
diff changeset
141 know that the debugger itself has an error, and we should just
65e2edefe748 * eval.c (Fcondition_case): Rearranged for clarity. Don't worry
Jim Blandy <jimb@redhat.com>
parents: 940
diff changeset
142 signal the error instead of entering an infinite loop of debugger
65e2edefe748 * eval.c (Fcondition_case): Rearranged for clarity. Don't worry
Jim Blandy <jimb@redhat.com>
parents: 940
diff changeset
143 invocations. */
65e2edefe748 * eval.c (Fcondition_case): Rearranged for clarity. Don't worry
Jim Blandy <jimb@redhat.com>
parents: 940
diff changeset
144 int when_entered_debugger;
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
145
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
146 Lisp_Object Vdebugger;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
147
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
148 void specbind (), record_unwind_protect ();
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
149
13314
661060193eb8 (run_hook_with_args): Add forward declaration.
Richard M. Stallman <rms@gnu.org>
parents: 13103
diff changeset
150 Lisp_Object run_hook_with_args ();
661060193eb8 (run_hook_with_args): Add forward declaration.
Richard M. Stallman <rms@gnu.org>
parents: 13103
diff changeset
151
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
152 Lisp_Object funcall_lambda ();
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
153 extern Lisp_Object ml_apply (); /* Apply a mocklisp function to unevaluated argument list */
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
154
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
155 init_eval_once ()
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
156 {
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
157 specpdl_size = 50;
7885
bc6406a90796 (init_eval_once): Call xmalloc, not malloc.
Richard M. Stallman <rms@gnu.org>
parents: 7533
diff changeset
158 specpdl = (struct specbinding *) xmalloc (specpdl_size * sizeof (struct specbinding));
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
159 max_specpdl_size = 600;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
160 max_lisp_eval_depth = 200;
8980
e641b60610a1 (init_eval_once): Init Vrun_hooks here.
Richard M. Stallman <rms@gnu.org>
parents: 8902
diff changeset
161
e641b60610a1 (init_eval_once): Init Vrun_hooks here.
Richard M. Stallman <rms@gnu.org>
parents: 8902
diff changeset
162 Vrun_hooks = Qnil;
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
163 }
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
164
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
165 init_eval ()
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
166 {
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
167 specpdl_ptr = specpdl;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
168 catchlist = 0;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
169 handlerlist = 0;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
170 backtrace_list = 0;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
171 Vquit_flag = Qnil;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
172 debug_on_next_call = 0;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
173 lisp_eval_depth = 0;
7213
bb5db306a305 (init_eval): Initialize when_entered_debugger to -1.
Richard M. Stallman <rms@gnu.org>
parents: 6918
diff changeset
174 /* This is less than the initial value of num_nonmacro_input_chars. */
bb5db306a305 (init_eval): Initialize when_entered_debugger to -1.
Richard M. Stallman <rms@gnu.org>
parents: 6918
diff changeset
175 when_entered_debugger = -1;
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
176 }
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
177
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
178 Lisp_Object
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
179 call_debugger (arg)
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
180 Lisp_Object arg;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
181 {
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
182 if (lisp_eval_depth + 20 > max_lisp_eval_depth)
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
183 max_lisp_eval_depth = lisp_eval_depth + 20;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
184 if (specpdl_size + 40 > max_specpdl_size)
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
185 max_specpdl_size = specpdl_size + 40;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
186 debug_on_next_call = 0;
1196
65e2edefe748 * eval.c (Fcondition_case): Rearranged for clarity. Don't worry
Jim Blandy <jimb@redhat.com>
parents: 940
diff changeset
187 when_entered_debugger = num_nonmacro_input_chars;
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
188 return apply1 (Vdebugger, arg);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
189 }
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
190
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
191 do_debug_on_call (code)
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
192 Lisp_Object code;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
193 {
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
194 debug_on_next_call = 0;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
195 backtrace_list->debug_on_exit = 1;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
196 call_debugger (Fcons (code, Qnil));
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
197 }
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
198
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
199 /* NOTE!!! Every function that can call EVAL must protect its args
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
200 and temporaries from garbage collection while it needs them.
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
201 The definition of `For' shows what you have to do. */
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
202
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
203 DEFUN ("or", For, Sor, 0, UNEVALLED, 0,
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
204 "Eval args until one of them yields non-nil, then return that value.\n\
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
205 The remaining args are not evalled at all.\n\
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
206 If all args return nil, return nil.")
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
207 (args)
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
208 Lisp_Object args;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
209 {
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
210 register Lisp_Object val;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
211 Lisp_Object args_left;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
212 struct gcpro gcpro1;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
213
485
8c615e453683 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 431
diff changeset
214 if (NILP(args))
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
215 return Qnil;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
216
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
217 args_left = args;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
218 GCPRO1 (args_left);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
219
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
220 do
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
221 {
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
222 val = Feval (Fcar (args_left));
485
8c615e453683 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 431
diff changeset
223 if (!NILP (val))
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
224 break;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
225 args_left = Fcdr (args_left);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
226 }
485
8c615e453683 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 431
diff changeset
227 while (!NILP(args_left));
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
228
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
229 UNGCPRO;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
230 return val;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
231 }
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
232
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
233 DEFUN ("and", Fand, Sand, 0, UNEVALLED, 0,
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
234 "Eval args until one of them yields nil, then return nil.\n\
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
235 The remaining args are not evalled at all.\n\
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
236 If no arg yields nil, return the last arg's value.")
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
237 (args)
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
238 Lisp_Object args;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
239 {
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
240 register Lisp_Object val;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
241 Lisp_Object args_left;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
242 struct gcpro gcpro1;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
243
485
8c615e453683 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 431
diff changeset
244 if (NILP(args))
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
245 return Qt;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
246
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
247 args_left = args;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
248 GCPRO1 (args_left);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
249
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
250 do
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
251 {
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
252 val = Feval (Fcar (args_left));
485
8c615e453683 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 431
diff changeset
253 if (NILP (val))
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
254 break;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
255 args_left = Fcdr (args_left);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
256 }
485
8c615e453683 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 431
diff changeset
257 while (!NILP(args_left));
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
258
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
259 UNGCPRO;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
260 return val;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
261 }
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
262
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
263 DEFUN ("if", Fif, Sif, 2, UNEVALLED, 0,
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
264 "(if COND THEN ELSE...): if COND yields non-nil, do THEN, else do ELSE...\n\
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
265 Returns the value of THEN or the value of the last of the ELSE's.\n\
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
266 THEN must be one expression, but ELSE... can be zero or more expressions.\n\
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
267 If COND yields nil, and there are no ELSE's, the value is nil.")
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
268 (args)
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
269 Lisp_Object args;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
270 {
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
271 register Lisp_Object cond;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
272 struct gcpro gcpro1;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
273
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
274 GCPRO1 (args);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
275 cond = Feval (Fcar (args));
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
276 UNGCPRO;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
277
485
8c615e453683 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 431
diff changeset
278 if (!NILP (cond))
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
279 return Feval (Fcar (Fcdr (args)));
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
280 return Fprogn (Fcdr (Fcdr (args)));
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
281 }
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
282
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
283 DEFUN ("cond", Fcond, Scond, 0, UNEVALLED, 0,
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
284 "(cond CLAUSES...): try each clause until one succeeds.\n\
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
285 Each clause looks like (CONDITION BODY...). CONDITION is evaluated\n\
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
286 and, if the value is non-nil, this clause succeeds:\n\
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
287 then the expressions in BODY are evaluated and the last one's\n\
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
288 value is the value of the cond-form.\n\
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
289 If no clause succeeds, cond returns nil.\n\
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
290 If a clause has one element, as in (CONDITION),\n\
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
291 CONDITION's value if non-nil is returned from the cond-form.")
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
292 (args)
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
293 Lisp_Object args;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
294 {
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
295 register Lisp_Object clause, val;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
296 struct gcpro gcpro1;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
297
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
298 val = Qnil;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
299 GCPRO1 (args);
485
8c615e453683 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 431
diff changeset
300 while (!NILP (args))
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
301 {
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
302 clause = Fcar (args);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
303 val = Feval (Fcar (clause));
485
8c615e453683 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 431
diff changeset
304 if (!NILP (val))
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
305 {
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
306 if (!EQ (XCONS (clause)->cdr, Qnil))
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
307 val = Fprogn (XCONS (clause)->cdr);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
308 break;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
309 }
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
310 args = XCONS (args)->cdr;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
311 }
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
312 UNGCPRO;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
313
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
314 return val;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
315 }
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
316
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
317 DEFUN ("progn", Fprogn, Sprogn, 0, UNEVALLED, 0,
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
318 "(progn BODY...): eval BODY forms sequentially and return value of last one.")
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
319 (args)
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
320 Lisp_Object args;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
321 {
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
322 register Lisp_Object val, tem;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
323 Lisp_Object args_left;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
324 struct gcpro gcpro1;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
325
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
326 /* In Mocklisp code, symbols at the front of the progn arglist
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
327 are to be bound to zero. */
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
328 if (!EQ (Vmocklisp_arguments, Qt))
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
329 {
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
330 val = make_number (0);
9148
e7ab930bb7eb (Fprogn, Finteractive_p, Fuser_variable_p, FletX, Flet, Fmacroexpand,
Karl Heuer <kwzh@gnu.org>
parents: 8980
diff changeset
331 while (!NILP (args) && (tem = Fcar (args), SYMBOLP (tem)))
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
332 {
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
333 QUIT;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
334 specbind (tem, val), args = Fcdr (args);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
335 }
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
336 }
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
337
485
8c615e453683 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 431
diff changeset
338 if (NILP(args))
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
339 return Qnil;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
340
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
341 args_left = args;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
342 GCPRO1 (args_left);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
343
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
344 do
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
345 {
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
346 val = Feval (Fcar (args_left));
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
347 args_left = Fcdr (args_left);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
348 }
485
8c615e453683 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 431
diff changeset
349 while (!NILP(args_left));
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
350
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
351 UNGCPRO;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
352 return val;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
353 }
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
354
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
355 DEFUN ("prog1", Fprog1, Sprog1, 1, UNEVALLED, 0,
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
356 "(prog1 FIRST BODY...): eval FIRST and BODY sequentially; value from FIRST.\n\
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
357 The value of FIRST is saved during the evaluation of the remaining args,\n\
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
358 whose values are discarded.")
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
359 (args)
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
360 Lisp_Object args;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
361 {
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
362 Lisp_Object val;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
363 register Lisp_Object args_left;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
364 struct gcpro gcpro1, gcpro2;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
365 register int argnum = 0;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
366
485
8c615e453683 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 431
diff changeset
367 if (NILP(args))
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
368 return Qnil;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
369
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
370 args_left = args;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
371 val = Qnil;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
372 GCPRO2 (args, val);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
373
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
374 do
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
375 {
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
376 if (!(argnum++))
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
377 val = Feval (Fcar (args_left));
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
378 else
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
379 Feval (Fcar (args_left));
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
380 args_left = Fcdr (args_left);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
381 }
485
8c615e453683 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 431
diff changeset
382 while (!NILP(args_left));
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
383
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
384 UNGCPRO;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
385 return val;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
386 }
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
387
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
388 DEFUN ("prog2", Fprog2, Sprog2, 2, UNEVALLED, 0,
8412
131d3e43ea85 (Fprog2): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 7885
diff changeset
389 "(prog2 X Y BODY...): eval X, Y and BODY sequentially; value from Y.\n\
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
390 The value of Y is saved during the evaluation of the remaining args,\n\
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
391 whose values are discarded.")
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
392 (args)
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
393 Lisp_Object args;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
394 {
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
395 Lisp_Object val;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
396 register Lisp_Object args_left;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
397 struct gcpro gcpro1, gcpro2;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
398 register int argnum = -1;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
399
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
400 val = Qnil;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
401
6803
656d16ca0419 (Fsetq): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 6713
diff changeset
402 if (NILP (args))
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
403 return Qnil;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
404
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
405 args_left = args;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
406 val = Qnil;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
407 GCPRO2 (args, val);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
408
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
409 do
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
410 {
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
411 if (!(argnum++))
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
412 val = Feval (Fcar (args_left));
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
413 else
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
414 Feval (Fcar (args_left));
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
415 args_left = Fcdr (args_left);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
416 }
6803
656d16ca0419 (Fsetq): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 6713
diff changeset
417 while (!NILP (args_left));
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
418
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
419 UNGCPRO;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
420 return val;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
421 }
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
422
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
423 DEFUN ("setq", Fsetq, Ssetq, 0, UNEVALLED, 0,
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
424 "(setq SYM VAL SYM VAL ...): set each SYM to the value of its VAL.\n\
6918
c3af68680a33 (Fsetq): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 6826
diff changeset
425 The symbols SYM are variables; they are literal (not evaluated).\n\
c3af68680a33 (Fsetq): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 6826
diff changeset
426 The values VAL are expressions; they are evaluated.\n\
c3af68680a33 (Fsetq): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 6826
diff changeset
427 Thus, (setq x (1+ y)) sets `x' to the value of `(1+ y)'.\n\
c3af68680a33 (Fsetq): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 6826
diff changeset
428 The second VAL is not computed until after the first SYM is set, and so on;\n\
c3af68680a33 (Fsetq): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 6826
diff changeset
429 each VAL can use the new value of variables set earlier in the `setq'.\n\
6713
6a16a95e7ad9 (Fsetq): Doc fix.
Karl Heuer <kwzh@gnu.org>
parents: 6225
diff changeset
430 The return value of the `setq' form is the value of the last VAL.")
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
431 (args)
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
432 Lisp_Object args;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
433 {
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
434 register Lisp_Object args_left;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
435 register Lisp_Object val, sym;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
436 struct gcpro gcpro1;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
437
485
8c615e453683 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 431
diff changeset
438 if (NILP(args))
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
439 return Qnil;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
440
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
441 args_left = args;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
442 GCPRO1 (args);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
443
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
444 do
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
445 {
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
446 val = Feval (Fcar (Fcdr (args_left)));
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
447 sym = Fcar (args_left);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
448 Fset (sym, val);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
449 args_left = Fcdr (Fcdr (args_left));
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
450 }
485
8c615e453683 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 431
diff changeset
451 while (!NILP(args_left));
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
452
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
453 UNGCPRO;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
454 return val;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
455 }
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
456
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
457 DEFUN ("quote", Fquote, Squote, 1, UNEVALLED, 0,
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
458 "Return the argument, without evaluating it. `(quote x)' yields `x'.")
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
459 (args)
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
460 Lisp_Object args;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
461 {
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
462 return Fcar (args);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
463 }
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
464
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
465 DEFUN ("function", Ffunction, Sfunction, 1, UNEVALLED, 0,
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
466 "Like `quote', but preferred for objects which are functions.\n\
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
467 In byte compilation, `function' causes its argument to be compiled.\n\
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
468 `quote' cannot do that.")
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
469 (args)
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
470 Lisp_Object args;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
471 {
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
472 return Fcar (args);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
473 }
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
474
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
475 DEFUN ("interactive-p", Finteractive_p, Sinteractive_p, 0, 0, 0,
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
476 "Return t if function in which this appears was called interactively.\n\
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
477 This means that the function was called with call-interactively (which\n\
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
478 includes being called as the binding of a key)\n\
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
479 and input is currently coming from the keyboard (not in keyboard macro).")
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
480 ()
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
481 {
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
482 register struct backtrace *btp;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
483 register Lisp_Object fun;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
484
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
485 if (!INTERACTIVE)
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
486 return Qnil;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
487
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
488 btp = backtrace_list;
727
540b047ece4d *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 706
diff changeset
489
540b047ece4d *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 706
diff changeset
490 /* If this isn't a byte-compiled function, there may be a frame at
540b047ece4d *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 706
diff changeset
491 the top for Finteractive_p itself. If so, skip it. */
540b047ece4d *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 706
diff changeset
492 fun = Findirect_function (*btp->function);
9959
c942c7e6ebbd (Finteractive_p): Use XSUBR instead of its expansion.
Karl Heuer <kwzh@gnu.org>
parents: 9306
diff changeset
493 if (SUBRP (fun) && XSUBR (fun) == &Sinteractive_p)
323
9c2a1e7bd9f1 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 295
diff changeset
494 btp = btp->next;
9c2a1e7bd9f1 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 295
diff changeset
495
727
540b047ece4d *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 706
diff changeset
496 /* If we're running an Emacs 18-style byte-compiled function, there
540b047ece4d *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 706
diff changeset
497 may be a frame for Fbytecode. Now, given the strictest
540b047ece4d *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 706
diff changeset
498 definition, this function isn't really being called
540b047ece4d *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 706
diff changeset
499 interactively, but because that's the way Emacs 18 always builds
540b047ece4d *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 706
diff changeset
500 byte-compiled functions, we'll accept it for now. */
540b047ece4d *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 706
diff changeset
501 if (EQ (*btp->function, Qbytecode))
540b047ece4d *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 706
diff changeset
502 btp = btp->next;
540b047ece4d *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 706
diff changeset
503
540b047ece4d *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 706
diff changeset
504 /* If this isn't a byte-compiled function, then we may now be
540b047ece4d *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 706
diff changeset
505 looking at several frames for special forms. Skip past them. */
540b047ece4d *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 706
diff changeset
506 while (btp &&
540b047ece4d *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 706
diff changeset
507 btp->nargs == UNEVALLED)
540b047ece4d *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 706
diff changeset
508 btp = btp->next;
540b047ece4d *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 706
diff changeset
509
540b047ece4d *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 706
diff changeset
510 /* btp now points at the frame of the innermost function that isn't
540b047ece4d *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 706
diff changeset
511 a special form, ignoring frames for Finteractive_p and/or
540b047ece4d *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 706
diff changeset
512 Fbytecode at the top. If this frame is for a built-in function
540b047ece4d *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 706
diff changeset
513 (such as load or eval-region) return nil. */
648
70b112526394 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 604
diff changeset
514 fun = Findirect_function (*btp->function);
9148
e7ab930bb7eb (Fprogn, Finteractive_p, Fuser_variable_p, FletX, Flet, Fmacroexpand,
Karl Heuer <kwzh@gnu.org>
parents: 8980
diff changeset
515 if (SUBRP (fun))
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
516 return Qnil;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
517 /* btp points to the frame of a Lisp function that called interactive-p.
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
518 Return t if that function was called interactively. */
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
519 if (btp && btp->next && EQ (*btp->next->function, Qcall_interactively))
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
520 return Qt;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
521 return Qnil;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
522 }
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
523
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
524 DEFUN ("defun", Fdefun, Sdefun, 2, UNEVALLED, 0,
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
525 "(defun NAME ARGLIST [DOCSTRING] BODY...): define NAME as a function.\n\
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
526 The definition is (lambda ARGLIST [DOCSTRING] BODY...).\n\
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
527 See also the function `interactive'.")
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
528 (args)
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
529 Lisp_Object args;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
530 {
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
531 register Lisp_Object fn_name;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
532 register Lisp_Object defn;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
533
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
534 fn_name = Fcar (args);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
535 defn = Fcons (Qlambda, Fcdr (args));
485
8c615e453683 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 431
diff changeset
536 if (!NILP (Vpurify_flag))
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
537 defn = Fpurecopy (defn);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
538 Ffset (fn_name, defn);
2547
c73c68a87cd5 (defun, defmacro, defvar, defconst):
Richard M. Stallman <rms@gnu.org>
parents: 2439
diff changeset
539 LOADHIST_ATTACH (fn_name);
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
540 return fn_name;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
541 }
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
542
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
543 DEFUN ("defmacro", Fdefmacro, Sdefmacro, 2, UNEVALLED, 0,
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
544 "(defmacro NAME ARGLIST [DOCSTRING] BODY...): define NAME as a macro.\n\
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
545 The definition is (macro lambda ARGLIST [DOCSTRING] BODY...).\n\
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
546 When the macro is called, as in (NAME ARGS...),\n\
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
547 the function (lambda ARGLIST BODY...) is applied to\n\
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
548 the list ARGS... as it appears in the expression,\n\
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
549 and the result should be a form to be evaluated instead of the original.")
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
550 (args)
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
551 Lisp_Object args;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
552 {
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
553 register Lisp_Object fn_name;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
554 register Lisp_Object defn;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
555
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
556 fn_name = Fcar (args);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
557 defn = Fcons (Qmacro, Fcons (Qlambda, Fcdr (args)));
485
8c615e453683 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 431
diff changeset
558 if (!NILP (Vpurify_flag))
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
559 defn = Fpurecopy (defn);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
560 Ffset (fn_name, defn);
2547
c73c68a87cd5 (defun, defmacro, defvar, defconst):
Richard M. Stallman <rms@gnu.org>
parents: 2439
diff changeset
561 LOADHIST_ATTACH (fn_name);
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
562 return fn_name;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
563 }
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
564
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
565 DEFUN ("defvar", Fdefvar, Sdefvar, 1, UNEVALLED, 0,
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
566 "(defvar SYMBOL INITVALUE DOCSTRING): define SYMBOL as a variable.\n\
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
567 You are not required to define a variable in order to use it,\n\
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
568 but the definition can supply documentation and an initial value\n\
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
569 in a way that tags can recognize.\n\n\
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
570 INITVALUE is evaluated, and used to set SYMBOL, only if SYMBOL's value is void.\n\
687
e2b747dd6a6e *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 684
diff changeset
571 If SYMBOL is buffer-local, its default value is what is set;\n\
e2b747dd6a6e *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 684
diff changeset
572 buffer-local values are not affected.\n\
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
573 INITVALUE and DOCSTRING are optional.\n\
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
574 If DOCSTRING starts with *, this variable is identified as a user option.\n\
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
575 This means that M-x set-variable and M-x edit-options recognize it.\n\
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
576 If INITVALUE is missing, SYMBOL's value is not set.")
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
577 (args)
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
578 Lisp_Object args;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
579 {
10161
512a84fb3c75 (Fdefconst, Fdefvar): Error if too many arguments.
Richard M. Stallman <rms@gnu.org>
parents: 9959
diff changeset
580 register Lisp_Object sym, tem, tail;
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
581
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
582 sym = Fcar (args);
10161
512a84fb3c75 (Fdefconst, Fdefvar): Error if too many arguments.
Richard M. Stallman <rms@gnu.org>
parents: 9959
diff changeset
583 tail = Fcdr (args);
512a84fb3c75 (Fdefconst, Fdefvar): Error if too many arguments.
Richard M. Stallman <rms@gnu.org>
parents: 9959
diff changeset
584 if (!NILP (Fcdr (Fcdr (tail))))
512a84fb3c75 (Fdefconst, Fdefvar): Error if too many arguments.
Richard M. Stallman <rms@gnu.org>
parents: 9959
diff changeset
585 error ("too many arguments");
512a84fb3c75 (Fdefconst, Fdefvar): Error if too many arguments.
Richard M. Stallman <rms@gnu.org>
parents: 9959
diff changeset
586
512a84fb3c75 (Fdefconst, Fdefvar): Error if too many arguments.
Richard M. Stallman <rms@gnu.org>
parents: 9959
diff changeset
587 if (!NILP (tail))
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
588 {
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
589 tem = Fdefault_boundp (sym);
485
8c615e453683 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 431
diff changeset
590 if (NILP (tem))
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
591 Fset_default (sym, Feval (Fcar (Fcdr (args))));
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
592 }
10161
512a84fb3c75 (Fdefconst, Fdefvar): Error if too many arguments.
Richard M. Stallman <rms@gnu.org>
parents: 9959
diff changeset
593 tail = Fcdr (Fcdr (args));
512a84fb3c75 (Fdefconst, Fdefvar): Error if too many arguments.
Richard M. Stallman <rms@gnu.org>
parents: 9959
diff changeset
594 if (!NILP (Fcar (tail)))
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
595 {
10201
03f3a1f4264a (Fdefvar): Fix minor error in previous change.
Richard M. Stallman <rms@gnu.org>
parents: 10161
diff changeset
596 tem = Fcar (tail);
485
8c615e453683 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 431
diff changeset
597 if (!NILP (Vpurify_flag))
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
598 tem = Fpurecopy (tem);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
599 Fput (sym, Qvariable_documentation, tem);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
600 }
2547
c73c68a87cd5 (defun, defmacro, defvar, defconst):
Richard M. Stallman <rms@gnu.org>
parents: 2439
diff changeset
601 LOADHIST_ATTACH (sym);
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
602 return sym;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
603 }
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
604
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
605 DEFUN ("defconst", Fdefconst, Sdefconst, 2, UNEVALLED, 0,
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
606 "(defconst SYMBOL INITVALUE DOCSTRING): define SYMBOL as a constant variable.\n\
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
607 The intent is that programs do not change this value, but users may.\n\
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
608 Always sets the value of SYMBOL to the result of evalling INITVALUE.\n\
687
e2b747dd6a6e *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 684
diff changeset
609 If SYMBOL is buffer-local, its default value is what is set;\n\
e2b747dd6a6e *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 684
diff changeset
610 buffer-local values are not affected.\n\
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
611 DOCSTRING is optional.\n\
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
612 If DOCSTRING starts with *, this variable is identified as a user option.\n\
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
613 This means that M-x set-variable and M-x edit-options recognize it.\n\n\
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
614 Note: do not use `defconst' for user options in libraries that are not\n\
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
615 normally loaded, since it is useful for users to be able to specify\n\
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
616 their own values for such variables before loading the library.\n\
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
617 Since `defconst' unconditionally assigns the variable,\n\
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
618 it would override the user's choice.")
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
619 (args)
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
620 Lisp_Object args;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
621 {
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
622 register Lisp_Object sym, tem;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
623
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
624 sym = Fcar (args);
10161
512a84fb3c75 (Fdefconst, Fdefvar): Error if too many arguments.
Richard M. Stallman <rms@gnu.org>
parents: 9959
diff changeset
625 if (!NILP (Fcdr (Fcdr (Fcdr (args)))))
512a84fb3c75 (Fdefconst, Fdefvar): Error if too many arguments.
Richard M. Stallman <rms@gnu.org>
parents: 9959
diff changeset
626 error ("too many arguments");
512a84fb3c75 (Fdefconst, Fdefvar): Error if too many arguments.
Richard M. Stallman <rms@gnu.org>
parents: 9959
diff changeset
627
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
628 Fset_default (sym, Feval (Fcar (Fcdr (args))));
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
629 tem = Fcar (Fcdr (Fcdr (args)));
485
8c615e453683 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 431
diff changeset
630 if (!NILP (tem))
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
631 {
485
8c615e453683 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 431
diff changeset
632 if (!NILP (Vpurify_flag))
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
633 tem = Fpurecopy (tem);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
634 Fput (sym, Qvariable_documentation, tem);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
635 }
2547
c73c68a87cd5 (defun, defmacro, defvar, defconst):
Richard M. Stallman <rms@gnu.org>
parents: 2439
diff changeset
636 LOADHIST_ATTACH (sym);
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
637 return sym;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
638 }
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
639
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
640 DEFUN ("user-variable-p", Fuser_variable_p, Suser_variable_p, 1, 1, 0,
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
641 "Returns t if VARIABLE is intended to be set and modified by users.\n\
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
642 \(The alternative is a variable used internally in a Lisp program.)\n\
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
643 Determined by whether the first character of the documentation\n\
11251
f6bc91242185 (Fuser_variable_p): For (STRING . INTEGER), test sign.
Richard M. Stallman <rms@gnu.org>
parents: 11205
diff changeset
644 for the variable is `*'.")
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
645 (variable)
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
646 Lisp_Object variable;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
647 {
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
648 Lisp_Object documentation;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
649
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
650 documentation = Fget (variable, Qvariable_documentation);
9148
e7ab930bb7eb (Fprogn, Finteractive_p, Fuser_variable_p, FletX, Flet, Fmacroexpand,
Karl Heuer <kwzh@gnu.org>
parents: 8980
diff changeset
651 if (INTEGERP (documentation) && XINT (documentation) < 0)
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
652 return Qt;
11251
f6bc91242185 (Fuser_variable_p): For (STRING . INTEGER), test sign.
Richard M. Stallman <rms@gnu.org>
parents: 11205
diff changeset
653 if (STRINGP (documentation)
f6bc91242185 (Fuser_variable_p): For (STRING . INTEGER), test sign.
Richard M. Stallman <rms@gnu.org>
parents: 11205
diff changeset
654 && ((unsigned char) XSTRING (documentation)->data[0] == '*'))
f6bc91242185 (Fuser_variable_p): For (STRING . INTEGER), test sign.
Richard M. Stallman <rms@gnu.org>
parents: 11205
diff changeset
655 return Qt;
f6bc91242185 (Fuser_variable_p): For (STRING . INTEGER), test sign.
Richard M. Stallman <rms@gnu.org>
parents: 11205
diff changeset
656 /* If it is (STRING . INTEGER), a negative integer means a user variable. */
f6bc91242185 (Fuser_variable_p): For (STRING . INTEGER), test sign.
Richard M. Stallman <rms@gnu.org>
parents: 11205
diff changeset
657 if (CONSP (documentation)
f6bc91242185 (Fuser_variable_p): For (STRING . INTEGER), test sign.
Richard M. Stallman <rms@gnu.org>
parents: 11205
diff changeset
658 && STRINGP (XCONS (documentation)->car)
f6bc91242185 (Fuser_variable_p): For (STRING . INTEGER), test sign.
Richard M. Stallman <rms@gnu.org>
parents: 11205
diff changeset
659 && INTEGERP (XCONS (documentation)->cdr)
f6bc91242185 (Fuser_variable_p): For (STRING . INTEGER), test sign.
Richard M. Stallman <rms@gnu.org>
parents: 11205
diff changeset
660 && XINT (XCONS (documentation)->cdr) < 0)
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
661 return Qt;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
662 return Qnil;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
663 }
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
664
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
665 DEFUN ("let*", FletX, SletX, 1, UNEVALLED, 0,
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
666 "(let* VARLIST BODY...): bind variables according to VARLIST then eval BODY.\n\
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
667 The value of the last form in BODY is returned.\n\
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
668 Each element of VARLIST is a symbol (which is bound to nil)\n\
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
669 or a list (SYMBOL VALUEFORM) (which binds SYMBOL to the value of VALUEFORM).\n\
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
670 Each VALUEFORM can refer to the symbols already bound by this VARLIST.")
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
671 (args)
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
672 Lisp_Object args;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
673 {
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
674 Lisp_Object varlist, val, elt;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
675 int count = specpdl_ptr - specpdl;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
676 struct gcpro gcpro1, gcpro2, gcpro3;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
677
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
678 GCPRO3 (args, elt, varlist);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
679
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
680 varlist = Fcar (args);
485
8c615e453683 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 431
diff changeset
681 while (!NILP (varlist))
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
682 {
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
683 QUIT;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
684 elt = Fcar (varlist);
9148
e7ab930bb7eb (Fprogn, Finteractive_p, Fuser_variable_p, FletX, Flet, Fmacroexpand,
Karl Heuer <kwzh@gnu.org>
parents: 8980
diff changeset
685 if (SYMBOLP (elt))
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
686 specbind (elt, Qnil);
604
63a8e7b3c547 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 573
diff changeset
687 else if (! NILP (Fcdr (Fcdr (elt))))
63a8e7b3c547 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 573
diff changeset
688 Fsignal (Qerror,
63a8e7b3c547 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 573
diff changeset
689 Fcons (build_string ("`let' bindings can have only one value-form"),
63a8e7b3c547 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 573
diff changeset
690 elt));
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
691 else
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
692 {
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
693 val = Feval (Fcar (Fcdr (elt)));
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
694 specbind (Fcar (elt), val);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
695 }
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
696 varlist = Fcdr (varlist);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
697 }
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
698 UNGCPRO;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
699 val = Fprogn (Fcdr (args));
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
700 return unbind_to (count, val);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
701 }
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
702
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
703 DEFUN ("let", Flet, Slet, 1, UNEVALLED, 0,
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
704 "(let VARLIST BODY...): bind variables according to VARLIST then eval BODY.\n\
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
705 The value of the last form in BODY is returned.\n\
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
706 Each element of VARLIST is a symbol (which is bound to nil)\n\
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
707 or a list (SYMBOL VALUEFORM) (which binds SYMBOL to the value of VALUEFORM).\n\
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
708 All the VALUEFORMs are evalled before any symbols are bound.")
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
709 (args)
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
710 Lisp_Object args;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
711 {
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
712 Lisp_Object *temps, tem;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
713 register Lisp_Object elt, varlist;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
714 int count = specpdl_ptr - specpdl;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
715 register int argnum;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
716 struct gcpro gcpro1, gcpro2;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
717
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
718 varlist = Fcar (args);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
719
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
720 /* Make space to hold the values to give the bound variables */
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
721 elt = Flength (varlist);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
722 temps = (Lisp_Object *) alloca (XFASTINT (elt) * sizeof (Lisp_Object));
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
723
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
724 /* Compute the values and store them in `temps' */
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
725
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
726 GCPRO2 (args, *temps);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
727 gcpro2.nvars = 0;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
728
485
8c615e453683 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 431
diff changeset
729 for (argnum = 0; !NILP (varlist); varlist = Fcdr (varlist))
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
730 {
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
731 QUIT;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
732 elt = Fcar (varlist);
9148
e7ab930bb7eb (Fprogn, Finteractive_p, Fuser_variable_p, FletX, Flet, Fmacroexpand,
Karl Heuer <kwzh@gnu.org>
parents: 8980
diff changeset
733 if (SYMBOLP (elt))
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
734 temps [argnum++] = Qnil;
604
63a8e7b3c547 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 573
diff changeset
735 else if (! NILP (Fcdr (Fcdr (elt))))
63a8e7b3c547 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 573
diff changeset
736 Fsignal (Qerror,
63a8e7b3c547 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 573
diff changeset
737 Fcons (build_string ("`let' bindings can have only one value-form"),
63a8e7b3c547 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 573
diff changeset
738 elt));
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
739 else
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
740 temps [argnum++] = Feval (Fcar (Fcdr (elt)));
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
741 gcpro2.nvars = argnum;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
742 }
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
743 UNGCPRO;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
744
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
745 varlist = Fcar (args);
485
8c615e453683 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 431
diff changeset
746 for (argnum = 0; !NILP (varlist); varlist = Fcdr (varlist))
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
747 {
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
748 elt = Fcar (varlist);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
749 tem = temps[argnum++];
9148
e7ab930bb7eb (Fprogn, Finteractive_p, Fuser_variable_p, FletX, Flet, Fmacroexpand,
Karl Heuer <kwzh@gnu.org>
parents: 8980
diff changeset
750 if (SYMBOLP (elt))
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
751 specbind (elt, tem);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
752 else
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
753 specbind (Fcar (elt), tem);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
754 }
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
755
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
756 elt = Fprogn (Fcdr (args));
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
757 return unbind_to (count, elt);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
758 }
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
759
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
760 DEFUN ("while", Fwhile, Swhile, 1, UNEVALLED, 0,
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
761 "(while TEST BODY...): if TEST yields non-nil, eval BODY... and repeat.\n\
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
762 The order of execution is thus TEST, BODY, TEST, BODY and so on\n\
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
763 until TEST returns nil.")
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
764 (args)
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
765 Lisp_Object args;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
766 {
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
767 Lisp_Object test, body, tem;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
768 struct gcpro gcpro1, gcpro2;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
769
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
770 GCPRO2 (test, body);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
771
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
772 test = Fcar (args);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
773 body = Fcdr (args);
4167
f037b1f51320 (Fwhile): If mocklisp, test for nonzeroness.
Richard M. Stallman <rms@gnu.org>
parents: 3973
diff changeset
774 while (tem = Feval (test),
f037b1f51320 (Fwhile): If mocklisp, test for nonzeroness.
Richard M. Stallman <rms@gnu.org>
parents: 3973
diff changeset
775 (!EQ (Vmocklisp_arguments, Qt) ? XINT (tem) : !NILP (tem)))
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
776 {
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
777 QUIT;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
778 Fprogn (body);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
779 }
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
780
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
781 UNGCPRO;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
782 return Qnil;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
783 }
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
784
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
785 DEFUN ("macroexpand", Fmacroexpand, Smacroexpand, 1, 2, 0,
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
786 "Return result of expanding macros at top level of FORM.\n\
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
787 If FORM is not a macro call, it is returned unchanged.\n\
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
788 Otherwise, the macro is expanded and the expansion is considered\n\
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
789 in place of FORM. When a non-macro-call results, it is returned.\n\n\
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
790 The second optional arg ENVIRONMENT species an environment of macro\n\
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
791 definitions to shadow the loaded ones for use in file byte-compilation.")
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
792 (form, env)
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
793 register Lisp_Object form;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
794 Lisp_Object env;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
795 {
753
8a4c2c149ec2 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 732
diff changeset
796 /* With cleanups from Hallvard Furuseth. */
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
797 register Lisp_Object expander, sym, def, tem;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
798
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
799 while (1)
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
800 {
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
801 /* Come back here each time we expand a macro call,
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
802 in case it expands into another macro call. */
9148
e7ab930bb7eb (Fprogn, Finteractive_p, Fuser_variable_p, FletX, Flet, Fmacroexpand,
Karl Heuer <kwzh@gnu.org>
parents: 8980
diff changeset
803 if (!CONSP (form))
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
804 break;
753
8a4c2c149ec2 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 732
diff changeset
805 /* Set SYM, give DEF and TEM right values in case SYM is not a symbol. */
8a4c2c149ec2 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 732
diff changeset
806 def = sym = XCONS (form)->car;
8a4c2c149ec2 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 732
diff changeset
807 tem = Qnil;
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
808 /* Trace symbols aliases to other symbols
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
809 until we get a symbol that is not an alias. */
9148
e7ab930bb7eb (Fprogn, Finteractive_p, Fuser_variable_p, FletX, Flet, Fmacroexpand,
Karl Heuer <kwzh@gnu.org>
parents: 8980
diff changeset
810 while (SYMBOLP (def))
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
811 {
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
812 QUIT;
753
8a4c2c149ec2 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 732
diff changeset
813 sym = def;
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
814 tem = Fassq (sym, env);
485
8c615e453683 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 431
diff changeset
815 if (NILP (tem))
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
816 {
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
817 def = XSYMBOL (sym)->function;
753
8a4c2c149ec2 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 732
diff changeset
818 if (!EQ (def, Qunbound))
8a4c2c149ec2 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 732
diff changeset
819 continue;
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
820 }
753
8a4c2c149ec2 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 732
diff changeset
821 break;
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
822 }
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
823 /* Right now TEM is the result from SYM in ENV,
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
824 and if TEM is nil then DEF is SYM's function definition. */
485
8c615e453683 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 431
diff changeset
825 if (NILP (tem))
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
826 {
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
827 /* SYM is not mentioned in ENV.
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
828 Look at its function definition. */
9148
e7ab930bb7eb (Fprogn, Finteractive_p, Fuser_variable_p, FletX, Flet, Fmacroexpand,
Karl Heuer <kwzh@gnu.org>
parents: 8980
diff changeset
829 if (EQ (def, Qunbound) || !CONSP (def))
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
830 /* Not defined or definition not suitable */
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
831 break;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
832 if (EQ (XCONS (def)->car, Qautoload))
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
833 {
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
834 /* Autoloading function: will it be a macro when loaded? */
1564
b327816041d1 * eval.c (Fautoload): Renamed fifth argument TYPE. Document the
Jim Blandy <jimb@redhat.com>
parents: 1452
diff changeset
835 tem = Fnth (make_number (4), def);
5254
b38b74fe1722 (Fmacroexpand): For an autoload definition,
Richard M. Stallman <rms@gnu.org>
parents: 4782
diff changeset
836 if (EQ (tem, Qt) || EQ (tem, Qmacro))
1564
b327816041d1 * eval.c (Fautoload): Renamed fifth argument TYPE. Document the
Jim Blandy <jimb@redhat.com>
parents: 1452
diff changeset
837 /* Yes, load it and try again. */
b327816041d1 * eval.c (Fautoload): Renamed fifth argument TYPE. Document the
Jim Blandy <jimb@redhat.com>
parents: 1452
diff changeset
838 {
b327816041d1 * eval.c (Fautoload): Renamed fifth argument TYPE. Document the
Jim Blandy <jimb@redhat.com>
parents: 1452
diff changeset
839 do_autoload (def, sym);
b327816041d1 * eval.c (Fautoload): Renamed fifth argument TYPE. Document the
Jim Blandy <jimb@redhat.com>
parents: 1452
diff changeset
840 continue;
b327816041d1 * eval.c (Fautoload): Renamed fifth argument TYPE. Document the
Jim Blandy <jimb@redhat.com>
parents: 1452
diff changeset
841 }
b327816041d1 * eval.c (Fautoload): Renamed fifth argument TYPE. Document the
Jim Blandy <jimb@redhat.com>
parents: 1452
diff changeset
842 else
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
843 break;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
844 }
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
845 else if (!EQ (XCONS (def)->car, Qmacro))
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
846 break;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
847 else expander = XCONS (def)->cdr;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
848 }
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
849 else
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
850 {
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
851 expander = XCONS (tem)->cdr;
485
8c615e453683 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 431
diff changeset
852 if (NILP (expander))
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
853 break;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
854 }
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
855 form = apply1 (expander, XCONS (form)->cdr);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
856 }
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
857 return form;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
858 }
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
859
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
860 DEFUN ("catch", Fcatch, Scatch, 1, UNEVALLED, 0,
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
861 "(catch TAG BODY...): eval BODY allowing nonlocal exits using `throw'.\n\
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
862 TAG is evalled to get the tag to use. Then the BODY is executed.\n\
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
863 Within BODY, (throw TAG) with same tag exits BODY and exits this `catch'.\n\
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
864 If no throw happens, `catch' returns the value of the last BODY form.\n\
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
865 If a throw happens, it specifies the value to return from `catch'.")
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
866 (args)
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
867 Lisp_Object args;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
868 {
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
869 register Lisp_Object tag;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
870 struct gcpro gcpro1;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
871
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
872 GCPRO1 (args);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
873 tag = Feval (Fcar (args));
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
874 UNGCPRO;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
875 return internal_catch (tag, Fprogn, Fcdr (args));
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
876 }
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
877
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
878 /* Set up a catch, then call C function FUNC on argument ARG.
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
879 FUNC should return a Lisp_Object.
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
880 This is how catches are done from within C code. */
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
881
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
882 Lisp_Object
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
883 internal_catch (tag, func, arg)
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
884 Lisp_Object tag;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
885 Lisp_Object (*func) ();
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
886 Lisp_Object arg;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
887 {
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
888 /* This structure is made part of the chain `catchlist'. */
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
889 struct catchtag c;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
890
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
891 /* Fill in the components of c, and put it on the list. */
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
892 c.next = catchlist;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
893 c.tag = tag;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
894 c.val = Qnil;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
895 c.backlist = backtrace_list;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
896 c.handlerlist = handlerlist;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
897 c.lisp_eval_depth = lisp_eval_depth;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
898 c.pdlcount = specpdl_ptr - specpdl;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
899 c.poll_suppress_count = poll_suppress_count;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
900 c.gcpro = gcprolist;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
901 catchlist = &c;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
902
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
903 /* Call FUNC. */
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
904 if (! _setjmp (c.jmp))
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
905 c.val = (*func) (arg);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
906
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
907 /* Throw works by a longjmp that comes right here. */
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
908 catchlist = c.next;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
909 return c.val;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
910 }
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
911
1199
ab2d88e2505b * eval.c (unbind_catch): Do the long-jump here. Take a VALUE
Jim Blandy <jimb@redhat.com>
parents: 1196
diff changeset
912 /* Unwind the specbind, catch, and handler stacks back to CATCH, and
ab2d88e2505b * eval.c (unbind_catch): Do the long-jump here. Take a VALUE
Jim Blandy <jimb@redhat.com>
parents: 1196
diff changeset
913 jump to that CATCH, returning VALUE as the value of that catch.
ab2d88e2505b * eval.c (unbind_catch): Do the long-jump here. Take a VALUE
Jim Blandy <jimb@redhat.com>
parents: 1196
diff changeset
914
ab2d88e2505b * eval.c (unbind_catch): Do the long-jump here. Take a VALUE
Jim Blandy <jimb@redhat.com>
parents: 1196
diff changeset
915 This is the guts Fthrow and Fsignal; they differ only in the way
ab2d88e2505b * eval.c (unbind_catch): Do the long-jump here. Take a VALUE
Jim Blandy <jimb@redhat.com>
parents: 1196
diff changeset
916 they choose the catch tag to throw to. A catch tag for a
ab2d88e2505b * eval.c (unbind_catch): Do the long-jump here. Take a VALUE
Jim Blandy <jimb@redhat.com>
parents: 1196
diff changeset
917 condition-case form has a TAG of Qnil.
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
918
1199
ab2d88e2505b * eval.c (unbind_catch): Do the long-jump here. Take a VALUE
Jim Blandy <jimb@redhat.com>
parents: 1196
diff changeset
919 Before each catch is discarded, unbind all special bindings and
ab2d88e2505b * eval.c (unbind_catch): Do the long-jump here. Take a VALUE
Jim Blandy <jimb@redhat.com>
parents: 1196
diff changeset
920 execute all unwind-protect clauses made above that catch. Unwind
ab2d88e2505b * eval.c (unbind_catch): Do the long-jump here. Take a VALUE
Jim Blandy <jimb@redhat.com>
parents: 1196
diff changeset
921 the handler stack as we go, so that the proper handlers are in
ab2d88e2505b * eval.c (unbind_catch): Do the long-jump here. Take a VALUE
Jim Blandy <jimb@redhat.com>
parents: 1196
diff changeset
922 effect for each unwind-protect clause we run. At the end, restore
ab2d88e2505b * eval.c (unbind_catch): Do the long-jump here. Take a VALUE
Jim Blandy <jimb@redhat.com>
parents: 1196
diff changeset
923 some static info saved in CATCH, and longjmp to the location
ab2d88e2505b * eval.c (unbind_catch): Do the long-jump here. Take a VALUE
Jim Blandy <jimb@redhat.com>
parents: 1196
diff changeset
924 specified in the
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
925
1199
ab2d88e2505b * eval.c (unbind_catch): Do the long-jump here. Take a VALUE
Jim Blandy <jimb@redhat.com>
parents: 1196
diff changeset
926 This is used for correct unwinding in Fthrow and Fsignal. */
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
927
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
928 static void
1199
ab2d88e2505b * eval.c (unbind_catch): Do the long-jump here. Take a VALUE
Jim Blandy <jimb@redhat.com>
parents: 1196
diff changeset
929 unwind_to_catch (catch, value)
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
930 struct catchtag *catch;
1199
ab2d88e2505b * eval.c (unbind_catch): Do the long-jump here. Take a VALUE
Jim Blandy <jimb@redhat.com>
parents: 1196
diff changeset
931 Lisp_Object value;
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
932 {
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
933 register int last_time;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
934
1199
ab2d88e2505b * eval.c (unbind_catch): Do the long-jump here. Take a VALUE
Jim Blandy <jimb@redhat.com>
parents: 1196
diff changeset
935 /* Save the value in the tag. */
ab2d88e2505b * eval.c (unbind_catch): Do the long-jump here. Take a VALUE
Jim Blandy <jimb@redhat.com>
parents: 1196
diff changeset
936 catch->val = value;
ab2d88e2505b * eval.c (unbind_catch): Do the long-jump here. Take a VALUE
Jim Blandy <jimb@redhat.com>
parents: 1196
diff changeset
937
1196
65e2edefe748 * eval.c (Fcondition_case): Rearranged for clarity. Don't worry
Jim Blandy <jimb@redhat.com>
parents: 940
diff changeset
938 /* Restore the polling-suppression count. */
4474
23d5b09bd218 (unwind_to_catch): Call set_poll_suppress_count.
Richard M. Stallman <rms@gnu.org>
parents: 4462
diff changeset
939 set_poll_suppress_count (catch->poll_suppress_count);
1196
65e2edefe748 * eval.c (Fcondition_case): Rearranged for clarity. Don't worry
Jim Blandy <jimb@redhat.com>
parents: 940
diff changeset
940
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
941 do
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
942 {
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
943 last_time = catchlist == catch;
1196
65e2edefe748 * eval.c (Fcondition_case): Rearranged for clarity. Don't worry
Jim Blandy <jimb@redhat.com>
parents: 940
diff changeset
944
65e2edefe748 * eval.c (Fcondition_case): Rearranged for clarity. Don't worry
Jim Blandy <jimb@redhat.com>
parents: 940
diff changeset
945 /* Unwind the specpdl stack, and then restore the proper set of
65e2edefe748 * eval.c (Fcondition_case): Rearranged for clarity. Don't worry
Jim Blandy <jimb@redhat.com>
parents: 940
diff changeset
946 handlers. */
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
947 unbind_to (catchlist->pdlcount, Qnil);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
948 handlerlist = catchlist->handlerlist;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
949 catchlist = catchlist->next;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
950 }
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
951 while (! last_time);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
952
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
953 gcprolist = catch->gcpro;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
954 backtrace_list = catch->backlist;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
955 lisp_eval_depth = catch->lisp_eval_depth;
1199
ab2d88e2505b * eval.c (unbind_catch): Do the long-jump here. Take a VALUE
Jim Blandy <jimb@redhat.com>
parents: 1196
diff changeset
956
ab2d88e2505b * eval.c (unbind_catch): Do the long-jump here. Take a VALUE
Jim Blandy <jimb@redhat.com>
parents: 1196
diff changeset
957 _longjmp (catch->jmp, 1);
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
958 }
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
959
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
960 DEFUN ("throw", Fthrow, Sthrow, 2, 2, 0,
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
961 "(throw TAG VALUE): throw to the catch for TAG and return VALUE from it.\n\
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
962 Both TAG and VALUE are evalled.")
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
963 (tag, val)
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
964 register Lisp_Object tag, val;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
965 {
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
966 register struct catchtag *c;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
967
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
968 while (1)
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
969 {
485
8c615e453683 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 431
diff changeset
970 if (!NILP (tag))
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
971 for (c = catchlist; c; c = c->next)
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
972 {
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
973 if (EQ (c->tag, tag))
1199
ab2d88e2505b * eval.c (unbind_catch): Do the long-jump here. Take a VALUE
Jim Blandy <jimb@redhat.com>
parents: 1196
diff changeset
974 unwind_to_catch (c, val);
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
975 }
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
976 tag = Fsignal (Qno_catch, Fcons (tag, Fcons (val, Qnil)));
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
977 }
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
978 }
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
979
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
980
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
981 DEFUN ("unwind-protect", Funwind_protect, Sunwind_protect, 1, UNEVALLED, 0,
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
982 "Do BODYFORM, protecting with UNWINDFORMS.\n\
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
983 Usage looks like (unwind-protect BODYFORM UNWINDFORMS...).\n\
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
984 If BODYFORM completes normally, its value is returned\n\
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
985 after executing the UNWINDFORMS.\n\
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
986 If BODYFORM exits nonlocally, the UNWINDFORMS are executed anyway.")
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
987 (args)
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
988 Lisp_Object args;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
989 {
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
990 Lisp_Object val;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
991 int count = specpdl_ptr - specpdl;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
992
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
993 record_unwind_protect (0, Fcdr (args));
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
994 val = Feval (Fcar (args));
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
995 return unbind_to (count, val);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
996 }
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
997
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
998 /* Chain of condition handlers currently in effect.
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
999 The elements of this chain are contained in the stack frames
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1000 of Fcondition_case and internal_condition_case.
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1001 When an error is signaled (by calling Fsignal, below),
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1002 this chain is searched for an element that applies. */
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1003
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1004 struct handler *handlerlist;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1005
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1006 DEFUN ("condition-case", Fcondition_case, Scondition_case, 2, UNEVALLED, 0,
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1007 "Regain control when an error is signaled.\n\
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1008 Usage looks like (condition-case VAR BODYFORM HANDLERS...).\n\
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1009 executes BODYFORM and returns its value if no error happens.\n\
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1010 Each element of HANDLERS looks like (CONDITION-NAME BODY...)\n\
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1011 where the BODY is made of Lisp expressions.\n\n\
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1012 A handler is applicable to an error\n\
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1013 if CONDITION-NAME is one of the error's condition names.\n\
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1014 If an error happens, the first applicable handler is run.\n\
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1015 \n\
5567
c61f49e4283a (Fcondition_case): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 5566
diff changeset
1016 The car of a handler may be a list of condition names\n\
c61f49e4283a (Fcondition_case): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 5566
diff changeset
1017 instead of a single condition name.\n\
c61f49e4283a (Fcondition_case): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 5566
diff changeset
1018 \n\
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1019 When a handler handles an error,\n\
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1020 control returns to the condition-case and the handler BODY... is executed\n\
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1021 with VAR bound to (SIGNALED-CONDITIONS . SIGNAL-DATA).\n\
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1022 VAR may be nil; then you do not get access to the signal information.\n\
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1023 \n\
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1024 The value of the last BODY form is returned from the condition-case.\n\
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1025 See also the function `signal' for more info.")
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1026 (args)
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1027 Lisp_Object args;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1028 {
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1029 Lisp_Object val;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1030 struct catchtag c;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1031 struct handler h;
1196
65e2edefe748 * eval.c (Fcondition_case): Rearranged for clarity. Don't worry
Jim Blandy <jimb@redhat.com>
parents: 940
diff changeset
1032 register Lisp_Object var, bodyform, handlers;
65e2edefe748 * eval.c (Fcondition_case): Rearranged for clarity. Don't worry
Jim Blandy <jimb@redhat.com>
parents: 940
diff changeset
1033
65e2edefe748 * eval.c (Fcondition_case): Rearranged for clarity. Don't worry
Jim Blandy <jimb@redhat.com>
parents: 940
diff changeset
1034 var = Fcar (args);
65e2edefe748 * eval.c (Fcondition_case): Rearranged for clarity. Don't worry
Jim Blandy <jimb@redhat.com>
parents: 940
diff changeset
1035 bodyform = Fcar (Fcdr (args));
65e2edefe748 * eval.c (Fcondition_case): Rearranged for clarity. Don't worry
Jim Blandy <jimb@redhat.com>
parents: 940
diff changeset
1036 handlers = Fcdr (Fcdr (args));
65e2edefe748 * eval.c (Fcondition_case): Rearranged for clarity. Don't worry
Jim Blandy <jimb@redhat.com>
parents: 940
diff changeset
1037 CHECK_SYMBOL (var, 0);
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1038
1196
65e2edefe748 * eval.c (Fcondition_case): Rearranged for clarity. Don't worry
Jim Blandy <jimb@redhat.com>
parents: 940
diff changeset
1039 for (val = handlers; ! NILP (val); val = Fcdr (val))
65e2edefe748 * eval.c (Fcondition_case): Rearranged for clarity. Don't worry
Jim Blandy <jimb@redhat.com>
parents: 940
diff changeset
1040 {
65e2edefe748 * eval.c (Fcondition_case): Rearranged for clarity. Don't worry
Jim Blandy <jimb@redhat.com>
parents: 940
diff changeset
1041 Lisp_Object tem;
65e2edefe748 * eval.c (Fcondition_case): Rearranged for clarity. Don't worry
Jim Blandy <jimb@redhat.com>
parents: 940
diff changeset
1042 tem = Fcar (val);
5563
50ada322de3e (Fcondition_case): Allow a list of condition names in a handler.
Richard M. Stallman <rms@gnu.org>
parents: 5254
diff changeset
1043 if (! (NILP (tem)
50ada322de3e (Fcondition_case): Allow a list of condition names in a handler.
Richard M. Stallman <rms@gnu.org>
parents: 5254
diff changeset
1044 || (CONSP (tem)
50ada322de3e (Fcondition_case): Allow a list of condition names in a handler.
Richard M. Stallman <rms@gnu.org>
parents: 5254
diff changeset
1045 && (SYMBOLP (XCONS (tem)->car)
50ada322de3e (Fcondition_case): Allow a list of condition names in a handler.
Richard M. Stallman <rms@gnu.org>
parents: 5254
diff changeset
1046 || CONSP (XCONS (tem)->car)))))
1196
65e2edefe748 * eval.c (Fcondition_case): Rearranged for clarity. Don't worry
Jim Blandy <jimb@redhat.com>
parents: 940
diff changeset
1047 error ("Invalid condition handler", tem);
65e2edefe748 * eval.c (Fcondition_case): Rearranged for clarity. Don't worry
Jim Blandy <jimb@redhat.com>
parents: 940
diff changeset
1048 }
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1049
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1050 c.tag = Qnil;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1051 c.val = Qnil;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1052 c.backlist = backtrace_list;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1053 c.handlerlist = handlerlist;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1054 c.lisp_eval_depth = lisp_eval_depth;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1055 c.pdlcount = specpdl_ptr - specpdl;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1056 c.poll_suppress_count = poll_suppress_count;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1057 c.gcpro = gcprolist;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1058 if (_setjmp (c.jmp))
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1059 {
485
8c615e453683 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 431
diff changeset
1060 if (!NILP (h.var))
6132
ddf57829cf03 (Fsignal): If DATA is memory_signal_data, don't add to it.
Richard M. Stallman <rms@gnu.org>
parents: 5807
diff changeset
1061 specbind (h.var, c.val);
ddf57829cf03 (Fsignal): If DATA is memory_signal_data, don't add to it.
Richard M. Stallman <rms@gnu.org>
parents: 5807
diff changeset
1062 val = Fprogn (Fcdr (h.chosen_clause));
1196
65e2edefe748 * eval.c (Fcondition_case): Rearranged for clarity. Don't worry
Jim Blandy <jimb@redhat.com>
parents: 940
diff changeset
1063
65e2edefe748 * eval.c (Fcondition_case): Rearranged for clarity. Don't worry
Jim Blandy <jimb@redhat.com>
parents: 940
diff changeset
1064 /* Note that this just undoes the binding of h.var; whoever
65e2edefe748 * eval.c (Fcondition_case): Rearranged for clarity. Don't worry
Jim Blandy <jimb@redhat.com>
parents: 940
diff changeset
1065 longjumped to us unwound the stack to c.pdlcount before
65e2edefe748 * eval.c (Fcondition_case): Rearranged for clarity. Don't worry
Jim Blandy <jimb@redhat.com>
parents: 940
diff changeset
1066 throwing. */
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1067 unbind_to (c.pdlcount, Qnil);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1068 return val;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1069 }
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1070 c.next = catchlist;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1071 catchlist = &c;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1072
1196
65e2edefe748 * eval.c (Fcondition_case): Rearranged for clarity. Don't worry
Jim Blandy <jimb@redhat.com>
parents: 940
diff changeset
1073 h.var = var;
65e2edefe748 * eval.c (Fcondition_case): Rearranged for clarity. Don't worry
Jim Blandy <jimb@redhat.com>
parents: 940
diff changeset
1074 h.handler = handlers;
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1075 h.next = handlerlist;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1076 h.tag = &c;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1077 handlerlist = &h;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1078
1196
65e2edefe748 * eval.c (Fcondition_case): Rearranged for clarity. Don't worry
Jim Blandy <jimb@redhat.com>
parents: 940
diff changeset
1079 val = Feval (bodyform);
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1080 catchlist = c.next;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1081 handlerlist = h.next;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1082 return val;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1083 }
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1084
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1085 Lisp_Object
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1086 internal_condition_case (bfun, handlers, hfun)
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1087 Lisp_Object (*bfun) ();
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1088 Lisp_Object handlers;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1089 Lisp_Object (*hfun) ();
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1090 {
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1091 Lisp_Object val;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1092 struct catchtag c;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1093 struct handler h;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1094
11365
1e2290c04cce (internal_condition_case): Abort if interrupt_input_blocked>0.
Richard M. Stallman <rms@gnu.org>
parents: 11251
diff changeset
1095 /* Since Fsignal resets this to 0, it had better be 0 now
1e2290c04cce (internal_condition_case): Abort if interrupt_input_blocked>0.
Richard M. Stallman <rms@gnu.org>
parents: 11251
diff changeset
1096 or else we have a potential bug. */
1e2290c04cce (internal_condition_case): Abort if interrupt_input_blocked>0.
Richard M. Stallman <rms@gnu.org>
parents: 11251
diff changeset
1097 if (interrupt_input_blocked != 0)
1e2290c04cce (internal_condition_case): Abort if interrupt_input_blocked>0.
Richard M. Stallman <rms@gnu.org>
parents: 11251
diff changeset
1098 abort ();
1e2290c04cce (internal_condition_case): Abort if interrupt_input_blocked>0.
Richard M. Stallman <rms@gnu.org>
parents: 11251
diff changeset
1099
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1100 c.tag = Qnil;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1101 c.val = Qnil;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1102 c.backlist = backtrace_list;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1103 c.handlerlist = handlerlist;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1104 c.lisp_eval_depth = lisp_eval_depth;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1105 c.pdlcount = specpdl_ptr - specpdl;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1106 c.poll_suppress_count = poll_suppress_count;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1107 c.gcpro = gcprolist;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1108 if (_setjmp (c.jmp))
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1109 {
6132
ddf57829cf03 (Fsignal): If DATA is memory_signal_data, don't add to it.
Richard M. Stallman <rms@gnu.org>
parents: 5807
diff changeset
1110 return (*hfun) (c.val);
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1111 }
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1112 c.next = catchlist;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1113 catchlist = &c;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1114 h.handler = handlers;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1115 h.var = Qnil;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1116 h.next = handlerlist;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1117 h.tag = &c;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1118 handlerlist = &h;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1119
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1120 val = (*bfun) ();
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1121 catchlist = c.next;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1122 handlerlist = h.next;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1123 return val;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1124 }
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1125
5807
cc9d9ab24008 (internal_condition_case_1): New function.
Richard M. Stallman <rms@gnu.org>
parents: 5567
diff changeset
1126 Lisp_Object
cc9d9ab24008 (internal_condition_case_1): New function.
Richard M. Stallman <rms@gnu.org>
parents: 5567
diff changeset
1127 internal_condition_case_1 (bfun, arg, handlers, hfun)
cc9d9ab24008 (internal_condition_case_1): New function.
Richard M. Stallman <rms@gnu.org>
parents: 5567
diff changeset
1128 Lisp_Object (*bfun) ();
cc9d9ab24008 (internal_condition_case_1): New function.
Richard M. Stallman <rms@gnu.org>
parents: 5567
diff changeset
1129 Lisp_Object arg;
cc9d9ab24008 (internal_condition_case_1): New function.
Richard M. Stallman <rms@gnu.org>
parents: 5567
diff changeset
1130 Lisp_Object handlers;
cc9d9ab24008 (internal_condition_case_1): New function.
Richard M. Stallman <rms@gnu.org>
parents: 5567
diff changeset
1131 Lisp_Object (*hfun) ();
cc9d9ab24008 (internal_condition_case_1): New function.
Richard M. Stallman <rms@gnu.org>
parents: 5567
diff changeset
1132 {
cc9d9ab24008 (internal_condition_case_1): New function.
Richard M. Stallman <rms@gnu.org>
parents: 5567
diff changeset
1133 Lisp_Object val;
cc9d9ab24008 (internal_condition_case_1): New function.
Richard M. Stallman <rms@gnu.org>
parents: 5567
diff changeset
1134 struct catchtag c;
cc9d9ab24008 (internal_condition_case_1): New function.
Richard M. Stallman <rms@gnu.org>
parents: 5567
diff changeset
1135 struct handler h;
cc9d9ab24008 (internal_condition_case_1): New function.
Richard M. Stallman <rms@gnu.org>
parents: 5567
diff changeset
1136
cc9d9ab24008 (internal_condition_case_1): New function.
Richard M. Stallman <rms@gnu.org>
parents: 5567
diff changeset
1137 c.tag = Qnil;
cc9d9ab24008 (internal_condition_case_1): New function.
Richard M. Stallman <rms@gnu.org>
parents: 5567
diff changeset
1138 c.val = Qnil;
cc9d9ab24008 (internal_condition_case_1): New function.
Richard M. Stallman <rms@gnu.org>
parents: 5567
diff changeset
1139 c.backlist = backtrace_list;
cc9d9ab24008 (internal_condition_case_1): New function.
Richard M. Stallman <rms@gnu.org>
parents: 5567
diff changeset
1140 c.handlerlist = handlerlist;
cc9d9ab24008 (internal_condition_case_1): New function.
Richard M. Stallman <rms@gnu.org>
parents: 5567
diff changeset
1141 c.lisp_eval_depth = lisp_eval_depth;
cc9d9ab24008 (internal_condition_case_1): New function.
Richard M. Stallman <rms@gnu.org>
parents: 5567
diff changeset
1142 c.pdlcount = specpdl_ptr - specpdl;
cc9d9ab24008 (internal_condition_case_1): New function.
Richard M. Stallman <rms@gnu.org>
parents: 5567
diff changeset
1143 c.poll_suppress_count = poll_suppress_count;
cc9d9ab24008 (internal_condition_case_1): New function.
Richard M. Stallman <rms@gnu.org>
parents: 5567
diff changeset
1144 c.gcpro = gcprolist;
cc9d9ab24008 (internal_condition_case_1): New function.
Richard M. Stallman <rms@gnu.org>
parents: 5567
diff changeset
1145 if (_setjmp (c.jmp))
cc9d9ab24008 (internal_condition_case_1): New function.
Richard M. Stallman <rms@gnu.org>
parents: 5567
diff changeset
1146 {
6132
ddf57829cf03 (Fsignal): If DATA is memory_signal_data, don't add to it.
Richard M. Stallman <rms@gnu.org>
parents: 5807
diff changeset
1147 return (*hfun) (c.val);
5807
cc9d9ab24008 (internal_condition_case_1): New function.
Richard M. Stallman <rms@gnu.org>
parents: 5567
diff changeset
1148 }
cc9d9ab24008 (internal_condition_case_1): New function.
Richard M. Stallman <rms@gnu.org>
parents: 5567
diff changeset
1149 c.next = catchlist;
cc9d9ab24008 (internal_condition_case_1): New function.
Richard M. Stallman <rms@gnu.org>
parents: 5567
diff changeset
1150 catchlist = &c;
cc9d9ab24008 (internal_condition_case_1): New function.
Richard M. Stallman <rms@gnu.org>
parents: 5567
diff changeset
1151 h.handler = handlers;
cc9d9ab24008 (internal_condition_case_1): New function.
Richard M. Stallman <rms@gnu.org>
parents: 5567
diff changeset
1152 h.var = Qnil;
cc9d9ab24008 (internal_condition_case_1): New function.
Richard M. Stallman <rms@gnu.org>
parents: 5567
diff changeset
1153 h.next = handlerlist;
cc9d9ab24008 (internal_condition_case_1): New function.
Richard M. Stallman <rms@gnu.org>
parents: 5567
diff changeset
1154 h.tag = &c;
cc9d9ab24008 (internal_condition_case_1): New function.
Richard M. Stallman <rms@gnu.org>
parents: 5567
diff changeset
1155 handlerlist = &h;
cc9d9ab24008 (internal_condition_case_1): New function.
Richard M. Stallman <rms@gnu.org>
parents: 5567
diff changeset
1156
cc9d9ab24008 (internal_condition_case_1): New function.
Richard M. Stallman <rms@gnu.org>
parents: 5567
diff changeset
1157 val = (*bfun) (arg);
cc9d9ab24008 (internal_condition_case_1): New function.
Richard M. Stallman <rms@gnu.org>
parents: 5567
diff changeset
1158 catchlist = c.next;
cc9d9ab24008 (internal_condition_case_1): New function.
Richard M. Stallman <rms@gnu.org>
parents: 5567
diff changeset
1159 handlerlist = h.next;
cc9d9ab24008 (internal_condition_case_1): New function.
Richard M. Stallman <rms@gnu.org>
parents: 5567
diff changeset
1160 return val;
cc9d9ab24008 (internal_condition_case_1): New function.
Richard M. Stallman <rms@gnu.org>
parents: 5567
diff changeset
1161 }
cc9d9ab24008 (internal_condition_case_1): New function.
Richard M. Stallman <rms@gnu.org>
parents: 5567
diff changeset
1162
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1163 static Lisp_Object find_handler_clause ();
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1164
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1165 DEFUN ("signal", Fsignal, Ssignal, 2, 2, 0,
5566
e2925466c923 (Fsignal): Rename 1st arg to error_symbol.
Richard M. Stallman <rms@gnu.org>
parents: 5563
diff changeset
1166 "Signal an error. Args are ERROR-SYMBOL and associated DATA.\n\
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1167 This function does not return.\n\n\
5566
e2925466c923 (Fsignal): Rename 1st arg to error_symbol.
Richard M. Stallman <rms@gnu.org>
parents: 5563
diff changeset
1168 An error symbol is a symbol with an `error-conditions' property\n\
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1169 that is a list of condition names.\n\
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1170 A handler for any of those names will get to handle this signal.\n\
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1171 The symbol `error' should normally be one of them.\n\
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1172 \n\
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1173 DATA should be a list. Its elements are printed as part of the error message.\n\
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1174 If the signal is handled, DATA is made available to the handler.\n\
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1175 See also the function `condition-case'.")
5566
e2925466c923 (Fsignal): Rename 1st arg to error_symbol.
Richard M. Stallman <rms@gnu.org>
parents: 5563
diff changeset
1176 (error_symbol, data)
e2925466c923 (Fsignal): Rename 1st arg to error_symbol.
Richard M. Stallman <rms@gnu.org>
parents: 5563
diff changeset
1177 Lisp_Object error_symbol, data;
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1178 {
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1179 register struct handler *allhandlers = handlerlist;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1180 Lisp_Object conditions;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1181 extern int gc_in_progress;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1182 extern int waiting_for_input;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1183 Lisp_Object debugger_value;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1184
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1185 quit_error_check ();
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1186 immediate_quit = 0;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1187 if (gc_in_progress || waiting_for_input)
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1188 abort ();
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1189
732
a8d94735277e *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 727
diff changeset
1190 #ifdef HAVE_X_WINDOWS
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1191 TOTALLY_UNBLOCK_INPUT;
732
a8d94735277e *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 727
diff changeset
1192 #endif
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1193
5566
e2925466c923 (Fsignal): Rename 1st arg to error_symbol.
Richard M. Stallman <rms@gnu.org>
parents: 5563
diff changeset
1194 conditions = Fget (error_symbol, Qerror_conditions);
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1195
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1196 for (; handlerlist; handlerlist = handlerlist->next)
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1197 {
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1198 register Lisp_Object clause;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1199 clause = find_handler_clause (handlerlist->handler, conditions,
5566
e2925466c923 (Fsignal): Rename 1st arg to error_symbol.
Richard M. Stallman <rms@gnu.org>
parents: 5563
diff changeset
1200 error_symbol, data, &debugger_value);
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1201
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1202 #if 0 /* Most callers are not prepared to handle gc if this returns.
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1203 So, since this feature is not very useful, take it out. */
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1204 /* If have called debugger and user wants to continue,
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1205 just return nil. */
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1206 if (EQ (clause, Qlambda))
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1207 return debugger_value;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1208 #else
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1209 if (EQ (clause, Qlambda))
1196
65e2edefe748 * eval.c (Fcondition_case): Rearranged for clarity. Don't worry
Jim Blandy <jimb@redhat.com>
parents: 940
diff changeset
1210 {
65e2edefe748 * eval.c (Fcondition_case): Rearranged for clarity. Don't worry
Jim Blandy <jimb@redhat.com>
parents: 940
diff changeset
1211 /* We can't return values to code which signalled an error, but we
65e2edefe748 * eval.c (Fcondition_case): Rearranged for clarity. Don't worry
Jim Blandy <jimb@redhat.com>
parents: 940
diff changeset
1212 can continue code which has signalled a quit. */
5566
e2925466c923 (Fsignal): Rename 1st arg to error_symbol.
Richard M. Stallman <rms@gnu.org>
parents: 5563
diff changeset
1213 if (EQ (error_symbol, Qquit))
1196
65e2edefe748 * eval.c (Fcondition_case): Rearranged for clarity. Don't worry
Jim Blandy <jimb@redhat.com>
parents: 940
diff changeset
1214 return Qnil;
65e2edefe748 * eval.c (Fcondition_case): Rearranged for clarity. Don't worry
Jim Blandy <jimb@redhat.com>
parents: 940
diff changeset
1215 else
3973
ab06b106c490 (Fsignal): Clarify error message.
Richard M. Stallman <rms@gnu.org>
parents: 3703
diff changeset
1216 error ("Cannot return from the debugger in an error");
1196
65e2edefe748 * eval.c (Fcondition_case): Rearranged for clarity. Don't worry
Jim Blandy <jimb@redhat.com>
parents: 940
diff changeset
1217 }
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1218 #endif
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1219
485
8c615e453683 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 431
diff changeset
1220 if (!NILP (clause))
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1221 {
6132
ddf57829cf03 (Fsignal): If DATA is memory_signal_data, don't add to it.
Richard M. Stallman <rms@gnu.org>
parents: 5807
diff changeset
1222 Lisp_Object unwind_data;
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1223 struct handler *h = handlerlist;
6132
ddf57829cf03 (Fsignal): If DATA is memory_signal_data, don't add to it.
Richard M. Stallman <rms@gnu.org>
parents: 5807
diff changeset
1224
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1225 handlerlist = allhandlers;
8902
80ac0db9a77a (Fsignal): Fix Lisp_Object vs. int problems.
Karl Heuer <kwzh@gnu.org>
parents: 8412
diff changeset
1226 if (EQ (data, memory_signal_data))
6132
ddf57829cf03 (Fsignal): If DATA is memory_signal_data, don't add to it.
Richard M. Stallman <rms@gnu.org>
parents: 5807
diff changeset
1227 unwind_data = memory_signal_data;
ddf57829cf03 (Fsignal): If DATA is memory_signal_data, don't add to it.
Richard M. Stallman <rms@gnu.org>
parents: 5807
diff changeset
1228 else
ddf57829cf03 (Fsignal): If DATA is memory_signal_data, don't add to it.
Richard M. Stallman <rms@gnu.org>
parents: 5807
diff changeset
1229 unwind_data = Fcons (error_symbol, data);
ddf57829cf03 (Fsignal): If DATA is memory_signal_data, don't add to it.
Richard M. Stallman <rms@gnu.org>
parents: 5807
diff changeset
1230 h->chosen_clause = clause;
ddf57829cf03 (Fsignal): If DATA is memory_signal_data, don't add to it.
Richard M. Stallman <rms@gnu.org>
parents: 5807
diff changeset
1231 unwind_to_catch (h->tag, unwind_data);
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1232 }
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1233 }
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1234
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1235 handlerlist = allhandlers;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1236 /* If no handler is present now, try to run the debugger,
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1237 and if that fails, throw to top level. */
5566
e2925466c923 (Fsignal): Rename 1st arg to error_symbol.
Richard M. Stallman <rms@gnu.org>
parents: 5563
diff changeset
1238 find_handler_clause (Qerror, conditions, error_symbol, data, &debugger_value);
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1239 Fthrow (Qtop_level, Qt);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1240 }
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1241
684
bd574e49bfac *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 648
diff changeset
1242 /* Return nonzero iff LIST is a non-nil atom or
bd574e49bfac *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 648
diff changeset
1243 a list containing one of CONDITIONS. */
bd574e49bfac *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 648
diff changeset
1244
bd574e49bfac *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 648
diff changeset
1245 static int
bd574e49bfac *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 648
diff changeset
1246 wants_debugger (list, conditions)
bd574e49bfac *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 648
diff changeset
1247 Lisp_Object list, conditions;
bd574e49bfac *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 648
diff changeset
1248 {
706
86cb5db0b6c3 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 687
diff changeset
1249 if (NILP (list))
684
bd574e49bfac *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 648
diff changeset
1250 return 0;
bd574e49bfac *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 648
diff changeset
1251 if (! CONSP (list))
bd574e49bfac *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 648
diff changeset
1252 return 1;
bd574e49bfac *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 648
diff changeset
1253
878
5b1c5b4286e7 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 863
diff changeset
1254 while (CONSP (conditions))
684
bd574e49bfac *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 648
diff changeset
1255 {
878
5b1c5b4286e7 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 863
diff changeset
1256 Lisp_Object this, tail;
5b1c5b4286e7 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 863
diff changeset
1257 this = XCONS (conditions)->car;
5b1c5b4286e7 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 863
diff changeset
1258 for (tail = list; CONSP (tail); tail = XCONS (tail)->cdr)
5b1c5b4286e7 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 863
diff changeset
1259 if (EQ (XCONS (tail)->car, this))
684
bd574e49bfac *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 648
diff changeset
1260 return 1;
bd574e49bfac *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 648
diff changeset
1261 conditions = XCONS (conditions)->cdr;
bd574e49bfac *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 648
diff changeset
1262 }
878
5b1c5b4286e7 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 863
diff changeset
1263 return 0;
684
bd574e49bfac *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 648
diff changeset
1264 }
bd574e49bfac *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 648
diff changeset
1265
13768
353d32d374db (skip_debugger): New function.
Karl Heuer <kwzh@gnu.org>
parents: 13444
diff changeset
1266 /* Return 1 if an error with condition-symbols CONDITIONS,
353d32d374db (skip_debugger): New function.
Karl Heuer <kwzh@gnu.org>
parents: 13444
diff changeset
1267 and described by SIGNAL-DATA, should skip the debugger
353d32d374db (skip_debugger): New function.
Karl Heuer <kwzh@gnu.org>
parents: 13444
diff changeset
1268 according to debugger-ignore-errors. */
353d32d374db (skip_debugger): New function.
Karl Heuer <kwzh@gnu.org>
parents: 13444
diff changeset
1269
353d32d374db (skip_debugger): New function.
Karl Heuer <kwzh@gnu.org>
parents: 13444
diff changeset
1270 static int
353d32d374db (skip_debugger): New function.
Karl Heuer <kwzh@gnu.org>
parents: 13444
diff changeset
1271 skip_debugger (conditions, data)
353d32d374db (skip_debugger): New function.
Karl Heuer <kwzh@gnu.org>
parents: 13444
diff changeset
1272 Lisp_Object conditions, data;
353d32d374db (skip_debugger): New function.
Karl Heuer <kwzh@gnu.org>
parents: 13444
diff changeset
1273 {
353d32d374db (skip_debugger): New function.
Karl Heuer <kwzh@gnu.org>
parents: 13444
diff changeset
1274 Lisp_Object tail;
353d32d374db (skip_debugger): New function.
Karl Heuer <kwzh@gnu.org>
parents: 13444
diff changeset
1275 int first_string = 1;
353d32d374db (skip_debugger): New function.
Karl Heuer <kwzh@gnu.org>
parents: 13444
diff changeset
1276 Lisp_Object error_message;
353d32d374db (skip_debugger): New function.
Karl Heuer <kwzh@gnu.org>
parents: 13444
diff changeset
1277
353d32d374db (skip_debugger): New function.
Karl Heuer <kwzh@gnu.org>
parents: 13444
diff changeset
1278 for (tail = Vdebug_ignored_errors; CONSP (tail);
353d32d374db (skip_debugger): New function.
Karl Heuer <kwzh@gnu.org>
parents: 13444
diff changeset
1279 tail = XCONS (tail)->cdr)
353d32d374db (skip_debugger): New function.
Karl Heuer <kwzh@gnu.org>
parents: 13444
diff changeset
1280 {
353d32d374db (skip_debugger): New function.
Karl Heuer <kwzh@gnu.org>
parents: 13444
diff changeset
1281 if (STRINGP (XCONS (tail)->car))
353d32d374db (skip_debugger): New function.
Karl Heuer <kwzh@gnu.org>
parents: 13444
diff changeset
1282 {
353d32d374db (skip_debugger): New function.
Karl Heuer <kwzh@gnu.org>
parents: 13444
diff changeset
1283 if (first_string)
353d32d374db (skip_debugger): New function.
Karl Heuer <kwzh@gnu.org>
parents: 13444
diff changeset
1284 {
353d32d374db (skip_debugger): New function.
Karl Heuer <kwzh@gnu.org>
parents: 13444
diff changeset
1285 error_message = Ferror_message_string (data);
353d32d374db (skip_debugger): New function.
Karl Heuer <kwzh@gnu.org>
parents: 13444
diff changeset
1286 first_string = 0;
353d32d374db (skip_debugger): New function.
Karl Heuer <kwzh@gnu.org>
parents: 13444
diff changeset
1287 }
353d32d374db (skip_debugger): New function.
Karl Heuer <kwzh@gnu.org>
parents: 13444
diff changeset
1288 if (fast_string_match (XCONS (tail)->car, error_message) >= 0)
353d32d374db (skip_debugger): New function.
Karl Heuer <kwzh@gnu.org>
parents: 13444
diff changeset
1289 return 1;
353d32d374db (skip_debugger): New function.
Karl Heuer <kwzh@gnu.org>
parents: 13444
diff changeset
1290 }
353d32d374db (skip_debugger): New function.
Karl Heuer <kwzh@gnu.org>
parents: 13444
diff changeset
1291 else
353d32d374db (skip_debugger): New function.
Karl Heuer <kwzh@gnu.org>
parents: 13444
diff changeset
1292 {
353d32d374db (skip_debugger): New function.
Karl Heuer <kwzh@gnu.org>
parents: 13444
diff changeset
1293 Lisp_Object contail;
353d32d374db (skip_debugger): New function.
Karl Heuer <kwzh@gnu.org>
parents: 13444
diff changeset
1294
353d32d374db (skip_debugger): New function.
Karl Heuer <kwzh@gnu.org>
parents: 13444
diff changeset
1295 for (contail = conditions; CONSP (contail);
353d32d374db (skip_debugger): New function.
Karl Heuer <kwzh@gnu.org>
parents: 13444
diff changeset
1296 contail = XCONS (contail)->cdr)
353d32d374db (skip_debugger): New function.
Karl Heuer <kwzh@gnu.org>
parents: 13444
diff changeset
1297 if (EQ (XCONS (tail)->car, XCONS (contail)->car))
353d32d374db (skip_debugger): New function.
Karl Heuer <kwzh@gnu.org>
parents: 13444
diff changeset
1298 return 1;
353d32d374db (skip_debugger): New function.
Karl Heuer <kwzh@gnu.org>
parents: 13444
diff changeset
1299 }
353d32d374db (skip_debugger): New function.
Karl Heuer <kwzh@gnu.org>
parents: 13444
diff changeset
1300 }
353d32d374db (skip_debugger): New function.
Karl Heuer <kwzh@gnu.org>
parents: 13444
diff changeset
1301
353d32d374db (skip_debugger): New function.
Karl Heuer <kwzh@gnu.org>
parents: 13444
diff changeset
1302 return 0;
353d32d374db (skip_debugger): New function.
Karl Heuer <kwzh@gnu.org>
parents: 13444
diff changeset
1303 }
353d32d374db (skip_debugger): New function.
Karl Heuer <kwzh@gnu.org>
parents: 13444
diff changeset
1304
684
bd574e49bfac *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 648
diff changeset
1305 /* Value of Qlambda means we have called debugger and user has continued.
bd574e49bfac *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 648
diff changeset
1306 Store value returned from debugger into *DEBUGGER_VALUE_PTR. */
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1307
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1308 static Lisp_Object
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1309 find_handler_clause (handlers, conditions, sig, data, debugger_value_ptr)
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1310 Lisp_Object handlers, conditions, sig, data;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1311 Lisp_Object *debugger_value_ptr;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1312 {
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1313 register Lisp_Object h;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1314 register Lisp_Object tem;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1315
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1316 if (EQ (handlers, Qt)) /* t is used by handlers for all conditions, set up by C code. */
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1317 return Qt;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1318 if (EQ (handlers, Qerror)) /* error is used similarly, but means display a backtrace too */
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1319 {
684
bd574e49bfac *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 648
diff changeset
1320 if (wants_debugger (Vstack_trace_on_error, conditions))
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1321 internal_with_output_to_temp_buffer ("*Backtrace*", Fbacktrace, Qnil);
1199
ab2d88e2505b * eval.c (unbind_catch): Do the long-jump here. Take a VALUE
Jim Blandy <jimb@redhat.com>
parents: 1196
diff changeset
1322 if ((EQ (sig, Qquit)
ab2d88e2505b * eval.c (unbind_catch): Do the long-jump here. Take a VALUE
Jim Blandy <jimb@redhat.com>
parents: 1196
diff changeset
1323 ? debug_on_quit
ab2d88e2505b * eval.c (unbind_catch): Do the long-jump here. Take a VALUE
Jim Blandy <jimb@redhat.com>
parents: 1196
diff changeset
1324 : wants_debugger (Vdebug_on_error, conditions))
13768
353d32d374db (skip_debugger): New function.
Karl Heuer <kwzh@gnu.org>
parents: 13444
diff changeset
1325 && ! skip_debugger (conditions, Fcons (sig, data))
1199
ab2d88e2505b * eval.c (unbind_catch): Do the long-jump here. Take a VALUE
Jim Blandy <jimb@redhat.com>
parents: 1196
diff changeset
1326 && when_entered_debugger < num_nonmacro_input_chars)
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1327 {
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1328 int count = specpdl_ptr - specpdl;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1329 specbind (Qdebug_on_error, Qnil);
13768
353d32d374db (skip_debugger): New function.
Karl Heuer <kwzh@gnu.org>
parents: 13444
diff changeset
1330 *debugger_value_ptr
353d32d374db (skip_debugger): New function.
Karl Heuer <kwzh@gnu.org>
parents: 13444
diff changeset
1331 = call_debugger (Fcons (Qerror,
353d32d374db (skip_debugger): New function.
Karl Heuer <kwzh@gnu.org>
parents: 13444
diff changeset
1332 Fcons (Fcons (sig, data),
353d32d374db (skip_debugger): New function.
Karl Heuer <kwzh@gnu.org>
parents: 13444
diff changeset
1333 Qnil)));
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1334 return unbind_to (count, Qlambda);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1335 }
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1336 return Qt;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1337 }
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1338 for (h = handlers; CONSP (h); h = Fcdr (h))
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1339 {
5563
50ada322de3e (Fcondition_case): Allow a list of condition names in a handler.
Richard M. Stallman <rms@gnu.org>
parents: 5254
diff changeset
1340 Lisp_Object handler, condit;
50ada322de3e (Fcondition_case): Allow a list of condition names in a handler.
Richard M. Stallman <rms@gnu.org>
parents: 5254
diff changeset
1341
50ada322de3e (Fcondition_case): Allow a list of condition names in a handler.
Richard M. Stallman <rms@gnu.org>
parents: 5254
diff changeset
1342 handler = Fcar (h);
50ada322de3e (Fcondition_case): Allow a list of condition names in a handler.
Richard M. Stallman <rms@gnu.org>
parents: 5254
diff changeset
1343 if (!CONSP (handler))
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1344 continue;
5563
50ada322de3e (Fcondition_case): Allow a list of condition names in a handler.
Richard M. Stallman <rms@gnu.org>
parents: 5254
diff changeset
1345 condit = Fcar (handler);
50ada322de3e (Fcondition_case): Allow a list of condition names in a handler.
Richard M. Stallman <rms@gnu.org>
parents: 5254
diff changeset
1346 /* Handle a single condition name in handler HANDLER. */
50ada322de3e (Fcondition_case): Allow a list of condition names in a handler.
Richard M. Stallman <rms@gnu.org>
parents: 5254
diff changeset
1347 if (SYMBOLP (condit))
50ada322de3e (Fcondition_case): Allow a list of condition names in a handler.
Richard M. Stallman <rms@gnu.org>
parents: 5254
diff changeset
1348 {
50ada322de3e (Fcondition_case): Allow a list of condition names in a handler.
Richard M. Stallman <rms@gnu.org>
parents: 5254
diff changeset
1349 tem = Fmemq (Fcar (handler), conditions);
50ada322de3e (Fcondition_case): Allow a list of condition names in a handler.
Richard M. Stallman <rms@gnu.org>
parents: 5254
diff changeset
1350 if (!NILP (tem))
50ada322de3e (Fcondition_case): Allow a list of condition names in a handler.
Richard M. Stallman <rms@gnu.org>
parents: 5254
diff changeset
1351 return handler;
50ada322de3e (Fcondition_case): Allow a list of condition names in a handler.
Richard M. Stallman <rms@gnu.org>
parents: 5254
diff changeset
1352 }
50ada322de3e (Fcondition_case): Allow a list of condition names in a handler.
Richard M. Stallman <rms@gnu.org>
parents: 5254
diff changeset
1353 /* Handle a list of condition names in handler HANDLER. */
50ada322de3e (Fcondition_case): Allow a list of condition names in a handler.
Richard M. Stallman <rms@gnu.org>
parents: 5254
diff changeset
1354 else if (CONSP (condit))
50ada322de3e (Fcondition_case): Allow a list of condition names in a handler.
Richard M. Stallman <rms@gnu.org>
parents: 5254
diff changeset
1355 {
50ada322de3e (Fcondition_case): Allow a list of condition names in a handler.
Richard M. Stallman <rms@gnu.org>
parents: 5254
diff changeset
1356 while (CONSP (condit))
50ada322de3e (Fcondition_case): Allow a list of condition names in a handler.
Richard M. Stallman <rms@gnu.org>
parents: 5254
diff changeset
1357 {
50ada322de3e (Fcondition_case): Allow a list of condition names in a handler.
Richard M. Stallman <rms@gnu.org>
parents: 5254
diff changeset
1358 tem = Fmemq (Fcar (condit), conditions);
50ada322de3e (Fcondition_case): Allow a list of condition names in a handler.
Richard M. Stallman <rms@gnu.org>
parents: 5254
diff changeset
1359 if (!NILP (tem))
50ada322de3e (Fcondition_case): Allow a list of condition names in a handler.
Richard M. Stallman <rms@gnu.org>
parents: 5254
diff changeset
1360 return handler;
50ada322de3e (Fcondition_case): Allow a list of condition names in a handler.
Richard M. Stallman <rms@gnu.org>
parents: 5254
diff changeset
1361 condit = XCONS (condit)->cdr;
50ada322de3e (Fcondition_case): Allow a list of condition names in a handler.
Richard M. Stallman <rms@gnu.org>
parents: 5254
diff changeset
1362 }
50ada322de3e (Fcondition_case): Allow a list of condition names in a handler.
Richard M. Stallman <rms@gnu.org>
parents: 5254
diff changeset
1363 }
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1364 }
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1365 return Qnil;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1366 }
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1367
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1368 /* dump an error message; called like printf */
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1369
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1370 /* VARARGS 1 */
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1371 void
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1372 error (m, a1, a2, a3)
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1373 char *m;
6225
8f92cf89ed7c (error): Use doprnt. Make buffer larger as necessary.
Richard M. Stallman <rms@gnu.org>
parents: 6132
diff changeset
1374 char *a1, *a2, *a3;
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1375 {
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1376 char buf[200];
6225
8f92cf89ed7c (error): Use doprnt. Make buffer larger as necessary.
Richard M. Stallman <rms@gnu.org>
parents: 6132
diff changeset
1377 int size = 200;
8f92cf89ed7c (error): Use doprnt. Make buffer larger as necessary.
Richard M. Stallman <rms@gnu.org>
parents: 6132
diff changeset
1378 int mlen;
8f92cf89ed7c (error): Use doprnt. Make buffer larger as necessary.
Richard M. Stallman <rms@gnu.org>
parents: 6132
diff changeset
1379 char *buffer = buf;
8f92cf89ed7c (error): Use doprnt. Make buffer larger as necessary.
Richard M. Stallman <rms@gnu.org>
parents: 6132
diff changeset
1380 char *args[3];
8f92cf89ed7c (error): Use doprnt. Make buffer larger as necessary.
Richard M. Stallman <rms@gnu.org>
parents: 6132
diff changeset
1381 int allocated = 0;
8f92cf89ed7c (error): Use doprnt. Make buffer larger as necessary.
Richard M. Stallman <rms@gnu.org>
parents: 6132
diff changeset
1382 Lisp_Object string;
8f92cf89ed7c (error): Use doprnt. Make buffer larger as necessary.
Richard M. Stallman <rms@gnu.org>
parents: 6132
diff changeset
1383
8f92cf89ed7c (error): Use doprnt. Make buffer larger as necessary.
Richard M. Stallman <rms@gnu.org>
parents: 6132
diff changeset
1384 args[0] = a1;
8f92cf89ed7c (error): Use doprnt. Make buffer larger as necessary.
Richard M. Stallman <rms@gnu.org>
parents: 6132
diff changeset
1385 args[1] = a2;
8f92cf89ed7c (error): Use doprnt. Make buffer larger as necessary.
Richard M. Stallman <rms@gnu.org>
parents: 6132
diff changeset
1386 args[2] = a3;
8f92cf89ed7c (error): Use doprnt. Make buffer larger as necessary.
Richard M. Stallman <rms@gnu.org>
parents: 6132
diff changeset
1387
8f92cf89ed7c (error): Use doprnt. Make buffer larger as necessary.
Richard M. Stallman <rms@gnu.org>
parents: 6132
diff changeset
1388 mlen = strlen (m);
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1389
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1390 while (1)
6225
8f92cf89ed7c (error): Use doprnt. Make buffer larger as necessary.
Richard M. Stallman <rms@gnu.org>
parents: 6132
diff changeset
1391 {
8f92cf89ed7c (error): Use doprnt. Make buffer larger as necessary.
Richard M. Stallman <rms@gnu.org>
parents: 6132
diff changeset
1392 int used = doprnt (buf, size, m, m + mlen, 3, args);
8f92cf89ed7c (error): Use doprnt. Make buffer larger as necessary.
Richard M. Stallman <rms@gnu.org>
parents: 6132
diff changeset
1393 if (used < size)
8f92cf89ed7c (error): Use doprnt. Make buffer larger as necessary.
Richard M. Stallman <rms@gnu.org>
parents: 6132
diff changeset
1394 break;
8f92cf89ed7c (error): Use doprnt. Make buffer larger as necessary.
Richard M. Stallman <rms@gnu.org>
parents: 6132
diff changeset
1395 size *= 2;
8f92cf89ed7c (error): Use doprnt. Make buffer larger as necessary.
Richard M. Stallman <rms@gnu.org>
parents: 6132
diff changeset
1396 if (allocated)
8f92cf89ed7c (error): Use doprnt. Make buffer larger as necessary.
Richard M. Stallman <rms@gnu.org>
parents: 6132
diff changeset
1397 buffer = (char *) xrealloc (buffer, size);
7353
334cececa42d (error): Fix logic in call to xmalloc/xrealloc.
Richard M. Stallman <rms@gnu.org>
parents: 7307
diff changeset
1398 else
334cececa42d (error): Fix logic in call to xmalloc/xrealloc.
Richard M. Stallman <rms@gnu.org>
parents: 7307
diff changeset
1399 {
334cececa42d (error): Fix logic in call to xmalloc/xrealloc.
Richard M. Stallman <rms@gnu.org>
parents: 7307
diff changeset
1400 buffer = (char *) xmalloc (size);
334cececa42d (error): Fix logic in call to xmalloc/xrealloc.
Richard M. Stallman <rms@gnu.org>
parents: 7307
diff changeset
1401 allocated = 1;
334cececa42d (error): Fix logic in call to xmalloc/xrealloc.
Richard M. Stallman <rms@gnu.org>
parents: 7307
diff changeset
1402 }
6225
8f92cf89ed7c (error): Use doprnt. Make buffer larger as necessary.
Richard M. Stallman <rms@gnu.org>
parents: 6132
diff changeset
1403 }
8f92cf89ed7c (error): Use doprnt. Make buffer larger as necessary.
Richard M. Stallman <rms@gnu.org>
parents: 6132
diff changeset
1404
8f92cf89ed7c (error): Use doprnt. Make buffer larger as necessary.
Richard M. Stallman <rms@gnu.org>
parents: 6132
diff changeset
1405 string = build_string (buf);
8f92cf89ed7c (error): Use doprnt. Make buffer larger as necessary.
Richard M. Stallman <rms@gnu.org>
parents: 6132
diff changeset
1406 if (allocated)
8f92cf89ed7c (error): Use doprnt. Make buffer larger as necessary.
Richard M. Stallman <rms@gnu.org>
parents: 6132
diff changeset
1407 free (buffer);
8f92cf89ed7c (error): Use doprnt. Make buffer larger as necessary.
Richard M. Stallman <rms@gnu.org>
parents: 6132
diff changeset
1408
8f92cf89ed7c (error): Use doprnt. Make buffer larger as necessary.
Richard M. Stallman <rms@gnu.org>
parents: 6132
diff changeset
1409 Fsignal (Qerror, Fcons (string, Qnil));
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1410 }
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1411
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1412 DEFUN ("commandp", Fcommandp, Scommandp, 1, 1, 0,
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1413 "T if FUNCTION makes provisions for interactive calling.\n\
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1414 This means it contains a description for how to read arguments to give it.\n\
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1415 The value is nil for an invalid function or a symbol with no function\n\
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1416 definition.\n\
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1417 \n\
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1418 Interactively callable functions include strings and vectors (treated\n\
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1419 as keyboard macros), lambda-expressions that contain a top-level call\n\
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1420 to `interactive', autoload definitions made by `autoload' with non-nil\n\
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1421 fourth argument, and some of the built-in functions of Lisp.\n\
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1422 \n\
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1423 Also, a symbol satisfies `commandp' if its function definition does so.")
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1424 (function)
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1425 Lisp_Object function;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1426 {
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1427 register Lisp_Object fun;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1428 register Lisp_Object funcar;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1429 register Lisp_Object tem;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1430 register int i = 0;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1431
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1432 fun = function;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1433
648
70b112526394 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 604
diff changeset
1434 fun = indirect_function (fun);
70b112526394 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 604
diff changeset
1435 if (EQ (fun, Qunbound))
70b112526394 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 604
diff changeset
1436 return Qnil;
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1437
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1438 /* Emacs primitives are interactive if their DEFUN specifies an
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1439 interactive spec. */
9148
e7ab930bb7eb (Fprogn, Finteractive_p, Fuser_variable_p, FletX, Flet, Fmacroexpand,
Karl Heuer <kwzh@gnu.org>
parents: 8980
diff changeset
1440 if (SUBRP (fun))
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1441 {
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1442 if (XSUBR (fun)->prompt)
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1443 return Qt;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1444 else
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1445 return Qnil;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1446 }
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1447
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1448 /* Bytecode objects are interactive if they are long enough to
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1449 have an element whose index is COMPILED_INTERACTIVE, which is
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1450 where the interactive spec is stored. */
9148
e7ab930bb7eb (Fprogn, Finteractive_p, Fuser_variable_p, FletX, Flet, Fmacroexpand,
Karl Heuer <kwzh@gnu.org>
parents: 8980
diff changeset
1451 else if (COMPILEDP (fun))
10345
9952a5ab70d1 Fix typo in last change.
Roland McGrath <roland@gnu.org>
parents: 10342
diff changeset
1452 return ((XVECTOR (fun)->size & PSEUDOVECTOR_SIZE_MASK) > COMPILED_INTERACTIVE
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1453 ? Qt : Qnil);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1454
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1455 /* Strings and vectors are keyboard macros. */
9148
e7ab930bb7eb (Fprogn, Finteractive_p, Fuser_variable_p, FletX, Flet, Fmacroexpand,
Karl Heuer <kwzh@gnu.org>
parents: 8980
diff changeset
1456 if (STRINGP (fun) || VECTORP (fun))
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1457 return Qt;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1458
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1459 /* Lists may represent commands. */
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1460 if (!CONSP (fun))
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1461 return Qnil;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1462 funcar = Fcar (fun);
9148
e7ab930bb7eb (Fprogn, Finteractive_p, Fuser_variable_p, FletX, Flet, Fmacroexpand,
Karl Heuer <kwzh@gnu.org>
parents: 8980
diff changeset
1463 if (!SYMBOLP (funcar))
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1464 return Fsignal (Qinvalid_function, Fcons (fun, Qnil));
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1465 if (EQ (funcar, Qlambda))
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1466 return Fassq (Qinteractive, Fcdr (Fcdr (fun)));
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1467 if (EQ (funcar, Qmocklisp))
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1468 return Qt; /* All mocklisp functions can be called interactively */
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1469 if (EQ (funcar, Qautoload))
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1470 return Fcar (Fcdr (Fcdr (Fcdr (fun))));
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1471 else
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1472 return Qnil;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1473 }
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1474
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1475 /* ARGSUSED */
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1476 DEFUN ("autoload", Fautoload, Sautoload, 2, 5, 0,
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1477 "Define FUNCTION to autoload from FILE.\n\
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1478 FUNCTION is a symbol; FILE is a file name string to pass to `load'.\n\
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1479 Third arg DOCSTRING is documentation for the function.\n\
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1480 Fourth arg INTERACTIVE if non-nil says function can be called interactively.\n\
1564
b327816041d1 * eval.c (Fautoload): Renamed fifth argument TYPE. Document the
Jim Blandy <jimb@redhat.com>
parents: 1452
diff changeset
1481 Fifth arg TYPE indicates the type of the object:\n\
b327816041d1 * eval.c (Fautoload): Renamed fifth argument TYPE. Document the
Jim Blandy <jimb@redhat.com>
parents: 1452
diff changeset
1482 nil or omitted says FUNCTION is a function,\n\
b327816041d1 * eval.c (Fautoload): Renamed fifth argument TYPE. Document the
Jim Blandy <jimb@redhat.com>
parents: 1452
diff changeset
1483 `keymap' says FUNCTION is really a keymap, and\n\
b327816041d1 * eval.c (Fautoload): Renamed fifth argument TYPE. Document the
Jim Blandy <jimb@redhat.com>
parents: 1452
diff changeset
1484 `macro' or t says FUNCTION is really a macro.\n\
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1485 Third through fifth args give info about the real definition.\n\
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1486 They default to nil.\n\
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1487 If FUNCTION is already defined other than as an autoload,\n\
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1488 this does nothing and returns nil.")
1564
b327816041d1 * eval.c (Fautoload): Renamed fifth argument TYPE. Document the
Jim Blandy <jimb@redhat.com>
parents: 1452
diff changeset
1489 (function, file, docstring, interactive, type)
b327816041d1 * eval.c (Fautoload): Renamed fifth argument TYPE. Document the
Jim Blandy <jimb@redhat.com>
parents: 1452
diff changeset
1490 Lisp_Object function, file, docstring, interactive, type;
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1491 {
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1492 #ifdef NO_ARG_ARRAY
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1493 Lisp_Object args[4];
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1494 #endif
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1495
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1496 CHECK_SYMBOL (function, 0);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1497 CHECK_STRING (file, 1);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1498
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1499 /* If function is defined and not as an autoload, don't override */
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1500 if (!EQ (XSYMBOL (function)->function, Qunbound)
9148
e7ab930bb7eb (Fprogn, Finteractive_p, Fuser_variable_p, FletX, Flet, Fmacroexpand,
Karl Heuer <kwzh@gnu.org>
parents: 8980
diff changeset
1501 && !(CONSP (XSYMBOL (function)->function)
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1502 && EQ (XCONS (XSYMBOL (function)->function)->car, Qautoload)))
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1503 return Qnil;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1504
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1505 #ifdef NO_ARG_ARRAY
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1506 args[0] = file;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1507 args[1] = docstring;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1508 args[2] = interactive;
1564
b327816041d1 * eval.c (Fautoload): Renamed fifth argument TYPE. Document the
Jim Blandy <jimb@redhat.com>
parents: 1452
diff changeset
1509 args[3] = type;
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1510
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1511 return Ffset (function, Fcons (Qautoload, Flist (4, &args[0])));
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1512 #else /* NO_ARG_ARRAY */
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1513 return Ffset (function, Fcons (Qautoload, Flist (4, &file)));
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1514 #endif /* not NO_ARG_ARRAY */
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1515 }
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1516
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1517 Lisp_Object
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1518 un_autoload (oldqueue)
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1519 Lisp_Object oldqueue;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1520 {
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1521 register Lisp_Object queue, first, second;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1522
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1523 /* Queue to unwind is current value of Vautoload_queue.
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1524 oldqueue is the shadowed value to leave in Vautoload_queue. */
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1525 queue = Vautoload_queue;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1526 Vautoload_queue = oldqueue;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1527 while (CONSP (queue))
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1528 {
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1529 first = Fcar (queue);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1530 second = Fcdr (first);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1531 first = Fcar (first);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1532 if (EQ (second, Qnil))
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1533 Vfeatures = first;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1534 else
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1535 Ffset (first, second);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1536 queue = Fcdr (queue);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1537 }
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1538 return Qnil;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1539 }
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1540
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1541 do_autoload (fundef, funname)
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1542 Lisp_Object fundef, funname;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1543 {
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1544 int count = specpdl_ptr - specpdl;
2547
c73c68a87cd5 (defun, defmacro, defvar, defconst):
Richard M. Stallman <rms@gnu.org>
parents: 2439
diff changeset
1545 Lisp_Object fun, val, queue, first, second;
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1546
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1547 fun = funname;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1548 CHECK_SYMBOL (funname, 0);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1549
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1550 /* Value saved here is to be restored into Vautoload_queue */
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1551 record_unwind_protect (un_autoload, Vautoload_queue);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1552 Vautoload_queue = Qt;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1553 Fload (Fcar (Fcdr (fundef)), Qnil, noninteractive ? Qt : Qnil, Qnil);
2547
c73c68a87cd5 (defun, defmacro, defvar, defconst):
Richard M. Stallman <rms@gnu.org>
parents: 2439
diff changeset
1554
c73c68a87cd5 (defun, defmacro, defvar, defconst):
Richard M. Stallman <rms@gnu.org>
parents: 2439
diff changeset
1555 /* Save the old autoloads, in case we ever do an unload. */
c73c68a87cd5 (defun, defmacro, defvar, defconst):
Richard M. Stallman <rms@gnu.org>
parents: 2439
diff changeset
1556 queue = Vautoload_queue;
c73c68a87cd5 (defun, defmacro, defvar, defconst):
Richard M. Stallman <rms@gnu.org>
parents: 2439
diff changeset
1557 while (CONSP (queue))
c73c68a87cd5 (defun, defmacro, defvar, defconst):
Richard M. Stallman <rms@gnu.org>
parents: 2439
diff changeset
1558 {
c73c68a87cd5 (defun, defmacro, defvar, defconst):
Richard M. Stallman <rms@gnu.org>
parents: 2439
diff changeset
1559 first = Fcar (queue);
c73c68a87cd5 (defun, defmacro, defvar, defconst):
Richard M. Stallman <rms@gnu.org>
parents: 2439
diff changeset
1560 second = Fcdr (first);
c73c68a87cd5 (defun, defmacro, defvar, defconst):
Richard M. Stallman <rms@gnu.org>
parents: 2439
diff changeset
1561 first = Fcar (first);
2599
5122736c0a03 (do_autoload): Fixed the bug in the autoload-saving code.
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 2596
diff changeset
1562
5122736c0a03 (do_autoload): Fixed the bug in the autoload-saving code.
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 2596
diff changeset
1563 /* Note: This test is subtle. The cdr of an autoload-queue entry
5122736c0a03 (do_autoload): Fixed the bug in the autoload-saving code.
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 2596
diff changeset
1564 may be an atom if the autoload entry was generated by a defalias
5122736c0a03 (do_autoload): Fixed the bug in the autoload-saving code.
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 2596
diff changeset
1565 or fset. */
5122736c0a03 (do_autoload): Fixed the bug in the autoload-saving code.
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 2596
diff changeset
1566 if (CONSP (second))
4782
73203b90eb26 Whitespace fix.
Richard M. Stallman <rms@gnu.org>
parents: 4696
diff changeset
1567 Fput (first, Qautoload, (Fcdr (second)));
2599
5122736c0a03 (do_autoload): Fixed the bug in the autoload-saving code.
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 2596
diff changeset
1568
2547
c73c68a87cd5 (defun, defmacro, defvar, defconst):
Richard M. Stallman <rms@gnu.org>
parents: 2439
diff changeset
1569 queue = Fcdr (queue);
c73c68a87cd5 (defun, defmacro, defvar, defconst):
Richard M. Stallman <rms@gnu.org>
parents: 2439
diff changeset
1570 }
c73c68a87cd5 (defun, defmacro, defvar, defconst):
Richard M. Stallman <rms@gnu.org>
parents: 2439
diff changeset
1571
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1572 /* Once loading finishes, don't undo it. */
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1573 Vautoload_queue = Qt;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1574 unbind_to (count, Qnil);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1575
648
70b112526394 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 604
diff changeset
1576 fun = Findirect_function (fun);
70b112526394 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 604
diff changeset
1577
4462
9fbc6c74cab5 (do_autoload): Don't report autoload failure
Richard M. Stallman <rms@gnu.org>
parents: 4167
diff changeset
1578 if (!NILP (Fequal (fun, fundef)))
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1579 error ("Autoloading failed to define function %s",
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1580 XSYMBOL (funname)->name->data);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1581 }
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1582
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1583 DEFUN ("eval", Feval, Seval, 1, 1, 0,
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1584 "Evaluate FORM and return its value.")
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1585 (form)
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1586 Lisp_Object form;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1587 {
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1588 Lisp_Object fun, val, original_fun, original_args;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1589 Lisp_Object funcar;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1590 struct backtrace backtrace;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1591 struct gcpro gcpro1, gcpro2, gcpro3;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1592
9148
e7ab930bb7eb (Fprogn, Finteractive_p, Fuser_variable_p, FletX, Flet, Fmacroexpand,
Karl Heuer <kwzh@gnu.org>
parents: 8980
diff changeset
1593 if (SYMBOLP (form))
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1594 {
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1595 if (EQ (Vmocklisp_arguments, Qt))
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1596 return Fsymbol_value (form);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1597 val = Fsymbol_value (form);
485
8c615e453683 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 431
diff changeset
1598 if (NILP (val))
9306
ac852c183fa1 (Feval, Ffuncall, funcall_lambda, Fbacktrace): Don't use XFASTINT as an
Karl Heuer <kwzh@gnu.org>
parents: 9148
diff changeset
1599 XSETFASTINT (val, 0);
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1600 else if (EQ (val, Qt))
9306
ac852c183fa1 (Feval, Ffuncall, funcall_lambda, Fbacktrace): Don't use XFASTINT as an
Karl Heuer <kwzh@gnu.org>
parents: 9148
diff changeset
1601 XSETFASTINT (val, 1);
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1602 return val;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1603 }
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1604 if (!CONSP (form))
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1605 return form;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1606
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1607 QUIT;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1608 if (consing_since_gc > gc_cons_threshold)
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1609 {
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1610 GCPRO1 (form);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1611 Fgarbage_collect ();
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1612 UNGCPRO;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1613 }
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1614
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1615 if (++lisp_eval_depth > max_lisp_eval_depth)
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1616 {
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1617 if (max_lisp_eval_depth < 100)
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1618 max_lisp_eval_depth = 100;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1619 if (lisp_eval_depth > max_lisp_eval_depth)
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1620 error ("Lisp nesting exceeds max-lisp-eval-depth");
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1621 }
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1622
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1623 original_fun = Fcar (form);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1624 original_args = Fcdr (form);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1625
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1626 backtrace.next = backtrace_list;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1627 backtrace_list = &backtrace;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1628 backtrace.function = &original_fun; /* This also protects them from gc */
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1629 backtrace.args = &original_args;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1630 backtrace.nargs = UNEVALLED;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1631 backtrace.evalargs = 1;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1632 backtrace.debug_on_exit = 0;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1633
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1634 if (debug_on_next_call)
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1635 do_debug_on_call (Qt);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1636
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1637 /* At this point, only original_fun and original_args
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1638 have values that will be used below */
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1639 retry:
648
70b112526394 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 604
diff changeset
1640 fun = Findirect_function (original_fun);
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1641
9148
e7ab930bb7eb (Fprogn, Finteractive_p, Fuser_variable_p, FletX, Flet, Fmacroexpand,
Karl Heuer <kwzh@gnu.org>
parents: 8980
diff changeset
1642 if (SUBRP (fun))
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1643 {
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1644 Lisp_Object numargs;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1645 Lisp_Object argvals[7];
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1646 Lisp_Object args_left;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1647 register int i, maxargs;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1648
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1649 args_left = original_args;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1650 numargs = Flength (args_left);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1651
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1652 if (XINT (numargs) < XSUBR (fun)->min_args ||
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1653 (XSUBR (fun)->max_args >= 0 && XSUBR (fun)->max_args < XINT (numargs)))
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1654 return Fsignal (Qwrong_number_of_arguments, Fcons (fun, Fcons (numargs, Qnil)));
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1655
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1656 if (XSUBR (fun)->max_args == UNEVALLED)
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1657 {
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1658 backtrace.evalargs = 0;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1659 val = (*XSUBR (fun)->function) (args_left);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1660 goto done;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1661 }
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1662
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1663 if (XSUBR (fun)->max_args == MANY)
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1664 {
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1665 /* Pass a vector of evaluated arguments */
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1666 Lisp_Object *vals;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1667 register int argnum = 0;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1668
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1669 vals = (Lisp_Object *) alloca (XINT (numargs) * sizeof (Lisp_Object));
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1670
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1671 GCPRO3 (args_left, fun, fun);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1672 gcpro3.var = vals;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1673 gcpro3.nvars = 0;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1674
485
8c615e453683 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 431
diff changeset
1675 while (!NILP (args_left))
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1676 {
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1677 vals[argnum++] = Feval (Fcar (args_left));
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1678 args_left = Fcdr (args_left);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1679 gcpro3.nvars = argnum;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1680 }
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1681
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1682 backtrace.args = vals;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1683 backtrace.nargs = XINT (numargs);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1684
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1685 val = (*XSUBR (fun)->function) (XINT (numargs), vals);
323
9c2a1e7bd9f1 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 295
diff changeset
1686 UNGCPRO;
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1687 goto done;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1688 }
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1689
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1690 GCPRO3 (args_left, fun, fun);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1691 gcpro3.var = argvals;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1692 gcpro3.nvars = 0;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1693
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1694 maxargs = XSUBR (fun)->max_args;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1695 for (i = 0; i < maxargs; args_left = Fcdr (args_left))
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1696 {
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1697 argvals[i] = Feval (Fcar (args_left));
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1698 gcpro3.nvars = ++i;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1699 }
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1700
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1701 UNGCPRO;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1702
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1703 backtrace.args = argvals;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1704 backtrace.nargs = XINT (numargs);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1705
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1706 switch (i)
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1707 {
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1708 case 0:
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1709 val = (*XSUBR (fun)->function) ();
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1710 goto done;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1711 case 1:
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1712 val = (*XSUBR (fun)->function) (argvals[0]);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1713 goto done;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1714 case 2:
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1715 val = (*XSUBR (fun)->function) (argvals[0], argvals[1]);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1716 goto done;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1717 case 3:
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1718 val = (*XSUBR (fun)->function) (argvals[0], argvals[1],
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1719 argvals[2]);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1720 goto done;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1721 case 4:
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1722 val = (*XSUBR (fun)->function) (argvals[0], argvals[1],
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1723 argvals[2], argvals[3]);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1724 goto done;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1725 case 5:
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1726 val = (*XSUBR (fun)->function) (argvals[0], argvals[1], argvals[2],
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1727 argvals[3], argvals[4]);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1728 goto done;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1729 case 6:
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1730 val = (*XSUBR (fun)->function) (argvals[0], argvals[1], argvals[2],
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1731 argvals[3], argvals[4], argvals[5]);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1732 goto done;
863
427299469901 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 753
diff changeset
1733 case 7:
427299469901 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 753
diff changeset
1734 val = (*XSUBR (fun)->function) (argvals[0], argvals[1], argvals[2],
427299469901 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 753
diff changeset
1735 argvals[3], argvals[4], argvals[5],
427299469901 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 753
diff changeset
1736 argvals[6]);
427299469901 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 753
diff changeset
1737 goto done;
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1738
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1739 default:
604
63a8e7b3c547 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 573
diff changeset
1740 /* Someone has created a subr that takes more arguments than
63a8e7b3c547 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 573
diff changeset
1741 is supported by this code. We need to either rewrite the
63a8e7b3c547 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 573
diff changeset
1742 subr to use a different argument protocol, or add more
63a8e7b3c547 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 573
diff changeset
1743 cases to this switch. */
63a8e7b3c547 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 573
diff changeset
1744 abort ();
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1745 }
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1746 }
9148
e7ab930bb7eb (Fprogn, Finteractive_p, Fuser_variable_p, FletX, Flet, Fmacroexpand,
Karl Heuer <kwzh@gnu.org>
parents: 8980
diff changeset
1747 if (COMPILEDP (fun))
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1748 val = apply_lambda (fun, original_args, 1);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1749 else
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1750 {
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1751 if (!CONSP (fun))
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1752 return Fsignal (Qinvalid_function, Fcons (fun, Qnil));
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1753 funcar = Fcar (fun);
9148
e7ab930bb7eb (Fprogn, Finteractive_p, Fuser_variable_p, FletX, Flet, Fmacroexpand,
Karl Heuer <kwzh@gnu.org>
parents: 8980
diff changeset
1754 if (!SYMBOLP (funcar))
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1755 return Fsignal (Qinvalid_function, Fcons (fun, Qnil));
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1756 if (EQ (funcar, Qautoload))
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1757 {
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1758 do_autoload (fun, original_fun);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1759 goto retry;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1760 }
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1761 if (EQ (funcar, Qmacro))
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1762 val = Feval (apply1 (Fcdr (fun), original_args));
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1763 else if (EQ (funcar, Qlambda))
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1764 val = apply_lambda (fun, original_args, 1);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1765 else if (EQ (funcar, Qmocklisp))
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1766 val = ml_apply (fun, original_args);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1767 else
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1768 return Fsignal (Qinvalid_function, Fcons (fun, Qnil));
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1769 }
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1770 done:
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1771 if (!EQ (Vmocklisp_arguments, Qt))
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1772 {
485
8c615e453683 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 431
diff changeset
1773 if (NILP (val))
9306
ac852c183fa1 (Feval, Ffuncall, funcall_lambda, Fbacktrace): Don't use XFASTINT as an
Karl Heuer <kwzh@gnu.org>
parents: 9148
diff changeset
1774 XSETFASTINT (val, 0);
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1775 else if (EQ (val, Qt))
9306
ac852c183fa1 (Feval, Ffuncall, funcall_lambda, Fbacktrace): Don't use XFASTINT as an
Karl Heuer <kwzh@gnu.org>
parents: 9148
diff changeset
1776 XSETFASTINT (val, 1);
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1777 }
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1778 lisp_eval_depth--;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1779 if (backtrace.debug_on_exit)
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1780 val = call_debugger (Fcons (Qexit, Fcons (val, Qnil)));
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1781 backtrace_list = backtrace.next;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1782 return val;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1783 }
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1784
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1785 DEFUN ("apply", Fapply, Sapply, 2, MANY, 0,
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1786 "Call FUNCTION with our remaining args, using our last arg as list of args.\n\
12583
73ac42b9be24 (Ffuncall, Fapply): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 11481
diff changeset
1787 Then return the value FUNCTION returns.\n\
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1788 Thus, (apply '+ 1 2 '(3 4)) returns 10.")
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1789 (nargs, args)
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1790 int nargs;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1791 Lisp_Object *args;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1792 {
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1793 register int i, numargs;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1794 register Lisp_Object spread_arg;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1795 register Lisp_Object *funcall_args;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1796 Lisp_Object fun;
323
9c2a1e7bd9f1 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 295
diff changeset
1797 struct gcpro gcpro1;
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1798
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1799 fun = args [0];
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1800 funcall_args = 0;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1801 spread_arg = args [nargs - 1];
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1802 CHECK_LIST (spread_arg, nargs);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1803
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1804 numargs = XINT (Flength (spread_arg));
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1805
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1806 if (numargs == 0)
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1807 return Ffuncall (nargs - 1, args);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1808 else if (numargs == 1)
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1809 {
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1810 args [nargs - 1] = XCONS (spread_arg)->car;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1811 return Ffuncall (nargs, args);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1812 }
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1813
323
9c2a1e7bd9f1 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 295
diff changeset
1814 numargs += nargs - 2;
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1815
648
70b112526394 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 604
diff changeset
1816 fun = indirect_function (fun);
70b112526394 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 604
diff changeset
1817 if (EQ (fun, Qunbound))
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1818 {
648
70b112526394 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 604
diff changeset
1819 /* Let funcall get the error */
70b112526394 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 604
diff changeset
1820 fun = args[0];
70b112526394 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 604
diff changeset
1821 goto funcall;
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1822 }
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1823
9148
e7ab930bb7eb (Fprogn, Finteractive_p, Fuser_variable_p, FletX, Flet, Fmacroexpand,
Karl Heuer <kwzh@gnu.org>
parents: 8980
diff changeset
1824 if (SUBRP (fun))
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1825 {
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1826 if (numargs < XSUBR (fun)->min_args
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1827 || (XSUBR (fun)->max_args >= 0 && XSUBR (fun)->max_args < numargs))
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1828 goto funcall; /* Let funcall get the error */
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1829 else if (XSUBR (fun)->max_args > numargs)
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1830 {
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1831 /* Avoid making funcall cons up a yet another new vector of arguments
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1832 by explicitly supplying nil's for optional values */
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1833 funcall_args = (Lisp_Object *) alloca ((1 + XSUBR (fun)->max_args)
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1834 * sizeof (Lisp_Object));
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1835 for (i = numargs; i < XSUBR (fun)->max_args;)
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1836 funcall_args[++i] = Qnil;
323
9c2a1e7bd9f1 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 295
diff changeset
1837 GCPRO1 (*funcall_args);
9c2a1e7bd9f1 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 295
diff changeset
1838 gcpro1.nvars = 1 + XSUBR (fun)->max_args;
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1839 }
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1840 }
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1841 funcall:
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1842 /* We add 1 to numargs because funcall_args includes the
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1843 function itself as well as its arguments. */
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1844 if (!funcall_args)
323
9c2a1e7bd9f1 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 295
diff changeset
1845 {
9c2a1e7bd9f1 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 295
diff changeset
1846 funcall_args = (Lisp_Object *) alloca ((1 + numargs)
9c2a1e7bd9f1 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 295
diff changeset
1847 * sizeof (Lisp_Object));
9c2a1e7bd9f1 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 295
diff changeset
1848 GCPRO1 (*funcall_args);
9c2a1e7bd9f1 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 295
diff changeset
1849 gcpro1.nvars = 1 + numargs;
9c2a1e7bd9f1 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 295
diff changeset
1850 }
9c2a1e7bd9f1 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 295
diff changeset
1851
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1852 bcopy (args, funcall_args, nargs * sizeof (Lisp_Object));
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1853 /* Spread the last arg we got. Its first element goes in
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1854 the slot that it used to occupy, hence this value of I. */
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1855 i = nargs - 1;
485
8c615e453683 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 431
diff changeset
1856 while (!NILP (spread_arg))
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1857 {
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1858 funcall_args [i++] = XCONS (spread_arg)->car;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1859 spread_arg = XCONS (spread_arg)->cdr;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1860 }
323
9c2a1e7bd9f1 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 295
diff changeset
1861
9c2a1e7bd9f1 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 295
diff changeset
1862 RETURN_UNGCPRO (Ffuncall (gcpro1.nvars, funcall_args));
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1863 }
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1864
12732
981b924c832b Add Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success, Frun_hook_with_args_until_failure in terms of run_hook_with_args.
Simon Marshall <simon@gnu.org>
parents: 12711
diff changeset
1865 /* Run hook variables in various ways. */
981b924c832b Add Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success, Frun_hook_with_args_until_failure in terms of run_hook_with_args.
Simon Marshall <simon@gnu.org>
parents: 12711
diff changeset
1866
981b924c832b Add Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success, Frun_hook_with_args_until_failure in terms of run_hook_with_args.
Simon Marshall <simon@gnu.org>
parents: 12711
diff changeset
1867 enum run_hooks_condition {to_completion, until_success, until_failure};
981b924c832b Add Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success, Frun_hook_with_args_until_failure in terms of run_hook_with_args.
Simon Marshall <simon@gnu.org>
parents: 12711
diff changeset
1868
981b924c832b Add Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success, Frun_hook_with_args_until_failure in terms of run_hook_with_args.
Simon Marshall <simon@gnu.org>
parents: 12711
diff changeset
1869 DEFUN ("run-hooks", Frun_hooks, Srun_hooks, 1, MANY, 0,
981b924c832b Add Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success, Frun_hook_with_args_until_failure in terms of run_hook_with_args.
Simon Marshall <simon@gnu.org>
parents: 12711
diff changeset
1870 "Run each hook in HOOKS. Major mode functions use this.\n\
981b924c832b Add Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success, Frun_hook_with_args_until_failure in terms of run_hook_with_args.
Simon Marshall <simon@gnu.org>
parents: 12711
diff changeset
1871 Each argument should be a symbol, a hook variable.\n\
981b924c832b Add Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success, Frun_hook_with_args_until_failure in terms of run_hook_with_args.
Simon Marshall <simon@gnu.org>
parents: 12711
diff changeset
1872 These symbols are processed in the order specified.\n\
981b924c832b Add Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success, Frun_hook_with_args_until_failure in terms of run_hook_with_args.
Simon Marshall <simon@gnu.org>
parents: 12711
diff changeset
1873 If a hook symbol has a non-nil value, that value may be a function\n\
981b924c832b Add Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success, Frun_hook_with_args_until_failure in terms of run_hook_with_args.
Simon Marshall <simon@gnu.org>
parents: 12711
diff changeset
1874 or a list of functions to be called to run the hook.\n\
981b924c832b Add Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success, Frun_hook_with_args_until_failure in terms of run_hook_with_args.
Simon Marshall <simon@gnu.org>
parents: 12711
diff changeset
1875 If the value is a function, it is called with no arguments.\n\
981b924c832b Add Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success, Frun_hook_with_args_until_failure in terms of run_hook_with_args.
Simon Marshall <simon@gnu.org>
parents: 12711
diff changeset
1876 If it is a list, the elements are called, in order, with no arguments.\n\
981b924c832b Add Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success, Frun_hook_with_args_until_failure in terms of run_hook_with_args.
Simon Marshall <simon@gnu.org>
parents: 12711
diff changeset
1877 \n\
981b924c832b Add Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success, Frun_hook_with_args_until_failure in terms of run_hook_with_args.
Simon Marshall <simon@gnu.org>
parents: 12711
diff changeset
1878 To make a hook variable buffer-local, use `make-local-hook',\n\
981b924c832b Add Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success, Frun_hook_with_args_until_failure in terms of run_hook_with_args.
Simon Marshall <simon@gnu.org>
parents: 12711
diff changeset
1879 not `make-local-variable'.")
981b924c832b Add Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success, Frun_hook_with_args_until_failure in terms of run_hook_with_args.
Simon Marshall <simon@gnu.org>
parents: 12711
diff changeset
1880 (nargs, args)
981b924c832b Add Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success, Frun_hook_with_args_until_failure in terms of run_hook_with_args.
Simon Marshall <simon@gnu.org>
parents: 12711
diff changeset
1881 int nargs;
981b924c832b Add Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success, Frun_hook_with_args_until_failure in terms of run_hook_with_args.
Simon Marshall <simon@gnu.org>
parents: 12711
diff changeset
1882 Lisp_Object *args;
981b924c832b Add Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success, Frun_hook_with_args_until_failure in terms of run_hook_with_args.
Simon Marshall <simon@gnu.org>
parents: 12711
diff changeset
1883 {
981b924c832b Add Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success, Frun_hook_with_args_until_failure in terms of run_hook_with_args.
Simon Marshall <simon@gnu.org>
parents: 12711
diff changeset
1884 Lisp_Object hook[1];
981b924c832b Add Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success, Frun_hook_with_args_until_failure in terms of run_hook_with_args.
Simon Marshall <simon@gnu.org>
parents: 12711
diff changeset
1885 register int i;
981b924c832b Add Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success, Frun_hook_with_args_until_failure in terms of run_hook_with_args.
Simon Marshall <simon@gnu.org>
parents: 12711
diff changeset
1886
981b924c832b Add Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success, Frun_hook_with_args_until_failure in terms of run_hook_with_args.
Simon Marshall <simon@gnu.org>
parents: 12711
diff changeset
1887 for (i = 0; i < nargs; i++)
981b924c832b Add Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success, Frun_hook_with_args_until_failure in terms of run_hook_with_args.
Simon Marshall <simon@gnu.org>
parents: 12711
diff changeset
1888 {
981b924c832b Add Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success, Frun_hook_with_args_until_failure in terms of run_hook_with_args.
Simon Marshall <simon@gnu.org>
parents: 12711
diff changeset
1889 hook[0] = args[i];
981b924c832b Add Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success, Frun_hook_with_args_until_failure in terms of run_hook_with_args.
Simon Marshall <simon@gnu.org>
parents: 12711
diff changeset
1890 run_hook_with_args (1, hook, to_completion);
981b924c832b Add Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success, Frun_hook_with_args_until_failure in terms of run_hook_with_args.
Simon Marshall <simon@gnu.org>
parents: 12711
diff changeset
1891 }
981b924c832b Add Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success, Frun_hook_with_args_until_failure in terms of run_hook_with_args.
Simon Marshall <simon@gnu.org>
parents: 12711
diff changeset
1892
981b924c832b Add Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success, Frun_hook_with_args_until_failure in terms of run_hook_with_args.
Simon Marshall <simon@gnu.org>
parents: 12711
diff changeset
1893 return Qnil;
981b924c832b Add Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success, Frun_hook_with_args_until_failure in terms of run_hook_with_args.
Simon Marshall <simon@gnu.org>
parents: 12711
diff changeset
1894 }
981b924c832b Add Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success, Frun_hook_with_args_until_failure in terms of run_hook_with_args.
Simon Marshall <simon@gnu.org>
parents: 12711
diff changeset
1895
981b924c832b Add Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success, Frun_hook_with_args_until_failure in terms of run_hook_with_args.
Simon Marshall <simon@gnu.org>
parents: 12711
diff changeset
1896 DEFUN ("run-hook-with-args",
981b924c832b Add Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success, Frun_hook_with_args_until_failure in terms of run_hook_with_args.
Simon Marshall <simon@gnu.org>
parents: 12711
diff changeset
1897 Frun_hook_with_args, Srun_hook_with_args, 1, MANY, 0,
12654
14721fd8dcc1 (Frun_hook_with_args): New C function, formerly in subr.el.
Karl Heuer <kwzh@gnu.org>
parents: 12583
diff changeset
1898 "Run HOOK with the specified arguments ARGS.\n\
14721fd8dcc1 (Frun_hook_with_args): New C function, formerly in subr.el.
Karl Heuer <kwzh@gnu.org>
parents: 12583
diff changeset
1899 HOOK should be a symbol, a hook variable. If HOOK has a non-nil\n\
14721fd8dcc1 (Frun_hook_with_args): New C function, formerly in subr.el.
Karl Heuer <kwzh@gnu.org>
parents: 12583
diff changeset
1900 value, that value may be a function or a list of functions to be\n\
14721fd8dcc1 (Frun_hook_with_args): New C function, formerly in subr.el.
Karl Heuer <kwzh@gnu.org>
parents: 12583
diff changeset
1901 called to run the hook. If the value is a function, it is called with\n\
14721fd8dcc1 (Frun_hook_with_args): New C function, formerly in subr.el.
Karl Heuer <kwzh@gnu.org>
parents: 12583
diff changeset
1902 the given arguments and its return value is returned. If it is a list\n\
14721fd8dcc1 (Frun_hook_with_args): New C function, formerly in subr.el.
Karl Heuer <kwzh@gnu.org>
parents: 12583
diff changeset
1903 of functions, those functions are called, in order,\n\
14721fd8dcc1 (Frun_hook_with_args): New C function, formerly in subr.el.
Karl Heuer <kwzh@gnu.org>
parents: 12583
diff changeset
1904 with the given arguments ARGS.\n\
14721fd8dcc1 (Frun_hook_with_args): New C function, formerly in subr.el.
Karl Heuer <kwzh@gnu.org>
parents: 12583
diff changeset
1905 It is best not to depend on the value return by `run-hook-with-args',\n\
14721fd8dcc1 (Frun_hook_with_args): New C function, formerly in subr.el.
Karl Heuer <kwzh@gnu.org>
parents: 12583
diff changeset
1906 as that may change.\n\
14721fd8dcc1 (Frun_hook_with_args): New C function, formerly in subr.el.
Karl Heuer <kwzh@gnu.org>
parents: 12583
diff changeset
1907 \n\
12732
981b924c832b Add Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success, Frun_hook_with_args_until_failure in terms of run_hook_with_args.
Simon Marshall <simon@gnu.org>
parents: 12711
diff changeset
1908 To make a hook variable buffer-local, use `make-local-hook',\n\
981b924c832b Add Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success, Frun_hook_with_args_until_failure in terms of run_hook_with_args.
Simon Marshall <simon@gnu.org>
parents: 12711
diff changeset
1909 not `make-local-variable'.")
981b924c832b Add Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success, Frun_hook_with_args_until_failure in terms of run_hook_with_args.
Simon Marshall <simon@gnu.org>
parents: 12711
diff changeset
1910 (nargs, args)
981b924c832b Add Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success, Frun_hook_with_args_until_failure in terms of run_hook_with_args.
Simon Marshall <simon@gnu.org>
parents: 12711
diff changeset
1911 int nargs;
981b924c832b Add Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success, Frun_hook_with_args_until_failure in terms of run_hook_with_args.
Simon Marshall <simon@gnu.org>
parents: 12711
diff changeset
1912 Lisp_Object *args;
981b924c832b Add Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success, Frun_hook_with_args_until_failure in terms of run_hook_with_args.
Simon Marshall <simon@gnu.org>
parents: 12711
diff changeset
1913 {
981b924c832b Add Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success, Frun_hook_with_args_until_failure in terms of run_hook_with_args.
Simon Marshall <simon@gnu.org>
parents: 12711
diff changeset
1914 return run_hook_with_args (nargs, args, to_completion);
981b924c832b Add Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success, Frun_hook_with_args_until_failure in terms of run_hook_with_args.
Simon Marshall <simon@gnu.org>
parents: 12711
diff changeset
1915 }
981b924c832b Add Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success, Frun_hook_with_args_until_failure in terms of run_hook_with_args.
Simon Marshall <simon@gnu.org>
parents: 12711
diff changeset
1916
981b924c832b Add Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success, Frun_hook_with_args_until_failure in terms of run_hook_with_args.
Simon Marshall <simon@gnu.org>
parents: 12711
diff changeset
1917 DEFUN ("run-hook-with-args-until-success",
981b924c832b Add Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success, Frun_hook_with_args_until_failure in terms of run_hook_with_args.
Simon Marshall <simon@gnu.org>
parents: 12711
diff changeset
1918 Frun_hook_with_args_until_success, Srun_hook_with_args_until_success,
981b924c832b Add Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success, Frun_hook_with_args_until_failure in terms of run_hook_with_args.
Simon Marshall <simon@gnu.org>
parents: 12711
diff changeset
1919 1, MANY, 0,
981b924c832b Add Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success, Frun_hook_with_args_until_failure in terms of run_hook_with_args.
Simon Marshall <simon@gnu.org>
parents: 12711
diff changeset
1920 "Run HOOK with the specified arguments ARGS.\n\
981b924c832b Add Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success, Frun_hook_with_args_until_failure in terms of run_hook_with_args.
Simon Marshall <simon@gnu.org>
parents: 12711
diff changeset
1921 HOOK should be a symbol, a hook variable. Its value should\n\
981b924c832b Add Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success, Frun_hook_with_args_until_failure in terms of run_hook_with_args.
Simon Marshall <simon@gnu.org>
parents: 12711
diff changeset
1922 be a list of functions. We call those functions, one by one,\n\
981b924c832b Add Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success, Frun_hook_with_args_until_failure in terms of run_hook_with_args.
Simon Marshall <simon@gnu.org>
parents: 12711
diff changeset
1923 passing arguments ARGS to each of them, until one of them\n\
981b924c832b Add Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success, Frun_hook_with_args_until_failure in terms of run_hook_with_args.
Simon Marshall <simon@gnu.org>
parents: 12711
diff changeset
1924 returns a non-nil value. Then we return that value.\n\
981b924c832b Add Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success, Frun_hook_with_args_until_failure in terms of run_hook_with_args.
Simon Marshall <simon@gnu.org>
parents: 12711
diff changeset
1925 If all the functions return nil, we return nil.\n\
981b924c832b Add Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success, Frun_hook_with_args_until_failure in terms of run_hook_with_args.
Simon Marshall <simon@gnu.org>
parents: 12711
diff changeset
1926 \n\
981b924c832b Add Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success, Frun_hook_with_args_until_failure in terms of run_hook_with_args.
Simon Marshall <simon@gnu.org>
parents: 12711
diff changeset
1927 To make a hook variable buffer-local, use `make-local-hook',\n\
981b924c832b Add Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success, Frun_hook_with_args_until_failure in terms of run_hook_with_args.
Simon Marshall <simon@gnu.org>
parents: 12711
diff changeset
1928 not `make-local-variable'.")
12654
14721fd8dcc1 (Frun_hook_with_args): New C function, formerly in subr.el.
Karl Heuer <kwzh@gnu.org>
parents: 12583
diff changeset
1929 (nargs, args)
14721fd8dcc1 (Frun_hook_with_args): New C function, formerly in subr.el.
Karl Heuer <kwzh@gnu.org>
parents: 12583
diff changeset
1930 int nargs;
14721fd8dcc1 (Frun_hook_with_args): New C function, formerly in subr.el.
Karl Heuer <kwzh@gnu.org>
parents: 12583
diff changeset
1931 Lisp_Object *args;
14721fd8dcc1 (Frun_hook_with_args): New C function, formerly in subr.el.
Karl Heuer <kwzh@gnu.org>
parents: 12583
diff changeset
1932 {
12732
981b924c832b Add Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success, Frun_hook_with_args_until_failure in terms of run_hook_with_args.
Simon Marshall <simon@gnu.org>
parents: 12711
diff changeset
1933 return run_hook_with_args (nargs, args, until_success);
981b924c832b Add Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success, Frun_hook_with_args_until_failure in terms of run_hook_with_args.
Simon Marshall <simon@gnu.org>
parents: 12711
diff changeset
1934 }
981b924c832b Add Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success, Frun_hook_with_args_until_failure in terms of run_hook_with_args.
Simon Marshall <simon@gnu.org>
parents: 12711
diff changeset
1935
981b924c832b Add Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success, Frun_hook_with_args_until_failure in terms of run_hook_with_args.
Simon Marshall <simon@gnu.org>
parents: 12711
diff changeset
1936 DEFUN ("run-hook-with-args-until-failure",
981b924c832b Add Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success, Frun_hook_with_args_until_failure in terms of run_hook_with_args.
Simon Marshall <simon@gnu.org>
parents: 12711
diff changeset
1937 Frun_hook_with_args_until_failure, Srun_hook_with_args_until_failure,
981b924c832b Add Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success, Frun_hook_with_args_until_failure in terms of run_hook_with_args.
Simon Marshall <simon@gnu.org>
parents: 12711
diff changeset
1938 1, MANY, 0,
981b924c832b Add Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success, Frun_hook_with_args_until_failure in terms of run_hook_with_args.
Simon Marshall <simon@gnu.org>
parents: 12711
diff changeset
1939 "Run HOOK with the specified arguments ARGS.\n\
981b924c832b Add Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success, Frun_hook_with_args_until_failure in terms of run_hook_with_args.
Simon Marshall <simon@gnu.org>
parents: 12711
diff changeset
1940 HOOK should be a symbol, a hook variable. Its value should\n\
981b924c832b Add Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success, Frun_hook_with_args_until_failure in terms of run_hook_with_args.
Simon Marshall <simon@gnu.org>
parents: 12711
diff changeset
1941 be a list of functions. We call those functions, one by one,\n\
981b924c832b Add Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success, Frun_hook_with_args_until_failure in terms of run_hook_with_args.
Simon Marshall <simon@gnu.org>
parents: 12711
diff changeset
1942 passing arguments ARGS to each of them, until one of them\n\
981b924c832b Add Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success, Frun_hook_with_args_until_failure in terms of run_hook_with_args.
Simon Marshall <simon@gnu.org>
parents: 12711
diff changeset
1943 returns nil. Then we return nil.\n\
981b924c832b Add Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success, Frun_hook_with_args_until_failure in terms of run_hook_with_args.
Simon Marshall <simon@gnu.org>
parents: 12711
diff changeset
1944 If all the functions return non-nil, we return non-nil.\n\
981b924c832b Add Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success, Frun_hook_with_args_until_failure in terms of run_hook_with_args.
Simon Marshall <simon@gnu.org>
parents: 12711
diff changeset
1945 \n\
981b924c832b Add Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success, Frun_hook_with_args_until_failure in terms of run_hook_with_args.
Simon Marshall <simon@gnu.org>
parents: 12711
diff changeset
1946 To make a hook variable buffer-local, use `make-local-hook',\n\
981b924c832b Add Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success, Frun_hook_with_args_until_failure in terms of run_hook_with_args.
Simon Marshall <simon@gnu.org>
parents: 12711
diff changeset
1947 not `make-local-variable'.")
981b924c832b Add Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success, Frun_hook_with_args_until_failure in terms of run_hook_with_args.
Simon Marshall <simon@gnu.org>
parents: 12711
diff changeset
1948 (nargs, args)
981b924c832b Add Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success, Frun_hook_with_args_until_failure in terms of run_hook_with_args.
Simon Marshall <simon@gnu.org>
parents: 12711
diff changeset
1949 int nargs;
981b924c832b Add Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success, Frun_hook_with_args_until_failure in terms of run_hook_with_args.
Simon Marshall <simon@gnu.org>
parents: 12711
diff changeset
1950 Lisp_Object *args;
981b924c832b Add Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success, Frun_hook_with_args_until_failure in terms of run_hook_with_args.
Simon Marshall <simon@gnu.org>
parents: 12711
diff changeset
1951 {
981b924c832b Add Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success, Frun_hook_with_args_until_failure in terms of run_hook_with_args.
Simon Marshall <simon@gnu.org>
parents: 12711
diff changeset
1952 return run_hook_with_args (nargs, args, until_failure);
981b924c832b Add Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success, Frun_hook_with_args_until_failure in terms of run_hook_with_args.
Simon Marshall <simon@gnu.org>
parents: 12711
diff changeset
1953 }
981b924c832b Add Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success, Frun_hook_with_args_until_failure in terms of run_hook_with_args.
Simon Marshall <simon@gnu.org>
parents: 12711
diff changeset
1954
12781
2a8036f0b585 (run_hook_with_args): Add gcpros.
Richard M. Stallman <rms@gnu.org>
parents: 12732
diff changeset
1955 /* ARGS[0] should be a hook symbol.
2a8036f0b585 (run_hook_with_args): Add gcpros.
Richard M. Stallman <rms@gnu.org>
parents: 12732
diff changeset
1956 Call each of the functions in the hook value, passing each of them
2a8036f0b585 (run_hook_with_args): Add gcpros.
Richard M. Stallman <rms@gnu.org>
parents: 12732
diff changeset
1957 as arguments all the rest of ARGS (all NARGS - 1 elements).
2a8036f0b585 (run_hook_with_args): Add gcpros.
Richard M. Stallman <rms@gnu.org>
parents: 12732
diff changeset
1958 COND specifies a condition to test after each call
2a8036f0b585 (run_hook_with_args): Add gcpros.
Richard M. Stallman <rms@gnu.org>
parents: 12732
diff changeset
1959 to decide whether to stop.
2a8036f0b585 (run_hook_with_args): Add gcpros.
Richard M. Stallman <rms@gnu.org>
parents: 12732
diff changeset
1960 The caller (or its caller, etc) must gcpro all of ARGS,
2a8036f0b585 (run_hook_with_args): Add gcpros.
Richard M. Stallman <rms@gnu.org>
parents: 12732
diff changeset
1961 except that it isn't necessary to gcpro ARGS[0]. */
2a8036f0b585 (run_hook_with_args): Add gcpros.
Richard M. Stallman <rms@gnu.org>
parents: 12732
diff changeset
1962
12732
981b924c832b Add Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success, Frun_hook_with_args_until_failure in terms of run_hook_with_args.
Simon Marshall <simon@gnu.org>
parents: 12711
diff changeset
1963 Lisp_Object
981b924c832b Add Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success, Frun_hook_with_args_until_failure in terms of run_hook_with_args.
Simon Marshall <simon@gnu.org>
parents: 12711
diff changeset
1964 run_hook_with_args (nargs, args, cond)
981b924c832b Add Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success, Frun_hook_with_args_until_failure in terms of run_hook_with_args.
Simon Marshall <simon@gnu.org>
parents: 12711
diff changeset
1965 int nargs;
981b924c832b Add Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success, Frun_hook_with_args_until_failure in terms of run_hook_with_args.
Simon Marshall <simon@gnu.org>
parents: 12711
diff changeset
1966 Lisp_Object *args;
981b924c832b Add Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success, Frun_hook_with_args_until_failure in terms of run_hook_with_args.
Simon Marshall <simon@gnu.org>
parents: 12711
diff changeset
1967 enum run_hooks_condition cond;
981b924c832b Add Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success, Frun_hook_with_args_until_failure in terms of run_hook_with_args.
Simon Marshall <simon@gnu.org>
parents: 12711
diff changeset
1968 {
981b924c832b Add Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success, Frun_hook_with_args_until_failure in terms of run_hook_with_args.
Simon Marshall <simon@gnu.org>
parents: 12711
diff changeset
1969 Lisp_Object sym, val, ret;
12781
2a8036f0b585 (run_hook_with_args): Add gcpros.
Richard M. Stallman <rms@gnu.org>
parents: 12732
diff changeset
1970 struct gcpro gcpro1, gcpro2;
12654
14721fd8dcc1 (Frun_hook_with_args): New C function, formerly in subr.el.
Karl Heuer <kwzh@gnu.org>
parents: 12583
diff changeset
1971
14721fd8dcc1 (Frun_hook_with_args): New C function, formerly in subr.el.
Karl Heuer <kwzh@gnu.org>
parents: 12583
diff changeset
1972 sym = args[0];
12663
14d407b83eb3 (run-hook-with-args): Fix previous code.
Karl Heuer <kwzh@gnu.org>
parents: 12654
diff changeset
1973 val = find_symbol_value (sym);
12732
981b924c832b Add Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success, Frun_hook_with_args_until_failure in terms of run_hook_with_args.
Simon Marshall <simon@gnu.org>
parents: 12711
diff changeset
1974 ret = (cond == until_failure ? Qt : Qnil);
981b924c832b Add Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success, Frun_hook_with_args_until_failure in terms of run_hook_with_args.
Simon Marshall <simon@gnu.org>
parents: 12711
diff changeset
1975
12654
14721fd8dcc1 (Frun_hook_with_args): New C function, formerly in subr.el.
Karl Heuer <kwzh@gnu.org>
parents: 12583
diff changeset
1976 if (EQ (val, Qunbound) || NILP (val))
12732
981b924c832b Add Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success, Frun_hook_with_args_until_failure in terms of run_hook_with_args.
Simon Marshall <simon@gnu.org>
parents: 12711
diff changeset
1977 return ret;
12654
14721fd8dcc1 (Frun_hook_with_args): New C function, formerly in subr.el.
Karl Heuer <kwzh@gnu.org>
parents: 12583
diff changeset
1978 else if (!CONSP (val) || EQ (XCONS (val)->car, Qlambda))
14721fd8dcc1 (Frun_hook_with_args): New C function, formerly in subr.el.
Karl Heuer <kwzh@gnu.org>
parents: 12583
diff changeset
1979 {
14721fd8dcc1 (Frun_hook_with_args): New C function, formerly in subr.el.
Karl Heuer <kwzh@gnu.org>
parents: 12583
diff changeset
1980 args[0] = val;
14721fd8dcc1 (Frun_hook_with_args): New C function, formerly in subr.el.
Karl Heuer <kwzh@gnu.org>
parents: 12583
diff changeset
1981 return Ffuncall (nargs, args);
14721fd8dcc1 (Frun_hook_with_args): New C function, formerly in subr.el.
Karl Heuer <kwzh@gnu.org>
parents: 12583
diff changeset
1982 }
14721fd8dcc1 (Frun_hook_with_args): New C function, formerly in subr.el.
Karl Heuer <kwzh@gnu.org>
parents: 12583
diff changeset
1983 else
14721fd8dcc1 (Frun_hook_with_args): New C function, formerly in subr.el.
Karl Heuer <kwzh@gnu.org>
parents: 12583
diff changeset
1984 {
12788
eceb3f25e115 (run_hook_with_args): Move the GCPRO2; add UNGCPRO.
Richard M. Stallman <rms@gnu.org>
parents: 12781
diff changeset
1985 GCPRO2 (sym, val);
eceb3f25e115 (run_hook_with_args): Move the GCPRO2; add UNGCPRO.
Richard M. Stallman <rms@gnu.org>
parents: 12781
diff changeset
1986
12732
981b924c832b Add Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success, Frun_hook_with_args_until_failure in terms of run_hook_with_args.
Simon Marshall <simon@gnu.org>
parents: 12711
diff changeset
1987 for (;
981b924c832b Add Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success, Frun_hook_with_args_until_failure in terms of run_hook_with_args.
Simon Marshall <simon@gnu.org>
parents: 12711
diff changeset
1988 CONSP (val) && ((cond == to_completion)
981b924c832b Add Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success, Frun_hook_with_args_until_failure in terms of run_hook_with_args.
Simon Marshall <simon@gnu.org>
parents: 12711
diff changeset
1989 || (cond == until_success ? NILP (ret)
981b924c832b Add Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success, Frun_hook_with_args_until_failure in terms of run_hook_with_args.
Simon Marshall <simon@gnu.org>
parents: 12711
diff changeset
1990 : !NILP (ret)));
981b924c832b Add Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success, Frun_hook_with_args_until_failure in terms of run_hook_with_args.
Simon Marshall <simon@gnu.org>
parents: 12711
diff changeset
1991 val = XCONS (val)->cdr)
12654
14721fd8dcc1 (Frun_hook_with_args): New C function, formerly in subr.el.
Karl Heuer <kwzh@gnu.org>
parents: 12583
diff changeset
1992 {
14721fd8dcc1 (Frun_hook_with_args): New C function, formerly in subr.el.
Karl Heuer <kwzh@gnu.org>
parents: 12583
diff changeset
1993 if (EQ (XCONS (val)->car, Qt))
14721fd8dcc1 (Frun_hook_with_args): New C function, formerly in subr.el.
Karl Heuer <kwzh@gnu.org>
parents: 12583
diff changeset
1994 {
14721fd8dcc1 (Frun_hook_with_args): New C function, formerly in subr.el.
Karl Heuer <kwzh@gnu.org>
parents: 12583
diff changeset
1995 /* t indicates this hook has a local binding;
14721fd8dcc1 (Frun_hook_with_args): New C function, formerly in subr.el.
Karl Heuer <kwzh@gnu.org>
parents: 12583
diff changeset
1996 it means to run the global binding too. */
14721fd8dcc1 (Frun_hook_with_args): New C function, formerly in subr.el.
Karl Heuer <kwzh@gnu.org>
parents: 12583
diff changeset
1997 Lisp_Object globals;
14721fd8dcc1 (Frun_hook_with_args): New C function, formerly in subr.el.
Karl Heuer <kwzh@gnu.org>
parents: 12583
diff changeset
1998
12732
981b924c832b Add Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success, Frun_hook_with_args_until_failure in terms of run_hook_with_args.
Simon Marshall <simon@gnu.org>
parents: 12711
diff changeset
1999 for (globals = Fdefault_value (sym);
981b924c832b Add Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success, Frun_hook_with_args_until_failure in terms of run_hook_with_args.
Simon Marshall <simon@gnu.org>
parents: 12711
diff changeset
2000 CONSP (globals) && ((cond == to_completion)
981b924c832b Add Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success, Frun_hook_with_args_until_failure in terms of run_hook_with_args.
Simon Marshall <simon@gnu.org>
parents: 12711
diff changeset
2001 || (cond == until_success ? NILP (ret)
981b924c832b Add Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success, Frun_hook_with_args_until_failure in terms of run_hook_with_args.
Simon Marshall <simon@gnu.org>
parents: 12711
diff changeset
2002 : !NILP (ret)));
12654
14721fd8dcc1 (Frun_hook_with_args): New C function, formerly in subr.el.
Karl Heuer <kwzh@gnu.org>
parents: 12583
diff changeset
2003 globals = XCONS (globals)->cdr)
14721fd8dcc1 (Frun_hook_with_args): New C function, formerly in subr.el.
Karl Heuer <kwzh@gnu.org>
parents: 12583
diff changeset
2004 {
14721fd8dcc1 (Frun_hook_with_args): New C function, formerly in subr.el.
Karl Heuer <kwzh@gnu.org>
parents: 12583
diff changeset
2005 args[0] = XCONS (globals)->car;
13444
17f3f1c1bdf8 (run-hook-with-args, run-hook-list-with-args): Safeguard
Richard M. Stallman <rms@gnu.org>
parents: 13314
diff changeset
2006 /* In a global value, t should not occur. If it does, we
17f3f1c1bdf8 (run-hook-with-args, run-hook-list-with-args): Safeguard
Richard M. Stallman <rms@gnu.org>
parents: 13314
diff changeset
2007 must ignore it to avoid an endless loop. */
17f3f1c1bdf8 (run-hook-with-args, run-hook-list-with-args): Safeguard
Richard M. Stallman <rms@gnu.org>
parents: 13314
diff changeset
2008 if (!EQ (args[0], Qt))
17f3f1c1bdf8 (run-hook-with-args, run-hook-list-with-args): Safeguard
Richard M. Stallman <rms@gnu.org>
parents: 13314
diff changeset
2009 ret = Ffuncall (nargs, args);
12654
14721fd8dcc1 (Frun_hook_with_args): New C function, formerly in subr.el.
Karl Heuer <kwzh@gnu.org>
parents: 12583
diff changeset
2010 }
14721fd8dcc1 (Frun_hook_with_args): New C function, formerly in subr.el.
Karl Heuer <kwzh@gnu.org>
parents: 12583
diff changeset
2011 }
14721fd8dcc1 (Frun_hook_with_args): New C function, formerly in subr.el.
Karl Heuer <kwzh@gnu.org>
parents: 12583
diff changeset
2012 else
14721fd8dcc1 (Frun_hook_with_args): New C function, formerly in subr.el.
Karl Heuer <kwzh@gnu.org>
parents: 12583
diff changeset
2013 {
14721fd8dcc1 (Frun_hook_with_args): New C function, formerly in subr.el.
Karl Heuer <kwzh@gnu.org>
parents: 12583
diff changeset
2014 args[0] = XCONS (val)->car;
12732
981b924c832b Add Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success, Frun_hook_with_args_until_failure in terms of run_hook_with_args.
Simon Marshall <simon@gnu.org>
parents: 12711
diff changeset
2015 ret = Ffuncall (nargs, args);
12654
14721fd8dcc1 (Frun_hook_with_args): New C function, formerly in subr.el.
Karl Heuer <kwzh@gnu.org>
parents: 12583
diff changeset
2016 }
14721fd8dcc1 (Frun_hook_with_args): New C function, formerly in subr.el.
Karl Heuer <kwzh@gnu.org>
parents: 12583
diff changeset
2017 }
12788
eceb3f25e115 (run_hook_with_args): Move the GCPRO2; add UNGCPRO.
Richard M. Stallman <rms@gnu.org>
parents: 12781
diff changeset
2018
eceb3f25e115 (run_hook_with_args): Move the GCPRO2; add UNGCPRO.
Richard M. Stallman <rms@gnu.org>
parents: 12781
diff changeset
2019 UNGCPRO;
12732
981b924c832b Add Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success, Frun_hook_with_args_until_failure in terms of run_hook_with_args.
Simon Marshall <simon@gnu.org>
parents: 12711
diff changeset
2020 return ret;
12654
14721fd8dcc1 (Frun_hook_with_args): New C function, formerly in subr.el.
Karl Heuer <kwzh@gnu.org>
parents: 12583
diff changeset
2021 }
14721fd8dcc1 (Frun_hook_with_args): New C function, formerly in subr.el.
Karl Heuer <kwzh@gnu.org>
parents: 12583
diff changeset
2022 }
12781
2a8036f0b585 (run_hook_with_args): Add gcpros.
Richard M. Stallman <rms@gnu.org>
parents: 12732
diff changeset
2023
2a8036f0b585 (run_hook_with_args): Add gcpros.
Richard M. Stallman <rms@gnu.org>
parents: 12732
diff changeset
2024 /* Run a hook symbol ARGS[0], but use FUNLIST instead of the actual
2a8036f0b585 (run_hook_with_args): Add gcpros.
Richard M. Stallman <rms@gnu.org>
parents: 12732
diff changeset
2025 present value of that symbol.
2a8036f0b585 (run_hook_with_args): Add gcpros.
Richard M. Stallman <rms@gnu.org>
parents: 12732
diff changeset
2026 Call each element of FUNLIST,
2a8036f0b585 (run_hook_with_args): Add gcpros.
Richard M. Stallman <rms@gnu.org>
parents: 12732
diff changeset
2027 passing each of them the rest of ARGS.
2a8036f0b585 (run_hook_with_args): Add gcpros.
Richard M. Stallman <rms@gnu.org>
parents: 12732
diff changeset
2028 The caller (or its caller, etc) must gcpro all of ARGS,
2a8036f0b585 (run_hook_with_args): Add gcpros.
Richard M. Stallman <rms@gnu.org>
parents: 12732
diff changeset
2029 except that it isn't necessary to gcpro ARGS[0]. */
2a8036f0b585 (run_hook_with_args): Add gcpros.
Richard M. Stallman <rms@gnu.org>
parents: 12732
diff changeset
2030
2a8036f0b585 (run_hook_with_args): Add gcpros.
Richard M. Stallman <rms@gnu.org>
parents: 12732
diff changeset
2031 Lisp_Object
2a8036f0b585 (run_hook_with_args): Add gcpros.
Richard M. Stallman <rms@gnu.org>
parents: 12732
diff changeset
2032 run_hook_list_with_args (funlist, nargs, args)
2a8036f0b585 (run_hook_with_args): Add gcpros.
Richard M. Stallman <rms@gnu.org>
parents: 12732
diff changeset
2033 Lisp_Object funlist;
2a8036f0b585 (run_hook_with_args): Add gcpros.
Richard M. Stallman <rms@gnu.org>
parents: 12732
diff changeset
2034 int nargs;
2a8036f0b585 (run_hook_with_args): Add gcpros.
Richard M. Stallman <rms@gnu.org>
parents: 12732
diff changeset
2035 Lisp_Object *args;
2a8036f0b585 (run_hook_with_args): Add gcpros.
Richard M. Stallman <rms@gnu.org>
parents: 12732
diff changeset
2036 {
2a8036f0b585 (run_hook_with_args): Add gcpros.
Richard M. Stallman <rms@gnu.org>
parents: 12732
diff changeset
2037 Lisp_Object sym;
2a8036f0b585 (run_hook_with_args): Add gcpros.
Richard M. Stallman <rms@gnu.org>
parents: 12732
diff changeset
2038 Lisp_Object val;
2a8036f0b585 (run_hook_with_args): Add gcpros.
Richard M. Stallman <rms@gnu.org>
parents: 12732
diff changeset
2039 struct gcpro gcpro1, gcpro2;
2a8036f0b585 (run_hook_with_args): Add gcpros.
Richard M. Stallman <rms@gnu.org>
parents: 12732
diff changeset
2040
2a8036f0b585 (run_hook_with_args): Add gcpros.
Richard M. Stallman <rms@gnu.org>
parents: 12732
diff changeset
2041 sym = args[0];
2a8036f0b585 (run_hook_with_args): Add gcpros.
Richard M. Stallman <rms@gnu.org>
parents: 12732
diff changeset
2042 GCPRO2 (sym, val);
2a8036f0b585 (run_hook_with_args): Add gcpros.
Richard M. Stallman <rms@gnu.org>
parents: 12732
diff changeset
2043
2a8036f0b585 (run_hook_with_args): Add gcpros.
Richard M. Stallman <rms@gnu.org>
parents: 12732
diff changeset
2044 for (val = funlist; CONSP (val); val = XCONS (val)->cdr)
2a8036f0b585 (run_hook_with_args): Add gcpros.
Richard M. Stallman <rms@gnu.org>
parents: 12732
diff changeset
2045 {
2a8036f0b585 (run_hook_with_args): Add gcpros.
Richard M. Stallman <rms@gnu.org>
parents: 12732
diff changeset
2046 if (EQ (XCONS (val)->car, Qt))
2a8036f0b585 (run_hook_with_args): Add gcpros.
Richard M. Stallman <rms@gnu.org>
parents: 12732
diff changeset
2047 {
2a8036f0b585 (run_hook_with_args): Add gcpros.
Richard M. Stallman <rms@gnu.org>
parents: 12732
diff changeset
2048 /* t indicates this hook has a local binding;
2a8036f0b585 (run_hook_with_args): Add gcpros.
Richard M. Stallman <rms@gnu.org>
parents: 12732
diff changeset
2049 it means to run the global binding too. */
2a8036f0b585 (run_hook_with_args): Add gcpros.
Richard M. Stallman <rms@gnu.org>
parents: 12732
diff changeset
2050 Lisp_Object globals;
2a8036f0b585 (run_hook_with_args): Add gcpros.
Richard M. Stallman <rms@gnu.org>
parents: 12732
diff changeset
2051
2a8036f0b585 (run_hook_with_args): Add gcpros.
Richard M. Stallman <rms@gnu.org>
parents: 12732
diff changeset
2052 for (globals = Fdefault_value (sym);
2a8036f0b585 (run_hook_with_args): Add gcpros.
Richard M. Stallman <rms@gnu.org>
parents: 12732
diff changeset
2053 CONSP (globals);
2a8036f0b585 (run_hook_with_args): Add gcpros.
Richard M. Stallman <rms@gnu.org>
parents: 12732
diff changeset
2054 globals = XCONS (globals)->cdr)
2a8036f0b585 (run_hook_with_args): Add gcpros.
Richard M. Stallman <rms@gnu.org>
parents: 12732
diff changeset
2055 {
2a8036f0b585 (run_hook_with_args): Add gcpros.
Richard M. Stallman <rms@gnu.org>
parents: 12732
diff changeset
2056 args[0] = XCONS (globals)->car;
13444
17f3f1c1bdf8 (run-hook-with-args, run-hook-list-with-args): Safeguard
Richard M. Stallman <rms@gnu.org>
parents: 13314
diff changeset
2057 /* In a global value, t should not occur. If it does, we
17f3f1c1bdf8 (run-hook-with-args, run-hook-list-with-args): Safeguard
Richard M. Stallman <rms@gnu.org>
parents: 13314
diff changeset
2058 must ignore it to avoid an endless loop. */
17f3f1c1bdf8 (run-hook-with-args, run-hook-list-with-args): Safeguard
Richard M. Stallman <rms@gnu.org>
parents: 13314
diff changeset
2059 if (!EQ (args[0], Qt))
17f3f1c1bdf8 (run-hook-with-args, run-hook-list-with-args): Safeguard
Richard M. Stallman <rms@gnu.org>
parents: 13314
diff changeset
2060 Ffuncall (nargs, args);
12781
2a8036f0b585 (run_hook_with_args): Add gcpros.
Richard M. Stallman <rms@gnu.org>
parents: 12732
diff changeset
2061 }
2a8036f0b585 (run_hook_with_args): Add gcpros.
Richard M. Stallman <rms@gnu.org>
parents: 12732
diff changeset
2062 }
2a8036f0b585 (run_hook_with_args): Add gcpros.
Richard M. Stallman <rms@gnu.org>
parents: 12732
diff changeset
2063 else
2a8036f0b585 (run_hook_with_args): Add gcpros.
Richard M. Stallman <rms@gnu.org>
parents: 12732
diff changeset
2064 {
2a8036f0b585 (run_hook_with_args): Add gcpros.
Richard M. Stallman <rms@gnu.org>
parents: 12732
diff changeset
2065 args[0] = XCONS (val)->car;
2a8036f0b585 (run_hook_with_args): Add gcpros.
Richard M. Stallman <rms@gnu.org>
parents: 12732
diff changeset
2066 Ffuncall (nargs, args);
2a8036f0b585 (run_hook_with_args): Add gcpros.
Richard M. Stallman <rms@gnu.org>
parents: 12732
diff changeset
2067 }
2a8036f0b585 (run_hook_with_args): Add gcpros.
Richard M. Stallman <rms@gnu.org>
parents: 12732
diff changeset
2068 }
2a8036f0b585 (run_hook_with_args): Add gcpros.
Richard M. Stallman <rms@gnu.org>
parents: 12732
diff changeset
2069 UNGCPRO;
2a8036f0b585 (run_hook_with_args): Add gcpros.
Richard M. Stallman <rms@gnu.org>
parents: 12732
diff changeset
2070 return Qnil;
2a8036f0b585 (run_hook_with_args): Add gcpros.
Richard M. Stallman <rms@gnu.org>
parents: 12732
diff changeset
2071 }
13103
a537b52d6668 (run_hook_with_args_2): New function.
Richard M. Stallman <rms@gnu.org>
parents: 12788
diff changeset
2072
a537b52d6668 (run_hook_with_args_2): New function.
Richard M. Stallman <rms@gnu.org>
parents: 12788
diff changeset
2073 /* Run the hook HOOK, giving each function the two args ARG1 and ARG2. */
a537b52d6668 (run_hook_with_args_2): New function.
Richard M. Stallman <rms@gnu.org>
parents: 12788
diff changeset
2074
a537b52d6668 (run_hook_with_args_2): New function.
Richard M. Stallman <rms@gnu.org>
parents: 12788
diff changeset
2075 void
a537b52d6668 (run_hook_with_args_2): New function.
Richard M. Stallman <rms@gnu.org>
parents: 12788
diff changeset
2076 run_hook_with_args_2 (hook, arg1, arg2)
a537b52d6668 (run_hook_with_args_2): New function.
Richard M. Stallman <rms@gnu.org>
parents: 12788
diff changeset
2077 Lisp_Object hook, arg1, arg2;
a537b52d6668 (run_hook_with_args_2): New function.
Richard M. Stallman <rms@gnu.org>
parents: 12788
diff changeset
2078 {
a537b52d6668 (run_hook_with_args_2): New function.
Richard M. Stallman <rms@gnu.org>
parents: 12788
diff changeset
2079 Lisp_Object temp[3];
a537b52d6668 (run_hook_with_args_2): New function.
Richard M. Stallman <rms@gnu.org>
parents: 12788
diff changeset
2080 temp[0] = hook;
a537b52d6668 (run_hook_with_args_2): New function.
Richard M. Stallman <rms@gnu.org>
parents: 12788
diff changeset
2081 temp[1] = arg1;
a537b52d6668 (run_hook_with_args_2): New function.
Richard M. Stallman <rms@gnu.org>
parents: 12788
diff changeset
2082 temp[2] = arg2;
a537b52d6668 (run_hook_with_args_2): New function.
Richard M. Stallman <rms@gnu.org>
parents: 12788
diff changeset
2083
a537b52d6668 (run_hook_with_args_2): New function.
Richard M. Stallman <rms@gnu.org>
parents: 12788
diff changeset
2084 Frun_hook_with_args (3, temp);
a537b52d6668 (run_hook_with_args_2): New function.
Richard M. Stallman <rms@gnu.org>
parents: 12788
diff changeset
2085 }
12732
981b924c832b Add Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success, Frun_hook_with_args_until_failure in terms of run_hook_with_args.
Simon Marshall <simon@gnu.org>
parents: 12711
diff changeset
2086
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2087 /* Apply fn to arg */
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2088 Lisp_Object
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2089 apply1 (fn, arg)
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2090 Lisp_Object fn, arg;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2091 {
323
9c2a1e7bd9f1 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 295
diff changeset
2092 struct gcpro gcpro1;
9c2a1e7bd9f1 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 295
diff changeset
2093
9c2a1e7bd9f1 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 295
diff changeset
2094 GCPRO1 (fn);
485
8c615e453683 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 431
diff changeset
2095 if (NILP (arg))
323
9c2a1e7bd9f1 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 295
diff changeset
2096 RETURN_UNGCPRO (Ffuncall (1, &fn));
9c2a1e7bd9f1 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 295
diff changeset
2097 gcpro1.nvars = 2;
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2098 #ifdef NO_ARG_ARRAY
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2099 {
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2100 Lisp_Object args[2];
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2101 args[0] = fn;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2102 args[1] = arg;
323
9c2a1e7bd9f1 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 295
diff changeset
2103 gcpro1.var = args;
9c2a1e7bd9f1 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 295
diff changeset
2104 RETURN_UNGCPRO (Fapply (2, args));
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2105 }
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2106 #else /* not NO_ARG_ARRAY */
323
9c2a1e7bd9f1 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 295
diff changeset
2107 RETURN_UNGCPRO (Fapply (2, &fn));
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2108 #endif /* not NO_ARG_ARRAY */
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2109 }
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2110
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2111 /* Call function fn on no arguments */
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2112 Lisp_Object
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2113 call0 (fn)
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2114 Lisp_Object fn;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2115 {
323
9c2a1e7bd9f1 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 295
diff changeset
2116 struct gcpro gcpro1;
9c2a1e7bd9f1 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 295
diff changeset
2117
9c2a1e7bd9f1 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 295
diff changeset
2118 GCPRO1 (fn);
9c2a1e7bd9f1 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 295
diff changeset
2119 RETURN_UNGCPRO (Ffuncall (1, &fn));
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2120 }
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2121
3703
6930e8f81c88 (call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 3598
diff changeset
2122 /* Call function fn with 1 argument arg1 */
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2123 /* ARGSUSED */
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2124 Lisp_Object
3703
6930e8f81c88 (call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 3598
diff changeset
2125 call1 (fn, arg1)
6930e8f81c88 (call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 3598
diff changeset
2126 Lisp_Object fn, arg1;
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2127 {
323
9c2a1e7bd9f1 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 295
diff changeset
2128 struct gcpro gcpro1;
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2129 #ifdef NO_ARG_ARRAY
323
9c2a1e7bd9f1 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 295
diff changeset
2130 Lisp_Object args[2];
9c2a1e7bd9f1 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 295
diff changeset
2131
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2132 args[0] = fn;
3703
6930e8f81c88 (call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 3598
diff changeset
2133 args[1] = arg1;
323
9c2a1e7bd9f1 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 295
diff changeset
2134 GCPRO1 (args[0]);
9c2a1e7bd9f1 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 295
diff changeset
2135 gcpro1.nvars = 2;
9c2a1e7bd9f1 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 295
diff changeset
2136 RETURN_UNGCPRO (Ffuncall (2, args));
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2137 #else /* not NO_ARG_ARRAY */
323
9c2a1e7bd9f1 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 295
diff changeset
2138 GCPRO1 (fn);
9c2a1e7bd9f1 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 295
diff changeset
2139 gcpro1.nvars = 2;
9c2a1e7bd9f1 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 295
diff changeset
2140 RETURN_UNGCPRO (Ffuncall (2, &fn));
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2141 #endif /* not NO_ARG_ARRAY */
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2142 }
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2143
3703
6930e8f81c88 (call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 3598
diff changeset
2144 /* Call function fn with 2 arguments arg1, arg2 */
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2145 /* ARGSUSED */
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2146 Lisp_Object
3703
6930e8f81c88 (call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 3598
diff changeset
2147 call2 (fn, arg1, arg2)
6930e8f81c88 (call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 3598
diff changeset
2148 Lisp_Object fn, arg1, arg2;
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2149 {
323
9c2a1e7bd9f1 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 295
diff changeset
2150 struct gcpro gcpro1;
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2151 #ifdef NO_ARG_ARRAY
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2152 Lisp_Object args[3];
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2153 args[0] = fn;
3703
6930e8f81c88 (call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 3598
diff changeset
2154 args[1] = arg1;
6930e8f81c88 (call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 3598
diff changeset
2155 args[2] = arg2;
323
9c2a1e7bd9f1 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 295
diff changeset
2156 GCPRO1 (args[0]);
9c2a1e7bd9f1 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 295
diff changeset
2157 gcpro1.nvars = 3;
9c2a1e7bd9f1 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 295
diff changeset
2158 RETURN_UNGCPRO (Ffuncall (3, args));
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2159 #else /* not NO_ARG_ARRAY */
323
9c2a1e7bd9f1 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 295
diff changeset
2160 GCPRO1 (fn);
9c2a1e7bd9f1 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 295
diff changeset
2161 gcpro1.nvars = 3;
9c2a1e7bd9f1 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 295
diff changeset
2162 RETURN_UNGCPRO (Ffuncall (3, &fn));
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2163 #endif /* not NO_ARG_ARRAY */
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2164 }
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2165
3703
6930e8f81c88 (call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 3598
diff changeset
2166 /* Call function fn with 3 arguments arg1, arg2, arg3 */
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2167 /* ARGSUSED */
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2168 Lisp_Object
3703
6930e8f81c88 (call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 3598
diff changeset
2169 call3 (fn, arg1, arg2, arg3)
6930e8f81c88 (call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 3598
diff changeset
2170 Lisp_Object fn, arg1, arg2, arg3;
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2171 {
323
9c2a1e7bd9f1 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 295
diff changeset
2172 struct gcpro gcpro1;
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2173 #ifdef NO_ARG_ARRAY
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2174 Lisp_Object args[4];
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2175 args[0] = fn;
3703
6930e8f81c88 (call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 3598
diff changeset
2176 args[1] = arg1;
6930e8f81c88 (call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 3598
diff changeset
2177 args[2] = arg2;
6930e8f81c88 (call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 3598
diff changeset
2178 args[3] = arg3;
323
9c2a1e7bd9f1 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 295
diff changeset
2179 GCPRO1 (args[0]);
9c2a1e7bd9f1 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 295
diff changeset
2180 gcpro1.nvars = 4;
9c2a1e7bd9f1 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 295
diff changeset
2181 RETURN_UNGCPRO (Ffuncall (4, args));
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2182 #else /* not NO_ARG_ARRAY */
323
9c2a1e7bd9f1 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 295
diff changeset
2183 GCPRO1 (fn);
9c2a1e7bd9f1 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 295
diff changeset
2184 gcpro1.nvars = 4;
9c2a1e7bd9f1 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 295
diff changeset
2185 RETURN_UNGCPRO (Ffuncall (4, &fn));
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2186 #endif /* not NO_ARG_ARRAY */
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2187 }
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2188
3703
6930e8f81c88 (call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 3598
diff changeset
2189 /* Call function fn with 4 arguments arg1, arg2, arg3, arg4 */
3598
3c4b5489d2b4 * fileio.c (Frename_file): Pass all arguments to the file name handler.
Jim Blandy <jimb@redhat.com>
parents: 2961
diff changeset
2190 /* ARGSUSED */
3c4b5489d2b4 * fileio.c (Frename_file): Pass all arguments to the file name handler.
Jim Blandy <jimb@redhat.com>
parents: 2961
diff changeset
2191 Lisp_Object
3703
6930e8f81c88 (call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 3598
diff changeset
2192 call4 (fn, arg1, arg2, arg3, arg4)
6930e8f81c88 (call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 3598
diff changeset
2193 Lisp_Object fn, arg1, arg2, arg3, arg4;
3598
3c4b5489d2b4 * fileio.c (Frename_file): Pass all arguments to the file name handler.
Jim Blandy <jimb@redhat.com>
parents: 2961
diff changeset
2194 {
3c4b5489d2b4 * fileio.c (Frename_file): Pass all arguments to the file name handler.
Jim Blandy <jimb@redhat.com>
parents: 2961
diff changeset
2195 struct gcpro gcpro1;
3c4b5489d2b4 * fileio.c (Frename_file): Pass all arguments to the file name handler.
Jim Blandy <jimb@redhat.com>
parents: 2961
diff changeset
2196 #ifdef NO_ARG_ARRAY
3c4b5489d2b4 * fileio.c (Frename_file): Pass all arguments to the file name handler.
Jim Blandy <jimb@redhat.com>
parents: 2961
diff changeset
2197 Lisp_Object args[5];
3c4b5489d2b4 * fileio.c (Frename_file): Pass all arguments to the file name handler.
Jim Blandy <jimb@redhat.com>
parents: 2961
diff changeset
2198 args[0] = fn;
3703
6930e8f81c88 (call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 3598
diff changeset
2199 args[1] = arg1;
6930e8f81c88 (call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 3598
diff changeset
2200 args[2] = arg2;
6930e8f81c88 (call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 3598
diff changeset
2201 args[3] = arg3;
6930e8f81c88 (call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 3598
diff changeset
2202 args[4] = arg4;
3598
3c4b5489d2b4 * fileio.c (Frename_file): Pass all arguments to the file name handler.
Jim Blandy <jimb@redhat.com>
parents: 2961
diff changeset
2203 GCPRO1 (args[0]);
3c4b5489d2b4 * fileio.c (Frename_file): Pass all arguments to the file name handler.
Jim Blandy <jimb@redhat.com>
parents: 2961
diff changeset
2204 gcpro1.nvars = 5;
3c4b5489d2b4 * fileio.c (Frename_file): Pass all arguments to the file name handler.
Jim Blandy <jimb@redhat.com>
parents: 2961
diff changeset
2205 RETURN_UNGCPRO (Ffuncall (5, args));
3c4b5489d2b4 * fileio.c (Frename_file): Pass all arguments to the file name handler.
Jim Blandy <jimb@redhat.com>
parents: 2961
diff changeset
2206 #else /* not NO_ARG_ARRAY */
3c4b5489d2b4 * fileio.c (Frename_file): Pass all arguments to the file name handler.
Jim Blandy <jimb@redhat.com>
parents: 2961
diff changeset
2207 GCPRO1 (fn);
3c4b5489d2b4 * fileio.c (Frename_file): Pass all arguments to the file name handler.
Jim Blandy <jimb@redhat.com>
parents: 2961
diff changeset
2208 gcpro1.nvars = 5;
3c4b5489d2b4 * fileio.c (Frename_file): Pass all arguments to the file name handler.
Jim Blandy <jimb@redhat.com>
parents: 2961
diff changeset
2209 RETURN_UNGCPRO (Ffuncall (5, &fn));
3c4b5489d2b4 * fileio.c (Frename_file): Pass all arguments to the file name handler.
Jim Blandy <jimb@redhat.com>
parents: 2961
diff changeset
2210 #endif /* not NO_ARG_ARRAY */
3c4b5489d2b4 * fileio.c (Frename_file): Pass all arguments to the file name handler.
Jim Blandy <jimb@redhat.com>
parents: 2961
diff changeset
2211 }
3c4b5489d2b4 * fileio.c (Frename_file): Pass all arguments to the file name handler.
Jim Blandy <jimb@redhat.com>
parents: 2961
diff changeset
2212
3703
6930e8f81c88 (call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 3598
diff changeset
2213 /* Call function fn with 5 arguments arg1, arg2, arg3, arg4, arg5 */
6930e8f81c88 (call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 3598
diff changeset
2214 /* ARGSUSED */
6930e8f81c88 (call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 3598
diff changeset
2215 Lisp_Object
6930e8f81c88 (call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 3598
diff changeset
2216 call5 (fn, arg1, arg2, arg3, arg4, arg5)
6930e8f81c88 (call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 3598
diff changeset
2217 Lisp_Object fn, arg1, arg2, arg3, arg4, arg5;
6930e8f81c88 (call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 3598
diff changeset
2218 {
6930e8f81c88 (call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 3598
diff changeset
2219 struct gcpro gcpro1;
6930e8f81c88 (call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 3598
diff changeset
2220 #ifdef NO_ARG_ARRAY
6930e8f81c88 (call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 3598
diff changeset
2221 Lisp_Object args[6];
6930e8f81c88 (call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 3598
diff changeset
2222 args[0] = fn;
6930e8f81c88 (call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 3598
diff changeset
2223 args[1] = arg1;
6930e8f81c88 (call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 3598
diff changeset
2224 args[2] = arg2;
6930e8f81c88 (call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 3598
diff changeset
2225 args[3] = arg3;
6930e8f81c88 (call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 3598
diff changeset
2226 args[4] = arg4;
6930e8f81c88 (call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 3598
diff changeset
2227 args[5] = arg5;
6930e8f81c88 (call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 3598
diff changeset
2228 GCPRO1 (args[0]);
6930e8f81c88 (call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 3598
diff changeset
2229 gcpro1.nvars = 6;
6930e8f81c88 (call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 3598
diff changeset
2230 RETURN_UNGCPRO (Ffuncall (6, args));
6930e8f81c88 (call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 3598
diff changeset
2231 #else /* not NO_ARG_ARRAY */
6930e8f81c88 (call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 3598
diff changeset
2232 GCPRO1 (fn);
6930e8f81c88 (call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 3598
diff changeset
2233 gcpro1.nvars = 6;
6930e8f81c88 (call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 3598
diff changeset
2234 RETURN_UNGCPRO (Ffuncall (6, &fn));
6930e8f81c88 (call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 3598
diff changeset
2235 #endif /* not NO_ARG_ARRAY */
6930e8f81c88 (call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 3598
diff changeset
2236 }
6930e8f81c88 (call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 3598
diff changeset
2237
6930e8f81c88 (call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 3598
diff changeset
2238 /* Call function fn with 6 arguments arg1, arg2, arg3, arg4, arg5, arg6 */
6930e8f81c88 (call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 3598
diff changeset
2239 /* ARGSUSED */
6930e8f81c88 (call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 3598
diff changeset
2240 Lisp_Object
6930e8f81c88 (call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 3598
diff changeset
2241 call6 (fn, arg1, arg2, arg3, arg4, arg5, arg6)
6930e8f81c88 (call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 3598
diff changeset
2242 Lisp_Object fn, arg1, arg2, arg3, arg4, arg5, arg6;
6930e8f81c88 (call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 3598
diff changeset
2243 {
6930e8f81c88 (call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 3598
diff changeset
2244 struct gcpro gcpro1;
6930e8f81c88 (call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 3598
diff changeset
2245 #ifdef NO_ARG_ARRAY
6930e8f81c88 (call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 3598
diff changeset
2246 Lisp_Object args[7];
6930e8f81c88 (call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 3598
diff changeset
2247 args[0] = fn;
6930e8f81c88 (call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 3598
diff changeset
2248 args[1] = arg1;
6930e8f81c88 (call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 3598
diff changeset
2249 args[2] = arg2;
6930e8f81c88 (call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 3598
diff changeset
2250 args[3] = arg3;
6930e8f81c88 (call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 3598
diff changeset
2251 args[4] = arg4;
6930e8f81c88 (call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 3598
diff changeset
2252 args[5] = arg5;
6930e8f81c88 (call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 3598
diff changeset
2253 args[6] = arg6;
6930e8f81c88 (call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 3598
diff changeset
2254 GCPRO1 (args[0]);
6930e8f81c88 (call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 3598
diff changeset
2255 gcpro1.nvars = 7;
6930e8f81c88 (call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 3598
diff changeset
2256 RETURN_UNGCPRO (Ffuncall (7, args));
6930e8f81c88 (call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 3598
diff changeset
2257 #else /* not NO_ARG_ARRAY */
6930e8f81c88 (call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 3598
diff changeset
2258 GCPRO1 (fn);
6930e8f81c88 (call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 3598
diff changeset
2259 gcpro1.nvars = 7;
6930e8f81c88 (call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 3598
diff changeset
2260 RETURN_UNGCPRO (Ffuncall (7, &fn));
6930e8f81c88 (call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 3598
diff changeset
2261 #endif /* not NO_ARG_ARRAY */
6930e8f81c88 (call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 3598
diff changeset
2262 }
6930e8f81c88 (call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 3598
diff changeset
2263
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2264 DEFUN ("funcall", Ffuncall, Sfuncall, 1, MANY, 0,
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2265 "Call first argument as a function, passing remaining arguments to it.\n\
12583
73ac42b9be24 (Ffuncall, Fapply): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 11481
diff changeset
2266 Return the value that function returns.\n\
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2267 Thus, (funcall 'cons 'x 'y) returns (x . y).")
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2268 (nargs, args)
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2269 int nargs;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2270 Lisp_Object *args;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2271 {
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2272 Lisp_Object fun;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2273 Lisp_Object funcar;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2274 int numargs = nargs - 1;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2275 Lisp_Object lisp_numargs;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2276 Lisp_Object val;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2277 struct backtrace backtrace;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2278 register Lisp_Object *internal_args;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2279 register int i;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2280
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2281 QUIT;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2282 if (consing_since_gc > gc_cons_threshold)
323
9c2a1e7bd9f1 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 295
diff changeset
2283 Fgarbage_collect ();
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2284
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2285 if (++lisp_eval_depth > max_lisp_eval_depth)
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2286 {
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2287 if (max_lisp_eval_depth < 100)
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2288 max_lisp_eval_depth = 100;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2289 if (lisp_eval_depth > max_lisp_eval_depth)
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2290 error ("Lisp nesting exceeds max-lisp-eval-depth");
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2291 }
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2292
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2293 backtrace.next = backtrace_list;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2294 backtrace_list = &backtrace;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2295 backtrace.function = &args[0];
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2296 backtrace.args = &args[1];
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2297 backtrace.nargs = nargs - 1;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2298 backtrace.evalargs = 0;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2299 backtrace.debug_on_exit = 0;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2300
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2301 if (debug_on_next_call)
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2302 do_debug_on_call (Qlambda);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2303
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2304 retry:
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2305
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2306 fun = args[0];
648
70b112526394 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 604
diff changeset
2307
70b112526394 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 604
diff changeset
2308 fun = Findirect_function (fun);
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2309
9148
e7ab930bb7eb (Fprogn, Finteractive_p, Fuser_variable_p, FletX, Flet, Fmacroexpand,
Karl Heuer <kwzh@gnu.org>
parents: 8980
diff changeset
2310 if (SUBRP (fun))
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2311 {
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2312 if (numargs < XSUBR (fun)->min_args
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2313 || (XSUBR (fun)->max_args >= 0 && XSUBR (fun)->max_args < numargs))
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2314 {
9306
ac852c183fa1 (Feval, Ffuncall, funcall_lambda, Fbacktrace): Don't use XFASTINT as an
Karl Heuer <kwzh@gnu.org>
parents: 9148
diff changeset
2315 XSETFASTINT (lisp_numargs, numargs);
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2316 return Fsignal (Qwrong_number_of_arguments, Fcons (fun, Fcons (lisp_numargs, Qnil)));
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2317 }
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2318
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2319 if (XSUBR (fun)->max_args == UNEVALLED)
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2320 return Fsignal (Qinvalid_function, Fcons (fun, Qnil));
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2321
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2322 if (XSUBR (fun)->max_args == MANY)
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2323 {
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2324 val = (*XSUBR (fun)->function) (numargs, args + 1);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2325 goto done;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2326 }
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2327
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2328 if (XSUBR (fun)->max_args > numargs)
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2329 {
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2330 internal_args = (Lisp_Object *) alloca (XSUBR (fun)->max_args * sizeof (Lisp_Object));
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2331 bcopy (args + 1, internal_args, numargs * sizeof (Lisp_Object));
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2332 for (i = numargs; i < XSUBR (fun)->max_args; i++)
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2333 internal_args[i] = Qnil;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2334 }
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2335 else
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2336 internal_args = args + 1;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2337 switch (XSUBR (fun)->max_args)
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2338 {
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2339 case 0:
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2340 val = (*XSUBR (fun)->function) ();
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2341 goto done;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2342 case 1:
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2343 val = (*XSUBR (fun)->function) (internal_args[0]);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2344 goto done;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2345 case 2:
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2346 val = (*XSUBR (fun)->function) (internal_args[0],
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2347 internal_args[1]);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2348 goto done;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2349 case 3:
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2350 val = (*XSUBR (fun)->function) (internal_args[0], internal_args[1],
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2351 internal_args[2]);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2352 goto done;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2353 case 4:
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2354 val = (*XSUBR (fun)->function) (internal_args[0], internal_args[1],
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2355 internal_args[2],
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2356 internal_args[3]);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2357 goto done;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2358 case 5:
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2359 val = (*XSUBR (fun)->function) (internal_args[0], internal_args[1],
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2360 internal_args[2], internal_args[3],
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2361 internal_args[4]);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2362 goto done;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2363 case 6:
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2364 val = (*XSUBR (fun)->function) (internal_args[0], internal_args[1],
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2365 internal_args[2], internal_args[3],
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2366 internal_args[4], internal_args[5]);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2367 goto done;
863
427299469901 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 753
diff changeset
2368 case 7:
427299469901 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 753
diff changeset
2369 val = (*XSUBR (fun)->function) (internal_args[0], internal_args[1],
427299469901 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 753
diff changeset
2370 internal_args[2], internal_args[3],
427299469901 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 753
diff changeset
2371 internal_args[4], internal_args[5],
427299469901 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 753
diff changeset
2372 internal_args[6]);
427299469901 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 753
diff changeset
2373 goto done;
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2374
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2375 default:
573
f0ffd1764382 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 515
diff changeset
2376
f0ffd1764382 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 515
diff changeset
2377 /* If a subr takes more than 6 arguments without using MANY
f0ffd1764382 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 515
diff changeset
2378 or UNEVALLED, we need to extend this function to support it.
f0ffd1764382 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 515
diff changeset
2379 Until this is done, there is no way to call the function. */
f0ffd1764382 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 515
diff changeset
2380 abort ();
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2381 }
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2382 }
9148
e7ab930bb7eb (Fprogn, Finteractive_p, Fuser_variable_p, FletX, Flet, Fmacroexpand,
Karl Heuer <kwzh@gnu.org>
parents: 8980
diff changeset
2383 if (COMPILEDP (fun))
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2384 val = funcall_lambda (fun, numargs, args + 1);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2385 else
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2386 {
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2387 if (!CONSP (fun))
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2388 return Fsignal (Qinvalid_function, Fcons (fun, Qnil));
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2389 funcar = Fcar (fun);
9148
e7ab930bb7eb (Fprogn, Finteractive_p, Fuser_variable_p, FletX, Flet, Fmacroexpand,
Karl Heuer <kwzh@gnu.org>
parents: 8980
diff changeset
2390 if (!SYMBOLP (funcar))
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2391 return Fsignal (Qinvalid_function, Fcons (fun, Qnil));
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2392 if (EQ (funcar, Qlambda))
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2393 val = funcall_lambda (fun, numargs, args + 1);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2394 else if (EQ (funcar, Qmocklisp))
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2395 val = ml_apply (fun, Flist (numargs, args + 1));
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2396 else if (EQ (funcar, Qautoload))
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2397 {
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2398 do_autoload (fun, args[0]);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2399 goto retry;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2400 }
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2401 else
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2402 return Fsignal (Qinvalid_function, Fcons (fun, Qnil));
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2403 }
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2404 done:
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2405 lisp_eval_depth--;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2406 if (backtrace.debug_on_exit)
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2407 val = call_debugger (Fcons (Qexit, Fcons (val, Qnil)));
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2408 backtrace_list = backtrace.next;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2409 return val;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2410 }
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2411
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2412 Lisp_Object
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2413 apply_lambda (fun, args, eval_flag)
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2414 Lisp_Object fun, args;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2415 int eval_flag;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2416 {
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2417 Lisp_Object args_left;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2418 Lisp_Object numargs;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2419 register Lisp_Object *arg_vector;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2420 struct gcpro gcpro1, gcpro2, gcpro3;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2421 register int i;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2422 register Lisp_Object tem;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2423
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2424 numargs = Flength (args);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2425 arg_vector = (Lisp_Object *) alloca (XINT (numargs) * sizeof (Lisp_Object));
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2426 args_left = args;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2427
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2428 GCPRO3 (*arg_vector, args_left, fun);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2429 gcpro1.nvars = 0;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2430
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2431 for (i = 0; i < XINT (numargs);)
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2432 {
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2433 tem = Fcar (args_left), args_left = Fcdr (args_left);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2434 if (eval_flag) tem = Feval (tem);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2435 arg_vector[i++] = tem;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2436 gcpro1.nvars = i;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2437 }
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2438
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2439 UNGCPRO;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2440
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2441 if (eval_flag)
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2442 {
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2443 backtrace_list->args = arg_vector;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2444 backtrace_list->nargs = i;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2445 }
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2446 backtrace_list->evalargs = 0;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2447 tem = funcall_lambda (fun, XINT (numargs), arg_vector);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2448
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2449 /* Do the debug-on-exit now, while arg_vector still exists. */
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2450 if (backtrace_list->debug_on_exit)
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2451 tem = call_debugger (Fcons (Qexit, Fcons (tem, Qnil)));
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2452 /* Don't do it again when we return to eval. */
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2453 backtrace_list->debug_on_exit = 0;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2454 return tem;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2455 }
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2456
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2457 /* Apply a Lisp function FUN to the NARGS evaluated arguments in ARG_VECTOR
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2458 and return the result of evaluation.
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2459 FUN must be either a lambda-expression or a compiled-code object. */
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2460
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2461 Lisp_Object
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2462 funcall_lambda (fun, nargs, arg_vector)
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2463 Lisp_Object fun;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2464 int nargs;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2465 register Lisp_Object *arg_vector;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2466 {
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2467 Lisp_Object val, tem;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2468 register Lisp_Object syms_left;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2469 Lisp_Object numargs;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2470 register Lisp_Object next;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2471 int count = specpdl_ptr - specpdl;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2472 register int i;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2473 int optional = 0, rest = 0;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2474
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2475 specbind (Qmocklisp_arguments, Qt); /* t means NOT mocklisp! */
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2476
9306
ac852c183fa1 (Feval, Ffuncall, funcall_lambda, Fbacktrace): Don't use XFASTINT as an
Karl Heuer <kwzh@gnu.org>
parents: 9148
diff changeset
2477 XSETFASTINT (numargs, nargs);
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2478
9148
e7ab930bb7eb (Fprogn, Finteractive_p, Fuser_variable_p, FletX, Flet, Fmacroexpand,
Karl Heuer <kwzh@gnu.org>
parents: 8980
diff changeset
2479 if (CONSP (fun))
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2480 syms_left = Fcar (Fcdr (fun));
9148
e7ab930bb7eb (Fprogn, Finteractive_p, Fuser_variable_p, FletX, Flet, Fmacroexpand,
Karl Heuer <kwzh@gnu.org>
parents: 8980
diff changeset
2481 else if (COMPILEDP (fun))
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2482 syms_left = XVECTOR (fun)->contents[COMPILED_ARGLIST];
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2483 else abort ();
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2484
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2485 i = 0;
485
8c615e453683 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 431
diff changeset
2486 for (; !NILP (syms_left); syms_left = Fcdr (syms_left))
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2487 {
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2488 QUIT;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2489 next = Fcar (syms_left);
9148
e7ab930bb7eb (Fprogn, Finteractive_p, Fuser_variable_p, FletX, Flet, Fmacroexpand,
Karl Heuer <kwzh@gnu.org>
parents: 8980
diff changeset
2490 while (!SYMBOLP (next))
431
504d7cdfd311 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 381
diff changeset
2491 next = Fsignal (Qinvalid_function, Fcons (fun, Qnil));
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2492 if (EQ (next, Qand_rest))
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2493 rest = 1;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2494 else if (EQ (next, Qand_optional))
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2495 optional = 1;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2496 else if (rest)
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2497 {
431
504d7cdfd311 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 381
diff changeset
2498 specbind (next, Flist (nargs - i, &arg_vector[i]));
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2499 i = nargs;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2500 }
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2501 else if (i < nargs)
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2502 {
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2503 tem = arg_vector[i++];
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2504 specbind (next, tem);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2505 }
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2506 else if (!optional)
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2507 return Fsignal (Qwrong_number_of_arguments, Fcons (fun, Fcons (numargs, Qnil)));
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2508 else
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2509 specbind (next, Qnil);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2510 }
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2511
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2512 if (i < nargs)
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2513 return Fsignal (Qwrong_number_of_arguments, Fcons (fun, Fcons (numargs, Qnil)));
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2514
9148
e7ab930bb7eb (Fprogn, Finteractive_p, Fuser_variable_p, FletX, Flet, Fmacroexpand,
Karl Heuer <kwzh@gnu.org>
parents: 8980
diff changeset
2515 if (CONSP (fun))
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2516 val = Fprogn (Fcdr (Fcdr (fun)));
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2517 else
10201
03f3a1f4264a (Fdefvar): Fix minor error in previous change.
Richard M. Stallman <rms@gnu.org>
parents: 10161
diff changeset
2518 {
03f3a1f4264a (Fdefvar): Fix minor error in previous change.
Richard M. Stallman <rms@gnu.org>
parents: 10161
diff changeset
2519 /* If we have not actually read the bytecode string
03f3a1f4264a (Fdefvar): Fix minor error in previous change.
Richard M. Stallman <rms@gnu.org>
parents: 10161
diff changeset
2520 and constants vector yet, fetch them from the file. */
03f3a1f4264a (Fdefvar): Fix minor error in previous change.
Richard M. Stallman <rms@gnu.org>
parents: 10161
diff changeset
2521 if (CONSP (XVECTOR (fun)->contents[COMPILED_BYTECODE]))
11205
81a008df9184 (Ffetch_bytecode): New function.
Karl Heuer <kwzh@gnu.org>
parents: 11007
diff changeset
2522 Ffetch_bytecode (fun);
10201
03f3a1f4264a (Fdefvar): Fix minor error in previous change.
Richard M. Stallman <rms@gnu.org>
parents: 10161
diff changeset
2523 val = Fbyte_code (XVECTOR (fun)->contents[COMPILED_BYTECODE],
03f3a1f4264a (Fdefvar): Fix minor error in previous change.
Richard M. Stallman <rms@gnu.org>
parents: 10161
diff changeset
2524 XVECTOR (fun)->contents[COMPILED_CONSTANTS],
03f3a1f4264a (Fdefvar): Fix minor error in previous change.
Richard M. Stallman <rms@gnu.org>
parents: 10161
diff changeset
2525 XVECTOR (fun)->contents[COMPILED_STACK_DEPTH]);
03f3a1f4264a (Fdefvar): Fix minor error in previous change.
Richard M. Stallman <rms@gnu.org>
parents: 10161
diff changeset
2526 }
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2527 return unbind_to (count, val);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2528 }
11205
81a008df9184 (Ffetch_bytecode): New function.
Karl Heuer <kwzh@gnu.org>
parents: 11007
diff changeset
2529
81a008df9184 (Ffetch_bytecode): New function.
Karl Heuer <kwzh@gnu.org>
parents: 11007
diff changeset
2530 DEFUN ("fetch-bytecode", Ffetch_bytecode, Sfetch_bytecode,
81a008df9184 (Ffetch_bytecode): New function.
Karl Heuer <kwzh@gnu.org>
parents: 11007
diff changeset
2531 1, 1, 0,
81a008df9184 (Ffetch_bytecode): New function.
Karl Heuer <kwzh@gnu.org>
parents: 11007
diff changeset
2532 "If byte-compiled OBJECT is lazy-loaded, fetch it now.")
81a008df9184 (Ffetch_bytecode): New function.
Karl Heuer <kwzh@gnu.org>
parents: 11007
diff changeset
2533 (object)
81a008df9184 (Ffetch_bytecode): New function.
Karl Heuer <kwzh@gnu.org>
parents: 11007
diff changeset
2534 Lisp_Object object;
81a008df9184 (Ffetch_bytecode): New function.
Karl Heuer <kwzh@gnu.org>
parents: 11007
diff changeset
2535 {
81a008df9184 (Ffetch_bytecode): New function.
Karl Heuer <kwzh@gnu.org>
parents: 11007
diff changeset
2536 Lisp_Object tem;
81a008df9184 (Ffetch_bytecode): New function.
Karl Heuer <kwzh@gnu.org>
parents: 11007
diff changeset
2537
81a008df9184 (Ffetch_bytecode): New function.
Karl Heuer <kwzh@gnu.org>
parents: 11007
diff changeset
2538 if (COMPILEDP (object)
81a008df9184 (Ffetch_bytecode): New function.
Karl Heuer <kwzh@gnu.org>
parents: 11007
diff changeset
2539 && CONSP (XVECTOR (object)->contents[COMPILED_BYTECODE]))
81a008df9184 (Ffetch_bytecode): New function.
Karl Heuer <kwzh@gnu.org>
parents: 11007
diff changeset
2540 {
81a008df9184 (Ffetch_bytecode): New function.
Karl Heuer <kwzh@gnu.org>
parents: 11007
diff changeset
2541 tem = read_doc_string (XVECTOR (object)->contents[COMPILED_BYTECODE]);
11481
af7833ecb551 (Ffetch_bytecode): Check the type of the object being read from the file.
Richard M. Stallman <rms@gnu.org>
parents: 11365
diff changeset
2542 if (!CONSP (tem))
af7833ecb551 (Ffetch_bytecode): Check the type of the object being read from the file.
Richard M. Stallman <rms@gnu.org>
parents: 11365
diff changeset
2543 error ("invalid byte code");
11205
81a008df9184 (Ffetch_bytecode): New function.
Karl Heuer <kwzh@gnu.org>
parents: 11007
diff changeset
2544 XVECTOR (object)->contents[COMPILED_BYTECODE] = XCONS (tem)->car;
81a008df9184 (Ffetch_bytecode): New function.
Karl Heuer <kwzh@gnu.org>
parents: 11007
diff changeset
2545 XVECTOR (object)->contents[COMPILED_CONSTANTS] = XCONS (tem)->cdr;
81a008df9184 (Ffetch_bytecode): New function.
Karl Heuer <kwzh@gnu.org>
parents: 11007
diff changeset
2546 }
81a008df9184 (Ffetch_bytecode): New function.
Karl Heuer <kwzh@gnu.org>
parents: 11007
diff changeset
2547 return object;
81a008df9184 (Ffetch_bytecode): New function.
Karl Heuer <kwzh@gnu.org>
parents: 11007
diff changeset
2548 }
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2549
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2550 void
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2551 grow_specpdl ()
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2552 {
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2553 register int count = specpdl_ptr - specpdl;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2554 if (specpdl_size >= max_specpdl_size)
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2555 {
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2556 if (max_specpdl_size < 400)
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2557 max_specpdl_size = 400;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2558 if (specpdl_size >= max_specpdl_size)
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2559 {
1452
ed79bb8047e8 (grow_specpdl): Increase max_specpdl_size before Fsignal.
Richard M. Stallman <rms@gnu.org>
parents: 1199
diff changeset
2560 if (!NILP (Vdebug_on_error))
ed79bb8047e8 (grow_specpdl): Increase max_specpdl_size before Fsignal.
Richard M. Stallman <rms@gnu.org>
parents: 1199
diff changeset
2561 /* Leave room for some specpdl in the debugger. */
ed79bb8047e8 (grow_specpdl): Increase max_specpdl_size before Fsignal.
Richard M. Stallman <rms@gnu.org>
parents: 1199
diff changeset
2562 max_specpdl_size = specpdl_size + 100;
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2563 Fsignal (Qerror,
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2564 Fcons (build_string ("Variable binding depth exceeds max-specpdl-size"), Qnil));
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2565 }
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2566 }
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2567 specpdl_size *= 2;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2568 if (specpdl_size > max_specpdl_size)
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2569 specpdl_size = max_specpdl_size;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2570 specpdl = (struct specbinding *) xrealloc (specpdl, specpdl_size * sizeof (struct specbinding));
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2571 specpdl_ptr = specpdl + count;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2572 }
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2573
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2574 void
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2575 specbind (symbol, value)
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2576 Lisp_Object symbol, value;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2577 {
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2578 Lisp_Object ovalue;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2579
431
504d7cdfd311 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 381
diff changeset
2580 CHECK_SYMBOL (symbol, 0);
504d7cdfd311 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 381
diff changeset
2581
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2582 if (specpdl_ptr == specpdl + specpdl_size)
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2583 grow_specpdl ();
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2584 specpdl_ptr->symbol = symbol;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2585 specpdl_ptr->func = 0;
6826
903d03ddf99c (specbind): Use find_symbol_value.
Richard M. Stallman <rms@gnu.org>
parents: 6803
diff changeset
2586 specpdl_ptr->old_value = ovalue = find_symbol_value (symbol);
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2587 specpdl_ptr++;
11007
433d4013f39b (specbind): Rename perdisplay to kboard.
Karl Heuer <kwzh@gnu.org>
parents: 10604
diff changeset
2588 if (BUFFER_OBJFWDP (ovalue) || KBOARD_OBJFWDP (ovalue))
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2589 store_symval_forwarding (symbol, ovalue, value);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2590 else
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2591 Fset (symbol, value);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2592 }
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2593
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2594 void
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2595 record_unwind_protect (function, arg)
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2596 Lisp_Object (*function)();
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2597 Lisp_Object arg;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2598 {
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2599 if (specpdl_ptr == specpdl + specpdl_size)
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2600 grow_specpdl ();
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2601 specpdl_ptr->func = function;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2602 specpdl_ptr->symbol = Qnil;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2603 specpdl_ptr->old_value = arg;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2604 specpdl_ptr++;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2605 }
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2606
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2607 Lisp_Object
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2608 unbind_to (count, value)
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2609 int count;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2610 Lisp_Object value;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2611 {
485
8c615e453683 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 431
diff changeset
2612 int quitf = !NILP (Vquit_flag);
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2613 struct gcpro gcpro1;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2614
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2615 GCPRO1 (value);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2616
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2617 Vquit_flag = Qnil;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2618
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2619 while (specpdl_ptr != specpdl + count)
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2620 {
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2621 --specpdl_ptr;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2622 if (specpdl_ptr->func != 0)
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2623 (*specpdl_ptr->func) (specpdl_ptr->old_value);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2624 /* Note that a "binding" of nil is really an unwind protect,
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2625 so in that case the "old value" is a list of forms to evaluate. */
485
8c615e453683 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 431
diff changeset
2626 else if (NILP (specpdl_ptr->symbol))
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2627 Fprogn (specpdl_ptr->old_value);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2628 else
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2629 Fset (specpdl_ptr->symbol, specpdl_ptr->old_value);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2630 }
485
8c615e453683 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 431
diff changeset
2631 if (NILP (Vquit_flag) && quitf) Vquit_flag = Qt;
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2632
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2633 UNGCPRO;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2634
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2635 return value;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2636 }
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2637
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2638 #if 0
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2639
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2640 /* Get the value of symbol's global binding, even if that binding
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2641 is not now dynamically visible. */
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2642
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2643 Lisp_Object
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2644 top_level_value (symbol)
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2645 Lisp_Object symbol;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2646 {
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2647 register struct specbinding *ptr = specpdl;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2648
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2649 CHECK_SYMBOL (symbol, 0);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2650 for (; ptr != specpdl_ptr; ptr++)
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2651 {
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2652 if (EQ (ptr->symbol, symbol))
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2653 return ptr->old_value;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2654 }
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2655 return Fsymbol_value (symbol);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2656 }
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2657
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2658 Lisp_Object
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2659 top_level_set (symbol, newval)
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2660 Lisp_Object symbol, newval;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2661 {
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2662 register struct specbinding *ptr = specpdl;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2663
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2664 CHECK_SYMBOL (symbol, 0);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2665 for (; ptr != specpdl_ptr; ptr++)
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2666 {
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2667 if (EQ (ptr->symbol, symbol))
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2668 {
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2669 ptr->old_value = newval;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2670 return newval;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2671 }
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2672 }
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2673 return Fset (symbol, newval);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2674 }
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2675
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2676 #endif /* 0 */
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2677
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2678 DEFUN ("backtrace-debug", Fbacktrace_debug, Sbacktrace_debug, 2, 2, 0,
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2679 "Set the debug-on-exit flag of eval frame LEVEL levels down to FLAG.\n\
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2680 The debugger is entered when that frame exits, if the flag is non-nil.")
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2681 (level, flag)
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2682 Lisp_Object level, flag;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2683 {
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2684 register struct backtrace *backlist = backtrace_list;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2685 register int i;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2686
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2687 CHECK_NUMBER (level, 0);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2688
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2689 for (i = 0; backlist && i < XINT (level); i++)
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2690 {
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2691 backlist = backlist->next;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2692 }
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2693
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2694 if (backlist)
485
8c615e453683 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 431
diff changeset
2695 backlist->debug_on_exit = !NILP (flag);
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2696
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2697 return flag;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2698 }
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2699
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2700 DEFUN ("backtrace", Fbacktrace, Sbacktrace, 0, 0, "",
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2701 "Print a trace of Lisp function calls currently active.\n\
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2702 Output stream used is value of `standard-output'.")
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2703 ()
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2704 {
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2705 register struct backtrace *backlist = backtrace_list;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2706 register int i;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2707 Lisp_Object tail;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2708 Lisp_Object tem;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2709 extern Lisp_Object Vprint_level;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2710 struct gcpro gcpro1;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2711
9306
ac852c183fa1 (Feval, Ffuncall, funcall_lambda, Fbacktrace): Don't use XFASTINT as an
Karl Heuer <kwzh@gnu.org>
parents: 9148
diff changeset
2712 XSETFASTINT (Vprint_level, 3);
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2713
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2714 tail = Qnil;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2715 GCPRO1 (tail);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2716
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2717 while (backlist)
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2718 {
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2719 write_string (backlist->debug_on_exit ? "* " : " ", 2);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2720 if (backlist->nargs == UNEVALLED)
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2721 {
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2722 Fprin1 (Fcons (*backlist->function, *backlist->args), Qnil);
7533
62e3e25bc8f6 (Fbacktrace): Properly nest parentheses.
Karl Heuer <kwzh@gnu.org>
parents: 7511
diff changeset
2723 write_string ("\n", -1);
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2724 }
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2725 else
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2726 {
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2727 tem = *backlist->function;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2728 Fprin1 (tem, Qnil); /* This can QUIT */
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2729 write_string ("(", -1);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2730 if (backlist->nargs == MANY)
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2731 {
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2732 for (tail = *backlist->args, i = 0;
485
8c615e453683 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 431
diff changeset
2733 !NILP (tail);
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2734 tail = Fcdr (tail), i++)
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2735 {
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2736 if (i) write_string (" ", -1);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2737 Fprin1 (Fcar (tail), Qnil);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2738 }
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2739 }
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2740 else
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2741 {
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2742 for (i = 0; i < backlist->nargs; i++)
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2743 {
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2744 if (i) write_string (" ", -1);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2745 Fprin1 (backlist->args[i], Qnil);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2746 }
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2747 }
7533
62e3e25bc8f6 (Fbacktrace): Properly nest parentheses.
Karl Heuer <kwzh@gnu.org>
parents: 7511
diff changeset
2748 write_string (")\n", -1);
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2749 }
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2750 backlist = backlist->next;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2751 }
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2752
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2753 Vprint_level = Qnil;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2754 UNGCPRO;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2755 return Qnil;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2756 }
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2757
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2758 DEFUN ("backtrace-frame", Fbacktrace_frame, Sbacktrace_frame, 1, 1, "",
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2759 "Return the function and arguments N frames up from current execution point.\n\
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2760 If that frame has not evaluated the arguments yet (or is a special form),\n\
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2761 the value is (nil FUNCTION ARG-FORMS...).\n\
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2762 If that frame has evaluated its arguments and called its function already,\n\
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2763 the value is (t FUNCTION ARG-VALUES...).\n\
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2764 A &rest arg is represented as the tail of the list ARG-VALUES.\n\
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2765 FUNCTION is whatever was supplied as car of evaluated list,\n\
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2766 or a lambda expression for macro calls.\n\
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2767 If N is more than the number of frames, the value is nil.")
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2768 (nframes)
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2769 Lisp_Object nframes;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2770 {
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2771 register struct backtrace *backlist = backtrace_list;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2772 register int i;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2773 Lisp_Object tem;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2774
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2775 CHECK_NATNUM (nframes, 0);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2776
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2777 /* Find the frame requested. */
7533
62e3e25bc8f6 (Fbacktrace): Properly nest parentheses.
Karl Heuer <kwzh@gnu.org>
parents: 7511
diff changeset
2778 for (i = 0; backlist && i < XFASTINT (nframes); i++)
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2779 backlist = backlist->next;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2780
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2781 if (!backlist)
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2782 return Qnil;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2783 if (backlist->nargs == UNEVALLED)
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2784 return Fcons (Qnil, Fcons (*backlist->function, *backlist->args));
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2785 else
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2786 {
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2787 if (backlist->nargs == MANY)
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2788 tem = *backlist->args;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2789 else
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2790 tem = Flist (backlist->nargs, backlist->args);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2791
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2792 return Fcons (Qt, Fcons (*backlist->function, tem));
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2793 }
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2794 }
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2795
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2796 syms_of_eval ()
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2797 {
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2798 DEFVAR_INT ("max-specpdl-size", &max_specpdl_size,
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2799 "Limit on number of Lisp variable bindings & unwind-protects before error.");
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2800
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2801 DEFVAR_INT ("max-lisp-eval-depth", &max_lisp_eval_depth,
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2802 "Limit on depth in `eval', `apply' and `funcall' before error.\n\
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2803 This limit is to catch infinite recursions for you before they cause\n\
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2804 actual stack overflow in C, which would be fatal for Emacs.\n\
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2805 You can safely make it considerably larger than its default value,\n\
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2806 if that proves inconveniently small.");
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2807
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2808 DEFVAR_LISP ("quit-flag", &Vquit_flag,
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2809 "Non-nil causes `eval' to abort, unless `inhibit-quit' is non-nil.\n\
7511
9ec3fc16ab3a (syms_of_eval): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents: 7353
diff changeset
2810 Typing C-g sets `quit-flag' non-nil, regardless of `inhibit-quit'.");
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2811 Vquit_flag = Qnil;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2812
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2813 DEFVAR_LISP ("inhibit-quit", &Vinhibit_quit,
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2814 "Non-nil inhibits C-g quitting from happening immediately.\n\
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2815 Note that `quit-flag' will still be set by typing C-g,\n\
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2816 so a quit will be signalled as soon as `inhibit-quit' is nil.\n\
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2817 To prevent this happening, set `quit-flag' to nil\n\
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2818 before making `inhibit-quit' nil.");
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2819 Vinhibit_quit = Qnil;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2820
381
0673e72f6c8c *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 323
diff changeset
2821 Qinhibit_quit = intern ("inhibit-quit");
0673e72f6c8c *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 323
diff changeset
2822 staticpro (&Qinhibit_quit);
0673e72f6c8c *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 323
diff changeset
2823
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2824 Qautoload = intern ("autoload");
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2825 staticpro (&Qautoload);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2826
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2827 Qdebug_on_error = intern ("debug-on-error");
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2828 staticpro (&Qdebug_on_error);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2829
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2830 Qmacro = intern ("macro");
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2831 staticpro (&Qmacro);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2832
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2833 /* Note that the process handling also uses Qexit, but we don't want
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2834 to staticpro it twice, so we just do it here. */
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2835 Qexit = intern ("exit");
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2836 staticpro (&Qexit);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2837
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2838 Qinteractive = intern ("interactive");
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2839 staticpro (&Qinteractive);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2840
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2841 Qcommandp = intern ("commandp");
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2842 staticpro (&Qcommandp);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2843
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2844 Qdefun = intern ("defun");
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2845 staticpro (&Qdefun);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2846
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2847 Qand_rest = intern ("&rest");
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2848 staticpro (&Qand_rest);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2849
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2850 Qand_optional = intern ("&optional");
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2851 staticpro (&Qand_optional);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2852
684
bd574e49bfac *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 648
diff changeset
2853 DEFVAR_LISP ("stack-trace-on-error", &Vstack_trace_on_error,
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2854 "*Non-nil means automatically display a backtrace buffer\n\
684
bd574e49bfac *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 648
diff changeset
2855 after any error that is handled by the editor command loop.\n\
bd574e49bfac *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 648
diff changeset
2856 If the value is a list, an error only means to display a backtrace\n\
bd574e49bfac *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 648
diff changeset
2857 if one of its condition symbols appears in the list.");
bd574e49bfac *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 648
diff changeset
2858 Vstack_trace_on_error = Qnil;
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2859
684
bd574e49bfac *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 648
diff changeset
2860 DEFVAR_LISP ("debug-on-error", &Vdebug_on_error,
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2861 "*Non-nil means enter debugger if an error is signaled.\n\
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2862 Does not apply to errors handled by `condition-case'.\n\
684
bd574e49bfac *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 648
diff changeset
2863 If the value is a list, an error only means to enter the debugger\n\
bd574e49bfac *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 648
diff changeset
2864 if one of its condition symbols appears in the list.\n\
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2865 See also variable `debug-on-quit'.");
684
bd574e49bfac *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 648
diff changeset
2866 Vdebug_on_error = Qnil;
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2867
13768
353d32d374db (skip_debugger): New function.
Karl Heuer <kwzh@gnu.org>
parents: 13444
diff changeset
2868 DEFVAR_LISP ("debug-ignored-errors", &Vdebug_ignored_errors,
353d32d374db (skip_debugger): New function.
Karl Heuer <kwzh@gnu.org>
parents: 13444
diff changeset
2869 "*List of errors for which the debugger should not be called.\n\
353d32d374db (skip_debugger): New function.
Karl Heuer <kwzh@gnu.org>
parents: 13444
diff changeset
2870 Each element may be a condition-name or a regexp that matches error messages.\n\
353d32d374db (skip_debugger): New function.
Karl Heuer <kwzh@gnu.org>
parents: 13444
diff changeset
2871 If any element applies to a given error, that error skips the debugger\n\
353d32d374db (skip_debugger): New function.
Karl Heuer <kwzh@gnu.org>
parents: 13444
diff changeset
2872 and just returns to top level.\n\
353d32d374db (skip_debugger): New function.
Karl Heuer <kwzh@gnu.org>
parents: 13444
diff changeset
2873 This overrides the variable `debug-on-error'.\n\
353d32d374db (skip_debugger): New function.
Karl Heuer <kwzh@gnu.org>
parents: 13444
diff changeset
2874 It does not apply to errors handled by `condition-case'.");
353d32d374db (skip_debugger): New function.
Karl Heuer <kwzh@gnu.org>
parents: 13444
diff changeset
2875 Vdebug_ignored_errors = Qnil;
353d32d374db (skip_debugger): New function.
Karl Heuer <kwzh@gnu.org>
parents: 13444
diff changeset
2876
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2877 DEFVAR_BOOL ("debug-on-quit", &debug_on_quit,
7511
9ec3fc16ab3a (syms_of_eval): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents: 7353
diff changeset
2878 "*Non-nil means enter debugger if quit is signaled (C-g, for example).\n\
940
32f59f790757 Fixed syntax error.
Joseph Arceneaux <jla@gnu.org>
parents: 933
diff changeset
2879 Does not apply if quit is handled by a `condition-case'.");
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2880 debug_on_quit = 0;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2881
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2882 DEFVAR_BOOL ("debug-on-next-call", &debug_on_next_call,
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2883 "Non-nil means enter debugger before next `eval', `apply' or `funcall'.");
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2884
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2885 DEFVAR_LISP ("debugger", &Vdebugger,
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2886 "Function to call to invoke debugger.\n\
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2887 If due to frame exit, args are `exit' and the value being returned;\n\
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2888 this function's value will be returned instead of that.\n\
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2889 If due to error, args are `error' and a list of the args to `signal'.\n\
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2890 If due to `apply' or `funcall' entry, one arg, `lambda'.\n\
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2891 If due to `eval' entry, one arg, t.");
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2892 Vdebugger = Qnil;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2893
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2894 Qmocklisp_arguments = intern ("mocklisp-arguments");
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2895 staticpro (&Qmocklisp_arguments);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2896 DEFVAR_LISP ("mocklisp-arguments", &Vmocklisp_arguments,
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2897 "While in a mocklisp function, the list of its unevaluated args.");
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2898 Vmocklisp_arguments = Qt;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2899
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2900 DEFVAR_LISP ("run-hooks", &Vrun_hooks,
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2901 "Set to the function `run-hooks', if that function has been defined.\n\
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2902 Otherwise, nil (in a bare Emacs without preloaded Lisp code).");
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2903
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2904 staticpro (&Vautoload_queue);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2905 Vautoload_queue = Qnil;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2906
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2907 defsubr (&Sor);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2908 defsubr (&Sand);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2909 defsubr (&Sif);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2910 defsubr (&Scond);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2911 defsubr (&Sprogn);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2912 defsubr (&Sprog1);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2913 defsubr (&Sprog2);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2914 defsubr (&Ssetq);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2915 defsubr (&Squote);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2916 defsubr (&Sfunction);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2917 defsubr (&Sdefun);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2918 defsubr (&Sdefmacro);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2919 defsubr (&Sdefvar);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2920 defsubr (&Sdefconst);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2921 defsubr (&Suser_variable_p);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2922 defsubr (&Slet);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2923 defsubr (&SletX);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2924 defsubr (&Swhile);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2925 defsubr (&Smacroexpand);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2926 defsubr (&Scatch);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2927 defsubr (&Sthrow);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2928 defsubr (&Sunwind_protect);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2929 defsubr (&Scondition_case);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2930 defsubr (&Ssignal);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2931 defsubr (&Sinteractive_p);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2932 defsubr (&Scommandp);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2933 defsubr (&Sautoload);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2934 defsubr (&Seval);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2935 defsubr (&Sapply);
12732
981b924c832b Add Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success, Frun_hook_with_args_until_failure in terms of run_hook_with_args.
Simon Marshall <simon@gnu.org>
parents: 12711
diff changeset
2936 defsubr (&Sfuncall);
981b924c832b Add Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success, Frun_hook_with_args_until_failure in terms of run_hook_with_args.
Simon Marshall <simon@gnu.org>
parents: 12711
diff changeset
2937 defsubr (&Srun_hooks);
12711
a8feaa42d775 (syms_of_eval): Add missing defsubr.
Karl Heuer <kwzh@gnu.org>
parents: 12663
diff changeset
2938 defsubr (&Srun_hook_with_args);
12732
981b924c832b Add Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success, Frun_hook_with_args_until_failure in terms of run_hook_with_args.
Simon Marshall <simon@gnu.org>
parents: 12711
diff changeset
2939 defsubr (&Srun_hook_with_args_until_success);
981b924c832b Add Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success, Frun_hook_with_args_until_failure in terms of run_hook_with_args.
Simon Marshall <simon@gnu.org>
parents: 12711
diff changeset
2940 defsubr (&Srun_hook_with_args_until_failure);
11205
81a008df9184 (Ffetch_bytecode): New function.
Karl Heuer <kwzh@gnu.org>
parents: 11007
diff changeset
2941 defsubr (&Sfetch_bytecode);
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2942 defsubr (&Sbacktrace_debug);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2943 defsubr (&Sbacktrace);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2944 defsubr (&Sbacktrace_frame);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2945 }