annotate src/eval.c @ 105364:338d102432df

* eval.c (Fcalled_interactively_p): Add `kind' argument. * subr.el (interactive-p): Mark obsolete. (called-interactively-p): Make the optional-ness of `kind' obsolete. * emacs-lisp/bytecomp.el (byte-compile-fdefinition): Make it obey advertised-signature-table for subroutines as well.
author Stefan Monnier <monnier@iro.umontreal.ca>
date Thu, 01 Oct 2009 17:47:38 +0000
parents fb0a1e29af2a
children 68dd71358159
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.
61901
787052160d87 (do_autoload): Record only autoloads in the autoload property of symbols.
Lute Kamstra <lute@gnu.org>
parents: 61250
diff changeset
2 Copyright (C) 1985, 1986, 1987, 1993, 1994, 1995, 1999, 2000, 2001,
100951
e038c1a8307c Add 2009 to copyright years.
Glenn Morris <rgm@gnu.org>
parents: 100243
diff changeset
3 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009
79759
fc2bcd2a8aad Add 2008 to copyright years.
Glenn Morris <rgm@gnu.org>
parents: 79207
diff changeset
4 Free Software Foundation, Inc.
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6 This file is part of GNU Emacs.
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7
94963
8971ddf55736 Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents: 93989
diff changeset
8 GNU Emacs is free software: you can redistribute it and/or modify
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
9 it under the terms of the GNU General Public License as published by
94963
8971ddf55736 Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents: 93989
diff changeset
10 the Free Software Foundation, either version 3 of the License, or
8971ddf55736 Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents: 93989
diff changeset
11 (at your option) any later version.
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
12
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
13 GNU Emacs is distributed in the hope that it will be useful,
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
16 GNU General Public License for more details.
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
17
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
18 You should have received a copy of the GNU General Public License
94963
8971ddf55736 Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents: 93989
diff changeset
19 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
20
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
21
4696
1fc792473491 Include <config.h> instead of "config.h".
Roland McGrath <roland@gnu.org>
parents: 4474
diff changeset
22 #include <config.h>
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
23 #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
24 #include "blockinput.h"
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
25 #include "commands.h"
515
0005d4c90c97 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 485
diff changeset
26 #include "keyboard.h"
26764
9fd028e7872c (call_debugger): When entering the debugger while redisplaying,
Gerd Moellmann <gerd@gnu.org>
parents: 26365
diff changeset
27 #include "dispextern.h"
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
28 #include <setjmp.h>
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
29
73323
d38d245297fa Include xterm.h for x_fully_uncatch_errors and friends.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 72730
diff changeset
30 #if HAVE_X_WINDOWS
d38d245297fa Include xterm.h for x_fully_uncatch_errors and friends.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 72730
diff changeset
31 #include "xterm.h"
d38d245297fa Include xterm.h for x_fully_uncatch_errors and friends.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 72730
diff changeset
32 #endif
d38d245297fa Include xterm.h for x_fully_uncatch_errors and friends.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 72730
diff changeset
33
272
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
30080
f8f9badf6750 (handling_signal): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 30073
diff changeset
38 {
f8f9badf6750 (handling_signal): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 30073
diff changeset
39 struct backtrace *next;
f8f9badf6750 (handling_signal): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 30073
diff changeset
40 Lisp_Object *function;
f8f9badf6750 (handling_signal): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 30073
diff changeset
41 Lisp_Object *args; /* Points to vector of args. */
f8f9badf6750 (handling_signal): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 30073
diff changeset
42 int nargs; /* Length of vector.
727
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 */
30080
f8f9badf6750 (handling_signal): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 30073
diff changeset
45 char evalargs;
f8f9badf6750 (handling_signal): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 30073
diff changeset
46 /* Nonzero means call value of debugger when done with this operation. */
f8f9badf6750 (handling_signal): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 30073
diff changeset
47 char debug_on_exit;
f8f9badf6750 (handling_signal): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 30073
diff changeset
48 };
272
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. */
30080
f8f9badf6750 (handling_signal): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 30073
diff changeset
70
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
71 struct catchtag
30080
f8f9badf6750 (handling_signal): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 30073
diff changeset
72 {
f8f9badf6750 (handling_signal): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 30073
diff changeset
73 Lisp_Object tag;
f8f9badf6750 (handling_signal): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 30073
diff changeset
74 Lisp_Object val;
f8f9badf6750 (handling_signal): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 30073
diff changeset
75 struct catchtag *next;
f8f9badf6750 (handling_signal): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 30073
diff changeset
76 struct gcpro *gcpro;
f8f9badf6750 (handling_signal): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 30073
diff changeset
77 jmp_buf jmp;
f8f9badf6750 (handling_signal): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 30073
diff changeset
78 struct backtrace *backlist;
f8f9badf6750 (handling_signal): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 30073
diff changeset
79 struct handler *handlerlist;
f8f9badf6750 (handling_signal): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 30073
diff changeset
80 int lisp_eval_depth;
f8f9badf6750 (handling_signal): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 30073
diff changeset
81 int pdlcount;
f8f9badf6750 (handling_signal): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 30073
diff changeset
82 int poll_suppress_count;
48909
ac6f6d4b84ec Errors and throws work right with interrupt blocking.
Richard M. Stallman <rms@gnu.org>
parents: 48742
diff changeset
83 int interrupt_input_blocked;
30080
f8f9badf6750 (handling_signal): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 30073
diff changeset
84 struct byte_stack *byte_stack;
f8f9badf6750 (handling_signal): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 30073
diff changeset
85 };
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
86
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
87 struct catchtag *catchlist;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
88
26297
4d1e267efd41 [DEBUG_GCPRO] (gcpro_level): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 26088
diff changeset
89 #ifdef DEBUG_GCPRO
4d1e267efd41 [DEBUG_GCPRO] (gcpro_level): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 26088
diff changeset
90 /* Count levels of GCPRO to detect failure to UNGCPRO. */
4d1e267efd41 [DEBUG_GCPRO] (gcpro_level): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 26088
diff changeset
91 int gcpro_level;
4d1e267efd41 [DEBUG_GCPRO] (gcpro_level): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 26088
diff changeset
92 #endif
4d1e267efd41 [DEBUG_GCPRO] (gcpro_level): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 26088
diff changeset
93
59109
0b61bbccc6e1 (Fdefun, Fdefmacro): Use (defun . FN_NAME) in LOADHIST_ATTACH.
Richard M. Stallman <rms@gnu.org>
parents: 59051
diff changeset
94 Lisp_Object Qautoload, Qmacro, Qexit, Qinteractive, Qcommandp, Qdefun;
381
0673e72f6c8c *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 323
diff changeset
95 Lisp_Object Qinhibit_quit, Vinhibit_quit, Vquit_flag;
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
96 Lisp_Object Qand_rest, Qand_optional;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
97 Lisp_Object Qdebug_on_error;
44132
8b63b08a2619 (Qdeclare, Vmacro_declaration_function): New variables.
Gerd Moellmann <gerd@gnu.org>
parents: 43713
diff changeset
98 Lisp_Object Qdeclare;
78141
5589aa4fb553 (Fsetq): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 75348
diff changeset
99 Lisp_Object Qdebug;
102719
1ffe92a6d13c (Fcommandp): Use Qinteractive_form.
Chong Yidong <cyd@stupidchicken.com>
parents: 100951
diff changeset
100 extern Lisp_Object Qinteractive_form;
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
101
16296
584310941e70 (syms_of_eval): Initialize Vrun_hooks here.
Richard M. Stallman <rms@gnu.org>
parents: 16113
diff changeset
102 /* This holds either the symbol `run-hooks' or nil.
584310941e70 (syms_of_eval): Initialize Vrun_hooks here.
Richard M. Stallman <rms@gnu.org>
parents: 16113
diff changeset
103 It is nil at an early stage of startup, and when Emacs
584310941e70 (syms_of_eval): Initialize Vrun_hooks here.
Richard M. Stallman <rms@gnu.org>
parents: 16113
diff changeset
104 is shutting down. */
30080
f8f9badf6750 (handling_signal): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 30073
diff changeset
105
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
106 Lisp_Object Vrun_hooks;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
107
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
108 /* Non-nil means record all fset's and provide's, to be undone
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
109 if the file being autoloaded is not fully loaded.
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
110 They are recorded by being consed onto the front of Vautoload_queue:
67810
65be704fdaf2 (un_autoload): Expect (0 . OFEATURES) in Vautoload_queue to undo a `provide'.
Richard M. Stallman <rms@gnu.org>
parents: 66528
diff changeset
111 (FUN . ODEF) for a defun, (0 . OFEATURES) for a provide. */
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
112
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
113 Lisp_Object Vautoload_queue;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
114
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
115 /* Current number of specbindings allocated in specpdl. */
30080
f8f9badf6750 (handling_signal): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 30073
diff changeset
116
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
117 int specpdl_size;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
118
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
119 /* Pointer to beginning of specpdl. */
30080
f8f9badf6750 (handling_signal): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 30073
diff changeset
120
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
121 struct specbinding *specpdl;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
122
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
123 /* Pointer to first unused element in specpdl. */
30080
f8f9badf6750 (handling_signal): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 30073
diff changeset
124
69158
812b2bed63c2 (specpdl_ptr): Remove volatile qualifier for consistency with lisp.h.
Luc Teirlinck <teirllm@auburn.edu>
parents: 69152
diff changeset
125 struct specbinding *specpdl_ptr;
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
126
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
127 /* Maximum size allowed for specpdl allocation */
30080
f8f9badf6750 (handling_signal): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 30073
diff changeset
128
43713
f92c4d87863a Change defvar_int def and vars to use EMACS_INT instead of just int.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 43056
diff changeset
129 EMACS_INT max_specpdl_size;
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
130
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
131 /* Depth in Lisp evaluations and function calls. */
30080
f8f9badf6750 (handling_signal): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 30073
diff changeset
132
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
133 int lisp_eval_depth;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
134
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
135 /* Maximum allowed depth in Lisp evaluations and function calls. */
30080
f8f9badf6750 (handling_signal): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 30073
diff changeset
136
43713
f92c4d87863a Change defvar_int def and vars to use EMACS_INT instead of just int.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 43056
diff changeset
137 EMACS_INT max_lisp_eval_depth;
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
138
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
139 /* Nonzero means enter debugger before next function call */
30080
f8f9badf6750 (handling_signal): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 30073
diff changeset
140
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
141 int debug_on_next_call;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
142
40661
2677a5e901f8 (debugger_may_continue, Vdebug_ignored_errors, call_debugger,
Pavel Janík <Pavel@Janik.cz>
parents: 40656
diff changeset
143 /* Non-zero means debugger may continue. This is zero when the
26947
7987a6499aaa (debugger_may_continue): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 26764
diff changeset
144 debugger is called during redisplay, where it might not be safe to
7987a6499aaa (debugger_may_continue): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 26764
diff changeset
145 continue the interrupted redisplay. */
7987a6499aaa (debugger_may_continue): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 26764
diff changeset
146
7987a6499aaa (debugger_may_continue): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 26764
diff changeset
147 int debugger_may_continue;
7987a6499aaa (debugger_may_continue): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 26764
diff changeset
148
684
bd574e49bfac *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 648
diff changeset
149 /* 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
150 if an error is handled by the command loop's error handler. */
30080
f8f9badf6750 (handling_signal): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 30073
diff changeset
151
684
bd574e49bfac *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 648
diff changeset
152 Lisp_Object Vstack_trace_on_error;
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
153
684
bd574e49bfac *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 648
diff changeset
154 /* 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
155 if an error is handled by the command loop's error handler. */
30080
f8f9badf6750 (handling_signal): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 30073
diff changeset
156
684
bd574e49bfac *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 648
diff changeset
157 Lisp_Object Vdebug_on_error;
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
158
13768
353d32d374db (skip_debugger): New function.
Karl Heuer <kwzh@gnu.org>
parents: 13444
diff changeset
159 /* List of conditions and regexps specifying error messages which
40661
2677a5e901f8 (debugger_may_continue, Vdebug_ignored_errors, call_debugger,
Pavel Janík <Pavel@Janik.cz>
parents: 40656
diff changeset
160 do not enter the debugger even if Vdebug_on_error says they should. */
30080
f8f9badf6750 (handling_signal): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 30073
diff changeset
161
13768
353d32d374db (skip_debugger): New function.
Karl Heuer <kwzh@gnu.org>
parents: 13444
diff changeset
162 Lisp_Object Vdebug_ignored_errors;
353d32d374db (skip_debugger): New function.
Karl Heuer <kwzh@gnu.org>
parents: 13444
diff changeset
163
16355
1d85b2698564 (Vdebug_force): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 16296
diff changeset
164 /* Non-nil means call the debugger even if the error will be handled. */
30080
f8f9badf6750 (handling_signal): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 30073
diff changeset
165
16443
0128b923d281 (Vdebug_on_signal): Renamed from Vdebug_force.
Richard M. Stallman <rms@gnu.org>
parents: 16355
diff changeset
166 Lisp_Object Vdebug_on_signal;
16355
1d85b2698564 (Vdebug_force): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 16296
diff changeset
167
1d85b2698564 (Vdebug_force): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 16296
diff changeset
168 /* Hook for edebug to use. */
30080
f8f9badf6750 (handling_signal): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 30073
diff changeset
169
16355
1d85b2698564 (Vdebug_force): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 16296
diff changeset
170 Lisp_Object Vsignal_hook_function;
1d85b2698564 (Vdebug_force): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 16296
diff changeset
171
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
172 /* Nonzero means enter debugger if a quit signal
684
bd574e49bfac *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 648
diff changeset
173 is handled by the command loop's error handler. */
30080
f8f9badf6750 (handling_signal): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 30073
diff changeset
174
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
175 int debug_on_quit;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
176
17872
31b2c6763574 (num_nonmacro_input_events):
Richard M. Stallman <rms@gnu.org>
parents: 17275
diff changeset
177 /* The value of num_nonmacro_input_events as of the last time we
1196
65e2edefe748 * eval.c (Fcondition_case): Rearranged for clarity. Don't worry
Jim Blandy <jimb@redhat.com>
parents: 940
diff changeset
178 started to enter the debugger. If we decide to enter the debugger
17872
31b2c6763574 (num_nonmacro_input_events):
Richard M. Stallman <rms@gnu.org>
parents: 17275
diff changeset
179 again when this is still equal to num_nonmacro_input_events, then we
1196
65e2edefe748 * eval.c (Fcondition_case): Rearranged for clarity. Don't worry
Jim Blandy <jimb@redhat.com>
parents: 940
diff changeset
180 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
181 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
182 invocations. */
30080
f8f9badf6750 (handling_signal): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 30073
diff changeset
183
1196
65e2edefe748 * eval.c (Fcondition_case): Rearranged for clarity. Don't worry
Jim Blandy <jimb@redhat.com>
parents: 940
diff changeset
184 int when_entered_debugger;
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
185
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
186 Lisp_Object Vdebugger;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
187
30073
ed8f34a43649 (Vsignaling_function): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 30058
diff changeset
188 /* The function from which the last `signal' was called. Set in
ed8f34a43649 (Vsignaling_function): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 30058
diff changeset
189 Fsignal. */
ed8f34a43649 (Vsignaling_function): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 30058
diff changeset
190
ed8f34a43649 (Vsignaling_function): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 30058
diff changeset
191 Lisp_Object Vsignaling_function;
ed8f34a43649 (Vsignaling_function): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 30058
diff changeset
192
30080
f8f9badf6750 (handling_signal): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 30073
diff changeset
193 /* Set to non-zero while processing X events. Checked in Feval to
f8f9badf6750 (handling_signal): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 30073
diff changeset
194 make sure the Lisp interpreter isn't called from a signal handler,
f8f9badf6750 (handling_signal): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 30073
diff changeset
195 which is unsafe because the interpreter isn't reentrant. */
f8f9badf6750 (handling_signal): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 30073
diff changeset
196
f8f9badf6750 (handling_signal): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 30073
diff changeset
197 int handling_signal;
f8f9badf6750 (handling_signal): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 30073
diff changeset
198
44132
8b63b08a2619 (Qdeclare, Vmacro_declaration_function): New variables.
Gerd Moellmann <gerd@gnu.org>
parents: 43713
diff changeset
199 /* Function to process declarations in defmacro forms. */
8b63b08a2619 (Qdeclare, Vmacro_declaration_function): New variables.
Gerd Moellmann <gerd@gnu.org>
parents: 43713
diff changeset
200
8b63b08a2619 (Qdeclare, Vmacro_declaration_function): New variables.
Gerd Moellmann <gerd@gnu.org>
parents: 43713
diff changeset
201 Lisp_Object Vmacro_declaration_function;
8b63b08a2619 (Qdeclare, Vmacro_declaration_function): New variables.
Gerd Moellmann <gerd@gnu.org>
parents: 43713
diff changeset
202
71341
012bd1b59e70 (Fdefconst): Mark variable as risky.
Richard M. Stallman <rms@gnu.org>
parents: 70084
diff changeset
203 extern Lisp_Object Qrisky_local_variable;
44132
8b63b08a2619 (Qdeclare, Vmacro_declaration_function): New variables.
Gerd Moellmann <gerd@gnu.org>
parents: 43713
diff changeset
204
82463
617c0965e1f4 (Ffunction, Fquote): Signal error if not 1 argument.
Richard M. Stallman <rms@gnu.org>
parents: 82404
diff changeset
205 extern Lisp_Object Qfunction;
617c0965e1f4 (Ffunction, Fquote): Signal error if not 1 argument.
Richard M. Stallman <rms@gnu.org>
parents: 82404
diff changeset
206
41114
242c6928accc (max_specpdl_size, max_lisp_eval_depth): Use EMACS_INT.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 41029
diff changeset
207 static Lisp_Object funcall_lambda P_ ((Lisp_Object, int, Lisp_Object*));
72005
da0099bc0ba4 * ebrowse.c (usage, version): Mark as NO_RETURN.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 71976
diff changeset
208 static void unwind_to_catch P_ ((struct catchtag *, Lisp_Object)) NO_RETURN;
72610
01fdc3c9ea0e (apply1, call2) [__GNUC__]: Declare with `__attribute__((noinline))'.
Eli Zaretskii <eliz@gnu.org>
parents: 72005
diff changeset
209
01fdc3c9ea0e (apply1, call2) [__GNUC__]: Declare with `__attribute__((noinline))'.
Eli Zaretskii <eliz@gnu.org>
parents: 72005
diff changeset
210 #if __GNUC__
01fdc3c9ea0e (apply1, call2) [__GNUC__]: Declare with `__attribute__((noinline))'.
Eli Zaretskii <eliz@gnu.org>
parents: 72005
diff changeset
211 /* "gcc -O3" enables automatic function inlining, which optimizes out
01fdc3c9ea0e (apply1, call2) [__GNUC__]: Declare with `__attribute__((noinline))'.
Eli Zaretskii <eliz@gnu.org>
parents: 72005
diff changeset
212 the arguments for the invocations of these functions, whereas they
01fdc3c9ea0e (apply1, call2) [__GNUC__]: Declare with `__attribute__((noinline))'.
Eli Zaretskii <eliz@gnu.org>
parents: 72005
diff changeset
213 expect these values on the stack. */
01fdc3c9ea0e (apply1, call2) [__GNUC__]: Declare with `__attribute__((noinline))'.
Eli Zaretskii <eliz@gnu.org>
parents: 72005
diff changeset
214 Lisp_Object apply1 () __attribute__((noinline));
01fdc3c9ea0e (apply1, call2) [__GNUC__]: Declare with `__attribute__((noinline))'.
Eli Zaretskii <eliz@gnu.org>
parents: 72005
diff changeset
215 Lisp_Object call2 () __attribute__((noinline));
01fdc3c9ea0e (apply1, call2) [__GNUC__]: Declare with `__attribute__((noinline))'.
Eli Zaretskii <eliz@gnu.org>
parents: 72005
diff changeset
216 #endif
71341
012bd1b59e70 (Fdefconst): Mark variable as risky.
Richard M. Stallman <rms@gnu.org>
parents: 70084
diff changeset
217
21514
fa9ff387d260 Fix -Wimplicit warnings.
Andreas Schwab <schwab@suse.de>
parents: 20378
diff changeset
218 void
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
219 init_eval_once ()
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
220 {
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
221 specpdl_size = 50;
7885
bc6406a90796 (init_eval_once): Call xmalloc, not malloc.
Richard M. Stallman <rms@gnu.org>
parents: 7533
diff changeset
222 specpdl = (struct specbinding *) xmalloc (specpdl_size * sizeof (struct specbinding));
14600
f32beac333a0 (init_eval_once): Initialize specpdl_ptr.
Karl Heuer <kwzh@gnu.org>
parents: 14218
diff changeset
223 specpdl_ptr = specpdl;
70084
e15a29aaffbd Comment munging wrt max-specpdl-size; nfc.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents: 69399
diff changeset
224 /* Don't forget to update docs (lispref node "Local Variables"). */
58827
d118146048e5 (init_eval_once): Increase max_specpdl_size to 1000.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 58734
diff changeset
225 max_specpdl_size = 1000;
104392
02a71b0c9a96 (init_eval_once): Bump max_lisp_eval_depth to 500 for js.el.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 104290
diff changeset
226 max_lisp_eval_depth = 500;
8980
e641b60610a1 (init_eval_once): Init Vrun_hooks here.
Richard M. Stallman <rms@gnu.org>
parents: 8902
diff changeset
227
e641b60610a1 (init_eval_once): Init Vrun_hooks here.
Richard M. Stallman <rms@gnu.org>
parents: 8902
diff changeset
228 Vrun_hooks = Qnil;
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
229 }
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
230
21514
fa9ff387d260 Fix -Wimplicit warnings.
Andreas Schwab <schwab@suse.de>
parents: 20378
diff changeset
231 void
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
232 init_eval ()
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
233 {
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
234 specpdl_ptr = specpdl;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
235 catchlist = 0;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
236 handlerlist = 0;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
237 backtrace_list = 0;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
238 Vquit_flag = Qnil;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
239 debug_on_next_call = 0;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
240 lisp_eval_depth = 0;
26307
155d5adcdff4 (init_eval): Conditionalize declaration of gcpro_level.
Dave Love <fx@gnu.org>
parents: 26297
diff changeset
241 #ifdef DEBUG_GCPRO
26297
4d1e267efd41 [DEBUG_GCPRO] (gcpro_level): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 26088
diff changeset
242 gcpro_level = 0;
26307
155d5adcdff4 (init_eval): Conditionalize declaration of gcpro_level.
Dave Love <fx@gnu.org>
parents: 26297
diff changeset
243 #endif
17872
31b2c6763574 (num_nonmacro_input_events):
Richard M. Stallman <rms@gnu.org>
parents: 17275
diff changeset
244 /* This is less than the initial value of num_nonmacro_input_events. */
7213
bb5db306a305 (init_eval): Initialize when_entered_debugger to -1.
Richard M. Stallman <rms@gnu.org>
parents: 6918
diff changeset
245 when_entered_debugger = -1;
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
246 }
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
247
63767
60a9b2133cf1 (call_debugger): Take full care of extending stack limits
Richard M. Stallman <rms@gnu.org>
parents: 63697
diff changeset
248 /* unwind-protect function used by call_debugger. */
60a9b2133cf1 (call_debugger): Take full care of extending stack limits
Richard M. Stallman <rms@gnu.org>
parents: 63697
diff changeset
249
60a9b2133cf1 (call_debugger): Take full care of extending stack limits
Richard M. Stallman <rms@gnu.org>
parents: 63697
diff changeset
250 static Lisp_Object
60a9b2133cf1 (call_debugger): Take full care of extending stack limits
Richard M. Stallman <rms@gnu.org>
parents: 63697
diff changeset
251 restore_stack_limits (data)
60a9b2133cf1 (call_debugger): Take full care of extending stack limits
Richard M. Stallman <rms@gnu.org>
parents: 63697
diff changeset
252 Lisp_Object data;
60a9b2133cf1 (call_debugger): Take full care of extending stack limits
Richard M. Stallman <rms@gnu.org>
parents: 63697
diff changeset
253 {
60a9b2133cf1 (call_debugger): Take full care of extending stack limits
Richard M. Stallman <rms@gnu.org>
parents: 63697
diff changeset
254 max_specpdl_size = XINT (XCAR (data));
60a9b2133cf1 (call_debugger): Take full care of extending stack limits
Richard M. Stallman <rms@gnu.org>
parents: 63697
diff changeset
255 max_lisp_eval_depth = XINT (XCDR (data));
64568
72d33fd23736 (restore_stack_limits): Return a value.
Andreas Schwab <schwab@suse.de>
parents: 64540
diff changeset
256 return Qnil;
63767
60a9b2133cf1 (call_debugger): Take full care of extending stack limits
Richard M. Stallman <rms@gnu.org>
parents: 63697
diff changeset
257 }
60a9b2133cf1 (call_debugger): Take full care of extending stack limits
Richard M. Stallman <rms@gnu.org>
parents: 63697
diff changeset
258
60a9b2133cf1 (call_debugger): Take full care of extending stack limits
Richard M. Stallman <rms@gnu.org>
parents: 63697
diff changeset
259 /* Call the Lisp debugger, giving it argument ARG. */
60a9b2133cf1 (call_debugger): Take full care of extending stack limits
Richard M. Stallman <rms@gnu.org>
parents: 63697
diff changeset
260
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
261 Lisp_Object
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
262 call_debugger (arg)
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
263 Lisp_Object arg;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
264 {
26764
9fd028e7872c (call_debugger): When entering the debugger while redisplaying,
Gerd Moellmann <gerd@gnu.org>
parents: 26365
diff changeset
265 int debug_while_redisplaying;
46293
1fb8f75062c6 Use macro SPECPDL_INDEX.
Juanma Barranquero <lekktu@gmail.com>
parents: 46198
diff changeset
266 int count = SPECPDL_INDEX ();
26764
9fd028e7872c (call_debugger): When entering the debugger while redisplaying,
Gerd Moellmann <gerd@gnu.org>
parents: 26365
diff changeset
267 Lisp_Object val;
63767
60a9b2133cf1 (call_debugger): Take full care of extending stack limits
Richard M. Stallman <rms@gnu.org>
parents: 63697
diff changeset
268 int old_max = max_specpdl_size;
60a9b2133cf1 (call_debugger): Take full care of extending stack limits
Richard M. Stallman <rms@gnu.org>
parents: 63697
diff changeset
269
60a9b2133cf1 (call_debugger): Take full care of extending stack limits
Richard M. Stallman <rms@gnu.org>
parents: 63697
diff changeset
270 /* Temporarily bump up the stack limits,
60a9b2133cf1 (call_debugger): Take full care of extending stack limits
Richard M. Stallman <rms@gnu.org>
parents: 63697
diff changeset
271 so the debugger won't run out of stack. */
60a9b2133cf1 (call_debugger): Take full care of extending stack limits
Richard M. Stallman <rms@gnu.org>
parents: 63697
diff changeset
272
60a9b2133cf1 (call_debugger): Take full care of extending stack limits
Richard M. Stallman <rms@gnu.org>
parents: 63697
diff changeset
273 max_specpdl_size += 1;
60a9b2133cf1 (call_debugger): Take full care of extending stack limits
Richard M. Stallman <rms@gnu.org>
parents: 63697
diff changeset
274 record_unwind_protect (restore_stack_limits,
60a9b2133cf1 (call_debugger): Take full care of extending stack limits
Richard M. Stallman <rms@gnu.org>
parents: 63697
diff changeset
275 Fcons (make_number (old_max),
60a9b2133cf1 (call_debugger): Take full care of extending stack limits
Richard M. Stallman <rms@gnu.org>
parents: 63697
diff changeset
276 make_number (max_lisp_eval_depth)));
60a9b2133cf1 (call_debugger): Take full care of extending stack limits
Richard M. Stallman <rms@gnu.org>
parents: 63697
diff changeset
277 max_specpdl_size = old_max;
60a9b2133cf1 (call_debugger): Take full care of extending stack limits
Richard M. Stallman <rms@gnu.org>
parents: 63697
diff changeset
278
60a9b2133cf1 (call_debugger): Take full care of extending stack limits
Richard M. Stallman <rms@gnu.org>
parents: 63697
diff changeset
279 if (lisp_eval_depth + 40 > max_lisp_eval_depth)
60a9b2133cf1 (call_debugger): Take full care of extending stack limits
Richard M. Stallman <rms@gnu.org>
parents: 63697
diff changeset
280 max_lisp_eval_depth = lisp_eval_depth + 40;
60a9b2133cf1 (call_debugger): Take full care of extending stack limits
Richard M. Stallman <rms@gnu.org>
parents: 63697
diff changeset
281
60a9b2133cf1 (call_debugger): Take full care of extending stack limits
Richard M. Stallman <rms@gnu.org>
parents: 63697
diff changeset
282 if (SPECPDL_INDEX () + 100 > max_specpdl_size)
60a9b2133cf1 (call_debugger): Take full care of extending stack limits
Richard M. Stallman <rms@gnu.org>
parents: 63697
diff changeset
283 max_specpdl_size = SPECPDL_INDEX () + 100;
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 49105
diff changeset
284
93071
8bb58b63a5fd * w32fns.c (hourglass_timer, hourglass_hwnd): New variables.
Jason Rumney <jasonr@gnu.org>
parents: 91607
diff changeset
285 #ifdef HAVE_WINDOW_SYSTEM
36256
e033d60bd048 Use display_hourglass_p, start_hourglass, cancel_hourglass instead of
Gerd Moellmann <gerd@gnu.org>
parents: 35774
diff changeset
286 if (display_hourglass_p)
e033d60bd048 Use display_hourglass_p, start_hourglass, cancel_hourglass instead of
Gerd Moellmann <gerd@gnu.org>
parents: 35774
diff changeset
287 cancel_hourglass ();
28383
55d5c0156349 (call_debugger): Cancel busy-cursor.
Gerd Moellmann <gerd@gnu.org>
parents: 28297
diff changeset
288 #endif
55d5c0156349 (call_debugger): Cancel busy-cursor.
Gerd Moellmann <gerd@gnu.org>
parents: 28297
diff changeset
289
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
290 debug_on_next_call = 0;
17872
31b2c6763574 (num_nonmacro_input_events):
Richard M. Stallman <rms@gnu.org>
parents: 17275
diff changeset
291 when_entered_debugger = num_nonmacro_input_events;
26764
9fd028e7872c (call_debugger): When entering the debugger while redisplaying,
Gerd Moellmann <gerd@gnu.org>
parents: 26365
diff changeset
292
9fd028e7872c (call_debugger): When entering the debugger while redisplaying,
Gerd Moellmann <gerd@gnu.org>
parents: 26365
diff changeset
293 /* Resetting redisplaying_p to 0 makes sure that debug output is
9fd028e7872c (call_debugger): When entering the debugger while redisplaying,
Gerd Moellmann <gerd@gnu.org>
parents: 26365
diff changeset
294 displayed if the debugger is invoked during redisplay. */
9fd028e7872c (call_debugger): When entering the debugger while redisplaying,
Gerd Moellmann <gerd@gnu.org>
parents: 26365
diff changeset
295 debug_while_redisplaying = redisplaying_p;
9fd028e7872c (call_debugger): When entering the debugger while redisplaying,
Gerd Moellmann <gerd@gnu.org>
parents: 26365
diff changeset
296 redisplaying_p = 0;
26947
7987a6499aaa (debugger_may_continue): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 26764
diff changeset
297 specbind (intern ("debugger-may-continue"),
7987a6499aaa (debugger_may_continue): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 26764
diff changeset
298 debug_while_redisplaying ? Qnil : Qt);
37043
451c5848dd13 (call_debugger): Bind `inhibit-redisplay' to nil, and
Gerd Moellmann <gerd@gnu.org>
parents: 36817
diff changeset
299 specbind (Qinhibit_redisplay, Qnil);
63767
60a9b2133cf1 (call_debugger): Take full care of extending stack limits
Richard M. Stallman <rms@gnu.org>
parents: 63697
diff changeset
300 specbind (Qdebug_on_error, Qnil);
37799
d10de887e52e (call_debugger): Don't bind inhibit-eval-during-redisplay.
Gerd Moellmann <gerd@gnu.org>
parents: 37732
diff changeset
301
d10de887e52e (call_debugger): Don't bind inhibit-eval-during-redisplay.
Gerd Moellmann <gerd@gnu.org>
parents: 37732
diff changeset
302 #if 0 /* Binding this prevents execution of Lisp code during
d10de887e52e (call_debugger): Don't bind inhibit-eval-during-redisplay.
Gerd Moellmann <gerd@gnu.org>
parents: 37732
diff changeset
303 redisplay, which necessarily leads to display problems. */
37043
451c5848dd13 (call_debugger): Bind `inhibit-redisplay' to nil, and
Gerd Moellmann <gerd@gnu.org>
parents: 36817
diff changeset
304 specbind (Qinhibit_eval_during_redisplay, Qt);
37799
d10de887e52e (call_debugger): Don't bind inhibit-eval-during-redisplay.
Gerd Moellmann <gerd@gnu.org>
parents: 37732
diff changeset
305 #endif
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 49105
diff changeset
306
26764
9fd028e7872c (call_debugger): When entering the debugger while redisplaying,
Gerd Moellmann <gerd@gnu.org>
parents: 26365
diff changeset
307 val = apply1 (Vdebugger, arg);
9fd028e7872c (call_debugger): When entering the debugger while redisplaying,
Gerd Moellmann <gerd@gnu.org>
parents: 26365
diff changeset
308
9fd028e7872c (call_debugger): When entering the debugger while redisplaying,
Gerd Moellmann <gerd@gnu.org>
parents: 26365
diff changeset
309 /* Interrupting redisplay and resuming it later is not safe under
9fd028e7872c (call_debugger): When entering the debugger while redisplaying,
Gerd Moellmann <gerd@gnu.org>
parents: 26365
diff changeset
310 all circumstances. So, when the debugger returns, abort the
40661
2677a5e901f8 (debugger_may_continue, Vdebug_ignored_errors, call_debugger,
Pavel Janík <Pavel@Janik.cz>
parents: 40656
diff changeset
311 interrupted redisplay by going back to the top-level. */
26764
9fd028e7872c (call_debugger): When entering the debugger while redisplaying,
Gerd Moellmann <gerd@gnu.org>
parents: 26365
diff changeset
312 if (debug_while_redisplaying)
9fd028e7872c (call_debugger): When entering the debugger while redisplaying,
Gerd Moellmann <gerd@gnu.org>
parents: 26365
diff changeset
313 Ftop_level ();
9fd028e7872c (call_debugger): When entering the debugger while redisplaying,
Gerd Moellmann <gerd@gnu.org>
parents: 26365
diff changeset
314
26947
7987a6499aaa (debugger_may_continue): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 26764
diff changeset
315 return unbind_to (count, val);
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
316 }
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
317
21514
fa9ff387d260 Fix -Wimplicit warnings.
Andreas Schwab <schwab@suse.de>
parents: 20378
diff changeset
318 void
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
319 do_debug_on_call (code)
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
320 Lisp_Object code;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
321 {
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
322 debug_on_next_call = 0;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
323 backtrace_list->debug_on_exit = 1;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
324 call_debugger (Fcons (code, Qnil));
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
325 }
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
326
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
327 /* NOTE!!! Every function that can call EVAL must protect its args
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
328 and temporaries from garbage collection while it needs them.
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
329 The definition of `For' shows what you have to do. */
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
330
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
331 DEFUN ("or", For, Sor, 0, UNEVALLED, 0,
40570
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
332 doc: /* Eval args until one of them yields non-nil, then return that value.
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
333 The remaining args are not evalled at all.
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
334 If all args return nil, return nil.
78153
fb666c8f678a (For, Fand, Fprogn): Doc fixes.
Juanma Barranquero <lekktu@gmail.com>
parents: 78141
diff changeset
335 usage: (or CONDITIONS...) */)
40570
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
336 (args)
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
337 Lisp_Object args;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
338 {
50630
dfbdcffdcfc9 (For, Fand, Fprogn, un_autoload, do_autoload): Use XCDR, XCAR, CONSP.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 49752
diff changeset
339 register Lisp_Object val = Qnil;
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
340 struct gcpro gcpro1;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
341
50630
dfbdcffdcfc9 (For, Fand, Fprogn, un_autoload, do_autoload): Use XCDR, XCAR, CONSP.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 49752
diff changeset
342 GCPRO1 (args);
dfbdcffdcfc9 (For, Fand, Fprogn, un_autoload, do_autoload): Use XCDR, XCAR, CONSP.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 49752
diff changeset
343
dfbdcffdcfc9 (For, Fand, Fprogn, un_autoload, do_autoload): Use XCDR, XCAR, CONSP.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 49752
diff changeset
344 while (CONSP (args))
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
345 {
50630
dfbdcffdcfc9 (For, Fand, Fprogn, un_autoload, do_autoload): Use XCDR, XCAR, CONSP.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 49752
diff changeset
346 val = Feval (XCAR (args));
485
8c615e453683 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 431
diff changeset
347 if (!NILP (val))
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
348 break;
50630
dfbdcffdcfc9 (For, Fand, Fprogn, un_autoload, do_autoload): Use XCDR, XCAR, CONSP.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 49752
diff changeset
349 args = XCDR (args);
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
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
352 UNGCPRO;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
353 return val;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
354 }
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
355
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
356 DEFUN ("and", Fand, Sand, 0, UNEVALLED, 0,
40983
c767a5ebe4cd (Fif): Reindent.
Pavel Janík <Pavel@Janik.cz>
parents: 40703
diff changeset
357 doc: /* Eval args until one of them yields nil, then return nil.
40570
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
358 The remaining args are not evalled at all.
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
359 If no arg yields nil, return the last arg's value.
78153
fb666c8f678a (For, Fand, Fprogn): Doc fixes.
Juanma Barranquero <lekktu@gmail.com>
parents: 78141
diff changeset
360 usage: (and CONDITIONS...) */)
40570
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
361 (args)
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
362 Lisp_Object args;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
363 {
50630
dfbdcffdcfc9 (For, Fand, Fprogn, un_autoload, do_autoload): Use XCDR, XCAR, CONSP.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 49752
diff changeset
364 register Lisp_Object val = Qt;
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
365 struct gcpro gcpro1;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
366
50630
dfbdcffdcfc9 (For, Fand, Fprogn, un_autoload, do_autoload): Use XCDR, XCAR, CONSP.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 49752
diff changeset
367 GCPRO1 (args);
dfbdcffdcfc9 (For, Fand, Fprogn, un_autoload, do_autoload): Use XCDR, XCAR, CONSP.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 49752
diff changeset
368
dfbdcffdcfc9 (For, Fand, Fprogn, un_autoload, do_autoload): Use XCDR, XCAR, CONSP.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 49752
diff changeset
369 while (CONSP (args))
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
370 {
50630
dfbdcffdcfc9 (For, Fand, Fprogn, un_autoload, do_autoload): Use XCDR, XCAR, CONSP.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 49752
diff changeset
371 val = Feval (XCAR (args));
485
8c615e453683 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 431
diff changeset
372 if (NILP (val))
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
373 break;
50630
dfbdcffdcfc9 (For, Fand, Fprogn, un_autoload, do_autoload): Use XCDR, XCAR, CONSP.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 49752
diff changeset
374 args = XCDR (args);
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
375 }
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
376
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
377 UNGCPRO;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
378 return val;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
379 }
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
380
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
381 DEFUN ("if", Fif, Sif, 2, UNEVALLED, 0,
40983
c767a5ebe4cd (Fif): Reindent.
Pavel Janík <Pavel@Janik.cz>
parents: 40703
diff changeset
382 doc: /* If COND yields non-nil, do THEN, else do ELSE...
40570
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
383 Returns the value of THEN or the value of the last of the ELSE's.
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
384 THEN must be one expression, but ELSE... can be zero or more expressions.
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
385 If COND yields nil, and there are no ELSE's, the value is nil.
41846
680de0f18330 Undo last change. Consistency doesn't seem to be desired.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 41822
diff changeset
386 usage: (if COND THEN ELSE...) */)
40570
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
387 (args)
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
388 Lisp_Object args;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
389 {
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
390 register Lisp_Object cond;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
391 struct gcpro gcpro1;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
392
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
393 GCPRO1 (args);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
394 cond = Feval (Fcar (args));
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
395 UNGCPRO;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
396
485
8c615e453683 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 431
diff changeset
397 if (!NILP (cond))
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
398 return Feval (Fcar (Fcdr (args)));
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
399 return Fprogn (Fcdr (Fcdr (args)));
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
400 }
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
401
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
402 DEFUN ("cond", Fcond, Scond, 0, UNEVALLED, 0,
40570
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
403 doc: /* Try each clause until one succeeds.
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
404 Each clause looks like (CONDITION BODY...). CONDITION is evaluated
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
405 and, if the value is non-nil, this clause succeeds:
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
406 then the expressions in BODY are evaluated and the last one's
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
407 value is the value of the cond-form.
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
408 If no clause succeeds, cond returns nil.
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
409 If a clause has one element, as in (CONDITION),
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
410 CONDITION's value if non-nil is returned from the cond-form.
41846
680de0f18330 Undo last change. Consistency doesn't seem to be desired.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 41822
diff changeset
411 usage: (cond CLAUSES...) */)
40570
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
412 (args)
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
413 Lisp_Object args;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
414 {
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
415 register Lisp_Object clause, val;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
416 struct gcpro gcpro1;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
417
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
418 val = Qnil;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
419 GCPRO1 (args);
485
8c615e453683 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 431
diff changeset
420 while (!NILP (args))
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
421 {
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
422 clause = Fcar (args);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
423 val = Feval (Fcar (clause));
485
8c615e453683 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 431
diff changeset
424 if (!NILP (val))
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
425 {
25662
0a7261c1d487 Use XCAR, XCDR, and XFLOAT_DATA instead of explicit member access.
Ken Raeburn <raeburn@raeburn.org>
parents: 25314
diff changeset
426 if (!EQ (XCDR (clause), Qnil))
0a7261c1d487 Use XCAR, XCDR, and XFLOAT_DATA instead of explicit member access.
Ken Raeburn <raeburn@raeburn.org>
parents: 25314
diff changeset
427 val = Fprogn (XCDR (clause));
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
428 break;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
429 }
25662
0a7261c1d487 Use XCAR, XCDR, and XFLOAT_DATA instead of explicit member access.
Ken Raeburn <raeburn@raeburn.org>
parents: 25314
diff changeset
430 args = XCDR (args);
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
431 }
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
432 UNGCPRO;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
433
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
434 return val;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
435 }
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
436
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
437 DEFUN ("progn", Fprogn, Sprogn, 0, UNEVALLED, 0,
40570
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
438 doc: /* Eval BODY forms sequentially and return value of last one.
78153
fb666c8f678a (For, Fand, Fprogn): Doc fixes.
Juanma Barranquero <lekktu@gmail.com>
parents: 78141
diff changeset
439 usage: (progn BODY...) */)
40570
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
440 (args)
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
441 Lisp_Object args;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
442 {
50630
dfbdcffdcfc9 (For, Fand, Fprogn, un_autoload, do_autoload): Use XCDR, XCAR, CONSP.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 49752
diff changeset
443 register Lisp_Object val = Qnil;
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
444 struct gcpro gcpro1;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
445
50630
dfbdcffdcfc9 (For, Fand, Fprogn, un_autoload, do_autoload): Use XCDR, XCAR, CONSP.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 49752
diff changeset
446 GCPRO1 (args);
dfbdcffdcfc9 (For, Fand, Fprogn, un_autoload, do_autoload): Use XCDR, XCAR, CONSP.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 49752
diff changeset
447
dfbdcffdcfc9 (For, Fand, Fprogn, un_autoload, do_autoload): Use XCDR, XCAR, CONSP.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 49752
diff changeset
448 while (CONSP (args))
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
449 {
50630
dfbdcffdcfc9 (For, Fand, Fprogn, un_autoload, do_autoload): Use XCDR, XCAR, CONSP.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 49752
diff changeset
450 val = Feval (XCAR (args));
dfbdcffdcfc9 (For, Fand, Fprogn, un_autoload, do_autoload): Use XCDR, XCAR, CONSP.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 49752
diff changeset
451 args = XCDR (args);
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
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
454 UNGCPRO;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
455 return val;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
456 }
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
457
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
458 DEFUN ("prog1", Fprog1, Sprog1, 1, UNEVALLED, 0,
96643
79121a8f01e3 * config.nt (HAVE_FACES): Remove, unused.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 95543
diff changeset
459 doc: /* Eval FIRST and BODY sequentially; return value from FIRST.
40570
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
460 The value of FIRST is saved during the evaluation of the remaining args,
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
461 whose values are discarded.
41846
680de0f18330 Undo last change. Consistency doesn't seem to be desired.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 41822
diff changeset
462 usage: (prog1 FIRST BODY...) */)
40570
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
463 (args)
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
464 Lisp_Object args;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
465 {
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
466 Lisp_Object val;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
467 register Lisp_Object args_left;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
468 struct gcpro gcpro1, gcpro2;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
469 register int argnum = 0;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
470
79082
b27741b11f5a (do_autoload): Don't save autoloads.
Juanma Barranquero <lekktu@gmail.com>
parents: 78664
diff changeset
471 if (NILP (args))
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
472 return Qnil;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
473
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
474 args_left = args;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
475 val = Qnil;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
476 GCPRO2 (args, val);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
477
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
478 do
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
479 {
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
480 if (!(argnum++))
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
481 val = Feval (Fcar (args_left));
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
482 else
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
483 Feval (Fcar (args_left));
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
484 args_left = Fcdr (args_left);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
485 }
485
8c615e453683 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 431
diff changeset
486 while (!NILP(args_left));
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
487
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
488 UNGCPRO;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
489 return val;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
490 }
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
491
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
492 DEFUN ("prog2", Fprog2, Sprog2, 2, UNEVALLED, 0,
96643
79121a8f01e3 * config.nt (HAVE_FACES): Remove, unused.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 95543
diff changeset
493 doc: /* Eval FORM1, FORM2 and BODY sequentially; return value from FORM2.
64499
34bf5187c5aa (Fprog2, Fcalled_interactively_p), (syms_of_eval) <debug-on-quit>: Doc fixes.
Juanma Barranquero <lekktu@gmail.com>
parents: 64271
diff changeset
494 The value of FORM2 is saved during the evaluation of the
34bf5187c5aa (Fprog2, Fcalled_interactively_p), (syms_of_eval) <debug-on-quit>: Doc fixes.
Juanma Barranquero <lekktu@gmail.com>
parents: 64271
diff changeset
495 remaining args, whose values are discarded.
34bf5187c5aa (Fprog2, Fcalled_interactively_p), (syms_of_eval) <debug-on-quit>: Doc fixes.
Juanma Barranquero <lekktu@gmail.com>
parents: 64271
diff changeset
496 usage: (prog2 FORM1 FORM2 BODY...) */)
40570
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
497 (args)
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
498 Lisp_Object args;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
499 {
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
500 Lisp_Object val;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
501 register Lisp_Object args_left;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
502 struct gcpro gcpro1, gcpro2;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
503 register int argnum = -1;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
504
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
505 val = Qnil;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
506
6803
656d16ca0419 (Fsetq): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 6713
diff changeset
507 if (NILP (args))
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
508 return Qnil;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
509
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
510 args_left = args;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
511 val = Qnil;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
512 GCPRO2 (args, val);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
513
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
514 do
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
515 {
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
516 if (!(argnum++))
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
517 val = Feval (Fcar (args_left));
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
518 else
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
519 Feval (Fcar (args_left));
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
520 args_left = Fcdr (args_left);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
521 }
6803
656d16ca0419 (Fsetq): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 6713
diff changeset
522 while (!NILP (args_left));
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
523
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
524 UNGCPRO;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
525 return val;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
526 }
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
527
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
528 DEFUN ("setq", Fsetq, Ssetq, 0, UNEVALLED, 0,
40570
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
529 doc: /* Set each SYM to the value of its VAL.
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
530 The symbols SYM are variables; they are literal (not evaluated).
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
531 The values VAL are expressions; they are evaluated.
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
532 Thus, (setq x (1+ y)) sets `x' to the value of `(1+ y)'.
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
533 The second VAL is not computed until after the first SYM is set, and so on;
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
534 each VAL can use the new value of variables set earlier in the `setq'.
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
535 The return value of the `setq' form is the value of the last VAL.
78141
5589aa4fb553 (Fsetq): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 75348
diff changeset
536 usage: (setq [SYM VAL]...) */)
40570
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
537 (args)
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
538 Lisp_Object args;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
539 {
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
540 register Lisp_Object args_left;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
541 register Lisp_Object val, sym;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
542 struct gcpro gcpro1;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
543
82463
617c0965e1f4 (Ffunction, Fquote): Signal error if not 1 argument.
Richard M. Stallman <rms@gnu.org>
parents: 82404
diff changeset
544 if (NILP (args))
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
545 return Qnil;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
546
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
547 args_left = args;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
548 GCPRO1 (args);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
549
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
550 do
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
551 {
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
552 val = Feval (Fcar (Fcdr (args_left)));
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
553 sym = Fcar (args_left);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
554 Fset (sym, val);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
555 args_left = Fcdr (Fcdr (args_left));
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
556 }
485
8c615e453683 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 431
diff changeset
557 while (!NILP(args_left));
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
558
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
559 UNGCPRO;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
560 return val;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
561 }
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 49105
diff changeset
562
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
563 DEFUN ("quote", Fquote, Squote, 1, UNEVALLED, 0,
40570
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
564 doc: /* Return the argument, without evaluating it. `(quote x)' yields `x'.
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
565 usage: (quote ARG) */)
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
566 (args)
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
567 Lisp_Object args;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
568 {
82463
617c0965e1f4 (Ffunction, Fquote): Signal error if not 1 argument.
Richard M. Stallman <rms@gnu.org>
parents: 82404
diff changeset
569 if (!NILP (Fcdr (args)))
617c0965e1f4 (Ffunction, Fquote): Signal error if not 1 argument.
Richard M. Stallman <rms@gnu.org>
parents: 82404
diff changeset
570 xsignal2 (Qwrong_number_of_arguments, Qquote, Flength (args));
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
571 return Fcar (args);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
572 }
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 49105
diff changeset
573
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
574 DEFUN ("function", Ffunction, Sfunction, 1, UNEVALLED, 0,
40570
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
575 doc: /* Like `quote', but preferred for objects which are functions.
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
576 In byte compilation, `function' causes its argument to be compiled.
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
577 `quote' cannot do that.
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
578 usage: (function ARG) */)
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
579 (args)
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
580 Lisp_Object args;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
581 {
82463
617c0965e1f4 (Ffunction, Fquote): Signal error if not 1 argument.
Richard M. Stallman <rms@gnu.org>
parents: 82404
diff changeset
582 if (!NILP (Fcdr (args)))
617c0965e1f4 (Ffunction, Fquote): Signal error if not 1 argument.
Richard M. Stallman <rms@gnu.org>
parents: 82404
diff changeset
583 xsignal2 (Qwrong_number_of_arguments, Qfunction, Flength (args));
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
584 return Fcar (args);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
585 }
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
586
35774
efc51d1a7b60 (interactive_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 35394
diff changeset
587
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
588 DEFUN ("interactive-p", Finteractive_p, Sinteractive_p, 0, 0, 0,
104290
ced4690576f6 * eval.c (Fcalled_interactively_p, Finteractive_p): Doc
Chong Yidong <cyd@stupidchicken.com>
parents: 104078
diff changeset
589 doc: /* Return t if the containing function was run directly by user input.
64499
34bf5187c5aa (Fprog2, Fcalled_interactively_p), (syms_of_eval) <debug-on-quit>: Doc fixes.
Juanma Barranquero <lekktu@gmail.com>
parents: 64271
diff changeset
590 This means that the function was called with `call-interactively'
34bf5187c5aa (Fprog2, Fcalled_interactively_p), (syms_of_eval) <debug-on-quit>: Doc fixes.
Juanma Barranquero <lekktu@gmail.com>
parents: 64271
diff changeset
591 \(which includes being called as the binding of a key)
104290
ced4690576f6 * eval.c (Fcalled_interactively_p, Finteractive_p): Doc
Chong Yidong <cyd@stupidchicken.com>
parents: 104078
diff changeset
592 and input is currently coming from the keyboard (not a keyboard macro),
57873
7e43927b42a8 (Fcall_interactive_p): New function.
Richard M. Stallman <rms@gnu.org>
parents: 56557
diff changeset
593 and Emacs is not running in batch mode (`noninteractive' is nil).
7e43927b42a8 (Fcall_interactive_p): New function.
Richard M. Stallman <rms@gnu.org>
parents: 56557
diff changeset
594
7e43927b42a8 (Fcall_interactive_p): New function.
Richard M. Stallman <rms@gnu.org>
parents: 56557
diff changeset
595 The only known proper use of `interactive-p' is in deciding whether to
7e43927b42a8 (Fcall_interactive_p): New function.
Richard M. Stallman <rms@gnu.org>
parents: 56557
diff changeset
596 display a helpful message, or how to display it. If you're thinking
7e43927b42a8 (Fcall_interactive_p): New function.
Richard M. Stallman <rms@gnu.org>
parents: 56557
diff changeset
597 of using it for any other purpose, it is quite likely that you're
7e43927b42a8 (Fcall_interactive_p): New function.
Richard M. Stallman <rms@gnu.org>
parents: 56557
diff changeset
598 making a mistake. Think: what do you want to do when the command is
7e43927b42a8 (Fcall_interactive_p): New function.
Richard M. Stallman <rms@gnu.org>
parents: 56557
diff changeset
599 called from a keyboard macro?
7e43927b42a8 (Fcall_interactive_p): New function.
Richard M. Stallman <rms@gnu.org>
parents: 56557
diff changeset
600
104290
ced4690576f6 * eval.c (Fcalled_interactively_p, Finteractive_p): Doc
Chong Yidong <cyd@stupidchicken.com>
parents: 104078
diff changeset
601 To test whether your function was called with `call-interactively',
ced4690576f6 * eval.c (Fcalled_interactively_p, Finteractive_p): Doc
Chong Yidong <cyd@stupidchicken.com>
parents: 104078
diff changeset
602 either (i) add an extra optional argument and give it an `interactive'
ced4690576f6 * eval.c (Fcalled_interactively_p, Finteractive_p): Doc
Chong Yidong <cyd@stupidchicken.com>
parents: 104078
diff changeset
603 spec that specifies non-nil unconditionally (such as \"p\"); or (ii)
ced4690576f6 * eval.c (Fcalled_interactively_p, Finteractive_p): Doc
Chong Yidong <cyd@stupidchicken.com>
parents: 104078
diff changeset
604 use `called-interactively-p'. */)
40570
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
605 ()
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
606 {
57873
7e43927b42a8 (Fcall_interactive_p): New function.
Richard M. Stallman <rms@gnu.org>
parents: 56557
diff changeset
607 return (INTERACTIVE && interactive_p (1)) ? Qt : Qnil;
35774
efc51d1a7b60 (interactive_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 35394
diff changeset
608 }
efc51d1a7b60 (interactive_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 35394
diff changeset
609
efc51d1a7b60 (interactive_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 35394
diff changeset
610
105364
338d102432df * eval.c (Fcalled_interactively_p): Add `kind' argument.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 105127
diff changeset
611 DEFUN ("called-interactively-p", Fcalled_interactively_p, Scalled_interactively_p, 0, 1, 0,
104290
ced4690576f6 * eval.c (Fcalled_interactively_p, Finteractive_p): Doc
Chong Yidong <cyd@stupidchicken.com>
parents: 104078
diff changeset
612 doc: /* Return t if the containing function was called by `call-interactively'.
105364
338d102432df * eval.c (Fcalled_interactively_p): Add `kind' argument.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 105127
diff changeset
613 If KIND is `interactive', then only return t if the call was made
338d102432df * eval.c (Fcalled_interactively_p): Add `kind' argument.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 105127
diff changeset
614 interactively by the user, i.e. not in `noninteractive' mode nor
338d102432df * eval.c (Fcalled_interactively_p): Add `kind' argument.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 105127
diff changeset
615 when `executing-kbd-macro'.
338d102432df * eval.c (Fcalled_interactively_p): Add `kind' argument.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 105127
diff changeset
616 If KIND is `any', on the other hand, it will return t for any kind of
338d102432df * eval.c (Fcalled_interactively_p): Add `kind' argument.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 105127
diff changeset
617 interactive call, including being called as the binding of a key, or
338d102432df * eval.c (Fcalled_interactively_p): Add `kind' argument.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 105127
diff changeset
618 from a keyboard macro, or in `noninteractive' mode.
338d102432df * eval.c (Fcalled_interactively_p): Add `kind' argument.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 105127
diff changeset
619
338d102432df * eval.c (Fcalled_interactively_p): Add `kind' argument.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 105127
diff changeset
620 The only known proper use of `interactive' for KIND is in deciding
338d102432df * eval.c (Fcalled_interactively_p): Add `kind' argument.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 105127
diff changeset
621 whether to display a helpful message, or how to display it. If you're
338d102432df * eval.c (Fcalled_interactively_p): Add `kind' argument.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 105127
diff changeset
622 thinking of using it for any other purpose, it is quite likely that
338d102432df * eval.c (Fcalled_interactively_p): Add `kind' argument.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 105127
diff changeset
623 you're making a mistake. Think: what do you want to do when the
338d102432df * eval.c (Fcalled_interactively_p): Add `kind' argument.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 105127
diff changeset
624 command is called from a keyboard macro?
104290
ced4690576f6 * eval.c (Fcalled_interactively_p, Finteractive_p): Doc
Chong Yidong <cyd@stupidchicken.com>
parents: 104078
diff changeset
625
ced4690576f6 * eval.c (Fcalled_interactively_p, Finteractive_p): Doc
Chong Yidong <cyd@stupidchicken.com>
parents: 104078
diff changeset
626 This function is meant for implementing advice and other
ced4690576f6 * eval.c (Fcalled_interactively_p, Finteractive_p): Doc
Chong Yidong <cyd@stupidchicken.com>
parents: 104078
diff changeset
627 function-modifying features. Instead of using this, it is sometimes
ced4690576f6 * eval.c (Fcalled_interactively_p, Finteractive_p): Doc
Chong Yidong <cyd@stupidchicken.com>
parents: 104078
diff changeset
628 cleaner to give your function an extra optional argument whose
ced4690576f6 * eval.c (Fcalled_interactively_p, Finteractive_p): Doc
Chong Yidong <cyd@stupidchicken.com>
parents: 104078
diff changeset
629 `interactive' spec specifies non-nil unconditionally (\"p\" is a good
105364
338d102432df * eval.c (Fcalled_interactively_p): Add `kind' argument.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 105127
diff changeset
630 way to do this), or via (not (or executing-kbd-macro noninteractive)). */)
338d102432df * eval.c (Fcalled_interactively_p): Add `kind' argument.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 105127
diff changeset
631 (kind)
338d102432df * eval.c (Fcalled_interactively_p): Add `kind' argument.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 105127
diff changeset
632 Lisp_Object kind;
57873
7e43927b42a8 (Fcall_interactive_p): New function.
Richard M. Stallman <rms@gnu.org>
parents: 56557
diff changeset
633 {
105364
338d102432df * eval.c (Fcalled_interactively_p): Add `kind' argument.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 105127
diff changeset
634 return ((INTERACTIVE || !EQ (kind, intern ("interactive")))
338d102432df * eval.c (Fcalled_interactively_p): Add `kind' argument.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 105127
diff changeset
635 && interactive_p (1)) ? Qt : Qnil;
57873
7e43927b42a8 (Fcall_interactive_p): New function.
Richard M. Stallman <rms@gnu.org>
parents: 56557
diff changeset
636 }
7e43927b42a8 (Fcall_interactive_p): New function.
Richard M. Stallman <rms@gnu.org>
parents: 56557
diff changeset
637
7e43927b42a8 (Fcall_interactive_p): New function.
Richard M. Stallman <rms@gnu.org>
parents: 56557
diff changeset
638
7e43927b42a8 (Fcall_interactive_p): New function.
Richard M. Stallman <rms@gnu.org>
parents: 56557
diff changeset
639 /* Return 1 if function in which this appears was called using
7e43927b42a8 (Fcall_interactive_p): New function.
Richard M. Stallman <rms@gnu.org>
parents: 56557
diff changeset
640 call-interactively.
35774
efc51d1a7b60 (interactive_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 35394
diff changeset
641
efc51d1a7b60 (interactive_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 35394
diff changeset
642 EXCLUDE_SUBRS_P non-zero means always return 0 if the function
efc51d1a7b60 (interactive_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 35394
diff changeset
643 called is a built-in. */
efc51d1a7b60 (interactive_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 35394
diff changeset
644
efc51d1a7b60 (interactive_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 35394
diff changeset
645 int
efc51d1a7b60 (interactive_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 35394
diff changeset
646 interactive_p (exclude_subrs_p)
efc51d1a7b60 (interactive_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 35394
diff changeset
647 int exclude_subrs_p;
efc51d1a7b60 (interactive_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 35394
diff changeset
648 {
efc51d1a7b60 (interactive_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 35394
diff changeset
649 struct backtrace *btp;
efc51d1a7b60 (interactive_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 35394
diff changeset
650 Lisp_Object fun;
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
651
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
652 btp = backtrace_list;
727
540b047ece4d *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 706
diff changeset
653
540b047ece4d *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 706
diff changeset
654 /* If this isn't a byte-compiled function, there may be a frame at
35774
efc51d1a7b60 (interactive_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 35394
diff changeset
655 the top for Finteractive_p. If so, skip it. */
68758
13c1b7c5f555 * data.c (Findirect_function): Add NOERROR arg. All callers changed
Kim F. Storm <storm@cua.dk>
parents: 68651
diff changeset
656 fun = Findirect_function (*btp->function, Qnil);
58734
5bc7de720277 (Fcalled_interactively_p): Don't check INTERACTIVE.
Richard M. Stallman <rms@gnu.org>
parents: 58523
diff changeset
657 if (SUBRP (fun) && (XSUBR (fun) == &Sinteractive_p
5bc7de720277 (Fcalled_interactively_p): Don't check INTERACTIVE.
Richard M. Stallman <rms@gnu.org>
parents: 58523
diff changeset
658 || XSUBR (fun) == &Scalled_interactively_p))
323
9c2a1e7bd9f1 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 295
diff changeset
659 btp = btp->next;
9c2a1e7bd9f1 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 295
diff changeset
660
727
540b047ece4d *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 706
diff changeset
661 /* If we're running an Emacs 18-style byte-compiled function, there
48492
8faa4c711a1a (interactive_p): Skip any number of bytecode
Richard M. Stallman <rms@gnu.org>
parents: 47026
diff changeset
662 may be a frame for Fbytecode at the top level. In any version of
8faa4c711a1a (interactive_p): Skip any number of bytecode
Richard M. Stallman <rms@gnu.org>
parents: 47026
diff changeset
663 Emacs there can be Fbytecode frames for subexpressions evaluated
8faa4c711a1a (interactive_p): Skip any number of bytecode
Richard M. Stallman <rms@gnu.org>
parents: 47026
diff changeset
664 inside catch and condition-case. Skip past them.
8faa4c711a1a (interactive_p): Skip any number of bytecode
Richard M. Stallman <rms@gnu.org>
parents: 47026
diff changeset
665
8faa4c711a1a (interactive_p): Skip any number of bytecode
Richard M. Stallman <rms@gnu.org>
parents: 47026
diff changeset
666 If this isn't a byte-compiled function, then we may now be
727
540b047ece4d *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 706
diff changeset
667 looking at several frames for special forms. Skip past them. */
48492
8faa4c711a1a (interactive_p): Skip any number of bytecode
Richard M. Stallman <rms@gnu.org>
parents: 47026
diff changeset
668 while (btp
8faa4c711a1a (interactive_p): Skip any number of bytecode
Richard M. Stallman <rms@gnu.org>
parents: 47026
diff changeset
669 && (EQ (*btp->function, Qbytecode)
8faa4c711a1a (interactive_p): Skip any number of bytecode
Richard M. Stallman <rms@gnu.org>
parents: 47026
diff changeset
670 || btp->nargs == UNEVALLED))
727
540b047ece4d *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 706
diff changeset
671 btp = btp->next;
540b047ece4d *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 706
diff changeset
672
540b047ece4d *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 706
diff changeset
673 /* 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
674 a special form, ignoring frames for Finteractive_p and/or
540b047ece4d *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 706
diff changeset
675 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
676 (such as load or eval-region) return nil. */
68758
13c1b7c5f555 * data.c (Findirect_function): Add NOERROR arg. All callers changed
Kim F. Storm <storm@cua.dk>
parents: 68651
diff changeset
677 fun = Findirect_function (*btp->function, Qnil);
35774
efc51d1a7b60 (interactive_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 35394
diff changeset
678 if (exclude_subrs_p && SUBRP (fun))
efc51d1a7b60 (interactive_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 35394
diff changeset
679 return 0;
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 49105
diff changeset
680
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
681 /* btp points to the frame of a Lisp function that called interactive-p.
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
682 Return t if that function was called interactively. */
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
683 if (btp && btp->next && EQ (*btp->next->function, Qcall_interactively))
35774
efc51d1a7b60 (interactive_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 35394
diff changeset
684 return 1;
efc51d1a7b60 (interactive_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 35394
diff changeset
685 return 0;
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
686 }
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
687
35774
efc51d1a7b60 (interactive_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 35394
diff changeset
688
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
689 DEFUN ("defun", Fdefun, Sdefun, 2, UNEVALLED, 0,
40570
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
690 doc: /* Define NAME as a function.
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
691 The definition is (lambda ARGLIST [DOCSTRING] BODY...).
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
692 See also the function `interactive'.
41846
680de0f18330 Undo last change. Consistency doesn't seem to be desired.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 41822
diff changeset
693 usage: (defun NAME ARGLIST [DOCSTRING] BODY...) */)
40570
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
694 (args)
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
695 Lisp_Object args;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
696 {
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
697 register Lisp_Object fn_name;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
698 register Lisp_Object defn;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
699
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
700 fn_name = Fcar (args);
56052
aec6fce52afb (Fdefun): Signal an error if NAME is not a symbol.
Eli Zaretskii <eliz@gnu.org>
parents: 55879
diff changeset
701 CHECK_SYMBOL (fn_name);
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
702 defn = Fcons (Qlambda, Fcdr (args));
485
8c615e453683 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 431
diff changeset
703 if (!NILP (Vpurify_flag))
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
704 defn = Fpurecopy (defn);
48724
ccd782f27e54 (Fdefun, Fdefmacro): Record in load-history redefining an autoload.
Richard M. Stallman <rms@gnu.org>
parents: 48492
diff changeset
705 if (CONSP (XSYMBOL (fn_name)->function)
ccd782f27e54 (Fdefun, Fdefmacro): Record in load-history redefining an autoload.
Richard M. Stallman <rms@gnu.org>
parents: 48492
diff changeset
706 && EQ (XCAR (XSYMBOL (fn_name)->function), Qautoload))
ccd782f27e54 (Fdefun, Fdefmacro): Record in load-history redefining an autoload.
Richard M. Stallman <rms@gnu.org>
parents: 48492
diff changeset
707 LOADHIST_ATTACH (Fcons (Qt, fn_name));
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
708 Ffset (fn_name, defn);
59109
0b61bbccc6e1 (Fdefun, Fdefmacro): Use (defun . FN_NAME) in LOADHIST_ATTACH.
Richard M. Stallman <rms@gnu.org>
parents: 59051
diff changeset
709 LOADHIST_ATTACH (Fcons (Qdefun, fn_name));
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
710 return fn_name;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
711 }
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
712
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
713 DEFUN ("defmacro", Fdefmacro, Sdefmacro, 2, UNEVALLED, 0,
40570
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
714 doc: /* Define NAME as a macro.
46198
9b8d032820a2 (Fdefmacro): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 45560
diff changeset
715 The actual definition looks like
9b8d032820a2 (Fdefmacro): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 45560
diff changeset
716 (macro lambda ARGLIST [DOCSTRING] [DECL] BODY...).
40570
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
717 When the macro is called, as in (NAME ARGS...),
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
718 the function (lambda ARGLIST BODY...) is applied to
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
719 the list ARGS... as it appears in the expression,
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
720 and the result should be a form to be evaluated instead of the original.
46198
9b8d032820a2 (Fdefmacro): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 45560
diff changeset
721
9b8d032820a2 (Fdefmacro): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 45560
diff changeset
722 DECL is a declaration, optional, which can specify how to indent
95543
635ee5674343 (Fdefmacro): Doc fix.
John Paul Wallington <jpw@pobox.com>
parents: 95118
diff changeset
723 calls to this macro, how Edebug should handle it, and which argument
635ee5674343 (Fdefmacro): Doc fix.
John Paul Wallington <jpw@pobox.com>
parents: 95118
diff changeset
724 should be treated as documentation. It looks like this:
46198
9b8d032820a2 (Fdefmacro): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 45560
diff changeset
725 (declare SPECS...)
9b8d032820a2 (Fdefmacro): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 45560
diff changeset
726 The elements can look like this:
9b8d032820a2 (Fdefmacro): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 45560
diff changeset
727 (indent INDENT)
9b8d032820a2 (Fdefmacro): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 45560
diff changeset
728 Set NAME's `lisp-indent-function' property to INDENT.
9b8d032820a2 (Fdefmacro): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 45560
diff changeset
729
50630
dfbdcffdcfc9 (For, Fand, Fprogn, un_autoload, do_autoload): Use XCDR, XCAR, CONSP.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 49752
diff changeset
730 (debug DEBUG)
46198
9b8d032820a2 (Fdefmacro): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 45560
diff changeset
731 Set NAME's `edebug-form-spec' property to DEBUG. (This is
49752
aa54553dad6b (Fdefmacro): Fix typo.
Juanma Barranquero <lekktu@gmail.com>
parents: 49600
diff changeset
732 equivalent to writing a `def-edebug-spec' for the macro.)
95543
635ee5674343 (Fdefmacro): Doc fix.
John Paul Wallington <jpw@pobox.com>
parents: 95118
diff changeset
733
635ee5674343 (Fdefmacro): Doc fix.
John Paul Wallington <jpw@pobox.com>
parents: 95118
diff changeset
734 (doc-string ELT)
635ee5674343 (Fdefmacro): Doc fix.
John Paul Wallington <jpw@pobox.com>
parents: 95118
diff changeset
735 Set NAME's `doc-string-elt' property to ELT.
635ee5674343 (Fdefmacro): Doc fix.
John Paul Wallington <jpw@pobox.com>
parents: 95118
diff changeset
736
46198
9b8d032820a2 (Fdefmacro): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 45560
diff changeset
737 usage: (defmacro NAME ARGLIST [DOCSTRING] [DECL] BODY...) */)
40570
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
738 (args)
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
739 Lisp_Object args;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
740 {
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
741 register Lisp_Object fn_name;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
742 register Lisp_Object defn;
44132
8b63b08a2619 (Qdeclare, Vmacro_declaration_function): New variables.
Gerd Moellmann <gerd@gnu.org>
parents: 43713
diff changeset
743 Lisp_Object lambda_list, doc, tail;
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
744
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
745 fn_name = Fcar (args);
56356
fb855b187fa5 (Fdefmacro): Signal an error if NAME is not a symbol.
John Paul Wallington <jpw@pobox.com>
parents: 56052
diff changeset
746 CHECK_SYMBOL (fn_name);
44132
8b63b08a2619 (Qdeclare, Vmacro_declaration_function): New variables.
Gerd Moellmann <gerd@gnu.org>
parents: 43713
diff changeset
747 lambda_list = Fcar (Fcdr (args));
8b63b08a2619 (Qdeclare, Vmacro_declaration_function): New variables.
Gerd Moellmann <gerd@gnu.org>
parents: 43713
diff changeset
748 tail = Fcdr (Fcdr (args));
8b63b08a2619 (Qdeclare, Vmacro_declaration_function): New variables.
Gerd Moellmann <gerd@gnu.org>
parents: 43713
diff changeset
749
8b63b08a2619 (Qdeclare, Vmacro_declaration_function): New variables.
Gerd Moellmann <gerd@gnu.org>
parents: 43713
diff changeset
750 doc = Qnil;
8b63b08a2619 (Qdeclare, Vmacro_declaration_function): New variables.
Gerd Moellmann <gerd@gnu.org>
parents: 43713
diff changeset
751 if (STRINGP (Fcar (tail)))
8b63b08a2619 (Qdeclare, Vmacro_declaration_function): New variables.
Gerd Moellmann <gerd@gnu.org>
parents: 43713
diff changeset
752 {
50630
dfbdcffdcfc9 (For, Fand, Fprogn, un_autoload, do_autoload): Use XCDR, XCAR, CONSP.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 49752
diff changeset
753 doc = XCAR (tail);
dfbdcffdcfc9 (For, Fand, Fprogn, un_autoload, do_autoload): Use XCDR, XCAR, CONSP.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 49752
diff changeset
754 tail = XCDR (tail);
44132
8b63b08a2619 (Qdeclare, Vmacro_declaration_function): New variables.
Gerd Moellmann <gerd@gnu.org>
parents: 43713
diff changeset
755 }
8b63b08a2619 (Qdeclare, Vmacro_declaration_function): New variables.
Gerd Moellmann <gerd@gnu.org>
parents: 43713
diff changeset
756
8b63b08a2619 (Qdeclare, Vmacro_declaration_function): New variables.
Gerd Moellmann <gerd@gnu.org>
parents: 43713
diff changeset
757 while (CONSP (Fcar (tail))
8b63b08a2619 (Qdeclare, Vmacro_declaration_function): New variables.
Gerd Moellmann <gerd@gnu.org>
parents: 43713
diff changeset
758 && EQ (Fcar (Fcar (tail)), Qdeclare))
8b63b08a2619 (Qdeclare, Vmacro_declaration_function): New variables.
Gerd Moellmann <gerd@gnu.org>
parents: 43713
diff changeset
759 {
8b63b08a2619 (Qdeclare, Vmacro_declaration_function): New variables.
Gerd Moellmann <gerd@gnu.org>
parents: 43713
diff changeset
760 if (!NILP (Vmacro_declaration_function))
8b63b08a2619 (Qdeclare, Vmacro_declaration_function): New variables.
Gerd Moellmann <gerd@gnu.org>
parents: 43713
diff changeset
761 {
8b63b08a2619 (Qdeclare, Vmacro_declaration_function): New variables.
Gerd Moellmann <gerd@gnu.org>
parents: 43713
diff changeset
762 struct gcpro gcpro1;
8b63b08a2619 (Qdeclare, Vmacro_declaration_function): New variables.
Gerd Moellmann <gerd@gnu.org>
parents: 43713
diff changeset
763 GCPRO1 (args);
8b63b08a2619 (Qdeclare, Vmacro_declaration_function): New variables.
Gerd Moellmann <gerd@gnu.org>
parents: 43713
diff changeset
764 call2 (Vmacro_declaration_function, fn_name, Fcar (tail));
8b63b08a2619 (Qdeclare, Vmacro_declaration_function): New variables.
Gerd Moellmann <gerd@gnu.org>
parents: 43713
diff changeset
765 UNGCPRO;
8b63b08a2619 (Qdeclare, Vmacro_declaration_function): New variables.
Gerd Moellmann <gerd@gnu.org>
parents: 43713
diff changeset
766 }
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 49105
diff changeset
767
44132
8b63b08a2619 (Qdeclare, Vmacro_declaration_function): New variables.
Gerd Moellmann <gerd@gnu.org>
parents: 43713
diff changeset
768 tail = Fcdr (tail);
8b63b08a2619 (Qdeclare, Vmacro_declaration_function): New variables.
Gerd Moellmann <gerd@gnu.org>
parents: 43713
diff changeset
769 }
8b63b08a2619 (Qdeclare, Vmacro_declaration_function): New variables.
Gerd Moellmann <gerd@gnu.org>
parents: 43713
diff changeset
770
8b63b08a2619 (Qdeclare, Vmacro_declaration_function): New variables.
Gerd Moellmann <gerd@gnu.org>
parents: 43713
diff changeset
771 if (NILP (doc))
8b63b08a2619 (Qdeclare, Vmacro_declaration_function): New variables.
Gerd Moellmann <gerd@gnu.org>
parents: 43713
diff changeset
772 tail = Fcons (lambda_list, tail);
8b63b08a2619 (Qdeclare, Vmacro_declaration_function): New variables.
Gerd Moellmann <gerd@gnu.org>
parents: 43713
diff changeset
773 else
8b63b08a2619 (Qdeclare, Vmacro_declaration_function): New variables.
Gerd Moellmann <gerd@gnu.org>
parents: 43713
diff changeset
774 tail = Fcons (lambda_list, Fcons (doc, tail));
8b63b08a2619 (Qdeclare, Vmacro_declaration_function): New variables.
Gerd Moellmann <gerd@gnu.org>
parents: 43713
diff changeset
775 defn = Fcons (Qmacro, Fcons (Qlambda, tail));
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 49105
diff changeset
776
485
8c615e453683 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 431
diff changeset
777 if (!NILP (Vpurify_flag))
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
778 defn = Fpurecopy (defn);
48724
ccd782f27e54 (Fdefun, Fdefmacro): Record in load-history redefining an autoload.
Richard M. Stallman <rms@gnu.org>
parents: 48492
diff changeset
779 if (CONSP (XSYMBOL (fn_name)->function)
ccd782f27e54 (Fdefun, Fdefmacro): Record in load-history redefining an autoload.
Richard M. Stallman <rms@gnu.org>
parents: 48492
diff changeset
780 && EQ (XCAR (XSYMBOL (fn_name)->function), Qautoload))
ccd782f27e54 (Fdefun, Fdefmacro): Record in load-history redefining an autoload.
Richard M. Stallman <rms@gnu.org>
parents: 48492
diff changeset
781 LOADHIST_ATTACH (Fcons (Qt, fn_name));
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
782 Ffset (fn_name, defn);
59109
0b61bbccc6e1 (Fdefun, Fdefmacro): Use (defun . FN_NAME) in LOADHIST_ATTACH.
Richard M. Stallman <rms@gnu.org>
parents: 59051
diff changeset
783 LOADHIST_ATTACH (Fcons (Qdefun, fn_name));
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
784 return fn_name;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
785 }
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
786
39577
d93909a71fa4 (Fdefvaralias): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 38290
diff changeset
787
46388
0533d978a8ab (Fdefvaralias): Add docstring argument.
Juanma Barranquero <lekktu@gmail.com>
parents: 46370
diff changeset
788 DEFUN ("defvaralias", Fdefvaralias, Sdefvaralias, 2, 3, 0,
63391
e44f5953ff6a (Fdefvaralias): Rename arguments SYMBOL and ALIASED to NEW-ALIAS and
Juanma Barranquero <lekktu@gmail.com>
parents: 63147
diff changeset
789 doc: /* Make NEW-ALIAS a variable alias for symbol BASE-VARIABLE.
71574
a93787ef56ad (Fdefvaralias): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 71341
diff changeset
790 Aliased variables always have the same value; setting one sets the other.
63391
e44f5953ff6a (Fdefvaralias): Rename arguments SYMBOL and ALIASED to NEW-ALIAS and
Juanma Barranquero <lekktu@gmail.com>
parents: 63147
diff changeset
791 Third arg DOCSTRING, if non-nil, is documentation for NEW-ALIAS. If it is
93989
9bbb41788fd4 (Fdefvaralias): If the alias is bound and the target is not, set the
Glenn Morris <rgm@gnu.org>
parents: 93071
diff changeset
792 omitted or nil, NEW-ALIAS gets the documentation string of BASE-VARIABLE,
9bbb41788fd4 (Fdefvaralias): If the alias is bound and the target is not, set the
Glenn Morris <rgm@gnu.org>
parents: 93071
diff changeset
793 or of the variable at the end of the chain of aliases, if BASE-VARIABLE is
9bbb41788fd4 (Fdefvaralias): If the alias is bound and the target is not, set the
Glenn Morris <rgm@gnu.org>
parents: 93071
diff changeset
794 itself an alias. If NEW-ALIAS is bound, and BASE-VARIABLE is not,
9bbb41788fd4 (Fdefvaralias): If the alias is bound and the target is not, set the
Glenn Morris <rgm@gnu.org>
parents: 93071
diff changeset
795 then the value of BASE-VARIABLE is set to that of NEW-ALIAS.
63391
e44f5953ff6a (Fdefvaralias): Rename arguments SYMBOL and ALIASED to NEW-ALIAS and
Juanma Barranquero <lekktu@gmail.com>
parents: 63147
diff changeset
796 The return value is BASE-VARIABLE. */)
e44f5953ff6a (Fdefvaralias): Rename arguments SYMBOL and ALIASED to NEW-ALIAS and
Juanma Barranquero <lekktu@gmail.com>
parents: 63147
diff changeset
797 (new_alias, base_variable, docstring)
e44f5953ff6a (Fdefvaralias): Rename arguments SYMBOL and ALIASED to NEW-ALIAS and
Juanma Barranquero <lekktu@gmail.com>
parents: 63147
diff changeset
798 Lisp_Object new_alias, base_variable, docstring;
39577
d93909a71fa4 (Fdefvaralias): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 38290
diff changeset
799 {
d93909a71fa4 (Fdefvaralias): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 38290
diff changeset
800 struct Lisp_Symbol *sym;
46388
0533d978a8ab (Fdefvaralias): Add docstring argument.
Juanma Barranquero <lekktu@gmail.com>
parents: 46370
diff changeset
801
63391
e44f5953ff6a (Fdefvaralias): Rename arguments SYMBOL and ALIASED to NEW-ALIAS and
Juanma Barranquero <lekktu@gmail.com>
parents: 63147
diff changeset
802 CHECK_SYMBOL (new_alias);
e44f5953ff6a (Fdefvaralias): Rename arguments SYMBOL and ALIASED to NEW-ALIAS and
Juanma Barranquero <lekktu@gmail.com>
parents: 63147
diff changeset
803 CHECK_SYMBOL (base_variable);
e44f5953ff6a (Fdefvaralias): Rename arguments SYMBOL and ALIASED to NEW-ALIAS and
Juanma Barranquero <lekktu@gmail.com>
parents: 63147
diff changeset
804
e44f5953ff6a (Fdefvaralias): Rename arguments SYMBOL and ALIASED to NEW-ALIAS and
Juanma Barranquero <lekktu@gmail.com>
parents: 63147
diff changeset
805 if (SYMBOL_CONSTANT_P (new_alias))
39577
d93909a71fa4 (Fdefvaralias): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 38290
diff changeset
806 error ("Cannot make a constant an alias");
d93909a71fa4 (Fdefvaralias): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 38290
diff changeset
807
63391
e44f5953ff6a (Fdefvaralias): Rename arguments SYMBOL and ALIASED to NEW-ALIAS and
Juanma Barranquero <lekktu@gmail.com>
parents: 63147
diff changeset
808 sym = XSYMBOL (new_alias);
93989
9bbb41788fd4 (Fdefvaralias): If the alias is bound and the target is not, set the
Glenn Morris <rgm@gnu.org>
parents: 93071
diff changeset
809 /* http://lists.gnu.org/archive/html/emacs-devel/2008-04/msg00834.html
9bbb41788fd4 (Fdefvaralias): If the alias is bound and the target is not, set the
Glenn Morris <rgm@gnu.org>
parents: 93071
diff changeset
810 If n_a is bound, but b_v is not, set the value of b_v to n_a.
9bbb41788fd4 (Fdefvaralias): If the alias is bound and the target is not, set the
Glenn Morris <rgm@gnu.org>
parents: 93071
diff changeset
811 This is for the sake of define-obsolete-variable-alias and user
9bbb41788fd4 (Fdefvaralias): If the alias is bound and the target is not, set the
Glenn Morris <rgm@gnu.org>
parents: 93071
diff changeset
812 customizations. */
9bbb41788fd4 (Fdefvaralias): If the alias is bound and the target is not, set the
Glenn Morris <rgm@gnu.org>
parents: 93071
diff changeset
813 if (NILP (Fboundp (base_variable)) && !NILP (Fboundp (new_alias)))
9bbb41788fd4 (Fdefvaralias): If the alias is bound and the target is not, set the
Glenn Morris <rgm@gnu.org>
parents: 93071
diff changeset
814 XSYMBOL(base_variable)->value = sym->value;
39577
d93909a71fa4 (Fdefvaralias): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 38290
diff changeset
815 sym->indirect_variable = 1;
63391
e44f5953ff6a (Fdefvaralias): Rename arguments SYMBOL and ALIASED to NEW-ALIAS and
Juanma Barranquero <lekktu@gmail.com>
parents: 63147
diff changeset
816 sym->value = base_variable;
e44f5953ff6a (Fdefvaralias): Rename arguments SYMBOL and ALIASED to NEW-ALIAS and
Juanma Barranquero <lekktu@gmail.com>
parents: 63147
diff changeset
817 sym->constant = SYMBOL_CONSTANT_P (base_variable);
e44f5953ff6a (Fdefvaralias): Rename arguments SYMBOL and ALIASED to NEW-ALIAS and
Juanma Barranquero <lekktu@gmail.com>
parents: 63147
diff changeset
818 LOADHIST_ATTACH (new_alias);
46388
0533d978a8ab (Fdefvaralias): Add docstring argument.
Juanma Barranquero <lekktu@gmail.com>
parents: 46370
diff changeset
819 if (!NILP (docstring))
63391
e44f5953ff6a (Fdefvaralias): Rename arguments SYMBOL and ALIASED to NEW-ALIAS and
Juanma Barranquero <lekktu@gmail.com>
parents: 63147
diff changeset
820 Fput (new_alias, Qvariable_documentation, docstring);
62178
91b45e7531ea (Fdefvaralias): Remove any pre-existing variable-documentation
Luc Teirlinck <teirllm@auburn.edu>
parents: 62091
diff changeset
821 else
63391
e44f5953ff6a (Fdefvaralias): Rename arguments SYMBOL and ALIASED to NEW-ALIAS and
Juanma Barranquero <lekktu@gmail.com>
parents: 63147
diff changeset
822 Fput (new_alias, Qvariable_documentation, Qnil);
e44f5953ff6a (Fdefvaralias): Rename arguments SYMBOL and ALIASED to NEW-ALIAS and
Juanma Barranquero <lekktu@gmail.com>
parents: 63147
diff changeset
823
e44f5953ff6a (Fdefvaralias): Rename arguments SYMBOL and ALIASED to NEW-ALIAS and
Juanma Barranquero <lekktu@gmail.com>
parents: 63147
diff changeset
824 return base_variable;
39577
d93909a71fa4 (Fdefvaralias): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 38290
diff changeset
825 }
d93909a71fa4 (Fdefvaralias): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 38290
diff changeset
826
d93909a71fa4 (Fdefvaralias): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 38290
diff changeset
827
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
828 DEFUN ("defvar", Fdefvar, Sdefvar, 1, UNEVALLED, 0,
64540
103c9ac0f63c (Fdefvar): Doc fix.
Juanma Barranquero <lekktu@gmail.com>
parents: 64499
diff changeset
829 doc: /* Define SYMBOL as a variable, and return SYMBOL.
40570
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
830 You are not required to define a variable in order to use it,
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
831 but the definition can supply documentation and an initial value
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
832 in a way that tags can recognize.
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
833
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
834 INITVALUE is evaluated, and used to set SYMBOL, only if SYMBOL's value is void.
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
835 If SYMBOL is buffer-local, its default value is what is set;
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
836 buffer-local values are not affected.
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
837 INITVALUE and DOCSTRING are optional.
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
838 If DOCSTRING starts with *, this variable is identified as a user option.
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
839 This means that M-x set-variable recognizes it.
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
840 See also `user-variable-p'.
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
841 If INITVALUE is missing, SYMBOL's value is not set.
56557
8967ea893ac2 (Fdefvar, Fdefconst): Doc fixes.
Luc Teirlinck <teirllm@auburn.edu>
parents: 56477
diff changeset
842
8967ea893ac2 (Fdefvar, Fdefconst): Doc fixes.
Luc Teirlinck <teirllm@auburn.edu>
parents: 56477
diff changeset
843 If SYMBOL has a local binding, then this form affects the local
8967ea893ac2 (Fdefvar, Fdefconst): Doc fixes.
Luc Teirlinck <teirllm@auburn.edu>
parents: 56477
diff changeset
844 binding. This is usually not what you want. Thus, if you need to
8967ea893ac2 (Fdefvar, Fdefconst): Doc fixes.
Luc Teirlinck <teirllm@auburn.edu>
parents: 56477
diff changeset
845 load a file defining variables, with this form or with `defconst' or
8967ea893ac2 (Fdefvar, Fdefconst): Doc fixes.
Luc Teirlinck <teirllm@auburn.edu>
parents: 56477
diff changeset
846 `defcustom', you should always load that file _outside_ any bindings
8967ea893ac2 (Fdefvar, Fdefconst): Doc fixes.
Luc Teirlinck <teirllm@auburn.edu>
parents: 56477
diff changeset
847 for these variables. \(`defconst' and `defcustom' behave similarly in
8967ea893ac2 (Fdefvar, Fdefconst): Doc fixes.
Luc Teirlinck <teirllm@auburn.edu>
parents: 56477
diff changeset
848 this respect.)
40703
21597de09a0d (top_level_value, top_level_set): Remove commented and #ifdef'd-out code.
Pavel Janík <Pavel@Janik.cz>
parents: 40661
diff changeset
849 usage: (defvar SYMBOL &optional INITVALUE DOCSTRING) */)
40570
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
850 (args)
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
851 Lisp_Object args;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
852 {
10161
512a84fb3c75 (Fdefconst, Fdefvar): Error if too many arguments.
Richard M. Stallman <rms@gnu.org>
parents: 9959
diff changeset
853 register Lisp_Object sym, tem, tail;
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
854
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
855 sym = Fcar (args);
10161
512a84fb3c75 (Fdefconst, Fdefvar): Error if too many arguments.
Richard M. Stallman <rms@gnu.org>
parents: 9959
diff changeset
856 tail = Fcdr (args);
512a84fb3c75 (Fdefconst, Fdefvar): Error if too many arguments.
Richard M. Stallman <rms@gnu.org>
parents: 9959
diff changeset
857 if (!NILP (Fcdr (Fcdr (tail))))
63697
9f617bb41e22 (Fdefvar, Fdefconst, Feval, Ffuncall): Follow error conventions.
Juanma Barranquero <lekktu@gmail.com>
parents: 63391
diff changeset
858 error ("Too many arguments");
10161
512a84fb3c75 (Fdefconst, Fdefvar): Error if too many arguments.
Richard M. Stallman <rms@gnu.org>
parents: 9959
diff changeset
859
37732
f98176963881 (Fdefvar): Only record (defvar <var>) in the load-history
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 37043
diff changeset
860 tem = Fdefault_boundp (sym);
10161
512a84fb3c75 (Fdefconst, Fdefvar): Error if too many arguments.
Richard M. Stallman <rms@gnu.org>
parents: 9959
diff changeset
861 if (!NILP (tail))
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
862 {
64638
8cbdc86a4f55 (Fdefvar): Allow (defvar enable-multibyte-characters).
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 64613
diff changeset
863 if (SYMBOL_CONSTANT_P (sym))
8cbdc86a4f55 (Fdefvar): Allow (defvar enable-multibyte-characters).
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 64613
diff changeset
864 {
8cbdc86a4f55 (Fdefvar): Allow (defvar enable-multibyte-characters).
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 64613
diff changeset
865 /* For upward compatibility, allow (defvar :foo (quote :foo)). */
8cbdc86a4f55 (Fdefvar): Allow (defvar enable-multibyte-characters).
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 64613
diff changeset
866 Lisp_Object tem = Fcar (tail);
8cbdc86a4f55 (Fdefvar): Allow (defvar enable-multibyte-characters).
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 64613
diff changeset
867 if (! (CONSP (tem)
8cbdc86a4f55 (Fdefvar): Allow (defvar enable-multibyte-characters).
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 64613
diff changeset
868 && EQ (XCAR (tem), Qquote)
8cbdc86a4f55 (Fdefvar): Allow (defvar enable-multibyte-characters).
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 64613
diff changeset
869 && CONSP (XCDR (tem))
8cbdc86a4f55 (Fdefvar): Allow (defvar enable-multibyte-characters).
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 64613
diff changeset
870 && EQ (XCAR (XCDR (tem)), sym)))
8cbdc86a4f55 (Fdefvar): Allow (defvar enable-multibyte-characters).
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 64613
diff changeset
871 error ("Constant symbol `%s' specified in defvar",
8cbdc86a4f55 (Fdefvar): Allow (defvar enable-multibyte-characters).
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 64613
diff changeset
872 SDATA (SYMBOL_NAME (sym)));
8cbdc86a4f55 (Fdefvar): Allow (defvar enable-multibyte-characters).
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 64613
diff changeset
873 }
8cbdc86a4f55 (Fdefvar): Allow (defvar enable-multibyte-characters).
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 64613
diff changeset
874
485
8c615e453683 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 431
diff changeset
875 if (NILP (tem))
37732
f98176963881 (Fdefvar): Only record (defvar <var>) in the load-history
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 37043
diff changeset
876 Fset_default (sym, Feval (Fcar (tail)));
58413
73c39b73a189 (Fdefvar): Warn when var is let-bound but globally void.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 58344
diff changeset
877 else
73c39b73a189 (Fdefvar): Warn when var is let-bound but globally void.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 58344
diff changeset
878 { /* Check if there is really a global binding rather than just a let
73c39b73a189 (Fdefvar): Warn when var is let-bound but globally void.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 58344
diff changeset
879 binding that shadows the global unboundness of the var. */
58523
4f9314a314aa (Fdefvar): Declare pdl from last change as `volatile' to prevent
Eli Zaretskii <eliz@gnu.org>
parents: 58413
diff changeset
880 volatile struct specbinding *pdl = specpdl_ptr;
58413
73c39b73a189 (Fdefvar): Warn when var is let-bound but globally void.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 58344
diff changeset
881 while (--pdl >= specpdl)
73c39b73a189 (Fdefvar): Warn when var is let-bound but globally void.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 58344
diff changeset
882 {
73c39b73a189 (Fdefvar): Warn when var is let-bound but globally void.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 58344
diff changeset
883 if (EQ (pdl->symbol, sym) && !pdl->func
73c39b73a189 (Fdefvar): Warn when var is let-bound but globally void.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 58344
diff changeset
884 && EQ (pdl->old_value, Qunbound))
73c39b73a189 (Fdefvar): Warn when var is let-bound but globally void.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 58344
diff changeset
885 {
73c39b73a189 (Fdefvar): Warn when var is let-bound but globally void.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 58344
diff changeset
886 message_with_string ("Warning: defvar ignored because %s is let-bound",
73c39b73a189 (Fdefvar): Warn when var is let-bound but globally void.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 58344
diff changeset
887 SYMBOL_NAME (sym), 1);
73c39b73a189 (Fdefvar): Warn when var is let-bound but globally void.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 58344
diff changeset
888 break;
73c39b73a189 (Fdefvar): Warn when var is let-bound but globally void.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 58344
diff changeset
889 }
73c39b73a189 (Fdefvar): Warn when var is let-bound but globally void.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 58344
diff changeset
890 }
73c39b73a189 (Fdefvar): Warn when var is let-bound but globally void.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 58344
diff changeset
891 }
37732
f98176963881 (Fdefvar): Only record (defvar <var>) in the load-history
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 37043
diff changeset
892 tail = Fcdr (tail);
50630
dfbdcffdcfc9 (For, Fand, Fprogn, un_autoload, do_autoload): Use XCDR, XCAR, CONSP.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 49752
diff changeset
893 tem = Fcar (tail);
dfbdcffdcfc9 (For, Fand, Fprogn, un_autoload, do_autoload): Use XCDR, XCAR, CONSP.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 49752
diff changeset
894 if (!NILP (tem))
37732
f98176963881 (Fdefvar): Only record (defvar <var>) in the load-history
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 37043
diff changeset
895 {
f98176963881 (Fdefvar): Only record (defvar <var>) in the load-history
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 37043
diff changeset
896 if (!NILP (Vpurify_flag))
f98176963881 (Fdefvar): Only record (defvar <var>) in the load-history
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 37043
diff changeset
897 tem = Fpurecopy (tem);
f98176963881 (Fdefvar): Only record (defvar <var>) in the load-history
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 37043
diff changeset
898 Fput (sym, Qvariable_documentation, tem);
f98176963881 (Fdefvar): Only record (defvar <var>) in the load-history
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 37043
diff changeset
899 }
59109
0b61bbccc6e1 (Fdefun, Fdefmacro): Use (defun . FN_NAME) in LOADHIST_ATTACH.
Richard M. Stallman <rms@gnu.org>
parents: 59051
diff changeset
900 LOADHIST_ATTACH (sym);
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
901 }
37732
f98176963881 (Fdefvar): Only record (defvar <var>) in the load-history
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 37043
diff changeset
902 else
47022
d2259df6cb09 (Fdefvar, Fdefconst, Fdefvaralias):
Richard M. Stallman <rms@gnu.org>
parents: 46388
diff changeset
903 /* Simple (defvar <var>) should not count as a definition at all.
d2259df6cb09 (Fdefvar, Fdefconst, Fdefvaralias):
Richard M. Stallman <rms@gnu.org>
parents: 46388
diff changeset
904 It could get in the way of other definitions, and unloading this
d2259df6cb09 (Fdefvar, Fdefconst, Fdefvaralias):
Richard M. Stallman <rms@gnu.org>
parents: 46388
diff changeset
905 package could try to make the variable unbound. */
47026
bacfdb9ae69d Fix last change.
Andreas Schwab <schwab@suse.de>
parents: 47022
diff changeset
906 ;
bacfdb9ae69d Fix last change.
Andreas Schwab <schwab@suse.de>
parents: 47022
diff changeset
907
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
908 return sym;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
909 }
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
910
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
911 DEFUN ("defconst", Fdefconst, Sdefconst, 2, UNEVALLED, 0,
40570
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
912 doc: /* Define SYMBOL as a constant variable.
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
913 The intent is that neither programs nor users should ever change this value.
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
914 Always sets the value of SYMBOL to the result of evalling INITVALUE.
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
915 If SYMBOL is buffer-local, its default value is what is set;
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
916 buffer-local values are not affected.
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
917 DOCSTRING is optional.
56557
8967ea893ac2 (Fdefvar, Fdefconst): Doc fixes.
Luc Teirlinck <teirllm@auburn.edu>
parents: 56477
diff changeset
918
8967ea893ac2 (Fdefvar, Fdefconst): Doc fixes.
Luc Teirlinck <teirllm@auburn.edu>
parents: 56477
diff changeset
919 If SYMBOL has a local binding, then this form sets the local binding's
8967ea893ac2 (Fdefvar, Fdefconst): Doc fixes.
Luc Teirlinck <teirllm@auburn.edu>
parents: 56477
diff changeset
920 value. However, you should normally not make local bindings for
8967ea893ac2 (Fdefvar, Fdefconst): Doc fixes.
Luc Teirlinck <teirllm@auburn.edu>
parents: 56477
diff changeset
921 variables defined with this form.
41846
680de0f18330 Undo last change. Consistency doesn't seem to be desired.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 41822
diff changeset
922 usage: (defconst SYMBOL INITVALUE [DOCSTRING]) */)
40570
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
923 (args)
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
924 Lisp_Object args;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
925 {
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
926 register Lisp_Object sym, tem;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
927
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
928 sym = Fcar (args);
10161
512a84fb3c75 (Fdefconst, Fdefvar): Error if too many arguments.
Richard M. Stallman <rms@gnu.org>
parents: 9959
diff changeset
929 if (!NILP (Fcdr (Fcdr (Fcdr (args)))))
63697
9f617bb41e22 (Fdefvar, Fdefconst, Feval, Ffuncall): Follow error conventions.
Juanma Barranquero <lekktu@gmail.com>
parents: 63391
diff changeset
930 error ("Too many arguments");
10161
512a84fb3c75 (Fdefconst, Fdefvar): Error if too many arguments.
Richard M. Stallman <rms@gnu.org>
parents: 9959
diff changeset
931
27554
229352fdbf68 Fix various doc strings not to duplicate information from
Dave Love <fx@gnu.org>
parents: 27295
diff changeset
932 tem = Feval (Fcar (Fcdr (args)));
229352fdbf68 Fix various doc strings not to duplicate information from
Dave Love <fx@gnu.org>
parents: 27295
diff changeset
933 if (!NILP (Vpurify_flag))
229352fdbf68 Fix various doc strings not to duplicate information from
Dave Love <fx@gnu.org>
parents: 27295
diff changeset
934 tem = Fpurecopy (tem);
229352fdbf68 Fix various doc strings not to duplicate information from
Dave Love <fx@gnu.org>
parents: 27295
diff changeset
935 Fset_default (sym, tem);
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
936 tem = Fcar (Fcdr (Fcdr (args)));
485
8c615e453683 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 431
diff changeset
937 if (!NILP (tem))
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
938 {
485
8c615e453683 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 431
diff changeset
939 if (!NILP (Vpurify_flag))
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
940 tem = Fpurecopy (tem);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
941 Fput (sym, Qvariable_documentation, tem);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
942 }
71341
012bd1b59e70 (Fdefconst): Mark variable as risky.
Richard M. Stallman <rms@gnu.org>
parents: 70084
diff changeset
943 Fput (sym, Qrisky_local_variable, Qt);
59109
0b61bbccc6e1 (Fdefun, Fdefmacro): Use (defun . FN_NAME) in LOADHIST_ATTACH.
Richard M. Stallman <rms@gnu.org>
parents: 59051
diff changeset
944 LOADHIST_ATTACH (sym);
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
945 return sym;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
946 }
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
947
63826
090fb73237c3 (user_variable_p_eh): New function.
Juanma Barranquero <lekktu@gmail.com>
parents: 63805
diff changeset
948 /* Error handler used in Fuser_variable_p. */
090fb73237c3 (user_variable_p_eh): New function.
Juanma Barranquero <lekktu@gmail.com>
parents: 63805
diff changeset
949 static Lisp_Object
090fb73237c3 (user_variable_p_eh): New function.
Juanma Barranquero <lekktu@gmail.com>
parents: 63805
diff changeset
950 user_variable_p_eh (ignore)
090fb73237c3 (user_variable_p_eh): New function.
Juanma Barranquero <lekktu@gmail.com>
parents: 63805
diff changeset
951 Lisp_Object ignore;
090fb73237c3 (user_variable_p_eh): New function.
Juanma Barranquero <lekktu@gmail.com>
parents: 63805
diff changeset
952 {
090fb73237c3 (user_variable_p_eh): New function.
Juanma Barranquero <lekktu@gmail.com>
parents: 63805
diff changeset
953 return Qnil;
090fb73237c3 (user_variable_p_eh): New function.
Juanma Barranquero <lekktu@gmail.com>
parents: 63805
diff changeset
954 }
090fb73237c3 (user_variable_p_eh): New function.
Juanma Barranquero <lekktu@gmail.com>
parents: 63805
diff changeset
955
95118
d426dda989b7 * xdisp.c (select_frame_for_redisplay): Adjust for last change to
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 94963
diff changeset
956 static Lisp_Object
d426dda989b7 * xdisp.c (select_frame_for_redisplay): Adjust for last change to
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 94963
diff changeset
957 lisp_indirect_variable (Lisp_Object sym)
d426dda989b7 * xdisp.c (select_frame_for_redisplay): Adjust for last change to
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 94963
diff changeset
958 {
d426dda989b7 * xdisp.c (select_frame_for_redisplay): Adjust for last change to
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 94963
diff changeset
959 XSETSYMBOL (sym, indirect_variable (XSYMBOL (sym)));
d426dda989b7 * xdisp.c (select_frame_for_redisplay): Adjust for last change to
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 94963
diff changeset
960 return sym;
d426dda989b7 * xdisp.c (select_frame_for_redisplay): Adjust for last change to
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 94963
diff changeset
961 }
d426dda989b7 * xdisp.c (select_frame_for_redisplay): Adjust for last change to
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 94963
diff changeset
962
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
963 DEFUN ("user-variable-p", Fuser_variable_p, Suser_variable_p, 1, 1, 0,
63826
090fb73237c3 (user_variable_p_eh): New function.
Juanma Barranquero <lekktu@gmail.com>
parents: 63805
diff changeset
964 doc: /* Return t if VARIABLE is intended to be set and modified by users.
40570
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
965 \(The alternative is a variable used internally in a Lisp program.)
63826
090fb73237c3 (user_variable_p_eh): New function.
Juanma Barranquero <lekktu@gmail.com>
parents: 63805
diff changeset
966 A variable is a user variable if
090fb73237c3 (user_variable_p_eh): New function.
Juanma Barranquero <lekktu@gmail.com>
parents: 63805
diff changeset
967 \(1) the first character of its documentation is `*', or
090fb73237c3 (user_variable_p_eh): New function.
Juanma Barranquero <lekktu@gmail.com>
parents: 63805
diff changeset
968 \(2) it is customizable (its property list contains a non-nil value
090fb73237c3 (user_variable_p_eh): New function.
Juanma Barranquero <lekktu@gmail.com>
parents: 63805
diff changeset
969 of `standard-value' or `custom-autoload'), or
090fb73237c3 (user_variable_p_eh): New function.
Juanma Barranquero <lekktu@gmail.com>
parents: 63805
diff changeset
970 \(3) it is an alias for another user variable.
090fb73237c3 (user_variable_p_eh): New function.
Juanma Barranquero <lekktu@gmail.com>
parents: 63805
diff changeset
971 Return nil if VARIABLE is an alias and there is a loop in the
090fb73237c3 (user_variable_p_eh): New function.
Juanma Barranquero <lekktu@gmail.com>
parents: 63805
diff changeset
972 chain of symbols. */)
40570
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
973 (variable)
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
974 Lisp_Object variable;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
975 {
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
976 Lisp_Object documentation;
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 49105
diff changeset
977
17275
03f89f7e614e (Fuser_variable_p): If not a symbol, return nil.
Richard M. Stallman <rms@gnu.org>
parents: 17061
diff changeset
978 if (!SYMBOLP (variable))
03f89f7e614e (Fuser_variable_p): If not a symbol, return nil.
Richard M. Stallman <rms@gnu.org>
parents: 17061
diff changeset
979 return Qnil;
03f89f7e614e (Fuser_variable_p): If not a symbol, return nil.
Richard M. Stallman <rms@gnu.org>
parents: 17061
diff changeset
980
63826
090fb73237c3 (user_variable_p_eh): New function.
Juanma Barranquero <lekktu@gmail.com>
parents: 63805
diff changeset
981 /* If indirect and there's an alias loop, don't check anything else. */
090fb73237c3 (user_variable_p_eh): New function.
Juanma Barranquero <lekktu@gmail.com>
parents: 63805
diff changeset
982 if (XSYMBOL (variable)->indirect_variable
95118
d426dda989b7 * xdisp.c (select_frame_for_redisplay): Adjust for last change to
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 94963
diff changeset
983 && NILP (internal_condition_case_1 (lisp_indirect_variable, variable,
63826
090fb73237c3 (user_variable_p_eh): New function.
Juanma Barranquero <lekktu@gmail.com>
parents: 63805
diff changeset
984 Qt, user_variable_p_eh)))
090fb73237c3 (user_variable_p_eh): New function.
Juanma Barranquero <lekktu@gmail.com>
parents: 63805
diff changeset
985 return Qnil;
090fb73237c3 (user_variable_p_eh): New function.
Juanma Barranquero <lekktu@gmail.com>
parents: 63805
diff changeset
986
090fb73237c3 (user_variable_p_eh): New function.
Juanma Barranquero <lekktu@gmail.com>
parents: 63805
diff changeset
987 while (1)
090fb73237c3 (user_variable_p_eh): New function.
Juanma Barranquero <lekktu@gmail.com>
parents: 63805
diff changeset
988 {
090fb73237c3 (user_variable_p_eh): New function.
Juanma Barranquero <lekktu@gmail.com>
parents: 63805
diff changeset
989 documentation = Fget (variable, Qvariable_documentation);
090fb73237c3 (user_variable_p_eh): New function.
Juanma Barranquero <lekktu@gmail.com>
parents: 63805
diff changeset
990 if (INTEGERP (documentation) && XINT (documentation) < 0)
090fb73237c3 (user_variable_p_eh): New function.
Juanma Barranquero <lekktu@gmail.com>
parents: 63805
diff changeset
991 return Qt;
090fb73237c3 (user_variable_p_eh): New function.
Juanma Barranquero <lekktu@gmail.com>
parents: 63805
diff changeset
992 if (STRINGP (documentation)
090fb73237c3 (user_variable_p_eh): New function.
Juanma Barranquero <lekktu@gmail.com>
parents: 63805
diff changeset
993 && ((unsigned char) SREF (documentation, 0) == '*'))
090fb73237c3 (user_variable_p_eh): New function.
Juanma Barranquero <lekktu@gmail.com>
parents: 63805
diff changeset
994 return Qt;
090fb73237c3 (user_variable_p_eh): New function.
Juanma Barranquero <lekktu@gmail.com>
parents: 63805
diff changeset
995 /* If it is (STRING . INTEGER), a negative integer means a user variable. */
090fb73237c3 (user_variable_p_eh): New function.
Juanma Barranquero <lekktu@gmail.com>
parents: 63805
diff changeset
996 if (CONSP (documentation)
090fb73237c3 (user_variable_p_eh): New function.
Juanma Barranquero <lekktu@gmail.com>
parents: 63805
diff changeset
997 && STRINGP (XCAR (documentation))
090fb73237c3 (user_variable_p_eh): New function.
Juanma Barranquero <lekktu@gmail.com>
parents: 63805
diff changeset
998 && INTEGERP (XCDR (documentation))
090fb73237c3 (user_variable_p_eh): New function.
Juanma Barranquero <lekktu@gmail.com>
parents: 63805
diff changeset
999 && XINT (XCDR (documentation)) < 0)
090fb73237c3 (user_variable_p_eh): New function.
Juanma Barranquero <lekktu@gmail.com>
parents: 63805
diff changeset
1000 return Qt;
090fb73237c3 (user_variable_p_eh): New function.
Juanma Barranquero <lekktu@gmail.com>
parents: 63805
diff changeset
1001 /* Customizable? See `custom-variable-p'. */
090fb73237c3 (user_variable_p_eh): New function.
Juanma Barranquero <lekktu@gmail.com>
parents: 63805
diff changeset
1002 if ((!NILP (Fget (variable, intern ("standard-value"))))
090fb73237c3 (user_variable_p_eh): New function.
Juanma Barranquero <lekktu@gmail.com>
parents: 63805
diff changeset
1003 || (!NILP (Fget (variable, intern ("custom-autoload")))))
090fb73237c3 (user_variable_p_eh): New function.
Juanma Barranquero <lekktu@gmail.com>
parents: 63805
diff changeset
1004 return Qt;
090fb73237c3 (user_variable_p_eh): New function.
Juanma Barranquero <lekktu@gmail.com>
parents: 63805
diff changeset
1005
090fb73237c3 (user_variable_p_eh): New function.
Juanma Barranquero <lekktu@gmail.com>
parents: 63805
diff changeset
1006 if (!XSYMBOL (variable)->indirect_variable)
090fb73237c3 (user_variable_p_eh): New function.
Juanma Barranquero <lekktu@gmail.com>
parents: 63805
diff changeset
1007 return Qnil;
090fb73237c3 (user_variable_p_eh): New function.
Juanma Barranquero <lekktu@gmail.com>
parents: 63805
diff changeset
1008
090fb73237c3 (user_variable_p_eh): New function.
Juanma Barranquero <lekktu@gmail.com>
parents: 63805
diff changeset
1009 /* An indirect variable? Let's follow the chain. */
090fb73237c3 (user_variable_p_eh): New function.
Juanma Barranquero <lekktu@gmail.com>
parents: 63805
diff changeset
1010 variable = XSYMBOL (variable)->value;
090fb73237c3 (user_variable_p_eh): New function.
Juanma Barranquero <lekktu@gmail.com>
parents: 63805
diff changeset
1011 }
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 49105
diff changeset
1012 }
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1013
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1014 DEFUN ("let*", FletX, SletX, 1, UNEVALLED, 0,
40570
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
1015 doc: /* Bind variables according to VARLIST then eval BODY.
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
1016 The value of the last form in BODY is returned.
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
1017 Each element of VARLIST is a symbol (which is bound to nil)
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
1018 or a list (SYMBOL VALUEFORM) (which binds SYMBOL to the value of VALUEFORM).
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
1019 Each VALUEFORM can refer to the symbols already bound by this VARLIST.
41846
680de0f18330 Undo last change. Consistency doesn't seem to be desired.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 41822
diff changeset
1020 usage: (let* VARLIST BODY...) */)
40570
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
1021 (args)
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1022 Lisp_Object args;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1023 {
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1024 Lisp_Object varlist, val, elt;
46293
1fb8f75062c6 Use macro SPECPDL_INDEX.
Juanma Barranquero <lekktu@gmail.com>
parents: 46198
diff changeset
1025 int count = SPECPDL_INDEX ();
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1026 struct gcpro gcpro1, gcpro2, gcpro3;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1027
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1028 GCPRO3 (args, elt, varlist);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1029
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1030 varlist = Fcar (args);
485
8c615e453683 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 431
diff changeset
1031 while (!NILP (varlist))
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1032 {
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1033 QUIT;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1034 elt = Fcar (varlist);
9148
e7ab930bb7eb (Fprogn, Finteractive_p, Fuser_variable_p, FletX, Flet, Fmacroexpand,
Karl Heuer <kwzh@gnu.org>
parents: 8980
diff changeset
1035 if (SYMBOLP (elt))
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1036 specbind (elt, Qnil);
604
63a8e7b3c547 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 573
diff changeset
1037 else if (! NILP (Fcdr (Fcdr (elt))))
71976
66a9a086ddbb * eval.c (xsignal): New func. Like Fsignal, but marked no-return.
Kim F. Storm <storm@cua.dk>
parents: 71872
diff changeset
1038 signal_error ("`let' bindings can have only one value-form", elt);
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1039 else
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1040 {
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1041 val = Feval (Fcar (Fcdr (elt)));
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1042 specbind (Fcar (elt), val);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1043 }
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1044 varlist = Fcdr (varlist);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1045 }
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1046 UNGCPRO;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1047 val = Fprogn (Fcdr (args));
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1048 return unbind_to (count, val);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1049 }
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1050
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1051 DEFUN ("let", Flet, Slet, 1, UNEVALLED, 0,
40570
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
1052 doc: /* Bind variables according to VARLIST then eval BODY.
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
1053 The value of the last form in BODY is returned.
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
1054 Each element of VARLIST is a symbol (which is bound to nil)
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
1055 or a list (SYMBOL VALUEFORM) (which binds SYMBOL to the value of VALUEFORM).
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
1056 All the VALUEFORMs are evalled before any symbols are bound.
41846
680de0f18330 Undo last change. Consistency doesn't seem to be desired.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 41822
diff changeset
1057 usage: (let VARLIST BODY...) */)
40570
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
1058 (args)
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1059 Lisp_Object args;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1060 {
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1061 Lisp_Object *temps, tem;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1062 register Lisp_Object elt, varlist;
46293
1fb8f75062c6 Use macro SPECPDL_INDEX.
Juanma Barranquero <lekktu@gmail.com>
parents: 46198
diff changeset
1063 int count = SPECPDL_INDEX ();
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1064 register int argnum;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1065 struct gcpro gcpro1, gcpro2;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1066
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1067 varlist = Fcar (args);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1068
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1069 /* Make space to hold the values to give the bound variables */
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1070 elt = Flength (varlist);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1071 temps = (Lisp_Object *) alloca (XFASTINT (elt) * sizeof (Lisp_Object));
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1072
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1073 /* Compute the values and store them in `temps' */
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1074
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1075 GCPRO2 (args, *temps);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1076 gcpro2.nvars = 0;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1077
85328
d0d527210b0c * lisp.h (enum Lisp_Misc_Type): Del Lisp_Misc_Some_Buffer_Local_Value.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 85291
diff changeset
1078 for (argnum = 0; CONSP (varlist); varlist = XCDR (varlist))
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1079 {
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1080 QUIT;
85328
d0d527210b0c * lisp.h (enum Lisp_Misc_Type): Del Lisp_Misc_Some_Buffer_Local_Value.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 85291
diff changeset
1081 elt = XCAR (varlist);
9148
e7ab930bb7eb (Fprogn, Finteractive_p, Fuser_variable_p, FletX, Flet, Fmacroexpand,
Karl Heuer <kwzh@gnu.org>
parents: 8980
diff changeset
1082 if (SYMBOLP (elt))
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1083 temps [argnum++] = Qnil;
604
63a8e7b3c547 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 573
diff changeset
1084 else if (! NILP (Fcdr (Fcdr (elt))))
71976
66a9a086ddbb * eval.c (xsignal): New func. Like Fsignal, but marked no-return.
Kim F. Storm <storm@cua.dk>
parents: 71872
diff changeset
1085 signal_error ("`let' bindings can have only one value-form", elt);
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1086 else
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1087 temps [argnum++] = Feval (Fcar (Fcdr (elt)));
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1088 gcpro2.nvars = argnum;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1089 }
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1090 UNGCPRO;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1091
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1092 varlist = Fcar (args);
85328
d0d527210b0c * lisp.h (enum Lisp_Misc_Type): Del Lisp_Misc_Some_Buffer_Local_Value.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 85291
diff changeset
1093 for (argnum = 0; CONSP (varlist); varlist = XCDR (varlist))
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1094 {
85328
d0d527210b0c * lisp.h (enum Lisp_Misc_Type): Del Lisp_Misc_Some_Buffer_Local_Value.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 85291
diff changeset
1095 elt = XCAR (varlist);
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1096 tem = temps[argnum++];
9148
e7ab930bb7eb (Fprogn, Finteractive_p, Fuser_variable_p, FletX, Flet, Fmacroexpand,
Karl Heuer <kwzh@gnu.org>
parents: 8980
diff changeset
1097 if (SYMBOLP (elt))
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1098 specbind (elt, tem);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1099 else
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1100 specbind (Fcar (elt), tem);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1101 }
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1102
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1103 elt = Fprogn (Fcdr (args));
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1104 return unbind_to (count, elt);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1105 }
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1106
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1107 DEFUN ("while", Fwhile, Swhile, 1, UNEVALLED, 0,
40570
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
1108 doc: /* If TEST yields non-nil, eval BODY... and repeat.
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
1109 The order of execution is thus TEST, BODY, TEST, BODY and so on
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
1110 until TEST returns nil.
41846
680de0f18330 Undo last change. Consistency doesn't seem to be desired.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 41822
diff changeset
1111 usage: (while TEST BODY...) */)
40570
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
1112 (args)
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1113 Lisp_Object args;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1114 {
42277
fd38a0b6a3ff Remove variables `Qmocklisp_arguments', `Vmocklisp_arguments' and
Pavel Janík <Pavel@Janik.cz>
parents: 41846
diff changeset
1115 Lisp_Object test, body;
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1116 struct gcpro gcpro1, gcpro2;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1117
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1118 GCPRO2 (test, body);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1119
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1120 test = Fcar (args);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1121 body = Fcdr (args);
42277
fd38a0b6a3ff Remove variables `Qmocklisp_arguments', `Vmocklisp_arguments' and
Pavel Janík <Pavel@Janik.cz>
parents: 41846
diff changeset
1122 while (!NILP (Feval (test)))
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1123 {
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1124 QUIT;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1125 Fprogn (body);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1126 }
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1127
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1128 UNGCPRO;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1129 return Qnil;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1130 }
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1131
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1132 DEFUN ("macroexpand", Fmacroexpand, Smacroexpand, 1, 2, 0,
40570
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
1133 doc: /* Return result of expanding macros at top level of FORM.
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
1134 If FORM is not a macro call, it is returned unchanged.
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
1135 Otherwise, the macro is expanded and the expansion is considered
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
1136 in place of FORM. When a non-macro-call results, it is returned.
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
1137
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
1138 The second optional arg ENVIRONMENT specifies an environment of macro
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
1139 definitions to shadow the loaded ones for use in file byte-compilation. */)
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
1140 (form, environment)
16113
df832a303ce5 (Fmacroexpand): Don't declare `form' as register.
Richard M. Stallman <rms@gnu.org>
parents: 16108
diff changeset
1141 Lisp_Object form;
14073
0df4b4f2a2a1 (Fmacroexpand, Fthrow, Fbacktrace_frame): Harmonize arguments with
Erik Naggum <erik@naggum.no>
parents: 13945
diff changeset
1142 Lisp_Object environment;
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1143 {
753
8a4c2c149ec2 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 732
diff changeset
1144 /* With cleanups from Hallvard Furuseth. */
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1145 register Lisp_Object expander, sym, def, tem;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1146
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1147 while (1)
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1148 {
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1149 /* Come back here each time we expand a macro call,
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1150 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
1151 if (!CONSP (form))
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1152 break;
753
8a4c2c149ec2 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 732
diff changeset
1153 /* Set SYM, give DEF and TEM right values in case SYM is not a symbol. */
25662
0a7261c1d487 Use XCAR, XCDR, and XFLOAT_DATA instead of explicit member access.
Ken Raeburn <raeburn@raeburn.org>
parents: 25314
diff changeset
1154 def = sym = XCAR (form);
753
8a4c2c149ec2 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 732
diff changeset
1155 tem = Qnil;
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1156 /* Trace symbols aliases to other symbols
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1157 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
1158 while (SYMBOLP (def))
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1159 {
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1160 QUIT;
753
8a4c2c149ec2 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 732
diff changeset
1161 sym = def;
14073
0df4b4f2a2a1 (Fmacroexpand, Fthrow, Fbacktrace_frame): Harmonize arguments with
Erik Naggum <erik@naggum.no>
parents: 13945
diff changeset
1162 tem = Fassq (sym, environment);
485
8c615e453683 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 431
diff changeset
1163 if (NILP (tem))
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1164 {
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1165 def = XSYMBOL (sym)->function;
753
8a4c2c149ec2 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 732
diff changeset
1166 if (!EQ (def, Qunbound))
8a4c2c149ec2 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 732
diff changeset
1167 continue;
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1168 }
753
8a4c2c149ec2 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 732
diff changeset
1169 break;
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1170 }
14073
0df4b4f2a2a1 (Fmacroexpand, Fthrow, Fbacktrace_frame): Harmonize arguments with
Erik Naggum <erik@naggum.no>
parents: 13945
diff changeset
1171 /* Right now TEM is the result from SYM in ENVIRONMENT,
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1172 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
1173 if (NILP (tem))
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1174 {
14073
0df4b4f2a2a1 (Fmacroexpand, Fthrow, Fbacktrace_frame): Harmonize arguments with
Erik Naggum <erik@naggum.no>
parents: 13945
diff changeset
1175 /* SYM is not mentioned in ENVIRONMENT.
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1176 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
1177 if (EQ (def, Qunbound) || !CONSP (def))
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1178 /* Not defined or definition not suitable */
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1179 break;
25662
0a7261c1d487 Use XCAR, XCDR, and XFLOAT_DATA instead of explicit member access.
Ken Raeburn <raeburn@raeburn.org>
parents: 25314
diff changeset
1180 if (EQ (XCAR (def), Qautoload))
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1181 {
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1182 /* 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
1183 tem = Fnth (make_number (4), def);
5254
b38b74fe1722 (Fmacroexpand): For an autoload definition,
Richard M. Stallman <rms@gnu.org>
parents: 4782
diff changeset
1184 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
1185 /* 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
1186 {
16108
2c9c0c867e00 (Fmacroexpand): gcpro form while calling do_autoload.
Richard M. Stallman <rms@gnu.org>
parents: 15275
diff changeset
1187 struct gcpro gcpro1;
2c9c0c867e00 (Fmacroexpand): gcpro form while calling do_autoload.
Richard M. Stallman <rms@gnu.org>
parents: 15275
diff changeset
1188 GCPRO1 (form);
1564
b327816041d1 * eval.c (Fautoload): Renamed fifth argument TYPE. Document the
Jim Blandy <jimb@redhat.com>
parents: 1452
diff changeset
1189 do_autoload (def, sym);
16108
2c9c0c867e00 (Fmacroexpand): gcpro form while calling do_autoload.
Richard M. Stallman <rms@gnu.org>
parents: 15275
diff changeset
1190 UNGCPRO;
1564
b327816041d1 * eval.c (Fautoload): Renamed fifth argument TYPE. Document the
Jim Blandy <jimb@redhat.com>
parents: 1452
diff changeset
1191 continue;
b327816041d1 * eval.c (Fautoload): Renamed fifth argument TYPE. Document the
Jim Blandy <jimb@redhat.com>
parents: 1452
diff changeset
1192 }
b327816041d1 * eval.c (Fautoload): Renamed fifth argument TYPE. Document the
Jim Blandy <jimb@redhat.com>
parents: 1452
diff changeset
1193 else
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1194 break;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1195 }
25662
0a7261c1d487 Use XCAR, XCDR, and XFLOAT_DATA instead of explicit member access.
Ken Raeburn <raeburn@raeburn.org>
parents: 25314
diff changeset
1196 else if (!EQ (XCAR (def), Qmacro))
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1197 break;
25662
0a7261c1d487 Use XCAR, XCDR, and XFLOAT_DATA instead of explicit member access.
Ken Raeburn <raeburn@raeburn.org>
parents: 25314
diff changeset
1198 else expander = XCDR (def);
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1199 }
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1200 else
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1201 {
25662
0a7261c1d487 Use XCAR, XCDR, and XFLOAT_DATA instead of explicit member access.
Ken Raeburn <raeburn@raeburn.org>
parents: 25314
diff changeset
1202 expander = XCDR (tem);
485
8c615e453683 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 431
diff changeset
1203 if (NILP (expander))
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1204 break;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1205 }
25662
0a7261c1d487 Use XCAR, XCDR, and XFLOAT_DATA instead of explicit member access.
Ken Raeburn <raeburn@raeburn.org>
parents: 25314
diff changeset
1206 form = apply1 (expander, XCDR (form));
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1207 }
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1208 return form;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1209 }
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1210
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1211 DEFUN ("catch", Fcatch, Scatch, 1, UNEVALLED, 0,
40570
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
1212 doc: /* Eval BODY allowing nonlocal exits using `throw'.
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
1213 TAG is evalled to get the tag to use; it must not be nil.
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
1214
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
1215 Then the BODY is executed.
73602
400169af8063 (Fcatch): Doc fix.
Juanma Barranquero <lekktu@gmail.com>
parents: 73323
diff changeset
1216 Within BODY, a call to `throw' with the same TAG exits BODY and this `catch'.
40570
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
1217 If no throw happens, `catch' returns the value of the last BODY form.
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
1218 If a throw happens, it specifies the value to return from `catch'.
41846
680de0f18330 Undo last change. Consistency doesn't seem to be desired.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 41822
diff changeset
1219 usage: (catch TAG BODY...) */)
40570
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
1220 (args)
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1221 Lisp_Object args;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1222 {
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1223 register Lisp_Object tag;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1224 struct gcpro gcpro1;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1225
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1226 GCPRO1 (args);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1227 tag = Feval (Fcar (args));
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1228 UNGCPRO;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1229 return internal_catch (tag, Fprogn, Fcdr (args));
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1230 }
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1231
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1232 /* Set up a catch, then call C function FUNC on argument ARG.
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1233 FUNC should return a Lisp_Object.
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1234 This is how catches are done from within C code. */
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1235
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1236 Lisp_Object
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1237 internal_catch (tag, func, arg)
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1238 Lisp_Object tag;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1239 Lisp_Object (*func) ();
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1240 Lisp_Object arg;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1241 {
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1242 /* This structure is made part of the chain `catchlist'. */
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1243 struct catchtag c;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1244
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1245 /* Fill in the components of c, and put it on the list. */
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1246 c.next = catchlist;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1247 c.tag = tag;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1248 c.val = Qnil;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1249 c.backlist = backtrace_list;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1250 c.handlerlist = handlerlist;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1251 c.lisp_eval_depth = lisp_eval_depth;
46293
1fb8f75062c6 Use macro SPECPDL_INDEX.
Juanma Barranquero <lekktu@gmail.com>
parents: 46198
diff changeset
1252 c.pdlcount = SPECPDL_INDEX ();
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1253 c.poll_suppress_count = poll_suppress_count;
48909
ac6f6d4b84ec Errors and throws work right with interrupt blocking.
Richard M. Stallman <rms@gnu.org>
parents: 48742
diff changeset
1254 c.interrupt_input_blocked = interrupt_input_blocked;
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1255 c.gcpro = gcprolist;
26365
6527989cb214 (struct catchtag): Add member byte_stack.
Gerd Moellmann <gerd@gnu.org>
parents: 26307
diff changeset
1256 c.byte_stack = byte_stack_list;
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1257 catchlist = &c;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1258
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1259 /* Call FUNC. */
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1260 if (! _setjmp (c.jmp))
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1261 c.val = (*func) (arg);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1262
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1263 /* Throw works by a longjmp that comes right here. */
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1264 catchlist = c.next;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1265 return c.val;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1266 }
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1267
1199
ab2d88e2505b * eval.c (unbind_catch): Do the long-jump here. Take a VALUE
Jim Blandy <jimb@redhat.com>
parents: 1196
diff changeset
1268 /* 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
1269 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
1270
ab2d88e2505b * eval.c (unbind_catch): Do the long-jump here. Take a VALUE
Jim Blandy <jimb@redhat.com>
parents: 1196
diff changeset
1271 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
1272 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
1273 condition-case form has a TAG of Qnil.
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1274
1199
ab2d88e2505b * eval.c (unbind_catch): Do the long-jump here. Take a VALUE
Jim Blandy <jimb@redhat.com>
parents: 1196
diff changeset
1275 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
1276 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
1277 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
1278 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
1279 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
1280 specified in the
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1281
1199
ab2d88e2505b * eval.c (unbind_catch): Do the long-jump here. Take a VALUE
Jim Blandy <jimb@redhat.com>
parents: 1196
diff changeset
1282 This is used for correct unwinding in Fthrow and Fsignal. */
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1283
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1284 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
1285 unwind_to_catch (catch, value)
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1286 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
1287 Lisp_Object value;
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1288 {
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1289 register int last_time;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1290
1199
ab2d88e2505b * eval.c (unbind_catch): Do the long-jump here. Take a VALUE
Jim Blandy <jimb@redhat.com>
parents: 1196
diff changeset
1291 /* 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
1292 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
1293
58734
5bc7de720277 (Fcalled_interactively_p): Don't check INTERACTIVE.
Richard M. Stallman <rms@gnu.org>
parents: 58523
diff changeset
1294 /* Restore certain special C variables. */
4474
23d5b09bd218 (unwind_to_catch): Call set_poll_suppress_count.
Richard M. Stallman <rms@gnu.org>
parents: 4462
diff changeset
1295 set_poll_suppress_count (catch->poll_suppress_count);
60418
887436be5f78 (unwind_to_catch): Use UNBLOCK_INPUT_TO.
Richard M. Stallman <rms@gnu.org>
parents: 59953
diff changeset
1296 UNBLOCK_INPUT_TO (catch->interrupt_input_blocked);
58734
5bc7de720277 (Fcalled_interactively_p): Don't check INTERACTIVE.
Richard M. Stallman <rms@gnu.org>
parents: 58523
diff changeset
1297 handling_signal = 0;
59051
a5dd77dcb82e (unwind_to_catch): Clear immediate_quit.
Richard M. Stallman <rms@gnu.org>
parents: 58933
diff changeset
1298 immediate_quit = 0;
1196
65e2edefe748 * eval.c (Fcondition_case): Rearranged for clarity. Don't worry
Jim Blandy <jimb@redhat.com>
parents: 940
diff changeset
1299
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1300 do
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1301 {
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1302 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
1303
65e2edefe748 * eval.c (Fcondition_case): Rearranged for clarity. Don't worry
Jim Blandy <jimb@redhat.com>
parents: 940
diff changeset
1304 /* 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
1305 handlers. */
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1306 unbind_to (catchlist->pdlcount, Qnil);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1307 handlerlist = catchlist->handlerlist;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1308 catchlist = catchlist->next;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1309 }
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1310 while (! last_time);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1311
69399
947598ed954a (unwind_to_catch): Call x_fully_uncatch_errors only if HAVE_X_WINDOWS.
Eli Zaretskii <eliz@gnu.org>
parents: 69387
diff changeset
1312 #if HAVE_X_WINDOWS
69387
2a8938fd785e (unwind_to_catch): Call x_fully_uncatch_errors.
Richard M. Stallman <rms@gnu.org>
parents: 69158
diff changeset
1313 /* If x_catch_errors was done, turn it off now.
2a8938fd785e (unwind_to_catch): Call x_fully_uncatch_errors.
Richard M. Stallman <rms@gnu.org>
parents: 69158
diff changeset
1314 (First we give unbind_to a chance to do that.) */
83536
0014f454c421 Fix x_catch_errors-related abort after X disconnects. (Reported by Dan Nicolaescu).
Karoly Lorentey <lorentey@elte.hu>
parents: 72005
diff changeset
1315 #if 0 /* This would disable x_catch_errors after x_connection_closed.
0014f454c421 Fix x_catch_errors-related abort after X disconnects. (Reported by Dan Nicolaescu).
Karoly Lorentey <lorentey@elte.hu>
parents: 72005
diff changeset
1316 * The catch must remain in effect during that delicate
0014f454c421 Fix x_catch_errors-related abort after X disconnects. (Reported by Dan Nicolaescu).
Karoly Lorentey <lorentey@elte.hu>
parents: 72005
diff changeset
1317 * state. --lorentey */
69387
2a8938fd785e (unwind_to_catch): Call x_fully_uncatch_errors.
Richard M. Stallman <rms@gnu.org>
parents: 69158
diff changeset
1318 x_fully_uncatch_errors ();
69399
947598ed954a (unwind_to_catch): Call x_fully_uncatch_errors only if HAVE_X_WINDOWS.
Eli Zaretskii <eliz@gnu.org>
parents: 69387
diff changeset
1319 #endif
83536
0014f454c421 Fix x_catch_errors-related abort after X disconnects. (Reported by Dan Nicolaescu).
Karoly Lorentey <lorentey@elte.hu>
parents: 72005
diff changeset
1320 #endif
69387
2a8938fd785e (unwind_to_catch): Call x_fully_uncatch_errors.
Richard M. Stallman <rms@gnu.org>
parents: 69158
diff changeset
1321
26365
6527989cb214 (struct catchtag): Add member byte_stack.
Gerd Moellmann <gerd@gnu.org>
parents: 26307
diff changeset
1322 byte_stack_list = catch->byte_stack;
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1323 gcprolist = catch->gcpro;
26297
4d1e267efd41 [DEBUG_GCPRO] (gcpro_level): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 26088
diff changeset
1324 #ifdef DEBUG_GCPRO
4d1e267efd41 [DEBUG_GCPRO] (gcpro_level): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 26088
diff changeset
1325 if (gcprolist != 0)
4d1e267efd41 [DEBUG_GCPRO] (gcpro_level): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 26088
diff changeset
1326 gcpro_level = gcprolist->level + 1;
4d1e267efd41 [DEBUG_GCPRO] (gcpro_level): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 26088
diff changeset
1327 else
4d1e267efd41 [DEBUG_GCPRO] (gcpro_level): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 26088
diff changeset
1328 gcpro_level = 0;
4d1e267efd41 [DEBUG_GCPRO] (gcpro_level): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 26088
diff changeset
1329 #endif
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1330 backtrace_list = catch->backlist;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1331 lisp_eval_depth = catch->lisp_eval_depth;
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 49105
diff changeset
1332
1199
ab2d88e2505b * eval.c (unbind_catch): Do the long-jump here. Take a VALUE
Jim Blandy <jimb@redhat.com>
parents: 1196
diff changeset
1333 _longjmp (catch->jmp, 1);
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1334 }
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1335
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1336 DEFUN ("throw", Fthrow, Sthrow, 2, 2, 0,
40570
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
1337 doc: /* Throw to the catch for TAG and return VALUE from it.
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
1338 Both TAG and VALUE are evalled. */)
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
1339 (tag, value)
14073
0df4b4f2a2a1 (Fmacroexpand, Fthrow, Fbacktrace_frame): Harmonize arguments with
Erik Naggum <erik@naggum.no>
parents: 13945
diff changeset
1340 register Lisp_Object tag, value;
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1341 {
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1342 register struct catchtag *c;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1343
71872
b20203b004f8 (Fthrow): Remove loop around Fsignal.
Kim F. Storm <storm@cua.dk>
parents: 71574
diff changeset
1344 if (!NILP (tag))
b20203b004f8 (Fthrow): Remove loop around Fsignal.
Kim F. Storm <storm@cua.dk>
parents: 71574
diff changeset
1345 for (c = catchlist; c; c = c->next)
b20203b004f8 (Fthrow): Remove loop around Fsignal.
Kim F. Storm <storm@cua.dk>
parents: 71574
diff changeset
1346 {
b20203b004f8 (Fthrow): Remove loop around Fsignal.
Kim F. Storm <storm@cua.dk>
parents: 71574
diff changeset
1347 if (EQ (c->tag, tag))
b20203b004f8 (Fthrow): Remove loop around Fsignal.
Kim F. Storm <storm@cua.dk>
parents: 71574
diff changeset
1348 unwind_to_catch (c, value);
b20203b004f8 (Fthrow): Remove loop around Fsignal.
Kim F. Storm <storm@cua.dk>
parents: 71574
diff changeset
1349 }
71976
66a9a086ddbb * eval.c (xsignal): New func. Like Fsignal, but marked no-return.
Kim F. Storm <storm@cua.dk>
parents: 71872
diff changeset
1350 xsignal2 (Qno_catch, tag, value);
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1351 }
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1352
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1353
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1354 DEFUN ("unwind-protect", Funwind_protect, Sunwind_protect, 1, UNEVALLED, 0,
40570
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
1355 doc: /* Do BODYFORM, protecting with UNWINDFORMS.
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
1356 If BODYFORM completes normally, its value is returned
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
1357 after executing the UNWINDFORMS.
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
1358 If BODYFORM exits nonlocally, the UNWINDFORMS are executed anyway.
41846
680de0f18330 Undo last change. Consistency doesn't seem to be desired.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 41822
diff changeset
1359 usage: (unwind-protect BODYFORM UNWINDFORMS...) */)
40570
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
1360 (args)
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1361 Lisp_Object args;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1362 {
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1363 Lisp_Object val;
46293
1fb8f75062c6 Use macro SPECPDL_INDEX.
Juanma Barranquero <lekktu@gmail.com>
parents: 46198
diff changeset
1364 int count = SPECPDL_INDEX ();
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1365
50774
cddacf81f5e7 (Funwind_protect): Use func = Fprogn rather symbol = Qnil.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 50762
diff changeset
1366 record_unwind_protect (Fprogn, Fcdr (args));
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1367 val = Feval (Fcar (args));
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 49105
diff changeset
1368 return unbind_to (count, val);
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1369 }
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1370
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1371 /* Chain of condition handlers currently in effect.
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1372 The elements of this chain are contained in the stack frames
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1373 of Fcondition_case and internal_condition_case.
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1374 When an error is signaled (by calling Fsignal, below),
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1375 this chain is searched for an element that applies. */
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1376
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1377 struct handler *handlerlist;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1378
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1379 DEFUN ("condition-case", Fcondition_case, Scondition_case, 2, UNEVALLED, 0,
40570
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
1380 doc: /* Regain control when an error is signaled.
40661
2677a5e901f8 (debugger_may_continue, Vdebug_ignored_errors, call_debugger,
Pavel Janík <Pavel@Janik.cz>
parents: 40656
diff changeset
1381 Executes BODYFORM and returns its value if no error happens.
40570
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
1382 Each element of HANDLERS looks like (CONDITION-NAME BODY...)
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
1383 where the BODY is made of Lisp expressions.
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
1384
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
1385 A handler is applicable to an error
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
1386 if CONDITION-NAME is one of the error's condition names.
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
1387 If an error happens, the first applicable handler is run.
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
1388
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
1389 The car of a handler may be a list of condition names
78664
037dc4f731b2 (condition-case): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 78501
diff changeset
1390 instead of a single condition name. Then it handles all of them.
037dc4f731b2 (condition-case): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 78501
diff changeset
1391
037dc4f731b2 (condition-case): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 78501
diff changeset
1392 When a handler handles an error, control returns to the `condition-case'
037dc4f731b2 (condition-case): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 78501
diff changeset
1393 and it executes the handler's BODY...
97735
ec0a26179c3c (Fcondition_case): Doc fix.
Chong Yidong <cyd@stupidchicken.com>
parents: 97059
diff changeset
1394 with VAR bound to (ERROR-SYMBOL . SIGNAL-DATA) from the error.
78664
037dc4f731b2 (condition-case): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 78501
diff changeset
1395 (If VAR is nil, the handler can't access that information.)
037dc4f731b2 (condition-case): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 78501
diff changeset
1396 Then the value of the last BODY form is returned from the `condition-case'
037dc4f731b2 (condition-case): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 78501
diff changeset
1397 expression.
037dc4f731b2 (condition-case): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 78501
diff changeset
1398
40570
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
1399 See also the function `signal' for more info.
55879
7fd80a9c338d (Fcondition_case): Fix usage. Simplify.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 55796
diff changeset
1400 usage: (condition-case VAR BODYFORM &rest HANDLERS) */)
40570
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
1401 (args)
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1402 Lisp_Object args;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1403 {
32657
a0c4d9cbadcd (skip_debugger): Prevent a compiler warning.
Gerd Moellmann <gerd@gnu.org>
parents: 32066
diff changeset
1404 register Lisp_Object bodyform, handlers;
a0c4d9cbadcd (skip_debugger): Prevent a compiler warning.
Gerd Moellmann <gerd@gnu.org>
parents: 32066
diff changeset
1405 volatile Lisp_Object var;
1196
65e2edefe748 * eval.c (Fcondition_case): Rearranged for clarity. Don't worry
Jim Blandy <jimb@redhat.com>
parents: 940
diff changeset
1406
65e2edefe748 * eval.c (Fcondition_case): Rearranged for clarity. Don't worry
Jim Blandy <jimb@redhat.com>
parents: 940
diff changeset
1407 var = Fcar (args);
65e2edefe748 * eval.c (Fcondition_case): Rearranged for clarity. Don't worry
Jim Blandy <jimb@redhat.com>
parents: 940
diff changeset
1408 bodyform = Fcar (Fcdr (args));
65e2edefe748 * eval.c (Fcondition_case): Rearranged for clarity. Don't worry
Jim Blandy <jimb@redhat.com>
parents: 940
diff changeset
1409 handlers = Fcdr (Fcdr (args));
66528
c9adaa704c22 (internal_lisp_condition_case): New function.
Richard M. Stallman <rms@gnu.org>
parents: 64770
diff changeset
1410
c9adaa704c22 (internal_lisp_condition_case): New function.
Richard M. Stallman <rms@gnu.org>
parents: 64770
diff changeset
1411 return internal_lisp_condition_case (var, bodyform, handlers);
c9adaa704c22 (internal_lisp_condition_case): New function.
Richard M. Stallman <rms@gnu.org>
parents: 64770
diff changeset
1412 }
c9adaa704c22 (internal_lisp_condition_case): New function.
Richard M. Stallman <rms@gnu.org>
parents: 64770
diff changeset
1413
c9adaa704c22 (internal_lisp_condition_case): New function.
Richard M. Stallman <rms@gnu.org>
parents: 64770
diff changeset
1414 /* Like Fcondition_case, but the args are separate
c9adaa704c22 (internal_lisp_condition_case): New function.
Richard M. Stallman <rms@gnu.org>
parents: 64770
diff changeset
1415 rather than passed in a list. Used by Fbyte_code. */
c9adaa704c22 (internal_lisp_condition_case): New function.
Richard M. Stallman <rms@gnu.org>
parents: 64770
diff changeset
1416
c9adaa704c22 (internal_lisp_condition_case): New function.
Richard M. Stallman <rms@gnu.org>
parents: 64770
diff changeset
1417 Lisp_Object
c9adaa704c22 (internal_lisp_condition_case): New function.
Richard M. Stallman <rms@gnu.org>
parents: 64770
diff changeset
1418 internal_lisp_condition_case (var, bodyform, handlers)
c9adaa704c22 (internal_lisp_condition_case): New function.
Richard M. Stallman <rms@gnu.org>
parents: 64770
diff changeset
1419 volatile Lisp_Object var;
c9adaa704c22 (internal_lisp_condition_case): New function.
Richard M. Stallman <rms@gnu.org>
parents: 64770
diff changeset
1420 Lisp_Object bodyform, handlers;
c9adaa704c22 (internal_lisp_condition_case): New function.
Richard M. Stallman <rms@gnu.org>
parents: 64770
diff changeset
1421 {
c9adaa704c22 (internal_lisp_condition_case): New function.
Richard M. Stallman <rms@gnu.org>
parents: 64770
diff changeset
1422 Lisp_Object val;
c9adaa704c22 (internal_lisp_condition_case): New function.
Richard M. Stallman <rms@gnu.org>
parents: 64770
diff changeset
1423 struct catchtag c;
c9adaa704c22 (internal_lisp_condition_case): New function.
Richard M. Stallman <rms@gnu.org>
parents: 64770
diff changeset
1424 struct handler h;
c9adaa704c22 (internal_lisp_condition_case): New function.
Richard M. Stallman <rms@gnu.org>
parents: 64770
diff changeset
1425
40656
cdfd4d09b79a Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents: 40629
diff changeset
1426 CHECK_SYMBOL (var);
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1427
55879
7fd80a9c338d (Fcondition_case): Fix usage. Simplify.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 55796
diff changeset
1428 for (val = handlers; CONSP (val); val = XCDR (val))
1196
65e2edefe748 * eval.c (Fcondition_case): Rearranged for clarity. Don't worry
Jim Blandy <jimb@redhat.com>
parents: 940
diff changeset
1429 {
65e2edefe748 * eval.c (Fcondition_case): Rearranged for clarity. Don't worry
Jim Blandy <jimb@redhat.com>
parents: 940
diff changeset
1430 Lisp_Object tem;
55879
7fd80a9c338d (Fcondition_case): Fix usage. Simplify.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 55796
diff changeset
1431 tem = XCAR (val);
5563
50ada322de3e (Fcondition_case): Allow a list of condition names in a handler.
Richard M. Stallman <rms@gnu.org>
parents: 5254
diff changeset
1432 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
1433 || (CONSP (tem)
25662
0a7261c1d487 Use XCAR, XCDR, and XFLOAT_DATA instead of explicit member access.
Ken Raeburn <raeburn@raeburn.org>
parents: 25314
diff changeset
1434 && (SYMBOLP (XCAR (tem))
0a7261c1d487 Use XCAR, XCDR, and XFLOAT_DATA instead of explicit member access.
Ken Raeburn <raeburn@raeburn.org>
parents: 25314
diff changeset
1435 || CONSP (XCAR (tem))))))
1196
65e2edefe748 * eval.c (Fcondition_case): Rearranged for clarity. Don't worry
Jim Blandy <jimb@redhat.com>
parents: 940
diff changeset
1436 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
1437 }
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1438
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1439 c.tag = Qnil;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1440 c.val = Qnil;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1441 c.backlist = backtrace_list;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1442 c.handlerlist = handlerlist;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1443 c.lisp_eval_depth = lisp_eval_depth;
46293
1fb8f75062c6 Use macro SPECPDL_INDEX.
Juanma Barranquero <lekktu@gmail.com>
parents: 46198
diff changeset
1444 c.pdlcount = SPECPDL_INDEX ();
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1445 c.poll_suppress_count = poll_suppress_count;
48909
ac6f6d4b84ec Errors and throws work right with interrupt blocking.
Richard M. Stallman <rms@gnu.org>
parents: 48742
diff changeset
1446 c.interrupt_input_blocked = interrupt_input_blocked;
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1447 c.gcpro = gcprolist;
26365
6527989cb214 (struct catchtag): Add member byte_stack.
Gerd Moellmann <gerd@gnu.org>
parents: 26307
diff changeset
1448 c.byte_stack = byte_stack_list;
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1449 if (_setjmp (c.jmp))
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1450 {
485
8c615e453683 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 431
diff changeset
1451 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
1452 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
1453 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
1454
65e2edefe748 * eval.c (Fcondition_case): Rearranged for clarity. Don't worry
Jim Blandy <jimb@redhat.com>
parents: 940
diff changeset
1455 /* 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
1456 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
1457 throwing. */
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1458 unbind_to (c.pdlcount, Qnil);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1459 return val;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1460 }
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1461 c.next = catchlist;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1462 catchlist = &c;
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 49105
diff changeset
1463
1196
65e2edefe748 * eval.c (Fcondition_case): Rearranged for clarity. Don't worry
Jim Blandy <jimb@redhat.com>
parents: 940
diff changeset
1464 h.var = var;
65e2edefe748 * eval.c (Fcondition_case): Rearranged for clarity. Don't worry
Jim Blandy <jimb@redhat.com>
parents: 940
diff changeset
1465 h.handler = handlers;
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1466 h.next = handlerlist;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1467 h.tag = &c;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1468 handlerlist = &h;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1469
1196
65e2edefe748 * eval.c (Fcondition_case): Rearranged for clarity. Don't worry
Jim Blandy <jimb@redhat.com>
parents: 940
diff changeset
1470 val = Feval (bodyform);
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1471 catchlist = c.next;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1472 handlerlist = h.next;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1473 return val;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1474 }
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1475
14218
346d4cf758f5 (run_hook_with_args): Do nothing if Vrun_hooks is nil.
Richard M. Stallman <rms@gnu.org>
parents: 14186
diff changeset
1476 /* Call the function BFUN with no arguments, catching errors within it
346d4cf758f5 (run_hook_with_args): Do nothing if Vrun_hooks is nil.
Richard M. Stallman <rms@gnu.org>
parents: 14186
diff changeset
1477 according to HANDLERS. If there is an error, call HFUN with
346d4cf758f5 (run_hook_with_args): Do nothing if Vrun_hooks is nil.
Richard M. Stallman <rms@gnu.org>
parents: 14186
diff changeset
1478 one argument which is the data that describes the error:
346d4cf758f5 (run_hook_with_args): Do nothing if Vrun_hooks is nil.
Richard M. Stallman <rms@gnu.org>
parents: 14186
diff changeset
1479 (SIGNALNAME . DATA)
346d4cf758f5 (run_hook_with_args): Do nothing if Vrun_hooks is nil.
Richard M. Stallman <rms@gnu.org>
parents: 14186
diff changeset
1480
346d4cf758f5 (run_hook_with_args): Do nothing if Vrun_hooks is nil.
Richard M. Stallman <rms@gnu.org>
parents: 14186
diff changeset
1481 HANDLERS can be a list of conditions to catch.
346d4cf758f5 (run_hook_with_args): Do nothing if Vrun_hooks is nil.
Richard M. Stallman <rms@gnu.org>
parents: 14186
diff changeset
1482 If HANDLERS is Qt, catch all errors.
346d4cf758f5 (run_hook_with_args): Do nothing if Vrun_hooks is nil.
Richard M. Stallman <rms@gnu.org>
parents: 14186
diff changeset
1483 If HANDLERS is Qerror, catch all errors
346d4cf758f5 (run_hook_with_args): Do nothing if Vrun_hooks is nil.
Richard M. Stallman <rms@gnu.org>
parents: 14186
diff changeset
1484 but allow the debugger to run if that is enabled. */
346d4cf758f5 (run_hook_with_args): Do nothing if Vrun_hooks is nil.
Richard M. Stallman <rms@gnu.org>
parents: 14186
diff changeset
1485
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1486 Lisp_Object
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1487 internal_condition_case (bfun, handlers, hfun)
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1488 Lisp_Object (*bfun) ();
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1489 Lisp_Object handlers;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1490 Lisp_Object (*hfun) ();
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1491 {
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1492 Lisp_Object val;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1493 struct catchtag c;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1494 struct handler h;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1495
69387
2a8938fd785e (unwind_to_catch): Call x_fully_uncatch_errors.
Richard M. Stallman <rms@gnu.org>
parents: 69158
diff changeset
1496 /* Since Fsignal will close off all calls to x_catch_errors,
2a8938fd785e (unwind_to_catch): Call x_fully_uncatch_errors.
Richard M. Stallman <rms@gnu.org>
parents: 69158
diff changeset
1497 we will get the wrong results if some are not closed now. */
69399
947598ed954a (unwind_to_catch): Call x_fully_uncatch_errors only if HAVE_X_WINDOWS.
Eli Zaretskii <eliz@gnu.org>
parents: 69387
diff changeset
1498 #if HAVE_X_WINDOWS
69387
2a8938fd785e (unwind_to_catch): Call x_fully_uncatch_errors.
Richard M. Stallman <rms@gnu.org>
parents: 69158
diff changeset
1499 if (x_catching_errors ())
11365
1e2290c04cce (internal_condition_case): Abort if interrupt_input_blocked>0.
Richard M. Stallman <rms@gnu.org>
parents: 11251
diff changeset
1500 abort ();
69399
947598ed954a (unwind_to_catch): Call x_fully_uncatch_errors only if HAVE_X_WINDOWS.
Eli Zaretskii <eliz@gnu.org>
parents: 69387
diff changeset
1501 #endif
11365
1e2290c04cce (internal_condition_case): Abort if interrupt_input_blocked>0.
Richard M. Stallman <rms@gnu.org>
parents: 11251
diff changeset
1502
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1503 c.tag = Qnil;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1504 c.val = Qnil;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1505 c.backlist = backtrace_list;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1506 c.handlerlist = handlerlist;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1507 c.lisp_eval_depth = lisp_eval_depth;
46293
1fb8f75062c6 Use macro SPECPDL_INDEX.
Juanma Barranquero <lekktu@gmail.com>
parents: 46198
diff changeset
1508 c.pdlcount = SPECPDL_INDEX ();
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1509 c.poll_suppress_count = poll_suppress_count;
48909
ac6f6d4b84ec Errors and throws work right with interrupt blocking.
Richard M. Stallman <rms@gnu.org>
parents: 48742
diff changeset
1510 c.interrupt_input_blocked = interrupt_input_blocked;
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1511 c.gcpro = gcprolist;
26365
6527989cb214 (struct catchtag): Add member byte_stack.
Gerd Moellmann <gerd@gnu.org>
parents: 26307
diff changeset
1512 c.byte_stack = byte_stack_list;
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1513 if (_setjmp (c.jmp))
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1514 {
6132
ddf57829cf03 (Fsignal): If DATA is memory_signal_data, don't add to it.
Richard M. Stallman <rms@gnu.org>
parents: 5807
diff changeset
1515 return (*hfun) (c.val);
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1516 }
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1517 c.next = catchlist;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1518 catchlist = &c;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1519 h.handler = handlers;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1520 h.var = Qnil;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1521 h.next = handlerlist;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1522 h.tag = &c;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1523 handlerlist = &h;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1524
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1525 val = (*bfun) ();
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1526 catchlist = c.next;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1527 handlerlist = h.next;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1528 return val;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1529 }
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1530
48909
ac6f6d4b84ec Errors and throws work right with interrupt blocking.
Richard M. Stallman <rms@gnu.org>
parents: 48742
diff changeset
1531 /* Like internal_condition_case but call BFUN with ARG as its argument. */
14218
346d4cf758f5 (run_hook_with_args): Do nothing if Vrun_hooks is nil.
Richard M. Stallman <rms@gnu.org>
parents: 14186
diff changeset
1532
5807
cc9d9ab24008 (internal_condition_case_1): New function.
Richard M. Stallman <rms@gnu.org>
parents: 5567
diff changeset
1533 Lisp_Object
cc9d9ab24008 (internal_condition_case_1): New function.
Richard M. Stallman <rms@gnu.org>
parents: 5567
diff changeset
1534 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
1535 Lisp_Object (*bfun) ();
cc9d9ab24008 (internal_condition_case_1): New function.
Richard M. Stallman <rms@gnu.org>
parents: 5567
diff changeset
1536 Lisp_Object arg;
cc9d9ab24008 (internal_condition_case_1): New function.
Richard M. Stallman <rms@gnu.org>
parents: 5567
diff changeset
1537 Lisp_Object handlers;
cc9d9ab24008 (internal_condition_case_1): New function.
Richard M. Stallman <rms@gnu.org>
parents: 5567
diff changeset
1538 Lisp_Object (*hfun) ();
cc9d9ab24008 (internal_condition_case_1): New function.
Richard M. Stallman <rms@gnu.org>
parents: 5567
diff changeset
1539 {
cc9d9ab24008 (internal_condition_case_1): New function.
Richard M. Stallman <rms@gnu.org>
parents: 5567
diff changeset
1540 Lisp_Object val;
cc9d9ab24008 (internal_condition_case_1): New function.
Richard M. Stallman <rms@gnu.org>
parents: 5567
diff changeset
1541 struct catchtag c;
cc9d9ab24008 (internal_condition_case_1): New function.
Richard M. Stallman <rms@gnu.org>
parents: 5567
diff changeset
1542 struct handler h;
cc9d9ab24008 (internal_condition_case_1): New function.
Richard M. Stallman <rms@gnu.org>
parents: 5567
diff changeset
1543
69387
2a8938fd785e (unwind_to_catch): Call x_fully_uncatch_errors.
Richard M. Stallman <rms@gnu.org>
parents: 69158
diff changeset
1544 /* Since Fsignal will close off all calls to x_catch_errors,
2a8938fd785e (unwind_to_catch): Call x_fully_uncatch_errors.
Richard M. Stallman <rms@gnu.org>
parents: 69158
diff changeset
1545 we will get the wrong results if some are not closed now. */
69399
947598ed954a (unwind_to_catch): Call x_fully_uncatch_errors only if HAVE_X_WINDOWS.
Eli Zaretskii <eliz@gnu.org>
parents: 69387
diff changeset
1546 #if HAVE_X_WINDOWS
69387
2a8938fd785e (unwind_to_catch): Call x_fully_uncatch_errors.
Richard M. Stallman <rms@gnu.org>
parents: 69158
diff changeset
1547 if (x_catching_errors ())
2a8938fd785e (unwind_to_catch): Call x_fully_uncatch_errors.
Richard M. Stallman <rms@gnu.org>
parents: 69158
diff changeset
1548 abort ();
69399
947598ed954a (unwind_to_catch): Call x_fully_uncatch_errors only if HAVE_X_WINDOWS.
Eli Zaretskii <eliz@gnu.org>
parents: 69387
diff changeset
1549 #endif
69387
2a8938fd785e (unwind_to_catch): Call x_fully_uncatch_errors.
Richard M. Stallman <rms@gnu.org>
parents: 69158
diff changeset
1550
5807
cc9d9ab24008 (internal_condition_case_1): New function.
Richard M. Stallman <rms@gnu.org>
parents: 5567
diff changeset
1551 c.tag = Qnil;
cc9d9ab24008 (internal_condition_case_1): New function.
Richard M. Stallman <rms@gnu.org>
parents: 5567
diff changeset
1552 c.val = Qnil;
cc9d9ab24008 (internal_condition_case_1): New function.
Richard M. Stallman <rms@gnu.org>
parents: 5567
diff changeset
1553 c.backlist = backtrace_list;
cc9d9ab24008 (internal_condition_case_1): New function.
Richard M. Stallman <rms@gnu.org>
parents: 5567
diff changeset
1554 c.handlerlist = handlerlist;
cc9d9ab24008 (internal_condition_case_1): New function.
Richard M. Stallman <rms@gnu.org>
parents: 5567
diff changeset
1555 c.lisp_eval_depth = lisp_eval_depth;
46293
1fb8f75062c6 Use macro SPECPDL_INDEX.
Juanma Barranquero <lekktu@gmail.com>
parents: 46198
diff changeset
1556 c.pdlcount = SPECPDL_INDEX ();
5807
cc9d9ab24008 (internal_condition_case_1): New function.
Richard M. Stallman <rms@gnu.org>
parents: 5567
diff changeset
1557 c.poll_suppress_count = poll_suppress_count;
48909
ac6f6d4b84ec Errors and throws work right with interrupt blocking.
Richard M. Stallman <rms@gnu.org>
parents: 48742
diff changeset
1558 c.interrupt_input_blocked = interrupt_input_blocked;
5807
cc9d9ab24008 (internal_condition_case_1): New function.
Richard M. Stallman <rms@gnu.org>
parents: 5567
diff changeset
1559 c.gcpro = gcprolist;
26365
6527989cb214 (struct catchtag): Add member byte_stack.
Gerd Moellmann <gerd@gnu.org>
parents: 26307
diff changeset
1560 c.byte_stack = byte_stack_list;
5807
cc9d9ab24008 (internal_condition_case_1): New function.
Richard M. Stallman <rms@gnu.org>
parents: 5567
diff changeset
1561 if (_setjmp (c.jmp))
cc9d9ab24008 (internal_condition_case_1): New function.
Richard M. Stallman <rms@gnu.org>
parents: 5567
diff changeset
1562 {
6132
ddf57829cf03 (Fsignal): If DATA is memory_signal_data, don't add to it.
Richard M. Stallman <rms@gnu.org>
parents: 5807
diff changeset
1563 return (*hfun) (c.val);
5807
cc9d9ab24008 (internal_condition_case_1): New function.
Richard M. Stallman <rms@gnu.org>
parents: 5567
diff changeset
1564 }
cc9d9ab24008 (internal_condition_case_1): New function.
Richard M. Stallman <rms@gnu.org>
parents: 5567
diff changeset
1565 c.next = catchlist;
cc9d9ab24008 (internal_condition_case_1): New function.
Richard M. Stallman <rms@gnu.org>
parents: 5567
diff changeset
1566 catchlist = &c;
cc9d9ab24008 (internal_condition_case_1): New function.
Richard M. Stallman <rms@gnu.org>
parents: 5567
diff changeset
1567 h.handler = handlers;
cc9d9ab24008 (internal_condition_case_1): New function.
Richard M. Stallman <rms@gnu.org>
parents: 5567
diff changeset
1568 h.var = Qnil;
cc9d9ab24008 (internal_condition_case_1): New function.
Richard M. Stallman <rms@gnu.org>
parents: 5567
diff changeset
1569 h.next = handlerlist;
cc9d9ab24008 (internal_condition_case_1): New function.
Richard M. Stallman <rms@gnu.org>
parents: 5567
diff changeset
1570 h.tag = &c;
cc9d9ab24008 (internal_condition_case_1): New function.
Richard M. Stallman <rms@gnu.org>
parents: 5567
diff changeset
1571 handlerlist = &h;
cc9d9ab24008 (internal_condition_case_1): New function.
Richard M. Stallman <rms@gnu.org>
parents: 5567
diff changeset
1572
cc9d9ab24008 (internal_condition_case_1): New function.
Richard M. Stallman <rms@gnu.org>
parents: 5567
diff changeset
1573 val = (*bfun) (arg);
cc9d9ab24008 (internal_condition_case_1): New function.
Richard M. Stallman <rms@gnu.org>
parents: 5567
diff changeset
1574 catchlist = c.next;
cc9d9ab24008 (internal_condition_case_1): New function.
Richard M. Stallman <rms@gnu.org>
parents: 5567
diff changeset
1575 handlerlist = h.next;
cc9d9ab24008 (internal_condition_case_1): New function.
Richard M. Stallman <rms@gnu.org>
parents: 5567
diff changeset
1576 return val;
cc9d9ab24008 (internal_condition_case_1): New function.
Richard M. Stallman <rms@gnu.org>
parents: 5567
diff changeset
1577 }
30217
887b4d52a334 (internal_condition_case_2): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 30106
diff changeset
1578
887b4d52a334 (internal_condition_case_2): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 30106
diff changeset
1579
48909
ac6f6d4b84ec Errors and throws work right with interrupt blocking.
Richard M. Stallman <rms@gnu.org>
parents: 48742
diff changeset
1580 /* Like internal_condition_case but call BFUN with NARGS as first,
30217
887b4d52a334 (internal_condition_case_2): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 30106
diff changeset
1581 and ARGS as second argument. */
887b4d52a334 (internal_condition_case_2): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 30106
diff changeset
1582
887b4d52a334 (internal_condition_case_2): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 30106
diff changeset
1583 Lisp_Object
887b4d52a334 (internal_condition_case_2): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 30106
diff changeset
1584 internal_condition_case_2 (bfun, nargs, args, handlers, hfun)
887b4d52a334 (internal_condition_case_2): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 30106
diff changeset
1585 Lisp_Object (*bfun) ();
887b4d52a334 (internal_condition_case_2): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 30106
diff changeset
1586 int nargs;
887b4d52a334 (internal_condition_case_2): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 30106
diff changeset
1587 Lisp_Object *args;
887b4d52a334 (internal_condition_case_2): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 30106
diff changeset
1588 Lisp_Object handlers;
887b4d52a334 (internal_condition_case_2): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 30106
diff changeset
1589 Lisp_Object (*hfun) ();
887b4d52a334 (internal_condition_case_2): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 30106
diff changeset
1590 {
887b4d52a334 (internal_condition_case_2): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 30106
diff changeset
1591 Lisp_Object val;
887b4d52a334 (internal_condition_case_2): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 30106
diff changeset
1592 struct catchtag c;
887b4d52a334 (internal_condition_case_2): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 30106
diff changeset
1593 struct handler h;
887b4d52a334 (internal_condition_case_2): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 30106
diff changeset
1594
69387
2a8938fd785e (unwind_to_catch): Call x_fully_uncatch_errors.
Richard M. Stallman <rms@gnu.org>
parents: 69158
diff changeset
1595 /* Since Fsignal will close off all calls to x_catch_errors,
2a8938fd785e (unwind_to_catch): Call x_fully_uncatch_errors.
Richard M. Stallman <rms@gnu.org>
parents: 69158
diff changeset
1596 we will get the wrong results if some are not closed now. */
69399
947598ed954a (unwind_to_catch): Call x_fully_uncatch_errors only if HAVE_X_WINDOWS.
Eli Zaretskii <eliz@gnu.org>
parents: 69387
diff changeset
1597 #if HAVE_X_WINDOWS
69387
2a8938fd785e (unwind_to_catch): Call x_fully_uncatch_errors.
Richard M. Stallman <rms@gnu.org>
parents: 69158
diff changeset
1598 if (x_catching_errors ())
2a8938fd785e (unwind_to_catch): Call x_fully_uncatch_errors.
Richard M. Stallman <rms@gnu.org>
parents: 69158
diff changeset
1599 abort ();
69399
947598ed954a (unwind_to_catch): Call x_fully_uncatch_errors only if HAVE_X_WINDOWS.
Eli Zaretskii <eliz@gnu.org>
parents: 69387
diff changeset
1600 #endif
69387
2a8938fd785e (unwind_to_catch): Call x_fully_uncatch_errors.
Richard M. Stallman <rms@gnu.org>
parents: 69158
diff changeset
1601
30217
887b4d52a334 (internal_condition_case_2): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 30106
diff changeset
1602 c.tag = Qnil;
887b4d52a334 (internal_condition_case_2): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 30106
diff changeset
1603 c.val = Qnil;
887b4d52a334 (internal_condition_case_2): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 30106
diff changeset
1604 c.backlist = backtrace_list;
887b4d52a334 (internal_condition_case_2): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 30106
diff changeset
1605 c.handlerlist = handlerlist;
887b4d52a334 (internal_condition_case_2): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 30106
diff changeset
1606 c.lisp_eval_depth = lisp_eval_depth;
46293
1fb8f75062c6 Use macro SPECPDL_INDEX.
Juanma Barranquero <lekktu@gmail.com>
parents: 46198
diff changeset
1607 c.pdlcount = SPECPDL_INDEX ();
30217
887b4d52a334 (internal_condition_case_2): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 30106
diff changeset
1608 c.poll_suppress_count = poll_suppress_count;
48909
ac6f6d4b84ec Errors and throws work right with interrupt blocking.
Richard M. Stallman <rms@gnu.org>
parents: 48742
diff changeset
1609 c.interrupt_input_blocked = interrupt_input_blocked;
30217
887b4d52a334 (internal_condition_case_2): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 30106
diff changeset
1610 c.gcpro = gcprolist;
887b4d52a334 (internal_condition_case_2): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 30106
diff changeset
1611 c.byte_stack = byte_stack_list;
887b4d52a334 (internal_condition_case_2): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 30106
diff changeset
1612 if (_setjmp (c.jmp))
887b4d52a334 (internal_condition_case_2): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 30106
diff changeset
1613 {
887b4d52a334 (internal_condition_case_2): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 30106
diff changeset
1614 return (*hfun) (c.val);
887b4d52a334 (internal_condition_case_2): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 30106
diff changeset
1615 }
887b4d52a334 (internal_condition_case_2): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 30106
diff changeset
1616 c.next = catchlist;
887b4d52a334 (internal_condition_case_2): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 30106
diff changeset
1617 catchlist = &c;
887b4d52a334 (internal_condition_case_2): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 30106
diff changeset
1618 h.handler = handlers;
887b4d52a334 (internal_condition_case_2): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 30106
diff changeset
1619 h.var = Qnil;
887b4d52a334 (internal_condition_case_2): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 30106
diff changeset
1620 h.next = handlerlist;
887b4d52a334 (internal_condition_case_2): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 30106
diff changeset
1621 h.tag = &c;
887b4d52a334 (internal_condition_case_2): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 30106
diff changeset
1622 handlerlist = &h;
887b4d52a334 (internal_condition_case_2): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 30106
diff changeset
1623
887b4d52a334 (internal_condition_case_2): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 30106
diff changeset
1624 val = (*bfun) (nargs, args);
887b4d52a334 (internal_condition_case_2): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 30106
diff changeset
1625 catchlist = c.next;
887b4d52a334 (internal_condition_case_2): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 30106
diff changeset
1626 handlerlist = h.next;
887b4d52a334 (internal_condition_case_2): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 30106
diff changeset
1627 return val;
887b4d52a334 (internal_condition_case_2): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 30106
diff changeset
1628 }
887b4d52a334 (internal_condition_case_2): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 30106
diff changeset
1629
5807
cc9d9ab24008 (internal_condition_case_1): New function.
Richard M. Stallman <rms@gnu.org>
parents: 5567
diff changeset
1630
41114
242c6928accc (max_specpdl_size, max_lisp_eval_depth): Use EMACS_INT.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 41029
diff changeset
1631 static Lisp_Object find_handler_clause P_ ((Lisp_Object, Lisp_Object,
81871
f533b796856e (maybe_call_debugger): New function.
Richard M. Stallman <rms@gnu.org>
parents: 81858
diff changeset
1632 Lisp_Object, Lisp_Object));
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1633
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1634 DEFUN ("signal", Fsignal, Ssignal, 2, 2, 0,
40570
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
1635 doc: /* Signal an error. Args are ERROR-SYMBOL and associated DATA.
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
1636 This function does not return.
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
1637
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
1638 An error symbol is a symbol with an `error-conditions' property
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
1639 that is a list of condition names.
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
1640 A handler for any of those names will get to handle this signal.
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
1641 The symbol `error' should normally be one of them.
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
1642
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
1643 DATA should be a list. Its elements are printed as part of the error message.
53461
abbbd322a247 (Fsignal): Add hyperlink to the definition of `signal' in the Elisp manual.
Luc Teirlinck <teirllm@auburn.edu>
parents: 53362
diff changeset
1644 See Info anchor `(elisp)Definition of signal' for some details on how this
abbbd322a247 (Fsignal): Add hyperlink to the definition of `signal' in the Elisp manual.
Luc Teirlinck <teirllm@auburn.edu>
parents: 53362
diff changeset
1645 error message is constructed.
40570
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
1646 If the signal is handled, DATA is made available to the handler.
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
1647 See also the function `condition-case'. */)
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
1648 (error_symbol, data)
5566
e2925466c923 (Fsignal): Rename 1st arg to error_symbol.
Richard M. Stallman <rms@gnu.org>
parents: 5563
diff changeset
1649 Lisp_Object error_symbol, data;
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1650 {
24171
44241f56675a (Fsignal): Move comment to avoid confusing make-docfile.
Andreas Schwab <schwab@suse.de>
parents: 24054
diff changeset
1651 /* When memory is full, ERROR-SYMBOL is nil,
46315
67b681b7d3d9 (Fsignal): Don't call cancel_hourglass.
Richard M. Stallman <rms@gnu.org>
parents: 46293
diff changeset
1652 and DATA is (REAL-ERROR-SYMBOL . REAL-DATA).
67b681b7d3d9 (Fsignal): Don't call cancel_hourglass.
Richard M. Stallman <rms@gnu.org>
parents: 46293
diff changeset
1653 That is a special case--don't do this in other situations. */
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1654 register struct handler *allhandlers = handlerlist;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1655 Lisp_Object conditions;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1656 extern int gc_in_progress;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1657 extern int waiting_for_input;
16895
32945f27ed20 (Fsignal): Call fatal if no error handlers and no catch.
Richard M. Stallman <rms@gnu.org>
parents: 16485
diff changeset
1658 Lisp_Object string;
18636
b3f3cd32fa70 (Fsignal, find_handler_clause): If ERROR_SYMBOL
Richard M. Stallman <rms@gnu.org>
parents: 18018
diff changeset
1659 Lisp_Object real_error_symbol;
30073
ed8f34a43649 (Vsignaling_function): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 30058
diff changeset
1660 struct backtrace *bp;
25008
39dd5c98a114 (Fsignal): Reset redisplaying_p to zero.
Gerd Moellmann <gerd@gnu.org>
parents: 24605
diff changeset
1661
33988
f1fefcb74da7 (Fsignal): Reset handling_signal.
Gerd Moellmann <gerd@gnu.org>
parents: 32657
diff changeset
1662 immediate_quit = handling_signal = 0;
50747
f38d1373681e (Fsignal): Clear abort_on_gc.
Richard M. Stallman <rms@gnu.org>
parents: 50644
diff changeset
1663 abort_on_gc = 0;
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1664 if (gc_in_progress || waiting_for_input)
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1665 abort ();
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1666
18636
b3f3cd32fa70 (Fsignal, find_handler_clause): If ERROR_SYMBOL
Richard M. Stallman <rms@gnu.org>
parents: 18018
diff changeset
1667 if (NILP (error_symbol))
b3f3cd32fa70 (Fsignal, find_handler_clause): If ERROR_SYMBOL
Richard M. Stallman <rms@gnu.org>
parents: 18018
diff changeset
1668 real_error_symbol = Fcar (data);
b3f3cd32fa70 (Fsignal, find_handler_clause): If ERROR_SYMBOL
Richard M. Stallman <rms@gnu.org>
parents: 18018
diff changeset
1669 else
b3f3cd32fa70 (Fsignal, find_handler_clause): If ERROR_SYMBOL
Richard M. Stallman <rms@gnu.org>
parents: 18018
diff changeset
1670 real_error_symbol = error_symbol;
b3f3cd32fa70 (Fsignal, find_handler_clause): If ERROR_SYMBOL
Richard M. Stallman <rms@gnu.org>
parents: 18018
diff changeset
1671
46315
67b681b7d3d9 (Fsignal): Don't call cancel_hourglass.
Richard M. Stallman <rms@gnu.org>
parents: 46293
diff changeset
1672 #if 0 /* rms: I don't know why this was here,
67b681b7d3d9 (Fsignal): Don't call cancel_hourglass.
Richard M. Stallman <rms@gnu.org>
parents: 46293
diff changeset
1673 but it is surely wrong for an error that is handled. */
93071
8bb58b63a5fd * w32fns.c (hourglass_timer, hourglass_hwnd): New variables.
Jason Rumney <jasonr@gnu.org>
parents: 91607
diff changeset
1674 #ifdef HAVE_WINDOW_SYSTEM
36256
e033d60bd048 Use display_hourglass_p, start_hourglass, cancel_hourglass instead of
Gerd Moellmann <gerd@gnu.org>
parents: 35774
diff changeset
1675 if (display_hourglass_p)
e033d60bd048 Use display_hourglass_p, start_hourglass, cancel_hourglass instead of
Gerd Moellmann <gerd@gnu.org>
parents: 35774
diff changeset
1676 cancel_hourglass ();
25008
39dd5c98a114 (Fsignal): Reset redisplaying_p to zero.
Gerd Moellmann <gerd@gnu.org>
parents: 24605
diff changeset
1677 #endif
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 49105
diff changeset
1678 #endif
25008
39dd5c98a114 (Fsignal): Reset redisplaying_p to zero.
Gerd Moellmann <gerd@gnu.org>
parents: 24605
diff changeset
1679
16355
1d85b2698564 (Vdebug_force): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 16296
diff changeset
1680 /* This hook is used by edebug. */
46315
67b681b7d3d9 (Fsignal): Don't call cancel_hourglass.
Richard M. Stallman <rms@gnu.org>
parents: 46293
diff changeset
1681 if (! NILP (Vsignal_hook_function)
67b681b7d3d9 (Fsignal): Don't call cancel_hourglass.
Richard M. Stallman <rms@gnu.org>
parents: 46293
diff changeset
1682 && ! NILP (error_symbol))
63767
60a9b2133cf1 (call_debugger): Take full care of extending stack limits
Richard M. Stallman <rms@gnu.org>
parents: 63697
diff changeset
1683 {
60a9b2133cf1 (call_debugger): Take full care of extending stack limits
Richard M. Stallman <rms@gnu.org>
parents: 63697
diff changeset
1684 /* Edebug takes care of restoring these variables when it exits. */
60a9b2133cf1 (call_debugger): Take full care of extending stack limits
Richard M. Stallman <rms@gnu.org>
parents: 63697
diff changeset
1685 if (lisp_eval_depth + 20 > max_lisp_eval_depth)
60a9b2133cf1 (call_debugger): Take full care of extending stack limits
Richard M. Stallman <rms@gnu.org>
parents: 63697
diff changeset
1686 max_lisp_eval_depth = lisp_eval_depth + 20;
60a9b2133cf1 (call_debugger): Take full care of extending stack limits
Richard M. Stallman <rms@gnu.org>
parents: 63697
diff changeset
1687
60a9b2133cf1 (call_debugger): Take full care of extending stack limits
Richard M. Stallman <rms@gnu.org>
parents: 63697
diff changeset
1688 if (SPECPDL_INDEX () + 40 > max_specpdl_size)
60a9b2133cf1 (call_debugger): Take full care of extending stack limits
Richard M. Stallman <rms@gnu.org>
parents: 63697
diff changeset
1689 max_specpdl_size = SPECPDL_INDEX () + 40;
60a9b2133cf1 (call_debugger): Take full care of extending stack limits
Richard M. Stallman <rms@gnu.org>
parents: 63697
diff changeset
1690
60a9b2133cf1 (call_debugger): Take full care of extending stack limits
Richard M. Stallman <rms@gnu.org>
parents: 63697
diff changeset
1691 call2 (Vsignal_hook_function, error_symbol, data);
60a9b2133cf1 (call_debugger): Take full care of extending stack limits
Richard M. Stallman <rms@gnu.org>
parents: 63697
diff changeset
1692 }
16355
1d85b2698564 (Vdebug_force): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 16296
diff changeset
1693
18636
b3f3cd32fa70 (Fsignal, find_handler_clause): If ERROR_SYMBOL
Richard M. Stallman <rms@gnu.org>
parents: 18018
diff changeset
1694 conditions = Fget (real_error_symbol, Qerror_conditions);
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1695
30073
ed8f34a43649 (Vsignaling_function): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 30058
diff changeset
1696 /* Remember from where signal was called. Skip over the frame for
ed8f34a43649 (Vsignaling_function): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 30058
diff changeset
1697 `signal' itself. If a frame for `error' follows, skip that,
46315
67b681b7d3d9 (Fsignal): Don't call cancel_hourglass.
Richard M. Stallman <rms@gnu.org>
parents: 46293
diff changeset
1698 too. Don't do this when ERROR_SYMBOL is nil, because that
67b681b7d3d9 (Fsignal): Don't call cancel_hourglass.
Richard M. Stallman <rms@gnu.org>
parents: 46293
diff changeset
1699 is a memory-full error. */
30106
bb87a284ee53 (Fsignal): Handle case that backtrace_list is null.
Gerd Moellmann <gerd@gnu.org>
parents: 30080
diff changeset
1700 Vsignaling_function = Qnil;
46315
67b681b7d3d9 (Fsignal): Don't call cancel_hourglass.
Richard M. Stallman <rms@gnu.org>
parents: 46293
diff changeset
1701 if (backtrace_list && !NILP (error_symbol))
30106
bb87a284ee53 (Fsignal): Handle case that backtrace_list is null.
Gerd Moellmann <gerd@gnu.org>
parents: 30080
diff changeset
1702 {
bb87a284ee53 (Fsignal): Handle case that backtrace_list is null.
Gerd Moellmann <gerd@gnu.org>
parents: 30080
diff changeset
1703 bp = backtrace_list->next;
bb87a284ee53 (Fsignal): Handle case that backtrace_list is null.
Gerd Moellmann <gerd@gnu.org>
parents: 30080
diff changeset
1704 if (bp && bp->function && EQ (*bp->function, Qerror))
bb87a284ee53 (Fsignal): Handle case that backtrace_list is null.
Gerd Moellmann <gerd@gnu.org>
parents: 30080
diff changeset
1705 bp = bp->next;
bb87a284ee53 (Fsignal): Handle case that backtrace_list is null.
Gerd Moellmann <gerd@gnu.org>
parents: 30080
diff changeset
1706 if (bp && bp->function)
bb87a284ee53 (Fsignal): Handle case that backtrace_list is null.
Gerd Moellmann <gerd@gnu.org>
parents: 30080
diff changeset
1707 Vsignaling_function = *bp->function;
bb87a284ee53 (Fsignal): Handle case that backtrace_list is null.
Gerd Moellmann <gerd@gnu.org>
parents: 30080
diff changeset
1708 }
30073
ed8f34a43649 (Vsignaling_function): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 30058
diff changeset
1709
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1710 for (; handlerlist; handlerlist = handlerlist->next)
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1711 {
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1712 register Lisp_Object clause;
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 49105
diff changeset
1713
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1714 clause = find_handler_clause (handlerlist->handler, conditions,
81871
f533b796856e (maybe_call_debugger): New function.
Richard M. Stallman <rms@gnu.org>
parents: 81858
diff changeset
1715 error_symbol, data);
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1716
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1717 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
1718 {
13945
6a653c300631 (syms_of_eval): Doc fix for inhibit-quit.
Karl Heuer <kwzh@gnu.org>
parents: 13768
diff changeset
1719 /* We can't return values to code which signaled an error, but we
6a653c300631 (syms_of_eval): Doc fix for inhibit-quit.
Karl Heuer <kwzh@gnu.org>
parents: 13768
diff changeset
1720 can continue code which has signaled a quit. */
18636
b3f3cd32fa70 (Fsignal, find_handler_clause): If ERROR_SYMBOL
Richard M. Stallman <rms@gnu.org>
parents: 18018
diff changeset
1721 if (EQ (real_error_symbol, Qquit))
1196
65e2edefe748 * eval.c (Fcondition_case): Rearranged for clarity. Don't worry
Jim Blandy <jimb@redhat.com>
parents: 940
diff changeset
1722 return Qnil;
65e2edefe748 * eval.c (Fcondition_case): Rearranged for clarity. Don't worry
Jim Blandy <jimb@redhat.com>
parents: 940
diff changeset
1723 else
3973
ab06b106c490 (Fsignal): Clarify error message.
Richard M. Stallman <rms@gnu.org>
parents: 3703
diff changeset
1724 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
1725 }
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1726
485
8c615e453683 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 431
diff changeset
1727 if (!NILP (clause))
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1728 {
6132
ddf57829cf03 (Fsignal): If DATA is memory_signal_data, don't add to it.
Richard M. Stallman <rms@gnu.org>
parents: 5807
diff changeset
1729 Lisp_Object unwind_data;
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1730 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
1731
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1732 handlerlist = allhandlers;
18636
b3f3cd32fa70 (Fsignal, find_handler_clause): If ERROR_SYMBOL
Richard M. Stallman <rms@gnu.org>
parents: 18018
diff changeset
1733
b3f3cd32fa70 (Fsignal, find_handler_clause): If ERROR_SYMBOL
Richard M. Stallman <rms@gnu.org>
parents: 18018
diff changeset
1734 if (NILP (error_symbol))
b3f3cd32fa70 (Fsignal, find_handler_clause): If ERROR_SYMBOL
Richard M. Stallman <rms@gnu.org>
parents: 18018
diff changeset
1735 unwind_data = data;
6132
ddf57829cf03 (Fsignal): If DATA is memory_signal_data, don't add to it.
Richard M. Stallman <rms@gnu.org>
parents: 5807
diff changeset
1736 else
ddf57829cf03 (Fsignal): If DATA is memory_signal_data, don't add to it.
Richard M. Stallman <rms@gnu.org>
parents: 5807
diff changeset
1737 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
1738 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
1739 unwind_to_catch (h->tag, unwind_data);
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1740 }
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1741 }
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1742
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1743 handlerlist = allhandlers;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1744 /* If no handler is present now, try to run the debugger,
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1745 and if that fails, throw to top level. */
81871
f533b796856e (maybe_call_debugger): New function.
Richard M. Stallman <rms@gnu.org>
parents: 81858
diff changeset
1746 find_handler_clause (Qerror, conditions, error_symbol, data);
16895
32945f27ed20 (Fsignal): Call fatal if no error handlers and no catch.
Richard M. Stallman <rms@gnu.org>
parents: 16485
diff changeset
1747 if (catchlist != 0)
32945f27ed20 (Fsignal): Call fatal if no error handlers and no catch.
Richard M. Stallman <rms@gnu.org>
parents: 16485
diff changeset
1748 Fthrow (Qtop_level, Qt);
32945f27ed20 (Fsignal): Call fatal if no error handlers and no catch.
Richard M. Stallman <rms@gnu.org>
parents: 16485
diff changeset
1749
18636
b3f3cd32fa70 (Fsignal, find_handler_clause): If ERROR_SYMBOL
Richard M. Stallman <rms@gnu.org>
parents: 18018
diff changeset
1750 if (! NILP (error_symbol))
16895
32945f27ed20 (Fsignal): Call fatal if no error handlers and no catch.
Richard M. Stallman <rms@gnu.org>
parents: 16485
diff changeset
1751 data = Fcons (error_symbol, data);
32945f27ed20 (Fsignal): Call fatal if no error handlers and no catch.
Richard M. Stallman <rms@gnu.org>
parents: 16485
diff changeset
1752
32945f27ed20 (Fsignal): Call fatal if no error handlers and no catch.
Richard M. Stallman <rms@gnu.org>
parents: 16485
diff changeset
1753 string = Ferror_message_string (data);
46370
40db0673e6f0 Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents: 46315
diff changeset
1754 fatal ("%s", SDATA (string), 0);
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1755 }
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1756
71976
66a9a086ddbb * eval.c (xsignal): New func. Like Fsignal, but marked no-return.
Kim F. Storm <storm@cua.dk>
parents: 71872
diff changeset
1757 /* Internal version of Fsignal that never returns.
66a9a086ddbb * eval.c (xsignal): New func. Like Fsignal, but marked no-return.
Kim F. Storm <storm@cua.dk>
parents: 71872
diff changeset
1758 Used for anything but Qquit (which can return from Fsignal). */
66a9a086ddbb * eval.c (xsignal): New func. Like Fsignal, but marked no-return.
Kim F. Storm <storm@cua.dk>
parents: 71872
diff changeset
1759
66a9a086ddbb * eval.c (xsignal): New func. Like Fsignal, but marked no-return.
Kim F. Storm <storm@cua.dk>
parents: 71872
diff changeset
1760 void
66a9a086ddbb * eval.c (xsignal): New func. Like Fsignal, but marked no-return.
Kim F. Storm <storm@cua.dk>
parents: 71872
diff changeset
1761 xsignal (error_symbol, data)
66a9a086ddbb * eval.c (xsignal): New func. Like Fsignal, but marked no-return.
Kim F. Storm <storm@cua.dk>
parents: 71872
diff changeset
1762 Lisp_Object error_symbol, data;
66a9a086ddbb * eval.c (xsignal): New func. Like Fsignal, but marked no-return.
Kim F. Storm <storm@cua.dk>
parents: 71872
diff changeset
1763 {
66a9a086ddbb * eval.c (xsignal): New func. Like Fsignal, but marked no-return.
Kim F. Storm <storm@cua.dk>
parents: 71872
diff changeset
1764 Fsignal (error_symbol, data);
66a9a086ddbb * eval.c (xsignal): New func. Like Fsignal, but marked no-return.
Kim F. Storm <storm@cua.dk>
parents: 71872
diff changeset
1765 abort ();
66a9a086ddbb * eval.c (xsignal): New func. Like Fsignal, but marked no-return.
Kim F. Storm <storm@cua.dk>
parents: 71872
diff changeset
1766 }
66a9a086ddbb * eval.c (xsignal): New func. Like Fsignal, but marked no-return.
Kim F. Storm <storm@cua.dk>
parents: 71872
diff changeset
1767
66a9a086ddbb * eval.c (xsignal): New func. Like Fsignal, but marked no-return.
Kim F. Storm <storm@cua.dk>
parents: 71872
diff changeset
1768 /* Like xsignal, but takes 0, 1, 2, or 3 args instead of a list. */
66a9a086ddbb * eval.c (xsignal): New func. Like Fsignal, but marked no-return.
Kim F. Storm <storm@cua.dk>
parents: 71872
diff changeset
1769
66a9a086ddbb * eval.c (xsignal): New func. Like Fsignal, but marked no-return.
Kim F. Storm <storm@cua.dk>
parents: 71872
diff changeset
1770 void
66a9a086ddbb * eval.c (xsignal): New func. Like Fsignal, but marked no-return.
Kim F. Storm <storm@cua.dk>
parents: 71872
diff changeset
1771 xsignal0 (error_symbol)
66a9a086ddbb * eval.c (xsignal): New func. Like Fsignal, but marked no-return.
Kim F. Storm <storm@cua.dk>
parents: 71872
diff changeset
1772 Lisp_Object error_symbol;
66a9a086ddbb * eval.c (xsignal): New func. Like Fsignal, but marked no-return.
Kim F. Storm <storm@cua.dk>
parents: 71872
diff changeset
1773 {
66a9a086ddbb * eval.c (xsignal): New func. Like Fsignal, but marked no-return.
Kim F. Storm <storm@cua.dk>
parents: 71872
diff changeset
1774 xsignal (error_symbol, Qnil);
66a9a086ddbb * eval.c (xsignal): New func. Like Fsignal, but marked no-return.
Kim F. Storm <storm@cua.dk>
parents: 71872
diff changeset
1775 }
66a9a086ddbb * eval.c (xsignal): New func. Like Fsignal, but marked no-return.
Kim F. Storm <storm@cua.dk>
parents: 71872
diff changeset
1776
66a9a086ddbb * eval.c (xsignal): New func. Like Fsignal, but marked no-return.
Kim F. Storm <storm@cua.dk>
parents: 71872
diff changeset
1777 void
66a9a086ddbb * eval.c (xsignal): New func. Like Fsignal, but marked no-return.
Kim F. Storm <storm@cua.dk>
parents: 71872
diff changeset
1778 xsignal1 (error_symbol, arg)
66a9a086ddbb * eval.c (xsignal): New func. Like Fsignal, but marked no-return.
Kim F. Storm <storm@cua.dk>
parents: 71872
diff changeset
1779 Lisp_Object error_symbol, arg;
66a9a086ddbb * eval.c (xsignal): New func. Like Fsignal, but marked no-return.
Kim F. Storm <storm@cua.dk>
parents: 71872
diff changeset
1780 {
66a9a086ddbb * eval.c (xsignal): New func. Like Fsignal, but marked no-return.
Kim F. Storm <storm@cua.dk>
parents: 71872
diff changeset
1781 xsignal (error_symbol, list1 (arg));
66a9a086ddbb * eval.c (xsignal): New func. Like Fsignal, but marked no-return.
Kim F. Storm <storm@cua.dk>
parents: 71872
diff changeset
1782 }
66a9a086ddbb * eval.c (xsignal): New func. Like Fsignal, but marked no-return.
Kim F. Storm <storm@cua.dk>
parents: 71872
diff changeset
1783
66a9a086ddbb * eval.c (xsignal): New func. Like Fsignal, but marked no-return.
Kim F. Storm <storm@cua.dk>
parents: 71872
diff changeset
1784 void
66a9a086ddbb * eval.c (xsignal): New func. Like Fsignal, but marked no-return.
Kim F. Storm <storm@cua.dk>
parents: 71872
diff changeset
1785 xsignal2 (error_symbol, arg1, arg2)
66a9a086ddbb * eval.c (xsignal): New func. Like Fsignal, but marked no-return.
Kim F. Storm <storm@cua.dk>
parents: 71872
diff changeset
1786 Lisp_Object error_symbol, arg1, arg2;
66a9a086ddbb * eval.c (xsignal): New func. Like Fsignal, but marked no-return.
Kim F. Storm <storm@cua.dk>
parents: 71872
diff changeset
1787 {
66a9a086ddbb * eval.c (xsignal): New func. Like Fsignal, but marked no-return.
Kim F. Storm <storm@cua.dk>
parents: 71872
diff changeset
1788 xsignal (error_symbol, list2 (arg1, arg2));
66a9a086ddbb * eval.c (xsignal): New func. Like Fsignal, but marked no-return.
Kim F. Storm <storm@cua.dk>
parents: 71872
diff changeset
1789 }
66a9a086ddbb * eval.c (xsignal): New func. Like Fsignal, but marked no-return.
Kim F. Storm <storm@cua.dk>
parents: 71872
diff changeset
1790
66a9a086ddbb * eval.c (xsignal): New func. Like Fsignal, but marked no-return.
Kim F. Storm <storm@cua.dk>
parents: 71872
diff changeset
1791 void
66a9a086ddbb * eval.c (xsignal): New func. Like Fsignal, but marked no-return.
Kim F. Storm <storm@cua.dk>
parents: 71872
diff changeset
1792 xsignal3 (error_symbol, arg1, arg2, arg3)
66a9a086ddbb * eval.c (xsignal): New func. Like Fsignal, but marked no-return.
Kim F. Storm <storm@cua.dk>
parents: 71872
diff changeset
1793 Lisp_Object error_symbol, arg1, arg2, arg3;
66a9a086ddbb * eval.c (xsignal): New func. Like Fsignal, but marked no-return.
Kim F. Storm <storm@cua.dk>
parents: 71872
diff changeset
1794 {
66a9a086ddbb * eval.c (xsignal): New func. Like Fsignal, but marked no-return.
Kim F. Storm <storm@cua.dk>
parents: 71872
diff changeset
1795 xsignal (error_symbol, list3 (arg1, arg2, arg3));
66a9a086ddbb * eval.c (xsignal): New func. Like Fsignal, but marked no-return.
Kim F. Storm <storm@cua.dk>
parents: 71872
diff changeset
1796 }
66a9a086ddbb * eval.c (xsignal): New func. Like Fsignal, but marked no-return.
Kim F. Storm <storm@cua.dk>
parents: 71872
diff changeset
1797
66a9a086ddbb * eval.c (xsignal): New func. Like Fsignal, but marked no-return.
Kim F. Storm <storm@cua.dk>
parents: 71872
diff changeset
1798 /* Signal `error' with message S, and additional arg ARG.
66a9a086ddbb * eval.c (xsignal): New func. Like Fsignal, but marked no-return.
Kim F. Storm <storm@cua.dk>
parents: 71872
diff changeset
1799 If ARG is not a genuine list, make it a one-element list. */
66a9a086ddbb * eval.c (xsignal): New func. Like Fsignal, but marked no-return.
Kim F. Storm <storm@cua.dk>
parents: 71872
diff changeset
1800
66a9a086ddbb * eval.c (xsignal): New func. Like Fsignal, but marked no-return.
Kim F. Storm <storm@cua.dk>
parents: 71872
diff changeset
1801 void
66a9a086ddbb * eval.c (xsignal): New func. Like Fsignal, but marked no-return.
Kim F. Storm <storm@cua.dk>
parents: 71872
diff changeset
1802 signal_error (s, arg)
66a9a086ddbb * eval.c (xsignal): New func. Like Fsignal, but marked no-return.
Kim F. Storm <storm@cua.dk>
parents: 71872
diff changeset
1803 char *s;
66a9a086ddbb * eval.c (xsignal): New func. Like Fsignal, but marked no-return.
Kim F. Storm <storm@cua.dk>
parents: 71872
diff changeset
1804 Lisp_Object arg;
66a9a086ddbb * eval.c (xsignal): New func. Like Fsignal, but marked no-return.
Kim F. Storm <storm@cua.dk>
parents: 71872
diff changeset
1805 {
66a9a086ddbb * eval.c (xsignal): New func. Like Fsignal, but marked no-return.
Kim F. Storm <storm@cua.dk>
parents: 71872
diff changeset
1806 Lisp_Object tortoise, hare;
66a9a086ddbb * eval.c (xsignal): New func. Like Fsignal, but marked no-return.
Kim F. Storm <storm@cua.dk>
parents: 71872
diff changeset
1807
66a9a086ddbb * eval.c (xsignal): New func. Like Fsignal, but marked no-return.
Kim F. Storm <storm@cua.dk>
parents: 71872
diff changeset
1808 hare = tortoise = arg;
66a9a086ddbb * eval.c (xsignal): New func. Like Fsignal, but marked no-return.
Kim F. Storm <storm@cua.dk>
parents: 71872
diff changeset
1809 while (CONSP (hare))
66a9a086ddbb * eval.c (xsignal): New func. Like Fsignal, but marked no-return.
Kim F. Storm <storm@cua.dk>
parents: 71872
diff changeset
1810 {
66a9a086ddbb * eval.c (xsignal): New func. Like Fsignal, but marked no-return.
Kim F. Storm <storm@cua.dk>
parents: 71872
diff changeset
1811 hare = XCDR (hare);
66a9a086ddbb * eval.c (xsignal): New func. Like Fsignal, but marked no-return.
Kim F. Storm <storm@cua.dk>
parents: 71872
diff changeset
1812 if (!CONSP (hare))
66a9a086ddbb * eval.c (xsignal): New func. Like Fsignal, but marked no-return.
Kim F. Storm <storm@cua.dk>
parents: 71872
diff changeset
1813 break;
66a9a086ddbb * eval.c (xsignal): New func. Like Fsignal, but marked no-return.
Kim F. Storm <storm@cua.dk>
parents: 71872
diff changeset
1814
66a9a086ddbb * eval.c (xsignal): New func. Like Fsignal, but marked no-return.
Kim F. Storm <storm@cua.dk>
parents: 71872
diff changeset
1815 hare = XCDR (hare);
66a9a086ddbb * eval.c (xsignal): New func. Like Fsignal, but marked no-return.
Kim F. Storm <storm@cua.dk>
parents: 71872
diff changeset
1816 tortoise = XCDR (tortoise);
66a9a086ddbb * eval.c (xsignal): New func. Like Fsignal, but marked no-return.
Kim F. Storm <storm@cua.dk>
parents: 71872
diff changeset
1817
66a9a086ddbb * eval.c (xsignal): New func. Like Fsignal, but marked no-return.
Kim F. Storm <storm@cua.dk>
parents: 71872
diff changeset
1818 if (EQ (hare, tortoise))
66a9a086ddbb * eval.c (xsignal): New func. Like Fsignal, but marked no-return.
Kim F. Storm <storm@cua.dk>
parents: 71872
diff changeset
1819 break;
66a9a086ddbb * eval.c (xsignal): New func. Like Fsignal, but marked no-return.
Kim F. Storm <storm@cua.dk>
parents: 71872
diff changeset
1820 }
66a9a086ddbb * eval.c (xsignal): New func. Like Fsignal, but marked no-return.
Kim F. Storm <storm@cua.dk>
parents: 71872
diff changeset
1821
66a9a086ddbb * eval.c (xsignal): New func. Like Fsignal, but marked no-return.
Kim F. Storm <storm@cua.dk>
parents: 71872
diff changeset
1822 if (!NILP (hare))
66a9a086ddbb * eval.c (xsignal): New func. Like Fsignal, but marked no-return.
Kim F. Storm <storm@cua.dk>
parents: 71872
diff changeset
1823 arg = Fcons (arg, Qnil); /* Make it a list. */
66a9a086ddbb * eval.c (xsignal): New func. Like Fsignal, but marked no-return.
Kim F. Storm <storm@cua.dk>
parents: 71872
diff changeset
1824
66a9a086ddbb * eval.c (xsignal): New func. Like Fsignal, but marked no-return.
Kim F. Storm <storm@cua.dk>
parents: 71872
diff changeset
1825 xsignal (Qerror, Fcons (build_string (s), arg));
66a9a086ddbb * eval.c (xsignal): New func. Like Fsignal, but marked no-return.
Kim F. Storm <storm@cua.dk>
parents: 71872
diff changeset
1826 }
66a9a086ddbb * eval.c (xsignal): New func. Like Fsignal, but marked no-return.
Kim F. Storm <storm@cua.dk>
parents: 71872
diff changeset
1827
66a9a086ddbb * eval.c (xsignal): New func. Like Fsignal, but marked no-return.
Kim F. Storm <storm@cua.dk>
parents: 71872
diff changeset
1828
78501
1677cf1c2509 Replace `iff' in comments.
Glenn Morris <rgm@gnu.org>
parents: 78359
diff changeset
1829 /* Return nonzero if LIST is a non-nil atom or
684
bd574e49bfac *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 648
diff changeset
1830 a list containing one of CONDITIONS. */
bd574e49bfac *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 648
diff changeset
1831
bd574e49bfac *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 648
diff changeset
1832 static int
bd574e49bfac *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 648
diff changeset
1833 wants_debugger (list, conditions)
bd574e49bfac *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 648
diff changeset
1834 Lisp_Object list, conditions;
bd574e49bfac *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 648
diff changeset
1835 {
706
86cb5db0b6c3 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 687
diff changeset
1836 if (NILP (list))
684
bd574e49bfac *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 648
diff changeset
1837 return 0;
bd574e49bfac *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 648
diff changeset
1838 if (! CONSP (list))
bd574e49bfac *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 648
diff changeset
1839 return 1;
bd574e49bfac *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 648
diff changeset
1840
878
5b1c5b4286e7 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 863
diff changeset
1841 while (CONSP (conditions))
684
bd574e49bfac *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 648
diff changeset
1842 {
878
5b1c5b4286e7 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 863
diff changeset
1843 Lisp_Object this, tail;
25662
0a7261c1d487 Use XCAR, XCDR, and XFLOAT_DATA instead of explicit member access.
Ken Raeburn <raeburn@raeburn.org>
parents: 25314
diff changeset
1844 this = XCAR (conditions);
0a7261c1d487 Use XCAR, XCDR, and XFLOAT_DATA instead of explicit member access.
Ken Raeburn <raeburn@raeburn.org>
parents: 25314
diff changeset
1845 for (tail = list; CONSP (tail); tail = XCDR (tail))
0a7261c1d487 Use XCAR, XCDR, and XFLOAT_DATA instead of explicit member access.
Ken Raeburn <raeburn@raeburn.org>
parents: 25314
diff changeset
1846 if (EQ (XCAR (tail), this))
684
bd574e49bfac *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 648
diff changeset
1847 return 1;
25662
0a7261c1d487 Use XCAR, XCDR, and XFLOAT_DATA instead of explicit member access.
Ken Raeburn <raeburn@raeburn.org>
parents: 25314
diff changeset
1848 conditions = XCDR (conditions);
684
bd574e49bfac *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 648
diff changeset
1849 }
878
5b1c5b4286e7 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 863
diff changeset
1850 return 0;
684
bd574e49bfac *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 648
diff changeset
1851 }
bd574e49bfac *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 648
diff changeset
1852
13768
353d32d374db (skip_debugger): New function.
Karl Heuer <kwzh@gnu.org>
parents: 13444
diff changeset
1853 /* Return 1 if an error with condition-symbols CONDITIONS,
353d32d374db (skip_debugger): New function.
Karl Heuer <kwzh@gnu.org>
parents: 13444
diff changeset
1854 and described by SIGNAL-DATA, should skip the debugger
40661
2677a5e901f8 (debugger_may_continue, Vdebug_ignored_errors, call_debugger,
Pavel Janík <Pavel@Janik.cz>
parents: 40656
diff changeset
1855 according to debugger-ignored-errors. */
13768
353d32d374db (skip_debugger): New function.
Karl Heuer <kwzh@gnu.org>
parents: 13444
diff changeset
1856
353d32d374db (skip_debugger): New function.
Karl Heuer <kwzh@gnu.org>
parents: 13444
diff changeset
1857 static int
353d32d374db (skip_debugger): New function.
Karl Heuer <kwzh@gnu.org>
parents: 13444
diff changeset
1858 skip_debugger (conditions, data)
353d32d374db (skip_debugger): New function.
Karl Heuer <kwzh@gnu.org>
parents: 13444
diff changeset
1859 Lisp_Object conditions, data;
353d32d374db (skip_debugger): New function.
Karl Heuer <kwzh@gnu.org>
parents: 13444
diff changeset
1860 {
353d32d374db (skip_debugger): New function.
Karl Heuer <kwzh@gnu.org>
parents: 13444
diff changeset
1861 Lisp_Object tail;
353d32d374db (skip_debugger): New function.
Karl Heuer <kwzh@gnu.org>
parents: 13444
diff changeset
1862 int first_string = 1;
353d32d374db (skip_debugger): New function.
Karl Heuer <kwzh@gnu.org>
parents: 13444
diff changeset
1863 Lisp_Object error_message;
353d32d374db (skip_debugger): New function.
Karl Heuer <kwzh@gnu.org>
parents: 13444
diff changeset
1864
32657
a0c4d9cbadcd (skip_debugger): Prevent a compiler warning.
Gerd Moellmann <gerd@gnu.org>
parents: 32066
diff changeset
1865 error_message = Qnil;
a0c4d9cbadcd (skip_debugger): Prevent a compiler warning.
Gerd Moellmann <gerd@gnu.org>
parents: 32066
diff changeset
1866 for (tail = Vdebug_ignored_errors; CONSP (tail); tail = XCDR (tail))
13768
353d32d374db (skip_debugger): New function.
Karl Heuer <kwzh@gnu.org>
parents: 13444
diff changeset
1867 {
25662
0a7261c1d487 Use XCAR, XCDR, and XFLOAT_DATA instead of explicit member access.
Ken Raeburn <raeburn@raeburn.org>
parents: 25314
diff changeset
1868 if (STRINGP (XCAR (tail)))
13768
353d32d374db (skip_debugger): New function.
Karl Heuer <kwzh@gnu.org>
parents: 13444
diff changeset
1869 {
353d32d374db (skip_debugger): New function.
Karl Heuer <kwzh@gnu.org>
parents: 13444
diff changeset
1870 if (first_string)
353d32d374db (skip_debugger): New function.
Karl Heuer <kwzh@gnu.org>
parents: 13444
diff changeset
1871 {
353d32d374db (skip_debugger): New function.
Karl Heuer <kwzh@gnu.org>
parents: 13444
diff changeset
1872 error_message = Ferror_message_string (data);
353d32d374db (skip_debugger): New function.
Karl Heuer <kwzh@gnu.org>
parents: 13444
diff changeset
1873 first_string = 0;
353d32d374db (skip_debugger): New function.
Karl Heuer <kwzh@gnu.org>
parents: 13444
diff changeset
1874 }
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 49105
diff changeset
1875
25662
0a7261c1d487 Use XCAR, XCDR, and XFLOAT_DATA instead of explicit member access.
Ken Raeburn <raeburn@raeburn.org>
parents: 25314
diff changeset
1876 if (fast_string_match (XCAR (tail), error_message) >= 0)
13768
353d32d374db (skip_debugger): New function.
Karl Heuer <kwzh@gnu.org>
parents: 13444
diff changeset
1877 return 1;
353d32d374db (skip_debugger): New function.
Karl Heuer <kwzh@gnu.org>
parents: 13444
diff changeset
1878 }
353d32d374db (skip_debugger): New function.
Karl Heuer <kwzh@gnu.org>
parents: 13444
diff changeset
1879 else
353d32d374db (skip_debugger): New function.
Karl Heuer <kwzh@gnu.org>
parents: 13444
diff changeset
1880 {
353d32d374db (skip_debugger): New function.
Karl Heuer <kwzh@gnu.org>
parents: 13444
diff changeset
1881 Lisp_Object contail;
353d32d374db (skip_debugger): New function.
Karl Heuer <kwzh@gnu.org>
parents: 13444
diff changeset
1882
32657
a0c4d9cbadcd (skip_debugger): Prevent a compiler warning.
Gerd Moellmann <gerd@gnu.org>
parents: 32066
diff changeset
1883 for (contail = conditions; CONSP (contail); contail = XCDR (contail))
25662
0a7261c1d487 Use XCAR, XCDR, and XFLOAT_DATA instead of explicit member access.
Ken Raeburn <raeburn@raeburn.org>
parents: 25314
diff changeset
1884 if (EQ (XCAR (tail), XCAR (contail)))
13768
353d32d374db (skip_debugger): New function.
Karl Heuer <kwzh@gnu.org>
parents: 13444
diff changeset
1885 return 1;
353d32d374db (skip_debugger): New function.
Karl Heuer <kwzh@gnu.org>
parents: 13444
diff changeset
1886 }
353d32d374db (skip_debugger): New function.
Karl Heuer <kwzh@gnu.org>
parents: 13444
diff changeset
1887 }
353d32d374db (skip_debugger): New function.
Karl Heuer <kwzh@gnu.org>
parents: 13444
diff changeset
1888
353d32d374db (skip_debugger): New function.
Karl Heuer <kwzh@gnu.org>
parents: 13444
diff changeset
1889 return 0;
353d32d374db (skip_debugger): New function.
Karl Heuer <kwzh@gnu.org>
parents: 13444
diff changeset
1890 }
353d32d374db (skip_debugger): New function.
Karl Heuer <kwzh@gnu.org>
parents: 13444
diff changeset
1891
97059
984f2ac5a637 * lisp.h (init_weak_hash_tables, syms_of_font)
Andreas Schwab <schwab@suse.de>
parents: 96643
diff changeset
1892 /* Call the debugger if calling it is currently enabled for CONDITIONS.
984f2ac5a637 * lisp.h (init_weak_hash_tables, syms_of_font)
Andreas Schwab <schwab@suse.de>
parents: 96643
diff changeset
1893 SIG and DATA describe the signal, as in find_handler_clause. */
984f2ac5a637 * lisp.h (init_weak_hash_tables, syms_of_font)
Andreas Schwab <schwab@suse.de>
parents: 96643
diff changeset
1894
984f2ac5a637 * lisp.h (init_weak_hash_tables, syms_of_font)
Andreas Schwab <schwab@suse.de>
parents: 96643
diff changeset
1895 static int
984f2ac5a637 * lisp.h (init_weak_hash_tables, syms_of_font)
Andreas Schwab <schwab@suse.de>
parents: 96643
diff changeset
1896 maybe_call_debugger (conditions, sig, data)
984f2ac5a637 * lisp.h (init_weak_hash_tables, syms_of_font)
Andreas Schwab <schwab@suse.de>
parents: 96643
diff changeset
1897 Lisp_Object conditions, sig, data;
984f2ac5a637 * lisp.h (init_weak_hash_tables, syms_of_font)
Andreas Schwab <schwab@suse.de>
parents: 96643
diff changeset
1898 {
984f2ac5a637 * lisp.h (init_weak_hash_tables, syms_of_font)
Andreas Schwab <schwab@suse.de>
parents: 96643
diff changeset
1899 Lisp_Object combined_data;
984f2ac5a637 * lisp.h (init_weak_hash_tables, syms_of_font)
Andreas Schwab <schwab@suse.de>
parents: 96643
diff changeset
1900
984f2ac5a637 * lisp.h (init_weak_hash_tables, syms_of_font)
Andreas Schwab <schwab@suse.de>
parents: 96643
diff changeset
1901 combined_data = Fcons (sig, data);
984f2ac5a637 * lisp.h (init_weak_hash_tables, syms_of_font)
Andreas Schwab <schwab@suse.de>
parents: 96643
diff changeset
1902
984f2ac5a637 * lisp.h (init_weak_hash_tables, syms_of_font)
Andreas Schwab <schwab@suse.de>
parents: 96643
diff changeset
1903 if (
984f2ac5a637 * lisp.h (init_weak_hash_tables, syms_of_font)
Andreas Schwab <schwab@suse.de>
parents: 96643
diff changeset
1904 /* Don't try to run the debugger with interrupts blocked.
984f2ac5a637 * lisp.h (init_weak_hash_tables, syms_of_font)
Andreas Schwab <schwab@suse.de>
parents: 96643
diff changeset
1905 The editing loop would return anyway. */
984f2ac5a637 * lisp.h (init_weak_hash_tables, syms_of_font)
Andreas Schwab <schwab@suse.de>
parents: 96643
diff changeset
1906 ! INPUT_BLOCKED_P
984f2ac5a637 * lisp.h (init_weak_hash_tables, syms_of_font)
Andreas Schwab <schwab@suse.de>
parents: 96643
diff changeset
1907 /* Does user want to enter debugger for this kind of error? */
984f2ac5a637 * lisp.h (init_weak_hash_tables, syms_of_font)
Andreas Schwab <schwab@suse.de>
parents: 96643
diff changeset
1908 && (EQ (sig, Qquit)
984f2ac5a637 * lisp.h (init_weak_hash_tables, syms_of_font)
Andreas Schwab <schwab@suse.de>
parents: 96643
diff changeset
1909 ? debug_on_quit
984f2ac5a637 * lisp.h (init_weak_hash_tables, syms_of_font)
Andreas Schwab <schwab@suse.de>
parents: 96643
diff changeset
1910 : wants_debugger (Vdebug_on_error, conditions))
984f2ac5a637 * lisp.h (init_weak_hash_tables, syms_of_font)
Andreas Schwab <schwab@suse.de>
parents: 96643
diff changeset
1911 && ! skip_debugger (conditions, combined_data)
984f2ac5a637 * lisp.h (init_weak_hash_tables, syms_of_font)
Andreas Schwab <schwab@suse.de>
parents: 96643
diff changeset
1912 /* rms: what's this for? */
984f2ac5a637 * lisp.h (init_weak_hash_tables, syms_of_font)
Andreas Schwab <schwab@suse.de>
parents: 96643
diff changeset
1913 && when_entered_debugger < num_nonmacro_input_events)
984f2ac5a637 * lisp.h (init_weak_hash_tables, syms_of_font)
Andreas Schwab <schwab@suse.de>
parents: 96643
diff changeset
1914 {
984f2ac5a637 * lisp.h (init_weak_hash_tables, syms_of_font)
Andreas Schwab <schwab@suse.de>
parents: 96643
diff changeset
1915 call_debugger (Fcons (Qerror, Fcons (combined_data, Qnil)));
984f2ac5a637 * lisp.h (init_weak_hash_tables, syms_of_font)
Andreas Schwab <schwab@suse.de>
parents: 96643
diff changeset
1916 return 1;
984f2ac5a637 * lisp.h (init_weak_hash_tables, syms_of_font)
Andreas Schwab <schwab@suse.de>
parents: 96643
diff changeset
1917 }
984f2ac5a637 * lisp.h (init_weak_hash_tables, syms_of_font)
Andreas Schwab <schwab@suse.de>
parents: 96643
diff changeset
1918
984f2ac5a637 * lisp.h (init_weak_hash_tables, syms_of_font)
Andreas Schwab <schwab@suse.de>
parents: 96643
diff changeset
1919 return 0;
984f2ac5a637 * lisp.h (init_weak_hash_tables, syms_of_font)
Andreas Schwab <schwab@suse.de>
parents: 96643
diff changeset
1920 }
984f2ac5a637 * lisp.h (init_weak_hash_tables, syms_of_font)
Andreas Schwab <schwab@suse.de>
parents: 96643
diff changeset
1921
684
bd574e49bfac *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 648
diff changeset
1922 /* Value of Qlambda means we have called debugger and user has continued.
18636
b3f3cd32fa70 (Fsignal, find_handler_clause): If ERROR_SYMBOL
Richard M. Stallman <rms@gnu.org>
parents: 18018
diff changeset
1923 There are two ways to pass SIG and DATA:
24054
19ff7845d5f7 (find_handler_clause): If SIG is nil (memory full error),
Richard M. Stallman <rms@gnu.org>
parents: 23578
diff changeset
1924 = SIG is the error symbol, and DATA is the rest of the data.
18636
b3f3cd32fa70 (Fsignal, find_handler_clause): If ERROR_SYMBOL
Richard M. Stallman <rms@gnu.org>
parents: 18018
diff changeset
1925 = SIG is nil, and DATA is (SYMBOL . REST-OF-DATA).
24054
19ff7845d5f7 (find_handler_clause): If SIG is nil (memory full error),
Richard M. Stallman <rms@gnu.org>
parents: 23578
diff changeset
1926 This is for memory-full errors only.
18636
b3f3cd32fa70 (Fsignal, find_handler_clause): If ERROR_SYMBOL
Richard M. Stallman <rms@gnu.org>
parents: 18018
diff changeset
1927
63767
60a9b2133cf1 (call_debugger): Take full care of extending stack limits
Richard M. Stallman <rms@gnu.org>
parents: 63697
diff changeset
1928 We need to increase max_specpdl_size temporarily around
60a9b2133cf1 (call_debugger): Take full care of extending stack limits
Richard M. Stallman <rms@gnu.org>
parents: 63697
diff changeset
1929 anything we do that can push on the specpdl, so as not to get
60a9b2133cf1 (call_debugger): Take full care of extending stack limits
Richard M. Stallman <rms@gnu.org>
parents: 63697
diff changeset
1930 a second error here in case we're handling specpdl overflow. */
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1931
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1932 static Lisp_Object
81871
f533b796856e (maybe_call_debugger): New function.
Richard M. Stallman <rms@gnu.org>
parents: 81858
diff changeset
1933 find_handler_clause (handlers, conditions, sig, data)
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1934 Lisp_Object handlers, conditions, sig, data;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1935 {
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1936 register Lisp_Object h;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1937 register Lisp_Object tem;
81871
f533b796856e (maybe_call_debugger): New function.
Richard M. Stallman <rms@gnu.org>
parents: 81858
diff changeset
1938 int debugger_called = 0;
f533b796856e (maybe_call_debugger): New function.
Richard M. Stallman <rms@gnu.org>
parents: 81858
diff changeset
1939 int debugger_considered = 0;
f533b796856e (maybe_call_debugger): New function.
Richard M. Stallman <rms@gnu.org>
parents: 81858
diff changeset
1940
f533b796856e (maybe_call_debugger): New function.
Richard M. Stallman <rms@gnu.org>
parents: 81858
diff changeset
1941 /* t is used by handlers for all conditions, set up by C code. */
f533b796856e (maybe_call_debugger): New function.
Richard M. Stallman <rms@gnu.org>
parents: 81858
diff changeset
1942 if (EQ (handlers, Qt))
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1943 return Qt;
81871
f533b796856e (maybe_call_debugger): New function.
Richard M. Stallman <rms@gnu.org>
parents: 81858
diff changeset
1944
f533b796856e (maybe_call_debugger): New function.
Richard M. Stallman <rms@gnu.org>
parents: 81858
diff changeset
1945 /* Don't run the debugger for a memory-full error.
f533b796856e (maybe_call_debugger): New function.
Richard M. Stallman <rms@gnu.org>
parents: 81858
diff changeset
1946 (There is no room in memory to do that!) */
f533b796856e (maybe_call_debugger): New function.
Richard M. Stallman <rms@gnu.org>
parents: 81858
diff changeset
1947 if (NILP (sig))
f533b796856e (maybe_call_debugger): New function.
Richard M. Stallman <rms@gnu.org>
parents: 81858
diff changeset
1948 debugger_considered = 1;
f533b796856e (maybe_call_debugger): New function.
Richard M. Stallman <rms@gnu.org>
parents: 81858
diff changeset
1949
16355
1d85b2698564 (Vdebug_force): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 16296
diff changeset
1950 /* error is used similarly, but means print an error message
1d85b2698564 (Vdebug_force): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 16296
diff changeset
1951 and run the debugger if that is enabled. */
1d85b2698564 (Vdebug_force): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 16296
diff changeset
1952 if (EQ (handlers, Qerror)
16443
0128b923d281 (Vdebug_on_signal): Renamed from Vdebug_force.
Richard M. Stallman <rms@gnu.org>
parents: 16355
diff changeset
1953 || !NILP (Vdebug_on_signal)) /* This says call debugger even if
0128b923d281 (Vdebug_on_signal): Renamed from Vdebug_force.
Richard M. Stallman <rms@gnu.org>
parents: 16355
diff changeset
1954 there is a handler. */
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1955 {
81871
f533b796856e (maybe_call_debugger): New function.
Richard M. Stallman <rms@gnu.org>
parents: 81858
diff changeset
1956 if (!NILP (sig) && wants_debugger (Vstack_trace_on_error, conditions))
21853
6e93713b7d30 (find_handler_clause): Cast Fbacktrace to proper type.
Richard M. Stallman <rms@gnu.org>
parents: 21699
diff changeset
1957 {
97775
88a8ab97052b (find_handler_clause): Temporarily increase max-lisp-eval-depth while
Chong Yidong <cyd@stupidchicken.com>
parents: 97735
diff changeset
1958 max_lisp_eval_depth += 15;
63767
60a9b2133cf1 (call_debugger): Take full care of extending stack limits
Richard M. Stallman <rms@gnu.org>
parents: 63697
diff changeset
1959 max_specpdl_size++;
105127
fb0a1e29af2a (find_handler_clause): Make stack-trace-on-error work in batch mode (bug#4228).
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 104392
diff changeset
1960 if (noninteractive)
fb0a1e29af2a (find_handler_clause): Make stack-trace-on-error work in batch mode (bug#4228).
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 104392
diff changeset
1961 Fbacktrace ();
fb0a1e29af2a (find_handler_clause): Make stack-trace-on-error work in batch mode (bug#4228).
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 104392
diff changeset
1962 else
fb0a1e29af2a (find_handler_clause): Make stack-trace-on-error work in batch mode (bug#4228).
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 104392
diff changeset
1963 internal_with_output_to_temp_buffer
fb0a1e29af2a (find_handler_clause): Make stack-trace-on-error work in batch mode (bug#4228).
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 104392
diff changeset
1964 ("*Backtrace*",
fb0a1e29af2a (find_handler_clause): Make stack-trace-on-error work in batch mode (bug#4228).
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 104392
diff changeset
1965 (Lisp_Object (*) (Lisp_Object)) Fbacktrace,
fb0a1e29af2a (find_handler_clause): Make stack-trace-on-error work in batch mode (bug#4228).
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 104392
diff changeset
1966 Qnil);
63767
60a9b2133cf1 (call_debugger): Take full care of extending stack limits
Richard M. Stallman <rms@gnu.org>
parents: 63697
diff changeset
1967 max_specpdl_size--;
97775
88a8ab97052b (find_handler_clause): Temporarily increase max-lisp-eval-depth while
Chong Yidong <cyd@stupidchicken.com>
parents: 97735
diff changeset
1968 max_lisp_eval_depth -= 15;
21853
6e93713b7d30 (find_handler_clause): Cast Fbacktrace to proper type.
Richard M. Stallman <rms@gnu.org>
parents: 21699
diff changeset
1969 }
81871
f533b796856e (maybe_call_debugger): New function.
Richard M. Stallman <rms@gnu.org>
parents: 81858
diff changeset
1970
f533b796856e (maybe_call_debugger): New function.
Richard M. Stallman <rms@gnu.org>
parents: 81858
diff changeset
1971 if (!debugger_considered)
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1972 {
81871
f533b796856e (maybe_call_debugger): New function.
Richard M. Stallman <rms@gnu.org>
parents: 81858
diff changeset
1973 debugger_considered = 1;
f533b796856e (maybe_call_debugger): New function.
Richard M. Stallman <rms@gnu.org>
parents: 81858
diff changeset
1974 debugger_called = maybe_call_debugger (conditions, sig, data);
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1975 }
81871
f533b796856e (maybe_call_debugger): New function.
Richard M. Stallman <rms@gnu.org>
parents: 81858
diff changeset
1976
16355
1d85b2698564 (Vdebug_force): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 16296
diff changeset
1977 /* If there is no handler, return saying whether we ran the debugger. */
1d85b2698564 (Vdebug_force): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 16296
diff changeset
1978 if (EQ (handlers, Qerror))
1d85b2698564 (Vdebug_force): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 16296
diff changeset
1979 {
1d85b2698564 (Vdebug_force): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 16296
diff changeset
1980 if (debugger_called)
63767
60a9b2133cf1 (call_debugger): Take full care of extending stack limits
Richard M. Stallman <rms@gnu.org>
parents: 63697
diff changeset
1981 return Qlambda;
16355
1d85b2698564 (Vdebug_force): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 16296
diff changeset
1982 return Qt;
1d85b2698564 (Vdebug_force): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 16296
diff changeset
1983 }
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1984 }
81871
f533b796856e (maybe_call_debugger): New function.
Richard M. Stallman <rms@gnu.org>
parents: 81858
diff changeset
1985
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1986 for (h = handlers; CONSP (h); h = Fcdr (h))
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1987 {
5563
50ada322de3e (Fcondition_case): Allow a list of condition names in a handler.
Richard M. Stallman <rms@gnu.org>
parents: 5254
diff changeset
1988 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
1989
50ada322de3e (Fcondition_case): Allow a list of condition names in a handler.
Richard M. Stallman <rms@gnu.org>
parents: 5254
diff changeset
1990 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
1991 if (!CONSP (handler))
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1992 continue;
5563
50ada322de3e (Fcondition_case): Allow a list of condition names in a handler.
Richard M. Stallman <rms@gnu.org>
parents: 5254
diff changeset
1993 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
1994 /* 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
1995 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
1996 {
50ada322de3e (Fcondition_case): Allow a list of condition names in a handler.
Richard M. Stallman <rms@gnu.org>
parents: 5254
diff changeset
1997 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
1998 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
1999 return handler;
50ada322de3e (Fcondition_case): Allow a list of condition names in a handler.
Richard M. Stallman <rms@gnu.org>
parents: 5254
diff changeset
2000 }
50ada322de3e (Fcondition_case): Allow a list of condition names in a handler.
Richard M. Stallman <rms@gnu.org>
parents: 5254
diff changeset
2001 /* 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
2002 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
2003 {
81871
f533b796856e (maybe_call_debugger): New function.
Richard M. Stallman <rms@gnu.org>
parents: 81858
diff changeset
2004 Lisp_Object tail;
f533b796856e (maybe_call_debugger): New function.
Richard M. Stallman <rms@gnu.org>
parents: 81858
diff changeset
2005 for (tail = condit; CONSP (tail); tail = XCDR (tail))
5563
50ada322de3e (Fcondition_case): Allow a list of condition names in a handler.
Richard M. Stallman <rms@gnu.org>
parents: 5254
diff changeset
2006 {
81871
f533b796856e (maybe_call_debugger): New function.
Richard M. Stallman <rms@gnu.org>
parents: 81858
diff changeset
2007 tem = Fmemq (Fcar (tail), conditions);
5563
50ada322de3e (Fcondition_case): Allow a list of condition names in a handler.
Richard M. Stallman <rms@gnu.org>
parents: 5254
diff changeset
2008 if (!NILP (tem))
81871
f533b796856e (maybe_call_debugger): New function.
Richard M. Stallman <rms@gnu.org>
parents: 81858
diff changeset
2009 {
f533b796856e (maybe_call_debugger): New function.
Richard M. Stallman <rms@gnu.org>
parents: 81858
diff changeset
2010 /* This handler is going to apply.
f533b796856e (maybe_call_debugger): New function.
Richard M. Stallman <rms@gnu.org>
parents: 81858
diff changeset
2011 Does it allow the debugger to run first? */
f533b796856e (maybe_call_debugger): New function.
Richard M. Stallman <rms@gnu.org>
parents: 81858
diff changeset
2012 if (! debugger_considered && !NILP (Fmemq (Qdebug, condit)))
f533b796856e (maybe_call_debugger): New function.
Richard M. Stallman <rms@gnu.org>
parents: 81858
diff changeset
2013 maybe_call_debugger (conditions, sig, data);
f533b796856e (maybe_call_debugger): New function.
Richard M. Stallman <rms@gnu.org>
parents: 81858
diff changeset
2014 return handler;
f533b796856e (maybe_call_debugger): New function.
Richard M. Stallman <rms@gnu.org>
parents: 81858
diff changeset
2015 }
5563
50ada322de3e (Fcondition_case): Allow a list of condition names in a handler.
Richard M. Stallman <rms@gnu.org>
parents: 5254
diff changeset
2016 }
50ada322de3e (Fcondition_case): Allow a list of condition names in a handler.
Richard M. Stallman <rms@gnu.org>
parents: 5254
diff changeset
2017 }
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2018 }
81871
f533b796856e (maybe_call_debugger): New function.
Richard M. Stallman <rms@gnu.org>
parents: 81858
diff changeset
2019
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2020 return Qnil;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2021 }
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2022
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2023 /* dump an error message; called like printf */
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2024
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2025 /* VARARGS 1 */
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2026 void
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2027 error (m, a1, a2, a3)
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2028 char *m;
6225
8f92cf89ed7c (error): Use doprnt. Make buffer larger as necessary.
Richard M. Stallman <rms@gnu.org>
parents: 6132
diff changeset
2029 char *a1, *a2, *a3;
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2030 {
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2031 char buf[200];
6225
8f92cf89ed7c (error): Use doprnt. Make buffer larger as necessary.
Richard M. Stallman <rms@gnu.org>
parents: 6132
diff changeset
2032 int size = 200;
8f92cf89ed7c (error): Use doprnt. Make buffer larger as necessary.
Richard M. Stallman <rms@gnu.org>
parents: 6132
diff changeset
2033 int mlen;
8f92cf89ed7c (error): Use doprnt. Make buffer larger as necessary.
Richard M. Stallman <rms@gnu.org>
parents: 6132
diff changeset
2034 char *buffer = buf;
8f92cf89ed7c (error): Use doprnt. Make buffer larger as necessary.
Richard M. Stallman <rms@gnu.org>
parents: 6132
diff changeset
2035 char *args[3];
8f92cf89ed7c (error): Use doprnt. Make buffer larger as necessary.
Richard M. Stallman <rms@gnu.org>
parents: 6132
diff changeset
2036 int allocated = 0;
8f92cf89ed7c (error): Use doprnt. Make buffer larger as necessary.
Richard M. Stallman <rms@gnu.org>
parents: 6132
diff changeset
2037 Lisp_Object string;
8f92cf89ed7c (error): Use doprnt. Make buffer larger as necessary.
Richard M. Stallman <rms@gnu.org>
parents: 6132
diff changeset
2038
8f92cf89ed7c (error): Use doprnt. Make buffer larger as necessary.
Richard M. Stallman <rms@gnu.org>
parents: 6132
diff changeset
2039 args[0] = a1;
8f92cf89ed7c (error): Use doprnt. Make buffer larger as necessary.
Richard M. Stallman <rms@gnu.org>
parents: 6132
diff changeset
2040 args[1] = a2;
8f92cf89ed7c (error): Use doprnt. Make buffer larger as necessary.
Richard M. Stallman <rms@gnu.org>
parents: 6132
diff changeset
2041 args[2] = a3;
8f92cf89ed7c (error): Use doprnt. Make buffer larger as necessary.
Richard M. Stallman <rms@gnu.org>
parents: 6132
diff changeset
2042
8f92cf89ed7c (error): Use doprnt. Make buffer larger as necessary.
Richard M. Stallman <rms@gnu.org>
parents: 6132
diff changeset
2043 mlen = strlen (m);
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2044
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2045 while (1)
6225
8f92cf89ed7c (error): Use doprnt. Make buffer larger as necessary.
Richard M. Stallman <rms@gnu.org>
parents: 6132
diff changeset
2046 {
23206
a9090a71e969 (error): After enlarging buffer, write to it, not to buf.
Karl Heuer <kwzh@gnu.org>
parents: 21853
diff changeset
2047 int used = doprnt (buffer, size, m, m + mlen, 3, args);
6225
8f92cf89ed7c (error): Use doprnt. Make buffer larger as necessary.
Richard M. Stallman <rms@gnu.org>
parents: 6132
diff changeset
2048 if (used < size)
8f92cf89ed7c (error): Use doprnt. Make buffer larger as necessary.
Richard M. Stallman <rms@gnu.org>
parents: 6132
diff changeset
2049 break;
8f92cf89ed7c (error): Use doprnt. Make buffer larger as necessary.
Richard M. Stallman <rms@gnu.org>
parents: 6132
diff changeset
2050 size *= 2;
8f92cf89ed7c (error): Use doprnt. Make buffer larger as necessary.
Richard M. Stallman <rms@gnu.org>
parents: 6132
diff changeset
2051 if (allocated)
8f92cf89ed7c (error): Use doprnt. Make buffer larger as necessary.
Richard M. Stallman <rms@gnu.org>
parents: 6132
diff changeset
2052 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
2053 else
334cececa42d (error): Fix logic in call to xmalloc/xrealloc.
Richard M. Stallman <rms@gnu.org>
parents: 7307
diff changeset
2054 {
334cececa42d (error): Fix logic in call to xmalloc/xrealloc.
Richard M. Stallman <rms@gnu.org>
parents: 7307
diff changeset
2055 buffer = (char *) xmalloc (size);
334cececa42d (error): Fix logic in call to xmalloc/xrealloc.
Richard M. Stallman <rms@gnu.org>
parents: 7307
diff changeset
2056 allocated = 1;
334cececa42d (error): Fix logic in call to xmalloc/xrealloc.
Richard M. Stallman <rms@gnu.org>
parents: 7307
diff changeset
2057 }
6225
8f92cf89ed7c (error): Use doprnt. Make buffer larger as necessary.
Richard M. Stallman <rms@gnu.org>
parents: 6132
diff changeset
2058 }
8f92cf89ed7c (error): Use doprnt. Make buffer larger as necessary.
Richard M. Stallman <rms@gnu.org>
parents: 6132
diff changeset
2059
23206
a9090a71e969 (error): After enlarging buffer, write to it, not to buf.
Karl Heuer <kwzh@gnu.org>
parents: 21853
diff changeset
2060 string = build_string (buffer);
6225
8f92cf89ed7c (error): Use doprnt. Make buffer larger as necessary.
Richard M. Stallman <rms@gnu.org>
parents: 6132
diff changeset
2061 if (allocated)
30610
5a0f2d368f58 (error): Use xfree instead of free.
Gerd Moellmann <gerd@gnu.org>
parents: 30217
diff changeset
2062 xfree (buffer);
6225
8f92cf89ed7c (error): Use doprnt. Make buffer larger as necessary.
Richard M. Stallman <rms@gnu.org>
parents: 6132
diff changeset
2063
71976
66a9a086ddbb * eval.c (xsignal): New func. Like Fsignal, but marked no-return.
Kim F. Storm <storm@cua.dk>
parents: 71872
diff changeset
2064 xsignal1 (Qerror, string);
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2065 }
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2066
44941
857c2abe3324 (Fcommandp): New arg for_call_interactively.
Richard M. Stallman <rms@gnu.org>
parents: 44132
diff changeset
2067 DEFUN ("commandp", Fcommandp, Scommandp, 1, 2, 0,
40570
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
2068 doc: /* Non-nil if FUNCTION makes provisions for interactive calling.
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
2069 This means it contains a description for how to read arguments to give it.
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
2070 The value is nil for an invalid function or a symbol with no function
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
2071 definition.
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
2072
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
2073 Interactively callable functions include strings and vectors (treated
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
2074 as keyboard macros), lambda-expressions that contain a top-level call
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
2075 to `interactive', autoload definitions made by `autoload' with non-nil
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
2076 fourth argument, and some of the built-in functions of Lisp.
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
2077
44941
857c2abe3324 (Fcommandp): New arg for_call_interactively.
Richard M. Stallman <rms@gnu.org>
parents: 44132
diff changeset
2078 Also, a symbol satisfies `commandp' if its function definition does so.
857c2abe3324 (Fcommandp): New arg for_call_interactively.
Richard M. Stallman <rms@gnu.org>
parents: 44132
diff changeset
2079
857c2abe3324 (Fcommandp): New arg for_call_interactively.
Richard M. Stallman <rms@gnu.org>
parents: 44132
diff changeset
2080 If the optional argument FOR-CALL-INTERACTIVELY is non-nil,
45303
12772faba5d5 (Fcommandp): Doc fix.
Eli Zaretskii <eliz@gnu.org>
parents: 45039
diff changeset
2081 then strings and vectors are not accepted. */)
44941
857c2abe3324 (Fcommandp): New arg for_call_interactively.
Richard M. Stallman <rms@gnu.org>
parents: 44132
diff changeset
2082 (function, for_call_interactively)
857c2abe3324 (Fcommandp): New arg for_call_interactively.
Richard M. Stallman <rms@gnu.org>
parents: 44132
diff changeset
2083 Lisp_Object function, for_call_interactively;
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2084 {
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2085 register Lisp_Object fun;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2086 register Lisp_Object funcar;
82113
76ba0f031e99 (Fcommandp): Pay attention to the `interactive-form' property.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 81953
diff changeset
2087 Lisp_Object if_prop = Qnil;
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2088
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2089 fun = function;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2090
82113
76ba0f031e99 (Fcommandp): Pay attention to the `interactive-form' property.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 81953
diff changeset
2091 fun = indirect_function (fun); /* Check cycles. */
76ba0f031e99 (Fcommandp): Pay attention to the `interactive-form' property.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 81953
diff changeset
2092 if (NILP (fun) || EQ (fun, Qunbound))
648
70b112526394 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 604
diff changeset
2093 return Qnil;
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2094
82113
76ba0f031e99 (Fcommandp): Pay attention to the `interactive-form' property.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 81953
diff changeset
2095 /* Check an `interactive-form' property if present, analogous to the
76ba0f031e99 (Fcommandp): Pay attention to the `interactive-form' property.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 81953
diff changeset
2096 function-documentation property. */
76ba0f031e99 (Fcommandp): Pay attention to the `interactive-form' property.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 81953
diff changeset
2097 fun = function;
76ba0f031e99 (Fcommandp): Pay attention to the `interactive-form' property.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 81953
diff changeset
2098 while (SYMBOLP (fun))
76ba0f031e99 (Fcommandp): Pay attention to the `interactive-form' property.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 81953
diff changeset
2099 {
102719
1ffe92a6d13c (Fcommandp): Use Qinteractive_form.
Chong Yidong <cyd@stupidchicken.com>
parents: 100951
diff changeset
2100 Lisp_Object tmp = Fget (fun, Qinteractive_form);
82113
76ba0f031e99 (Fcommandp): Pay attention to the `interactive-form' property.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 81953
diff changeset
2101 if (!NILP (tmp))
76ba0f031e99 (Fcommandp): Pay attention to the `interactive-form' property.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 81953
diff changeset
2102 if_prop = Qt;
76ba0f031e99 (Fcommandp): Pay attention to the `interactive-form' property.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 81953
diff changeset
2103 fun = Fsymbol_function (fun);
76ba0f031e99 (Fcommandp): Pay attention to the `interactive-form' property.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 81953
diff changeset
2104 }
76ba0f031e99 (Fcommandp): Pay attention to the `interactive-form' property.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 81953
diff changeset
2105
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2106 /* Emacs primitives are interactive if their DEFUN specifies an
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2107 interactive spec. */
9148
e7ab930bb7eb (Fprogn, Finteractive_p, Fuser_variable_p, FletX, Flet, Fmacroexpand,
Karl Heuer <kwzh@gnu.org>
parents: 8980
diff changeset
2108 if (SUBRP (fun))
84436
b1c7d00cbbb0 (Fcommandp): Change `->prompt' to `->intspec'.
Michaël Cadilhac <michael.cadilhac@lrde.org>
parents: 83653
diff changeset
2109 return XSUBR (fun)->intspec ? Qt : if_prop;
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2110
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2111 /* Bytecode objects are interactive if they are long enough to
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2112 have an element whose index is COMPILED_INTERACTIVE, which is
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2113 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
2114 else if (COMPILEDP (fun))
41597
b28d5d866500 Use AREF and ASIZE.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 41114
diff changeset
2115 return ((ASIZE (fun) & PSEUDOVECTOR_SIZE_MASK) > COMPILED_INTERACTIVE
82113
76ba0f031e99 (Fcommandp): Pay attention to the `interactive-form' property.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 81953
diff changeset
2116 ? Qt : if_prop);
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2117
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2118 /* Strings and vectors are keyboard macros. */
82113
76ba0f031e99 (Fcommandp): Pay attention to the `interactive-form' property.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 81953
diff changeset
2119 if (STRINGP (fun) || VECTORP (fun))
82404
b3fc112aac24 (Fcommandp): Add parens to clarify.
Richard M. Stallman <rms@gnu.org>
parents: 82365
diff changeset
2120 return (NILP (for_call_interactively) ? Qt : Qnil);
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2121
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2122 /* Lists may represent commands. */
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2123 if (!CONSP (fun))
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2124 return Qnil;
54630
d6dd8c390fc2 (Fcommandp): Simplify.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 53461
diff changeset
2125 funcar = XCAR (fun);
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2126 if (EQ (funcar, Qlambda))
82113
76ba0f031e99 (Fcommandp): Pay attention to the `interactive-form' property.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 81953
diff changeset
2127 return !NILP (Fassq (Qinteractive, Fcdr (XCDR (fun)))) ? Qt : if_prop;
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2128 if (EQ (funcar, Qautoload))
82113
76ba0f031e99 (Fcommandp): Pay attention to the `interactive-form' property.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 81953
diff changeset
2129 return !NILP (Fcar (Fcdr (Fcdr (XCDR (fun))))) ? Qt : if_prop;
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2130 else
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2131 return Qnil;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2132 }
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2133
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2134 /* ARGSUSED */
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2135 DEFUN ("autoload", Fautoload, Sautoload, 2, 5, 0,
40570
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
2136 doc: /* Define FUNCTION to autoload from FILE.
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
2137 FUNCTION is a symbol; FILE is a file name string to pass to `load'.
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
2138 Third arg DOCSTRING is documentation for the function.
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
2139 Fourth arg INTERACTIVE if non-nil says function can be called interactively.
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
2140 Fifth arg TYPE indicates the type of the object:
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
2141 nil or omitted says FUNCTION is a function,
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
2142 `keymap' says FUNCTION is really a keymap, and
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
2143 `macro' or t says FUNCTION is really a macro.
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
2144 Third through fifth args give info about the real definition.
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
2145 They default to nil.
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
2146 If FUNCTION is already defined other than as an autoload,
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
2147 this does nothing and returns nil. */)
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
2148 (function, file, docstring, interactive, type)
1564
b327816041d1 * eval.c (Fautoload): Renamed fifth argument TYPE. Document the
Jim Blandy <jimb@redhat.com>
parents: 1452
diff changeset
2149 Lisp_Object function, file, docstring, interactive, type;
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2150 {
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[4];
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2153 #endif
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2154
40656
cdfd4d09b79a Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents: 40629
diff changeset
2155 CHECK_SYMBOL (function);
cdfd4d09b79a Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents: 40629
diff changeset
2156 CHECK_STRING (file);
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2157
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2158 /* If function is defined and not as an autoload, don't override */
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2159 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
2160 && !(CONSP (XSYMBOL (function)->function)
25662
0a7261c1d487 Use XCAR, XCDR, and XFLOAT_DATA instead of explicit member access.
Ken Raeburn <raeburn@raeburn.org>
parents: 25314
diff changeset
2161 && EQ (XCAR (XSYMBOL (function)->function), Qautoload)))
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2162 return Qnil;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2163
28297
f37b25e59751 * eval.c (Fautoload): Add entry in load-history (if after dump).
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 28056
diff changeset
2164 if (NILP (Vpurify_flag))
f37b25e59751 * eval.c (Fautoload): Add entry in load-history (if after dump).
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 28056
diff changeset
2165 /* Only add entries after dumping, because the ones before are
f37b25e59751 * eval.c (Fautoload): Add entry in load-history (if after dump).
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 28056
diff changeset
2166 not useful and else we get loads of them from the loaddefs.el. */
f37b25e59751 * eval.c (Fautoload): Add entry in load-history (if after dump).
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 28056
diff changeset
2167 LOADHIST_ATTACH (Fcons (Qautoload, function));
f37b25e59751 * eval.c (Fautoload): Add entry in load-history (if after dump).
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 28056
diff changeset
2168
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2169 #ifdef NO_ARG_ARRAY
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2170 args[0] = file;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2171 args[1] = docstring;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2172 args[2] = interactive;
1564
b327816041d1 * eval.c (Fautoload): Renamed fifth argument TYPE. Document the
Jim Blandy <jimb@redhat.com>
parents: 1452
diff changeset
2173 args[3] = type;
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2174
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2175 return Ffset (function, Fcons (Qautoload, Flist (4, &args[0])));
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2176 #else /* NO_ARG_ARRAY */
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2177 return Ffset (function, Fcons (Qautoload, Flist (4, &file)));
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2178 #endif /* not NO_ARG_ARRAY */
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2179 }
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2180
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2181 Lisp_Object
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2182 un_autoload (oldqueue)
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2183 Lisp_Object oldqueue;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2184 {
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2185 register Lisp_Object queue, first, second;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2186
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2187 /* Queue to unwind is current value of Vautoload_queue.
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2188 oldqueue is the shadowed value to leave in Vautoload_queue. */
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2189 queue = Vautoload_queue;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2190 Vautoload_queue = oldqueue;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2191 while (CONSP (queue))
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2192 {
50630
dfbdcffdcfc9 (For, Fand, Fprogn, un_autoload, do_autoload): Use XCDR, XCAR, CONSP.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 49752
diff changeset
2193 first = XCAR (queue);
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2194 second = Fcdr (first);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2195 first = Fcar (first);
67810
65be704fdaf2 (un_autoload): Expect (0 . OFEATURES) in Vautoload_queue to undo a `provide'.
Richard M. Stallman <rms@gnu.org>
parents: 66528
diff changeset
2196 if (EQ (first, make_number (0)))
65be704fdaf2 (un_autoload): Expect (0 . OFEATURES) in Vautoload_queue to undo a `provide'.
Richard M. Stallman <rms@gnu.org>
parents: 66528
diff changeset
2197 Vfeatures = second;
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2198 else
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2199 Ffset (first, second);
50630
dfbdcffdcfc9 (For, Fand, Fprogn, un_autoload, do_autoload): Use XCDR, XCAR, CONSP.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 49752
diff changeset
2200 queue = XCDR (queue);
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2201 }
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2202 return Qnil;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2203 }
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2204
16108
2c9c0c867e00 (Fmacroexpand): gcpro form while calling do_autoload.
Richard M. Stallman <rms@gnu.org>
parents: 15275
diff changeset
2205 /* Load an autoloaded function.
2c9c0c867e00 (Fmacroexpand): gcpro form while calling do_autoload.
Richard M. Stallman <rms@gnu.org>
parents: 15275
diff changeset
2206 FUNNAME is the symbol which is the function's name.
2c9c0c867e00 (Fmacroexpand): gcpro form while calling do_autoload.
Richard M. Stallman <rms@gnu.org>
parents: 15275
diff changeset
2207 FUNDEF is the autoload definition (a list). */
2c9c0c867e00 (Fmacroexpand): gcpro form while calling do_autoload.
Richard M. Stallman <rms@gnu.org>
parents: 15275
diff changeset
2208
20378
cf1b52f5c34a (do_autoload): Return void.
Andreas Schwab <schwab@suse.de>
parents: 20312
diff changeset
2209 void
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2210 do_autoload (fundef, funname)
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2211 Lisp_Object fundef, funname;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2212 {
46293
1fb8f75062c6 Use macro SPECPDL_INDEX.
Juanma Barranquero <lekktu@gmail.com>
parents: 46198
diff changeset
2213 int count = SPECPDL_INDEX ();
79082
b27741b11f5a (do_autoload): Don't save autoloads.
Juanma Barranquero <lekktu@gmail.com>
parents: 78664
diff changeset
2214 Lisp_Object fun;
16108
2c9c0c867e00 (Fmacroexpand): gcpro form while calling do_autoload.
Richard M. Stallman <rms@gnu.org>
parents: 15275
diff changeset
2215 struct gcpro gcpro1, gcpro2, gcpro3;
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2216
45039
ed0ad59e4ec7 Comment change.
Richard M. Stallman <rms@gnu.org>
parents: 45036
diff changeset
2217 /* This is to make sure that loadup.el gives a clear picture
ed0ad59e4ec7 Comment change.
Richard M. Stallman <rms@gnu.org>
parents: 45036
diff changeset
2218 of what files are preloaded and when. */
45036
184909bcbc7b (do_autoload): Error if called while preparing to dump.
Richard M. Stallman <rms@gnu.org>
parents: 44941
diff changeset
2219 if (! NILP (Vpurify_flag))
184909bcbc7b (do_autoload): Error if called while preparing to dump.
Richard M. Stallman <rms@gnu.org>
parents: 44941
diff changeset
2220 error ("Attempt to autoload %s while preparing to dump",
46370
40db0673e6f0 Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents: 46315
diff changeset
2221 SDATA (SYMBOL_NAME (funname)));
45036
184909bcbc7b (do_autoload): Error if called while preparing to dump.
Richard M. Stallman <rms@gnu.org>
parents: 44941
diff changeset
2222
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2223 fun = funname;
40656
cdfd4d09b79a Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents: 40629
diff changeset
2224 CHECK_SYMBOL (funname);
16108
2c9c0c867e00 (Fmacroexpand): gcpro form while calling do_autoload.
Richard M. Stallman <rms@gnu.org>
parents: 15275
diff changeset
2225 GCPRO3 (fun, funname, fundef);
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2226
24605
f378efa4aa8a (do_autoload): Preserve match data.
Richard M. Stallman <rms@gnu.org>
parents: 24427
diff changeset
2227 /* Preserve the match data. */
63147
9bde03db5726 * composite.c (compose_chars_in_text):
Kim F. Storm <storm@cua.dk>
parents: 62980
diff changeset
2228 record_unwind_save_match_data ();
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 49105
diff changeset
2229
79207
f19edd342e7b Comment change.
Richard M. Stallman <rms@gnu.org>
parents: 79082
diff changeset
2230 /* If autoloading gets an error (which includes the error of failing
f19edd342e7b Comment change.
Richard M. Stallman <rms@gnu.org>
parents: 79082
diff changeset
2231 to define the function being called), we use Vautoload_queue
f19edd342e7b Comment change.
Richard M. Stallman <rms@gnu.org>
parents: 79082
diff changeset
2232 to undo function definitions and `provide' calls made by
f19edd342e7b Comment change.
Richard M. Stallman <rms@gnu.org>
parents: 79082
diff changeset
2233 the function. We do this in the specific case of autoloading
f19edd342e7b Comment change.
Richard M. Stallman <rms@gnu.org>
parents: 79082
diff changeset
2234 because autoloading is not an explicit request "load this file",
f19edd342e7b Comment change.
Richard M. Stallman <rms@gnu.org>
parents: 79082
diff changeset
2235 but rather a request to "call this function".
f19edd342e7b Comment change.
Richard M. Stallman <rms@gnu.org>
parents: 79082
diff changeset
2236
f19edd342e7b Comment change.
Richard M. Stallman <rms@gnu.org>
parents: 79082
diff changeset
2237 The value saved here is to be restored into Vautoload_queue. */
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2238 record_unwind_protect (un_autoload, Vautoload_queue);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2239 Vautoload_queue = Qt;
84835
96f382c71120 (do_autoload): Don't output any message.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 84436
diff changeset
2240 Fload (Fcar (Fcdr (fundef)), Qnil, Qt, Qnil, Qt);
2547
c73c68a87cd5 (defun, defmacro, defvar, defconst):
Richard M. Stallman <rms@gnu.org>
parents: 2439
diff changeset
2241
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2242 /* Once loading finishes, don't undo it. */
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2243 Vautoload_queue = Qt;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2244 unbind_to (count, Qnil);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2245
68758
13c1b7c5f555 * data.c (Findirect_function): Add NOERROR arg. All callers changed
Kim F. Storm <storm@cua.dk>
parents: 68651
diff changeset
2246 fun = Findirect_function (fun, Qnil);
648
70b112526394 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 604
diff changeset
2247
4462
9fbc6c74cab5 (do_autoload): Don't report autoload failure
Richard M. Stallman <rms@gnu.org>
parents: 4167
diff changeset
2248 if (!NILP (Fequal (fun, fundef)))
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2249 error ("Autoloading failed to define function %s",
46370
40db0673e6f0 Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents: 46315
diff changeset
2250 SDATA (SYMBOL_NAME (funname)));
16108
2c9c0c867e00 (Fmacroexpand): gcpro form while calling do_autoload.
Richard M. Stallman <rms@gnu.org>
parents: 15275
diff changeset
2251 UNGCPRO;
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2252 }
30080
f8f9badf6750 (handling_signal): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 30073
diff changeset
2253
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2254
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2255 DEFUN ("eval", Feval, Seval, 1, 1, 0,
40570
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
2256 doc: /* Evaluate FORM and return its value. */)
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
2257 (form)
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2258 Lisp_Object form;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2259 {
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2260 Lisp_Object fun, val, original_fun, original_args;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2261 Lisp_Object funcar;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2262 struct backtrace backtrace;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2263 struct gcpro gcpro1, gcpro2, gcpro3;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2264
57965
9b14127a651a * eval.c (Feval): Remove check for INPUT_BLOCKED_P.
Jan Djärv <jan.h.d@swipnet.se>
parents: 57889
diff changeset
2265 if (handling_signal)
25008
39dd5c98a114 (Fsignal): Reset redisplaying_p to zero.
Gerd Moellmann <gerd@gnu.org>
parents: 24605
diff changeset
2266 abort ();
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 49105
diff changeset
2267
9148
e7ab930bb7eb (Fprogn, Finteractive_p, Fuser_variable_p, FletX, Flet, Fmacroexpand,
Karl Heuer <kwzh@gnu.org>
parents: 8980
diff changeset
2268 if (SYMBOLP (form))
42277
fd38a0b6a3ff Remove variables `Qmocklisp_arguments', `Vmocklisp_arguments' and
Pavel Janík <Pavel@Janik.cz>
parents: 41846
diff changeset
2269 return Fsymbol_value (form);
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2270 if (!CONSP (form))
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2271 return form;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2273 QUIT;
66528
c9adaa704c22 (internal_lisp_condition_case): New function.
Richard M. Stallman <rms@gnu.org>
parents: 64770
diff changeset
2274 if ((consing_since_gc > gc_cons_threshold
c9adaa704c22 (internal_lisp_condition_case): New function.
Richard M. Stallman <rms@gnu.org>
parents: 64770
diff changeset
2275 && consing_since_gc > gc_relative_threshold)
c9adaa704c22 (internal_lisp_condition_case): New function.
Richard M. Stallman <rms@gnu.org>
parents: 64770
diff changeset
2276 ||
c9adaa704c22 (internal_lisp_condition_case): New function.
Richard M. Stallman <rms@gnu.org>
parents: 64770
diff changeset
2277 (!NILP (Vmemory_full) && consing_since_gc > memory_full_cons_threshold))
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2278 {
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2279 GCPRO1 (form);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2280 Fgarbage_collect ();
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2281 UNGCPRO;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2282 }
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2283
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2284 if (++lisp_eval_depth > max_lisp_eval_depth)
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2285 {
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2286 if (max_lisp_eval_depth < 100)
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2287 max_lisp_eval_depth = 100;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2288 if (lisp_eval_depth > max_lisp_eval_depth)
63697
9f617bb41e22 (Fdefvar, Fdefconst, Feval, Ffuncall): Follow error conventions.
Juanma Barranquero <lekktu@gmail.com>
parents: 63391
diff changeset
2289 error ("Lisp nesting exceeds `max-lisp-eval-depth'");
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2290 }
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2291
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2292 original_fun = Fcar (form);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2293 original_args = Fcdr (form);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2294
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2295 backtrace.next = backtrace_list;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2296 backtrace_list = &backtrace;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2297 backtrace.function = &original_fun; /* This also protects them from gc */
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2298 backtrace.args = &original_args;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2299 backtrace.nargs = UNEVALLED;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2300 backtrace.evalargs = 1;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2301 backtrace.debug_on_exit = 0;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2302
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2303 if (debug_on_next_call)
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2304 do_debug_on_call (Qt);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2305
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2306 /* At this point, only original_fun and original_args
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2307 have values that will be used below */
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2308 retry:
71872
b20203b004f8 (Fthrow): Remove loop around Fsignal.
Kim F. Storm <storm@cua.dk>
parents: 71574
diff changeset
2309
b20203b004f8 (Fthrow): Remove loop around Fsignal.
Kim F. Storm <storm@cua.dk>
parents: 71574
diff changeset
2310 /* Optimize for no indirection. */
b20203b004f8 (Fthrow): Remove loop around Fsignal.
Kim F. Storm <storm@cua.dk>
parents: 71574
diff changeset
2311 fun = original_fun;
b20203b004f8 (Fthrow): Remove loop around Fsignal.
Kim F. Storm <storm@cua.dk>
parents: 71574
diff changeset
2312 if (SYMBOLP (fun) && !EQ (fun, Qunbound)
b20203b004f8 (Fthrow): Remove loop around Fsignal.
Kim F. Storm <storm@cua.dk>
parents: 71574
diff changeset
2313 && (fun = XSYMBOL (fun)->function, SYMBOLP (fun)))
b20203b004f8 (Fthrow): Remove loop around Fsignal.
Kim F. Storm <storm@cua.dk>
parents: 71574
diff changeset
2314 fun = indirect_function (fun);
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2315
9148
e7ab930bb7eb (Fprogn, Finteractive_p, Fuser_variable_p, FletX, Flet, Fmacroexpand,
Karl Heuer <kwzh@gnu.org>
parents: 8980
diff changeset
2316 if (SUBRP (fun))
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2317 {
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2318 Lisp_Object numargs;
19544
fc0bb24597ba (Feval): Handle a subr which takes 8 arguments.
Kenichi Handa <handa@m17n.org>
parents: 19237
diff changeset
2319 Lisp_Object argvals[8];
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2320 Lisp_Object args_left;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2321 register int i, maxargs;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2322
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2323 args_left = original_args;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2324 numargs = Flength (args_left);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2325
60418
887436be5f78 (unwind_to_catch): Use UNBLOCK_INPUT_TO.
Richard M. Stallman <rms@gnu.org>
parents: 59953
diff changeset
2326 CHECK_CONS_LIST ();
887436be5f78 (unwind_to_catch): Use UNBLOCK_INPUT_TO.
Richard M. Stallman <rms@gnu.org>
parents: 59953
diff changeset
2327
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2328 if (XINT (numargs) < XSUBR (fun)->min_args ||
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2329 (XSUBR (fun)->max_args >= 0 && XSUBR (fun)->max_args < XINT (numargs)))
71976
66a9a086ddbb * eval.c (xsignal): New func. Like Fsignal, but marked no-return.
Kim F. Storm <storm@cua.dk>
parents: 71872
diff changeset
2330 xsignal2 (Qwrong_number_of_arguments, original_fun, numargs);
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2331
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2332 if (XSUBR (fun)->max_args == UNEVALLED)
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2333 {
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2334 backtrace.evalargs = 0;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2335 val = (*XSUBR (fun)->function) (args_left);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2336 goto done;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2337 }
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2338
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2339 if (XSUBR (fun)->max_args == MANY)
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2340 {
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2341 /* Pass a vector of evaluated arguments */
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2342 Lisp_Object *vals;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2343 register int argnum = 0;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2344
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2345 vals = (Lisp_Object *) alloca (XINT (numargs) * sizeof (Lisp_Object));
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2346
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2347 GCPRO3 (args_left, fun, fun);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2348 gcpro3.var = vals;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2349 gcpro3.nvars = 0;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2350
485
8c615e453683 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 431
diff changeset
2351 while (!NILP (args_left))
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2352 {
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2353 vals[argnum++] = Feval (Fcar (args_left));
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2354 args_left = Fcdr (args_left);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2355 gcpro3.nvars = argnum;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2356 }
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2357
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2358 backtrace.args = vals;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2359 backtrace.nargs = XINT (numargs);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2360
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2361 val = (*XSUBR (fun)->function) (XINT (numargs), vals);
323
9c2a1e7bd9f1 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 295
diff changeset
2362 UNGCPRO;
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2363 goto done;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2364 }
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2365
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2366 GCPRO3 (args_left, fun, fun);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2367 gcpro3.var = argvals;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2368 gcpro3.nvars = 0;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2369
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2370 maxargs = XSUBR (fun)->max_args;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2371 for (i = 0; i < maxargs; args_left = Fcdr (args_left))
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2372 {
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2373 argvals[i] = Feval (Fcar (args_left));
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2374 gcpro3.nvars = ++i;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2375 }
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2376
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2377 UNGCPRO;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2378
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2379 backtrace.args = argvals;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2380 backtrace.nargs = XINT (numargs);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2381
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2382 switch (i)
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2383 {
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2384 case 0:
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2385 val = (*XSUBR (fun)->function) ();
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2386 goto done;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2387 case 1:
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2388 val = (*XSUBR (fun)->function) (argvals[0]);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2389 goto done;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2390 case 2:
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2391 val = (*XSUBR (fun)->function) (argvals[0], argvals[1]);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2392 goto done;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2393 case 3:
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2394 val = (*XSUBR (fun)->function) (argvals[0], argvals[1],
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2395 argvals[2]);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2396 goto done;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2397 case 4:
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2398 val = (*XSUBR (fun)->function) (argvals[0], argvals[1],
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2399 argvals[2], argvals[3]);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2400 goto done;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2401 case 5:
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2402 val = (*XSUBR (fun)->function) (argvals[0], argvals[1], argvals[2],
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2403 argvals[3], argvals[4]);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2404 goto done;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2405 case 6:
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2406 val = (*XSUBR (fun)->function) (argvals[0], argvals[1], argvals[2],
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2407 argvals[3], argvals[4], argvals[5]);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2408 goto done;
863
427299469901 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 753
diff changeset
2409 case 7:
427299469901 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 753
diff changeset
2410 val = (*XSUBR (fun)->function) (argvals[0], argvals[1], argvals[2],
427299469901 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 753
diff changeset
2411 argvals[3], argvals[4], argvals[5],
427299469901 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 753
diff changeset
2412 argvals[6]);
427299469901 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 753
diff changeset
2413 goto done;
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2414
19544
fc0bb24597ba (Feval): Handle a subr which takes 8 arguments.
Kenichi Handa <handa@m17n.org>
parents: 19237
diff changeset
2415 case 8:
fc0bb24597ba (Feval): Handle a subr which takes 8 arguments.
Kenichi Handa <handa@m17n.org>
parents: 19237
diff changeset
2416 val = (*XSUBR (fun)->function) (argvals[0], argvals[1], argvals[2],
fc0bb24597ba (Feval): Handle a subr which takes 8 arguments.
Kenichi Handa <handa@m17n.org>
parents: 19237
diff changeset
2417 argvals[3], argvals[4], argvals[5],
fc0bb24597ba (Feval): Handle a subr which takes 8 arguments.
Kenichi Handa <handa@m17n.org>
parents: 19237
diff changeset
2418 argvals[6], argvals[7]);
fc0bb24597ba (Feval): Handle a subr which takes 8 arguments.
Kenichi Handa <handa@m17n.org>
parents: 19237
diff changeset
2419 goto done;
fc0bb24597ba (Feval): Handle a subr which takes 8 arguments.
Kenichi Handa <handa@m17n.org>
parents: 19237
diff changeset
2420
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2421 default:
604
63a8e7b3c547 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 573
diff changeset
2422 /* Someone has created a subr that takes more arguments than
63a8e7b3c547 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 573
diff changeset
2423 is supported by this code. We need to either rewrite the
63a8e7b3c547 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 573
diff changeset
2424 subr to use a different argument protocol, or add more
63a8e7b3c547 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 573
diff changeset
2425 cases to this switch. */
63a8e7b3c547 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 573
diff changeset
2426 abort ();
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2427 }
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2428 }
9148
e7ab930bb7eb (Fprogn, Finteractive_p, Fuser_variable_p, FletX, Flet, Fmacroexpand,
Karl Heuer <kwzh@gnu.org>
parents: 8980
diff changeset
2429 if (COMPILEDP (fun))
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2430 val = apply_lambda (fun, original_args, 1);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2431 else
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2432 {
71872
b20203b004f8 (Fthrow): Remove loop around Fsignal.
Kim F. Storm <storm@cua.dk>
parents: 71574
diff changeset
2433 if (EQ (fun, Qunbound))
71976
66a9a086ddbb * eval.c (xsignal): New func. Like Fsignal, but marked no-return.
Kim F. Storm <storm@cua.dk>
parents: 71872
diff changeset
2434 xsignal1 (Qvoid_function, original_fun);
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2435 if (!CONSP (fun))
71976
66a9a086ddbb * eval.c (xsignal): New func. Like Fsignal, but marked no-return.
Kim F. Storm <storm@cua.dk>
parents: 71872
diff changeset
2436 xsignal1 (Qinvalid_function, original_fun);
66a9a086ddbb * eval.c (xsignal): New func. Like Fsignal, but marked no-return.
Kim F. Storm <storm@cua.dk>
parents: 71872
diff changeset
2437 funcar = XCAR (fun);
9148
e7ab930bb7eb (Fprogn, Finteractive_p, Fuser_variable_p, FletX, Flet, Fmacroexpand,
Karl Heuer <kwzh@gnu.org>
parents: 8980
diff changeset
2438 if (!SYMBOLP (funcar))
71976
66a9a086ddbb * eval.c (xsignal): New func. Like Fsignal, but marked no-return.
Kim F. Storm <storm@cua.dk>
parents: 71872
diff changeset
2439 xsignal1 (Qinvalid_function, original_fun);
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2440 if (EQ (funcar, Qautoload))
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2441 {
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2442 do_autoload (fun, original_fun);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2443 goto retry;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2444 }
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2445 if (EQ (funcar, Qmacro))
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2446 val = Feval (apply1 (Fcdr (fun), original_args));
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2447 else if (EQ (funcar, Qlambda))
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2448 val = apply_lambda (fun, original_args, 1);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2449 else
71976
66a9a086ddbb * eval.c (xsignal): New func. Like Fsignal, but marked no-return.
Kim F. Storm <storm@cua.dk>
parents: 71872
diff changeset
2450 xsignal1 (Qinvalid_function, original_fun);
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2451 }
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2452 done:
60418
887436be5f78 (unwind_to_catch): Use UNBLOCK_INPUT_TO.
Richard M. Stallman <rms@gnu.org>
parents: 59953
diff changeset
2453 CHECK_CONS_LIST ();
887436be5f78 (unwind_to_catch): Use UNBLOCK_INPUT_TO.
Richard M. Stallman <rms@gnu.org>
parents: 59953
diff changeset
2454
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2455 lisp_eval_depth--;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2456 if (backtrace.debug_on_exit)
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2457 val = call_debugger (Fcons (Qexit, Fcons (val, Qnil)));
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2458 backtrace_list = backtrace.next;
48742
7b5cd8383f0b Feval: On Carbon/MacOSX call mac_check_for_quit_char at each stack frame.
Steven Tamm <steventamm@mac.com>
parents: 48724
diff changeset
2459
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2460 return val;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2461 }
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2462
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2463 DEFUN ("apply", Fapply, Sapply, 2, MANY, 0,
40570
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
2464 doc: /* Call FUNCTION with our remaining args, using our last arg as list of args.
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
2465 Then return the value FUNCTION returns.
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
2466 Thus, (apply '+ 1 2 '(3 4)) returns 10.
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
2467 usage: (apply FUNCTION &rest ARGUMENTS) */)
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
2468 (nargs, args)
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2469 int nargs;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2470 Lisp_Object *args;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2471 {
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2472 register int i, numargs;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2473 register Lisp_Object spread_arg;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2474 register Lisp_Object *funcall_args;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2475 Lisp_Object fun;
50644
0c4bf42e6557 (Fapply): Undo last change and add a comment about why.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 50630
diff changeset
2476 struct gcpro gcpro1;
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2477
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2478 fun = args [0];
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2479 funcall_args = 0;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2480 spread_arg = args [nargs - 1];
40656
cdfd4d09b79a Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents: 40629
diff changeset
2481 CHECK_LIST (spread_arg);
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 49105
diff changeset
2482
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2483 numargs = XINT (Flength (spread_arg));
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2484
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2485 if (numargs == 0)
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2486 return Ffuncall (nargs - 1, args);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2487 else if (numargs == 1)
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2488 {
25662
0a7261c1d487 Use XCAR, XCDR, and XFLOAT_DATA instead of explicit member access.
Ken Raeburn <raeburn@raeburn.org>
parents: 25314
diff changeset
2489 args [nargs - 1] = XCAR (spread_arg);
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2490 return Ffuncall (nargs, args);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2491 }
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2492
323
9c2a1e7bd9f1 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 295
diff changeset
2493 numargs += nargs - 2;
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2494
71872
b20203b004f8 (Fthrow): Remove loop around Fsignal.
Kim F. Storm <storm@cua.dk>
parents: 71574
diff changeset
2495 /* Optimize for no indirection. */
b20203b004f8 (Fthrow): Remove loop around Fsignal.
Kim F. Storm <storm@cua.dk>
parents: 71574
diff changeset
2496 if (SYMBOLP (fun) && !EQ (fun, Qunbound)
b20203b004f8 (Fthrow): Remove loop around Fsignal.
Kim F. Storm <storm@cua.dk>
parents: 71574
diff changeset
2497 && (fun = XSYMBOL (fun)->function, SYMBOLP (fun)))
b20203b004f8 (Fthrow): Remove loop around Fsignal.
Kim F. Storm <storm@cua.dk>
parents: 71574
diff changeset
2498 fun = indirect_function (fun);
648
70b112526394 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 604
diff changeset
2499 if (EQ (fun, Qunbound))
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2500 {
648
70b112526394 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 604
diff changeset
2501 /* Let funcall get the error */
70b112526394 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 604
diff changeset
2502 fun = args[0];
70b112526394 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 604
diff changeset
2503 goto funcall;
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2504 }
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2505
9148
e7ab930bb7eb (Fprogn, Finteractive_p, Fuser_variable_p, FletX, Flet, Fmacroexpand,
Karl Heuer <kwzh@gnu.org>
parents: 8980
diff changeset
2506 if (SUBRP (fun))
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2507 {
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2508 if (numargs < XSUBR (fun)->min_args
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2509 || (XSUBR (fun)->max_args >= 0 && XSUBR (fun)->max_args < numargs))
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2510 goto funcall; /* Let funcall get the error */
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2511 else if (XSUBR (fun)->max_args > numargs)
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2512 {
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2513 /* Avoid making funcall cons up a yet another new vector of arguments
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2514 by explicitly supplying nil's for optional values */
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2515 funcall_args = (Lisp_Object *) alloca ((1 + XSUBR (fun)->max_args)
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2516 * sizeof (Lisp_Object));
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2517 for (i = numargs; i < XSUBR (fun)->max_args;)
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2518 funcall_args[++i] = Qnil;
50644
0c4bf42e6557 (Fapply): Undo last change and add a comment about why.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 50630
diff changeset
2519 GCPRO1 (*funcall_args);
0c4bf42e6557 (Fapply): Undo last change and add a comment about why.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 50630
diff changeset
2520 gcpro1.nvars = 1 + XSUBR (fun)->max_args;
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2521 }
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2522 }
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2523 funcall:
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2524 /* We add 1 to numargs because funcall_args includes the
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2525 function itself as well as its arguments. */
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2526 if (!funcall_args)
323
9c2a1e7bd9f1 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 295
diff changeset
2527 {
9c2a1e7bd9f1 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 295
diff changeset
2528 funcall_args = (Lisp_Object *) alloca ((1 + numargs)
9c2a1e7bd9f1 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 295
diff changeset
2529 * sizeof (Lisp_Object));
50644
0c4bf42e6557 (Fapply): Undo last change and add a comment about why.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 50630
diff changeset
2530 GCPRO1 (*funcall_args);
0c4bf42e6557 (Fapply): Undo last change and add a comment about why.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 50630
diff changeset
2531 gcpro1.nvars = 1 + numargs;
323
9c2a1e7bd9f1 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 295
diff changeset
2532 }
9c2a1e7bd9f1 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 295
diff changeset
2533
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2534 bcopy (args, funcall_args, nargs * sizeof (Lisp_Object));
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2535 /* Spread the last arg we got. Its first element goes in
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2536 the slot that it used to occupy, hence this value of I. */
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2537 i = nargs - 1;
485
8c615e453683 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 431
diff changeset
2538 while (!NILP (spread_arg))
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2539 {
25662
0a7261c1d487 Use XCAR, XCDR, and XFLOAT_DATA instead of explicit member access.
Ken Raeburn <raeburn@raeburn.org>
parents: 25314
diff changeset
2540 funcall_args [i++] = XCAR (spread_arg);
0a7261c1d487 Use XCAR, XCDR, and XFLOAT_DATA instead of explicit member access.
Ken Raeburn <raeburn@raeburn.org>
parents: 25314
diff changeset
2541 spread_arg = XCDR (spread_arg);
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2542 }
323
9c2a1e7bd9f1 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 295
diff changeset
2543
50644
0c4bf42e6557 (Fapply): Undo last change and add a comment about why.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 50630
diff changeset
2544 /* By convention, the caller needs to gcpro Ffuncall's args. */
0c4bf42e6557 (Fapply): Undo last change and add a comment about why.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 50630
diff changeset
2545 RETURN_UNGCPRO (Ffuncall (gcpro1.nvars, funcall_args));
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2546 }
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2547
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
2548 /* 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
2549
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
2550 enum run_hooks_condition {to_completion, until_success, until_failure};
41114
242c6928accc (max_specpdl_size, max_lisp_eval_depth): Use EMACS_INT.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 41029
diff changeset
2551 static Lisp_Object run_hook_with_args P_ ((int, Lisp_Object *,
242c6928accc (max_specpdl_size, max_lisp_eval_depth): Use EMACS_INT.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 41029
diff changeset
2552 enum run_hooks_condition));
12732
981b924c832b Add Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success, Frun_hook_with_args_until_failure in terms of run_hook_with_args.
Simon Marshall <simon@gnu.org>
parents: 12711
diff changeset
2553
34013
4a60e687c9ab *** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 33988
diff changeset
2554 DEFUN ("run-hooks", Frun_hooks, Srun_hooks, 0, MANY, 0,
62709
d66d7efe0adf (Frun_hooks): Mention run-mode-hooks in docstring.
Lute Kamstra <lute@gnu.org>
parents: 62178
diff changeset
2555 doc: /* Run each hook in HOOKS.
40570
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
2556 Each argument should be a symbol, a hook variable.
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
2557 These symbols are processed in the order specified.
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
2558 If a hook symbol has a non-nil value, that value may be a function
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
2559 or a list of functions to be called to run the hook.
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
2560 If the value is a function, it is called with no arguments.
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
2561 If it is a list, the elements are called, in order, with no arguments.
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
2562
62709
d66d7efe0adf (Frun_hooks): Mention run-mode-hooks in docstring.
Lute Kamstra <lute@gnu.org>
parents: 62178
diff changeset
2563 Major modes should not use this function directly to run their mode
d66d7efe0adf (Frun_hooks): Mention run-mode-hooks in docstring.
Lute Kamstra <lute@gnu.org>
parents: 62178
diff changeset
2564 hook; they should use `run-mode-hooks' instead.
d66d7efe0adf (Frun_hooks): Mention run-mode-hooks in docstring.
Lute Kamstra <lute@gnu.org>
parents: 62178
diff changeset
2565
40629
bfacd603fb71 (Frun_hooks, Frun_hook_with_args_until_failure): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 40570
diff changeset
2566 Do not use `make-local-variable' to make a hook variable buffer-local.
bfacd603fb71 (Frun_hooks, Frun_hook_with_args_until_failure): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 40570
diff changeset
2567 Instead, use `add-hook' and specify t for the LOCAL argument.
40570
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
2568 usage: (run-hooks &rest HOOKS) */)
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
2569 (nargs, args)
12732
981b924c832b Add Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success, Frun_hook_with_args_until_failure in terms of run_hook_with_args.
Simon Marshall <simon@gnu.org>
parents: 12711
diff changeset
2570 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
2571 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
2572 {
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
2573 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
2574 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
2575
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
2576 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
2577 {
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
2578 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
2579 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
2580 }
981b924c832b Add Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success, Frun_hook_with_args_until_failure in terms of run_hook_with_args.
Simon Marshall <simon@gnu.org>
parents: 12711
diff changeset
2581
981b924c832b Add Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success, Frun_hook_with_args_until_failure in terms of run_hook_with_args.
Simon Marshall <simon@gnu.org>
parents: 12711
diff changeset
2582 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
2583 }
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 49105
diff changeset
2584
16485
9b919c5464a4 Reorganize function definitions so etags finds them.
Erik Naggum <erik@naggum.no>
parents: 16443
diff changeset
2585 DEFUN ("run-hook-with-args", Frun_hook_with_args,
40570
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
2586 Srun_hook_with_args, 1, MANY, 0,
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
2587 doc: /* Run HOOK with the specified arguments ARGS.
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
2588 HOOK should be a symbol, a hook variable. If HOOK has a non-nil
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
2589 value, that value may be a function or a list of functions to be
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
2590 called to run the hook. If the value is a function, it is called with
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
2591 the given arguments and its return value is returned. If it is a list
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
2592 of functions, those functions are called, in order,
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
2593 with the given arguments ARGS.
59953
d9e761d51f98 (Frun_hook_with_args)
Richard M. Stallman <rms@gnu.org>
parents: 59109
diff changeset
2594 It is best not to depend on the value returned by `run-hook-with-args',
40570
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
2595 as that may change.
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
2596
40629
bfacd603fb71 (Frun_hooks, Frun_hook_with_args_until_failure): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 40570
diff changeset
2597 Do not use `make-local-variable' to make a hook variable buffer-local.
bfacd603fb71 (Frun_hooks, Frun_hook_with_args_until_failure): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 40570
diff changeset
2598 Instead, use `add-hook' and specify t for the LOCAL argument.
40570
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
2599 usage: (run-hook-with-args HOOK &rest ARGS) */)
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
2600 (nargs, args)
12732
981b924c832b Add Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success, Frun_hook_with_args_until_failure in terms of run_hook_with_args.
Simon Marshall <simon@gnu.org>
parents: 12711
diff changeset
2601 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
2602 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
2603 {
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
2604 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
2605 }
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
2606
16485
9b919c5464a4 Reorganize function definitions so etags finds them.
Erik Naggum <erik@naggum.no>
parents: 16443
diff changeset
2607 DEFUN ("run-hook-with-args-until-success", Frun_hook_with_args_until_success,
40570
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
2608 Srun_hook_with_args_until_success, 1, MANY, 0,
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
2609 doc: /* Run HOOK with the specified arguments ARGS.
59953
d9e761d51f98 (Frun_hook_with_args)
Richard M. Stallman <rms@gnu.org>
parents: 59109
diff changeset
2610 HOOK should be a symbol, a hook variable. If HOOK has a non-nil
d9e761d51f98 (Frun_hook_with_args)
Richard M. Stallman <rms@gnu.org>
parents: 59109
diff changeset
2611 value, that value may be a function or a list of functions to be
d9e761d51f98 (Frun_hook_with_args)
Richard M. Stallman <rms@gnu.org>
parents: 59109
diff changeset
2612 called to run the hook. If the value is a function, it is called with
d9e761d51f98 (Frun_hook_with_args)
Richard M. Stallman <rms@gnu.org>
parents: 59109
diff changeset
2613 the given arguments and its return value is returned.
d9e761d51f98 (Frun_hook_with_args)
Richard M. Stallman <rms@gnu.org>
parents: 59109
diff changeset
2614 If it is a list of functions, those functions are called, in order,
d9e761d51f98 (Frun_hook_with_args)
Richard M. Stallman <rms@gnu.org>
parents: 59109
diff changeset
2615 with the given arguments ARGS, until one of them
40570
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
2616 returns a non-nil value. Then we return that value.
59953
d9e761d51f98 (Frun_hook_with_args)
Richard M. Stallman <rms@gnu.org>
parents: 59109
diff changeset
2617 However, if they all return nil, we return nil.
40570
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
2618
40629
bfacd603fb71 (Frun_hooks, Frun_hook_with_args_until_failure): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 40570
diff changeset
2619 Do not use `make-local-variable' to make a hook variable buffer-local.
bfacd603fb71 (Frun_hooks, Frun_hook_with_args_until_failure): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 40570
diff changeset
2620 Instead, use `add-hook' and specify t for the LOCAL argument.
40570
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
2621 usage: (run-hook-with-args-until-success HOOK &rest ARGS) */)
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
2622 (nargs, args)
12654
14721fd8dcc1 (Frun_hook_with_args): New C function, formerly in subr.el.
Karl Heuer <kwzh@gnu.org>
parents: 12583
diff changeset
2623 int nargs;
14721fd8dcc1 (Frun_hook_with_args): New C function, formerly in subr.el.
Karl Heuer <kwzh@gnu.org>
parents: 12583
diff changeset
2624 Lisp_Object *args;
14721fd8dcc1 (Frun_hook_with_args): New C function, formerly in subr.el.
Karl Heuer <kwzh@gnu.org>
parents: 12583
diff changeset
2625 {
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
2626 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
2627 }
981b924c832b Add Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success, Frun_hook_with_args_until_failure in terms of run_hook_with_args.
Simon Marshall <simon@gnu.org>
parents: 12711
diff changeset
2628
16485
9b919c5464a4 Reorganize function definitions so etags finds them.
Erik Naggum <erik@naggum.no>
parents: 16443
diff changeset
2629 DEFUN ("run-hook-with-args-until-failure", Frun_hook_with_args_until_failure,
40570
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
2630 Srun_hook_with_args_until_failure, 1, MANY, 0,
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
2631 doc: /* Run HOOK with the specified arguments ARGS.
59953
d9e761d51f98 (Frun_hook_with_args)
Richard M. Stallman <rms@gnu.org>
parents: 59109
diff changeset
2632 HOOK should be a symbol, a hook variable. If HOOK has a non-nil
d9e761d51f98 (Frun_hook_with_args)
Richard M. Stallman <rms@gnu.org>
parents: 59109
diff changeset
2633 value, that value may be a function or a list of functions to be
d9e761d51f98 (Frun_hook_with_args)
Richard M. Stallman <rms@gnu.org>
parents: 59109
diff changeset
2634 called to run the hook. If the value is a function, it is called with
d9e761d51f98 (Frun_hook_with_args)
Richard M. Stallman <rms@gnu.org>
parents: 59109
diff changeset
2635 the given arguments and its return value is returned.
d9e761d51f98 (Frun_hook_with_args)
Richard M. Stallman <rms@gnu.org>
parents: 59109
diff changeset
2636 If it is a list of functions, those functions are called, in order,
d9e761d51f98 (Frun_hook_with_args)
Richard M. Stallman <rms@gnu.org>
parents: 59109
diff changeset
2637 with the given arguments ARGS, until one of them returns nil.
d9e761d51f98 (Frun_hook_with_args)
Richard M. Stallman <rms@gnu.org>
parents: 59109
diff changeset
2638 Then we return nil. However, if they all return non-nil, we return non-nil.
40570
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
2639
40629
bfacd603fb71 (Frun_hooks, Frun_hook_with_args_until_failure): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 40570
diff changeset
2640 Do not use `make-local-variable' to make a hook variable buffer-local.
bfacd603fb71 (Frun_hooks, Frun_hook_with_args_until_failure): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 40570
diff changeset
2641 Instead, use `add-hook' and specify t for the LOCAL argument.
40570
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
2642 usage: (run-hook-with-args-until-failure HOOK &rest ARGS) */)
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
2643 (nargs, args)
12732
981b924c832b Add Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success, Frun_hook_with_args_until_failure in terms of run_hook_with_args.
Simon Marshall <simon@gnu.org>
parents: 12711
diff changeset
2644 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
2645 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
2646 {
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
2647 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
2648 }
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
2649
12781
2a8036f0b585 (run_hook_with_args): Add gcpros.
Richard M. Stallman <rms@gnu.org>
parents: 12732
diff changeset
2650 /* ARGS[0] should be a hook symbol.
2a8036f0b585 (run_hook_with_args): Add gcpros.
Richard M. Stallman <rms@gnu.org>
parents: 12732
diff changeset
2651 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
2652 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
2653 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
2654 to decide whether to stop.
2a8036f0b585 (run_hook_with_args): Add gcpros.
Richard M. Stallman <rms@gnu.org>
parents: 12732
diff changeset
2655 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
2656 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
2657
41114
242c6928accc (max_specpdl_size, max_lisp_eval_depth): Use EMACS_INT.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 41029
diff changeset
2658 static Lisp_Object
12732
981b924c832b Add Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success, Frun_hook_with_args_until_failure in terms of run_hook_with_args.
Simon Marshall <simon@gnu.org>
parents: 12711
diff changeset
2659 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
2660 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
2661 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
2662 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
2663 {
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
2664 Lisp_Object sym, val, ret;
25257
0be923a80096 (run_hook_list_with_args): Gcpro `globals'.
Karl Heuer <kwzh@gnu.org>
parents: 25008
diff changeset
2665 Lisp_Object globals;
0be923a80096 (run_hook_list_with_args): Gcpro `globals'.
Karl Heuer <kwzh@gnu.org>
parents: 25008
diff changeset
2666 struct gcpro gcpro1, gcpro2, gcpro3;
12654
14721fd8dcc1 (Frun_hook_with_args): New C function, formerly in subr.el.
Karl Heuer <kwzh@gnu.org>
parents: 12583
diff changeset
2667
14218
346d4cf758f5 (run_hook_with_args): Do nothing if Vrun_hooks is nil.
Richard M. Stallman <rms@gnu.org>
parents: 14186
diff changeset
2668 /* If we are dying or still initializing,
346d4cf758f5 (run_hook_with_args): Do nothing if Vrun_hooks is nil.
Richard M. Stallman <rms@gnu.org>
parents: 14186
diff changeset
2669 don't do anything--it would probably crash if we tried. */
346d4cf758f5 (run_hook_with_args): Do nothing if Vrun_hooks is nil.
Richard M. Stallman <rms@gnu.org>
parents: 14186
diff changeset
2670 if (NILP (Vrun_hooks))
27226
44dc06740e6c (Fuser_variable_p): Check customizability too.
Dave Love <fx@gnu.org>
parents: 27031
diff changeset
2671 return Qnil;
14218
346d4cf758f5 (run_hook_with_args): Do nothing if Vrun_hooks is nil.
Richard M. Stallman <rms@gnu.org>
parents: 14186
diff changeset
2672
12654
14721fd8dcc1 (Frun_hook_with_args): New C function, formerly in subr.el.
Karl Heuer <kwzh@gnu.org>
parents: 12583
diff changeset
2673 sym = args[0];
12663
14d407b83eb3 (run-hook-with-args): Fix previous code.
Karl Heuer <kwzh@gnu.org>
parents: 12654
diff changeset
2674 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
2675 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
2676
12654
14721fd8dcc1 (Frun_hook_with_args): New C function, formerly in subr.el.
Karl Heuer <kwzh@gnu.org>
parents: 12583
diff changeset
2677 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
2678 return ret;
25662
0a7261c1d487 Use XCAR, XCDR, and XFLOAT_DATA instead of explicit member access.
Ken Raeburn <raeburn@raeburn.org>
parents: 25314
diff changeset
2679 else if (!CONSP (val) || EQ (XCAR (val), Qlambda))
12654
14721fd8dcc1 (Frun_hook_with_args): New C function, formerly in subr.el.
Karl Heuer <kwzh@gnu.org>
parents: 12583
diff changeset
2680 {
14721fd8dcc1 (Frun_hook_with_args): New C function, formerly in subr.el.
Karl Heuer <kwzh@gnu.org>
parents: 12583
diff changeset
2681 args[0] = val;
14721fd8dcc1 (Frun_hook_with_args): New C function, formerly in subr.el.
Karl Heuer <kwzh@gnu.org>
parents: 12583
diff changeset
2682 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
2683 }
14721fd8dcc1 (Frun_hook_with_args): New C function, formerly in subr.el.
Karl Heuer <kwzh@gnu.org>
parents: 12583
diff changeset
2684 else
14721fd8dcc1 (Frun_hook_with_args): New C function, formerly in subr.el.
Karl Heuer <kwzh@gnu.org>
parents: 12583
diff changeset
2685 {
25257
0be923a80096 (run_hook_list_with_args): Gcpro `globals'.
Karl Heuer <kwzh@gnu.org>
parents: 25008
diff changeset
2686 globals = Qnil;
0be923a80096 (run_hook_list_with_args): Gcpro `globals'.
Karl Heuer <kwzh@gnu.org>
parents: 25008
diff changeset
2687 GCPRO3 (sym, val, globals);
12788
eceb3f25e115 (run_hook_with_args): Move the GCPRO2; add UNGCPRO.
Richard M. Stallman <rms@gnu.org>
parents: 12781
diff changeset
2688
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
2689 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
2690 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
2691 || (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
2692 : !NILP (ret)));
25662
0a7261c1d487 Use XCAR, XCDR, and XFLOAT_DATA instead of explicit member access.
Ken Raeburn <raeburn@raeburn.org>
parents: 25314
diff changeset
2693 val = XCDR (val))
12654
14721fd8dcc1 (Frun_hook_with_args): New C function, formerly in subr.el.
Karl Heuer <kwzh@gnu.org>
parents: 12583
diff changeset
2694 {
25662
0a7261c1d487 Use XCAR, XCDR, and XFLOAT_DATA instead of explicit member access.
Ken Raeburn <raeburn@raeburn.org>
parents: 25314
diff changeset
2695 if (EQ (XCAR (val), Qt))
12654
14721fd8dcc1 (Frun_hook_with_args): New C function, formerly in subr.el.
Karl Heuer <kwzh@gnu.org>
parents: 12583
diff changeset
2696 {
14721fd8dcc1 (Frun_hook_with_args): New C function, formerly in subr.el.
Karl Heuer <kwzh@gnu.org>
parents: 12583
diff changeset
2697 /* 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
2698 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
2699
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
2700 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
2701 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
2702 || (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
2703 : !NILP (ret)));
25662
0a7261c1d487 Use XCAR, XCDR, and XFLOAT_DATA instead of explicit member access.
Ken Raeburn <raeburn@raeburn.org>
parents: 25314
diff changeset
2704 globals = XCDR (globals))
12654
14721fd8dcc1 (Frun_hook_with_args): New C function, formerly in subr.el.
Karl Heuer <kwzh@gnu.org>
parents: 12583
diff changeset
2705 {
25662
0a7261c1d487 Use XCAR, XCDR, and XFLOAT_DATA instead of explicit member access.
Ken Raeburn <raeburn@raeburn.org>
parents: 25314
diff changeset
2706 args[0] = XCAR (globals);
13444
17f3f1c1bdf8 (run-hook-with-args, run-hook-list-with-args): Safeguard
Richard M. Stallman <rms@gnu.org>
parents: 13314
diff changeset
2707 /* 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
2708 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
2709 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
2710 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
2711 }
14721fd8dcc1 (Frun_hook_with_args): New C function, formerly in subr.el.
Karl Heuer <kwzh@gnu.org>
parents: 12583
diff changeset
2712 }
14721fd8dcc1 (Frun_hook_with_args): New C function, formerly in subr.el.
Karl Heuer <kwzh@gnu.org>
parents: 12583
diff changeset
2713 else
14721fd8dcc1 (Frun_hook_with_args): New C function, formerly in subr.el.
Karl Heuer <kwzh@gnu.org>
parents: 12583
diff changeset
2714 {
25662
0a7261c1d487 Use XCAR, XCDR, and XFLOAT_DATA instead of explicit member access.
Ken Raeburn <raeburn@raeburn.org>
parents: 25314
diff changeset
2715 args[0] = XCAR (val);
12732
981b924c832b Add Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success, Frun_hook_with_args_until_failure in terms of run_hook_with_args.
Simon Marshall <simon@gnu.org>
parents: 12711
diff changeset
2716 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
2717 }
14721fd8dcc1 (Frun_hook_with_args): New C function, formerly in subr.el.
Karl Heuer <kwzh@gnu.org>
parents: 12583
diff changeset
2718 }
12788
eceb3f25e115 (run_hook_with_args): Move the GCPRO2; add UNGCPRO.
Richard M. Stallman <rms@gnu.org>
parents: 12781
diff changeset
2719
eceb3f25e115 (run_hook_with_args): Move the GCPRO2; add UNGCPRO.
Richard M. Stallman <rms@gnu.org>
parents: 12781
diff changeset
2720 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
2721 return ret;
12654
14721fd8dcc1 (Frun_hook_with_args): New C function, formerly in subr.el.
Karl Heuer <kwzh@gnu.org>
parents: 12583
diff changeset
2722 }
14721fd8dcc1 (Frun_hook_with_args): New C function, formerly in subr.el.
Karl Heuer <kwzh@gnu.org>
parents: 12583
diff changeset
2723 }
12781
2a8036f0b585 (run_hook_with_args): Add gcpros.
Richard M. Stallman <rms@gnu.org>
parents: 12732
diff changeset
2724
2a8036f0b585 (run_hook_with_args): Add gcpros.
Richard M. Stallman <rms@gnu.org>
parents: 12732
diff changeset
2725 /* 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
2726 present value of that symbol.
2a8036f0b585 (run_hook_with_args): Add gcpros.
Richard M. Stallman <rms@gnu.org>
parents: 12732
diff changeset
2727 Call each element of FUNLIST,
2a8036f0b585 (run_hook_with_args): Add gcpros.
Richard M. Stallman <rms@gnu.org>
parents: 12732
diff changeset
2728 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
2729 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
2730 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
2731
2a8036f0b585 (run_hook_with_args): Add gcpros.
Richard M. Stallman <rms@gnu.org>
parents: 12732
diff changeset
2732 Lisp_Object
2a8036f0b585 (run_hook_with_args): Add gcpros.
Richard M. Stallman <rms@gnu.org>
parents: 12732
diff changeset
2733 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
2734 Lisp_Object funlist;
2a8036f0b585 (run_hook_with_args): Add gcpros.
Richard M. Stallman <rms@gnu.org>
parents: 12732
diff changeset
2735 int nargs;
2a8036f0b585 (run_hook_with_args): Add gcpros.
Richard M. Stallman <rms@gnu.org>
parents: 12732
diff changeset
2736 Lisp_Object *args;
2a8036f0b585 (run_hook_with_args): Add gcpros.
Richard M. Stallman <rms@gnu.org>
parents: 12732
diff changeset
2737 {
2a8036f0b585 (run_hook_with_args): Add gcpros.
Richard M. Stallman <rms@gnu.org>
parents: 12732
diff changeset
2738 Lisp_Object sym;
2a8036f0b585 (run_hook_with_args): Add gcpros.
Richard M. Stallman <rms@gnu.org>
parents: 12732
diff changeset
2739 Lisp_Object val;
25257
0be923a80096 (run_hook_list_with_args): Gcpro `globals'.
Karl Heuer <kwzh@gnu.org>
parents: 25008
diff changeset
2740 Lisp_Object globals;
0be923a80096 (run_hook_list_with_args): Gcpro `globals'.
Karl Heuer <kwzh@gnu.org>
parents: 25008
diff changeset
2741 struct gcpro gcpro1, gcpro2, gcpro3;
12781
2a8036f0b585 (run_hook_with_args): Add gcpros.
Richard M. Stallman <rms@gnu.org>
parents: 12732
diff changeset
2742
2a8036f0b585 (run_hook_with_args): Add gcpros.
Richard M. Stallman <rms@gnu.org>
parents: 12732
diff changeset
2743 sym = args[0];
25257
0be923a80096 (run_hook_list_with_args): Gcpro `globals'.
Karl Heuer <kwzh@gnu.org>
parents: 25008
diff changeset
2744 globals = Qnil;
0be923a80096 (run_hook_list_with_args): Gcpro `globals'.
Karl Heuer <kwzh@gnu.org>
parents: 25008
diff changeset
2745 GCPRO3 (sym, val, globals);
12781
2a8036f0b585 (run_hook_with_args): Add gcpros.
Richard M. Stallman <rms@gnu.org>
parents: 12732
diff changeset
2746
25662
0a7261c1d487 Use XCAR, XCDR, and XFLOAT_DATA instead of explicit member access.
Ken Raeburn <raeburn@raeburn.org>
parents: 25314
diff changeset
2747 for (val = funlist; CONSP (val); val = XCDR (val))
12781
2a8036f0b585 (run_hook_with_args): Add gcpros.
Richard M. Stallman <rms@gnu.org>
parents: 12732
diff changeset
2748 {
25662
0a7261c1d487 Use XCAR, XCDR, and XFLOAT_DATA instead of explicit member access.
Ken Raeburn <raeburn@raeburn.org>
parents: 25314
diff changeset
2749 if (EQ (XCAR (val), Qt))
12781
2a8036f0b585 (run_hook_with_args): Add gcpros.
Richard M. Stallman <rms@gnu.org>
parents: 12732
diff changeset
2750 {
2a8036f0b585 (run_hook_with_args): Add gcpros.
Richard M. Stallman <rms@gnu.org>
parents: 12732
diff changeset
2751 /* 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
2752 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
2753
2a8036f0b585 (run_hook_with_args): Add gcpros.
Richard M. Stallman <rms@gnu.org>
parents: 12732
diff changeset
2754 for (globals = Fdefault_value (sym);
2a8036f0b585 (run_hook_with_args): Add gcpros.
Richard M. Stallman <rms@gnu.org>
parents: 12732
diff changeset
2755 CONSP (globals);
25662
0a7261c1d487 Use XCAR, XCDR, and XFLOAT_DATA instead of explicit member access.
Ken Raeburn <raeburn@raeburn.org>
parents: 25314
diff changeset
2756 globals = XCDR (globals))
12781
2a8036f0b585 (run_hook_with_args): Add gcpros.
Richard M. Stallman <rms@gnu.org>
parents: 12732
diff changeset
2757 {
25662
0a7261c1d487 Use XCAR, XCDR, and XFLOAT_DATA instead of explicit member access.
Ken Raeburn <raeburn@raeburn.org>
parents: 25314
diff changeset
2758 args[0] = XCAR (globals);
13444
17f3f1c1bdf8 (run-hook-with-args, run-hook-list-with-args): Safeguard
Richard M. Stallman <rms@gnu.org>
parents: 13314
diff changeset
2759 /* 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
2760 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
2761 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
2762 Ffuncall (nargs, args);
12781
2a8036f0b585 (run_hook_with_args): Add gcpros.
Richard M. Stallman <rms@gnu.org>
parents: 12732
diff changeset
2763 }
2a8036f0b585 (run_hook_with_args): Add gcpros.
Richard M. Stallman <rms@gnu.org>
parents: 12732
diff changeset
2764 }
2a8036f0b585 (run_hook_with_args): Add gcpros.
Richard M. Stallman <rms@gnu.org>
parents: 12732
diff changeset
2765 else
2a8036f0b585 (run_hook_with_args): Add gcpros.
Richard M. Stallman <rms@gnu.org>
parents: 12732
diff changeset
2766 {
25662
0a7261c1d487 Use XCAR, XCDR, and XFLOAT_DATA instead of explicit member access.
Ken Raeburn <raeburn@raeburn.org>
parents: 25314
diff changeset
2767 args[0] = XCAR (val);
12781
2a8036f0b585 (run_hook_with_args): Add gcpros.
Richard M. Stallman <rms@gnu.org>
parents: 12732
diff changeset
2768 Ffuncall (nargs, args);
2a8036f0b585 (run_hook_with_args): Add gcpros.
Richard M. Stallman <rms@gnu.org>
parents: 12732
diff changeset
2769 }
2a8036f0b585 (run_hook_with_args): Add gcpros.
Richard M. Stallman <rms@gnu.org>
parents: 12732
diff changeset
2770 }
2a8036f0b585 (run_hook_with_args): Add gcpros.
Richard M. Stallman <rms@gnu.org>
parents: 12732
diff changeset
2771 UNGCPRO;
2a8036f0b585 (run_hook_with_args): Add gcpros.
Richard M. Stallman <rms@gnu.org>
parents: 12732
diff changeset
2772 return Qnil;
2a8036f0b585 (run_hook_with_args): Add gcpros.
Richard M. Stallman <rms@gnu.org>
parents: 12732
diff changeset
2773 }
13103
a537b52d6668 (run_hook_with_args_2): New function.
Richard M. Stallman <rms@gnu.org>
parents: 12788
diff changeset
2774
a537b52d6668 (run_hook_with_args_2): New function.
Richard M. Stallman <rms@gnu.org>
parents: 12788
diff changeset
2775 /* 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
2776
a537b52d6668 (run_hook_with_args_2): New function.
Richard M. Stallman <rms@gnu.org>
parents: 12788
diff changeset
2777 void
a537b52d6668 (run_hook_with_args_2): New function.
Richard M. Stallman <rms@gnu.org>
parents: 12788
diff changeset
2778 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
2779 Lisp_Object hook, arg1, arg2;
a537b52d6668 (run_hook_with_args_2): New function.
Richard M. Stallman <rms@gnu.org>
parents: 12788
diff changeset
2780 {
a537b52d6668 (run_hook_with_args_2): New function.
Richard M. Stallman <rms@gnu.org>
parents: 12788
diff changeset
2781 Lisp_Object temp[3];
a537b52d6668 (run_hook_with_args_2): New function.
Richard M. Stallman <rms@gnu.org>
parents: 12788
diff changeset
2782 temp[0] = hook;
a537b52d6668 (run_hook_with_args_2): New function.
Richard M. Stallman <rms@gnu.org>
parents: 12788
diff changeset
2783 temp[1] = arg1;
a537b52d6668 (run_hook_with_args_2): New function.
Richard M. Stallman <rms@gnu.org>
parents: 12788
diff changeset
2784 temp[2] = arg2;
a537b52d6668 (run_hook_with_args_2): New function.
Richard M. Stallman <rms@gnu.org>
parents: 12788
diff changeset
2785
a537b52d6668 (run_hook_with_args_2): New function.
Richard M. Stallman <rms@gnu.org>
parents: 12788
diff changeset
2786 Frun_hook_with_args (3, temp);
a537b52d6668 (run_hook_with_args_2): New function.
Richard M. Stallman <rms@gnu.org>
parents: 12788
diff changeset
2787 }
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
2788
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2789 /* Apply fn to arg */
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2790 Lisp_Object
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2791 apply1 (fn, arg)
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2792 Lisp_Object fn, arg;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2793 {
323
9c2a1e7bd9f1 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 295
diff changeset
2794 struct gcpro gcpro1;
9c2a1e7bd9f1 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 295
diff changeset
2795
9c2a1e7bd9f1 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 295
diff changeset
2796 GCPRO1 (fn);
485
8c615e453683 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 431
diff changeset
2797 if (NILP (arg))
323
9c2a1e7bd9f1 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 295
diff changeset
2798 RETURN_UNGCPRO (Ffuncall (1, &fn));
9c2a1e7bd9f1 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 295
diff changeset
2799 gcpro1.nvars = 2;
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2800 #ifdef NO_ARG_ARRAY
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2801 {
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2802 Lisp_Object args[2];
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2803 args[0] = fn;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2804 args[1] = arg;
323
9c2a1e7bd9f1 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 295
diff changeset
2805 gcpro1.var = args;
9c2a1e7bd9f1 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 295
diff changeset
2806 RETURN_UNGCPRO (Fapply (2, args));
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2807 }
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2808 #else /* not NO_ARG_ARRAY */
323
9c2a1e7bd9f1 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 295
diff changeset
2809 RETURN_UNGCPRO (Fapply (2, &fn));
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2810 #endif /* not NO_ARG_ARRAY */
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2811 }
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2812
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2813 /* Call function fn on no arguments */
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2814 Lisp_Object
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2815 call0 (fn)
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2816 Lisp_Object fn;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2817 {
323
9c2a1e7bd9f1 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 295
diff changeset
2818 struct gcpro gcpro1;
9c2a1e7bd9f1 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 295
diff changeset
2819
9c2a1e7bd9f1 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 295
diff changeset
2820 GCPRO1 (fn);
9c2a1e7bd9f1 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 295
diff changeset
2821 RETURN_UNGCPRO (Ffuncall (1, &fn));
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2822 }
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2823
3703
6930e8f81c88 (call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 3598
diff changeset
2824 /* Call function fn with 1 argument arg1 */
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2825 /* ARGSUSED */
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2826 Lisp_Object
3703
6930e8f81c88 (call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 3598
diff changeset
2827 call1 (fn, arg1)
6930e8f81c88 (call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 3598
diff changeset
2828 Lisp_Object fn, arg1;
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2829 {
323
9c2a1e7bd9f1 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 295
diff changeset
2830 struct gcpro gcpro1;
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2831 #ifdef NO_ARG_ARRAY
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 49105
diff changeset
2832 Lisp_Object args[2];
323
9c2a1e7bd9f1 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 295
diff changeset
2833
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2834 args[0] = fn;
3703
6930e8f81c88 (call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 3598
diff changeset
2835 args[1] = arg1;
323
9c2a1e7bd9f1 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 295
diff changeset
2836 GCPRO1 (args[0]);
9c2a1e7bd9f1 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 295
diff changeset
2837 gcpro1.nvars = 2;
9c2a1e7bd9f1 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 295
diff changeset
2838 RETURN_UNGCPRO (Ffuncall (2, args));
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2839 #else /* not NO_ARG_ARRAY */
323
9c2a1e7bd9f1 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 295
diff changeset
2840 GCPRO1 (fn);
9c2a1e7bd9f1 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 295
diff changeset
2841 gcpro1.nvars = 2;
9c2a1e7bd9f1 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 295
diff changeset
2842 RETURN_UNGCPRO (Ffuncall (2, &fn));
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2843 #endif /* not NO_ARG_ARRAY */
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2844 }
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2845
3703
6930e8f81c88 (call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 3598
diff changeset
2846 /* Call function fn with 2 arguments arg1, arg2 */
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2847 /* ARGSUSED */
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2848 Lisp_Object
3703
6930e8f81c88 (call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 3598
diff changeset
2849 call2 (fn, arg1, arg2)
6930e8f81c88 (call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 3598
diff changeset
2850 Lisp_Object fn, arg1, arg2;
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2851 {
323
9c2a1e7bd9f1 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 295
diff changeset
2852 struct gcpro gcpro1;
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2853 #ifdef NO_ARG_ARRAY
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2854 Lisp_Object args[3];
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2855 args[0] = fn;
3703
6930e8f81c88 (call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 3598
diff changeset
2856 args[1] = arg1;
6930e8f81c88 (call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 3598
diff changeset
2857 args[2] = arg2;
323
9c2a1e7bd9f1 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 295
diff changeset
2858 GCPRO1 (args[0]);
9c2a1e7bd9f1 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 295
diff changeset
2859 gcpro1.nvars = 3;
9c2a1e7bd9f1 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 295
diff changeset
2860 RETURN_UNGCPRO (Ffuncall (3, args));
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2861 #else /* not NO_ARG_ARRAY */
323
9c2a1e7bd9f1 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 295
diff changeset
2862 GCPRO1 (fn);
9c2a1e7bd9f1 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 295
diff changeset
2863 gcpro1.nvars = 3;
9c2a1e7bd9f1 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 295
diff changeset
2864 RETURN_UNGCPRO (Ffuncall (3, &fn));
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2865 #endif /* not NO_ARG_ARRAY */
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2866 }
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2867
3703
6930e8f81c88 (call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 3598
diff changeset
2868 /* Call function fn with 3 arguments arg1, arg2, arg3 */
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2869 /* ARGSUSED */
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2870 Lisp_Object
3703
6930e8f81c88 (call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 3598
diff changeset
2871 call3 (fn, arg1, arg2, arg3)
6930e8f81c88 (call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 3598
diff changeset
2872 Lisp_Object fn, arg1, arg2, arg3;
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2873 {
323
9c2a1e7bd9f1 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 295
diff changeset
2874 struct gcpro gcpro1;
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2875 #ifdef NO_ARG_ARRAY
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2876 Lisp_Object args[4];
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2877 args[0] = fn;
3703
6930e8f81c88 (call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 3598
diff changeset
2878 args[1] = arg1;
6930e8f81c88 (call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 3598
diff changeset
2879 args[2] = arg2;
6930e8f81c88 (call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 3598
diff changeset
2880 args[3] = arg3;
323
9c2a1e7bd9f1 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 295
diff changeset
2881 GCPRO1 (args[0]);
9c2a1e7bd9f1 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 295
diff changeset
2882 gcpro1.nvars = 4;
9c2a1e7bd9f1 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 295
diff changeset
2883 RETURN_UNGCPRO (Ffuncall (4, args));
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2884 #else /* not NO_ARG_ARRAY */
323
9c2a1e7bd9f1 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 295
diff changeset
2885 GCPRO1 (fn);
9c2a1e7bd9f1 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 295
diff changeset
2886 gcpro1.nvars = 4;
9c2a1e7bd9f1 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 295
diff changeset
2887 RETURN_UNGCPRO (Ffuncall (4, &fn));
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2888 #endif /* not NO_ARG_ARRAY */
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2889 }
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2890
3703
6930e8f81c88 (call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 3598
diff changeset
2891 /* 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
2892 /* ARGSUSED */
3c4b5489d2b4 * fileio.c (Frename_file): Pass all arguments to the file name handler.
Jim Blandy <jimb@redhat.com>
parents: 2961
diff changeset
2893 Lisp_Object
3703
6930e8f81c88 (call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 3598
diff changeset
2894 call4 (fn, arg1, arg2, arg3, arg4)
6930e8f81c88 (call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 3598
diff changeset
2895 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
2896 {
3c4b5489d2b4 * fileio.c (Frename_file): Pass all arguments to the file name handler.
Jim Blandy <jimb@redhat.com>
parents: 2961
diff changeset
2897 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
2898 #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
2899 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
2900 args[0] = fn;
3703
6930e8f81c88 (call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 3598
diff changeset
2901 args[1] = arg1;
6930e8f81c88 (call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 3598
diff changeset
2902 args[2] = arg2;
6930e8f81c88 (call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 3598
diff changeset
2903 args[3] = arg3;
6930e8f81c88 (call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 3598
diff changeset
2904 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
2905 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
2906 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
2907 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
2908 #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
2909 GCPRO1 (fn);
3c4b5489d2b4 * fileio.c (Frename_file): Pass all arguments to the file name handler.
Jim Blandy <jimb@redhat.com>
parents: 2961
diff changeset
2910 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
2911 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
2912 #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
2913 }
3c4b5489d2b4 * fileio.c (Frename_file): Pass all arguments to the file name handler.
Jim Blandy <jimb@redhat.com>
parents: 2961
diff changeset
2914
3703
6930e8f81c88 (call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 3598
diff changeset
2915 /* 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
2916 /* ARGSUSED */
6930e8f81c88 (call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 3598
diff changeset
2917 Lisp_Object
6930e8f81c88 (call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 3598
diff changeset
2918 call5 (fn, arg1, arg2, arg3, arg4, arg5)
6930e8f81c88 (call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 3598
diff changeset
2919 Lisp_Object fn, arg1, arg2, arg3, arg4, arg5;
6930e8f81c88 (call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 3598
diff changeset
2920 {
6930e8f81c88 (call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 3598
diff changeset
2921 struct gcpro gcpro1;
6930e8f81c88 (call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 3598
diff changeset
2922 #ifdef NO_ARG_ARRAY
6930e8f81c88 (call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 3598
diff changeset
2923 Lisp_Object args[6];
6930e8f81c88 (call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 3598
diff changeset
2924 args[0] = fn;
6930e8f81c88 (call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 3598
diff changeset
2925 args[1] = arg1;
6930e8f81c88 (call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 3598
diff changeset
2926 args[2] = arg2;
6930e8f81c88 (call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 3598
diff changeset
2927 args[3] = arg3;
6930e8f81c88 (call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 3598
diff changeset
2928 args[4] = arg4;
6930e8f81c88 (call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 3598
diff changeset
2929 args[5] = arg5;
6930e8f81c88 (call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 3598
diff changeset
2930 GCPRO1 (args[0]);
6930e8f81c88 (call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 3598
diff changeset
2931 gcpro1.nvars = 6;
6930e8f81c88 (call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 3598
diff changeset
2932 RETURN_UNGCPRO (Ffuncall (6, args));
6930e8f81c88 (call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 3598
diff changeset
2933 #else /* not NO_ARG_ARRAY */
6930e8f81c88 (call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 3598
diff changeset
2934 GCPRO1 (fn);
6930e8f81c88 (call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 3598
diff changeset
2935 gcpro1.nvars = 6;
6930e8f81c88 (call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 3598
diff changeset
2936 RETURN_UNGCPRO (Ffuncall (6, &fn));
6930e8f81c88 (call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 3598
diff changeset
2937 #endif /* not NO_ARG_ARRAY */
6930e8f81c88 (call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 3598
diff changeset
2938 }
6930e8f81c88 (call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 3598
diff changeset
2939
6930e8f81c88 (call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 3598
diff changeset
2940 /* 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
2941 /* ARGSUSED */
6930e8f81c88 (call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 3598
diff changeset
2942 Lisp_Object
6930e8f81c88 (call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 3598
diff changeset
2943 call6 (fn, arg1, arg2, arg3, arg4, arg5, arg6)
6930e8f81c88 (call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 3598
diff changeset
2944 Lisp_Object fn, arg1, arg2, arg3, arg4, arg5, arg6;
6930e8f81c88 (call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 3598
diff changeset
2945 {
6930e8f81c88 (call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 3598
diff changeset
2946 struct gcpro gcpro1;
6930e8f81c88 (call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 3598
diff changeset
2947 #ifdef NO_ARG_ARRAY
6930e8f81c88 (call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 3598
diff changeset
2948 Lisp_Object args[7];
6930e8f81c88 (call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 3598
diff changeset
2949 args[0] = fn;
6930e8f81c88 (call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 3598
diff changeset
2950 args[1] = arg1;
6930e8f81c88 (call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 3598
diff changeset
2951 args[2] = arg2;
6930e8f81c88 (call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 3598
diff changeset
2952 args[3] = arg3;
6930e8f81c88 (call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 3598
diff changeset
2953 args[4] = arg4;
6930e8f81c88 (call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 3598
diff changeset
2954 args[5] = arg5;
6930e8f81c88 (call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 3598
diff changeset
2955 args[6] = arg6;
6930e8f81c88 (call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 3598
diff changeset
2956 GCPRO1 (args[0]);
6930e8f81c88 (call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 3598
diff changeset
2957 gcpro1.nvars = 7;
6930e8f81c88 (call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 3598
diff changeset
2958 RETURN_UNGCPRO (Ffuncall (7, args));
6930e8f81c88 (call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 3598
diff changeset
2959 #else /* not NO_ARG_ARRAY */
6930e8f81c88 (call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 3598
diff changeset
2960 GCPRO1 (fn);
6930e8f81c88 (call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 3598
diff changeset
2961 gcpro1.nvars = 7;
6930e8f81c88 (call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 3598
diff changeset
2962 RETURN_UNGCPRO (Ffuncall (7, &fn));
6930e8f81c88 (call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 3598
diff changeset
2963 #endif /* not NO_ARG_ARRAY */
6930e8f81c88 (call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 3598
diff changeset
2964 }
6930e8f81c88 (call5, call6): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 3598
diff changeset
2965
53362
35a817bb4c0d Comment change.
Richard M. Stallman <rms@gnu.org>
parents: 52960
diff changeset
2966 /* The caller should GCPRO all the elements of ARGS. */
35a817bb4c0d Comment change.
Richard M. Stallman <rms@gnu.org>
parents: 52960
diff changeset
2967
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2968 DEFUN ("funcall", Ffuncall, Sfuncall, 1, MANY, 0,
40570
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
2969 doc: /* Call first argument as a function, passing remaining arguments to it.
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
2970 Return the value that function returns.
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
2971 Thus, (funcall 'cons 'x 'y) returns (x . y).
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
2972 usage: (funcall FUNCTION &rest ARGUMENTS) */)
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
2973 (nargs, args)
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2974 int nargs;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2975 Lisp_Object *args;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2976 {
71872
b20203b004f8 (Fthrow): Remove loop around Fsignal.
Kim F. Storm <storm@cua.dk>
parents: 71574
diff changeset
2977 Lisp_Object fun, original_fun;
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2978 Lisp_Object funcar;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2979 int numargs = nargs - 1;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2980 Lisp_Object lisp_numargs;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2981 Lisp_Object val;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2982 struct backtrace backtrace;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2983 register Lisp_Object *internal_args;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2984 register int i;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2985
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2986 QUIT;
66528
c9adaa704c22 (internal_lisp_condition_case): New function.
Richard M. Stallman <rms@gnu.org>
parents: 64770
diff changeset
2987 if ((consing_since_gc > gc_cons_threshold
c9adaa704c22 (internal_lisp_condition_case): New function.
Richard M. Stallman <rms@gnu.org>
parents: 64770
diff changeset
2988 && consing_since_gc > gc_relative_threshold)
c9adaa704c22 (internal_lisp_condition_case): New function.
Richard M. Stallman <rms@gnu.org>
parents: 64770
diff changeset
2989 ||
c9adaa704c22 (internal_lisp_condition_case): New function.
Richard M. Stallman <rms@gnu.org>
parents: 64770
diff changeset
2990 (!NILP (Vmemory_full) && consing_since_gc > memory_full_cons_threshold))
323
9c2a1e7bd9f1 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 295
diff changeset
2991 Fgarbage_collect ();
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2992
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2993 if (++lisp_eval_depth > max_lisp_eval_depth)
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2994 {
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2995 if (max_lisp_eval_depth < 100)
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2996 max_lisp_eval_depth = 100;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2997 if (lisp_eval_depth > max_lisp_eval_depth)
63697
9f617bb41e22 (Fdefvar, Fdefconst, Feval, Ffuncall): Follow error conventions.
Juanma Barranquero <lekktu@gmail.com>
parents: 63391
diff changeset
2998 error ("Lisp nesting exceeds `max-lisp-eval-depth'");
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2999 }
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3000
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3001 backtrace.next = backtrace_list;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3002 backtrace_list = &backtrace;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3003 backtrace.function = &args[0];
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3004 backtrace.args = &args[1];
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3005 backtrace.nargs = nargs - 1;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3006 backtrace.evalargs = 0;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3007 backtrace.debug_on_exit = 0;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3008
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3009 if (debug_on_next_call)
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3010 do_debug_on_call (Qlambda);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3011
61250
4c111b6f6378 (Ffuncall): Always call CHECK_CONS_LIST on entry.
Kim F. Storm <storm@cua.dk>
parents: 60418
diff changeset
3012 CHECK_CONS_LIST ();
4c111b6f6378 (Ffuncall): Always call CHECK_CONS_LIST on entry.
Kim F. Storm <storm@cua.dk>
parents: 60418
diff changeset
3013
71872
b20203b004f8 (Fthrow): Remove loop around Fsignal.
Kim F. Storm <storm@cua.dk>
parents: 71574
diff changeset
3014 original_fun = args[0];
b20203b004f8 (Fthrow): Remove loop around Fsignal.
Kim F. Storm <storm@cua.dk>
parents: 71574
diff changeset
3015
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3016 retry:
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3017
71872
b20203b004f8 (Fthrow): Remove loop around Fsignal.
Kim F. Storm <storm@cua.dk>
parents: 71574
diff changeset
3018 /* Optimize for no indirection. */
b20203b004f8 (Fthrow): Remove loop around Fsignal.
Kim F. Storm <storm@cua.dk>
parents: 71574
diff changeset
3019 fun = original_fun;
b20203b004f8 (Fthrow): Remove loop around Fsignal.
Kim F. Storm <storm@cua.dk>
parents: 71574
diff changeset
3020 if (SYMBOLP (fun) && !EQ (fun, Qunbound)
b20203b004f8 (Fthrow): Remove loop around Fsignal.
Kim F. Storm <storm@cua.dk>
parents: 71574
diff changeset
3021 && (fun = XSYMBOL (fun)->function, SYMBOLP (fun)))
b20203b004f8 (Fthrow): Remove loop around Fsignal.
Kim F. Storm <storm@cua.dk>
parents: 71574
diff changeset
3022 fun = indirect_function (fun);
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3023
9148
e7ab930bb7eb (Fprogn, Finteractive_p, Fuser_variable_p, FletX, Flet, Fmacroexpand,
Karl Heuer <kwzh@gnu.org>
parents: 8980
diff changeset
3024 if (SUBRP (fun))
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3025 {
61250
4c111b6f6378 (Ffuncall): Always call CHECK_CONS_LIST on entry.
Kim F. Storm <storm@cua.dk>
parents: 60418
diff changeset
3026 if (numargs < XSUBR (fun)->min_args
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3027 || (XSUBR (fun)->max_args >= 0 && XSUBR (fun)->max_args < numargs))
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3028 {
9306
ac852c183fa1 (Feval, Ffuncall, funcall_lambda, Fbacktrace): Don't use XFASTINT as an
Karl Heuer <kwzh@gnu.org>
parents: 9148
diff changeset
3029 XSETFASTINT (lisp_numargs, numargs);
71976
66a9a086ddbb * eval.c (xsignal): New func. Like Fsignal, but marked no-return.
Kim F. Storm <storm@cua.dk>
parents: 71872
diff changeset
3030 xsignal2 (Qwrong_number_of_arguments, original_fun, lisp_numargs);
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3031 }
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3032
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3033 if (XSUBR (fun)->max_args == UNEVALLED)
71976
66a9a086ddbb * eval.c (xsignal): New func. Like Fsignal, but marked no-return.
Kim F. Storm <storm@cua.dk>
parents: 71872
diff changeset
3034 xsignal1 (Qinvalid_function, original_fun);
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3035
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3036 if (XSUBR (fun)->max_args == MANY)
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3037 {
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3038 val = (*XSUBR (fun)->function) (numargs, args + 1);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3039 goto done;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3040 }
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3041
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3042 if (XSUBR (fun)->max_args > numargs)
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3043 {
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3044 internal_args = (Lisp_Object *) alloca (XSUBR (fun)->max_args * sizeof (Lisp_Object));
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3045 bcopy (args + 1, internal_args, numargs * sizeof (Lisp_Object));
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3046 for (i = numargs; i < XSUBR (fun)->max_args; i++)
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3047 internal_args[i] = Qnil;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3048 }
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3049 else
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3050 internal_args = args + 1;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3051 switch (XSUBR (fun)->max_args)
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3052 {
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3053 case 0:
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3054 val = (*XSUBR (fun)->function) ();
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3055 goto done;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3056 case 1:
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3057 val = (*XSUBR (fun)->function) (internal_args[0]);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3058 goto done;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3059 case 2:
64499
34bf5187c5aa (Fprog2, Fcalled_interactively_p), (syms_of_eval) <debug-on-quit>: Doc fixes.
Juanma Barranquero <lekktu@gmail.com>
parents: 64271
diff changeset
3060 val = (*XSUBR (fun)->function) (internal_args[0], internal_args[1]);
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3061 goto done;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3062 case 3:
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3063 val = (*XSUBR (fun)->function) (internal_args[0], internal_args[1],
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3064 internal_args[2]);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3065 goto done;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3066 case 4:
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3067 val = (*XSUBR (fun)->function) (internal_args[0], internal_args[1],
64499
34bf5187c5aa (Fprog2, Fcalled_interactively_p), (syms_of_eval) <debug-on-quit>: Doc fixes.
Juanma Barranquero <lekktu@gmail.com>
parents: 64271
diff changeset
3068 internal_args[2], internal_args[3]);
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3069 goto done;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3070 case 5:
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3071 val = (*XSUBR (fun)->function) (internal_args[0], internal_args[1],
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3072 internal_args[2], internal_args[3],
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3073 internal_args[4]);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3074 goto done;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3075 case 6:
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3076 val = (*XSUBR (fun)->function) (internal_args[0], internal_args[1],
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3077 internal_args[2], internal_args[3],
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3078 internal_args[4], internal_args[5]);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3079 goto done;
863
427299469901 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 753
diff changeset
3080 case 7:
427299469901 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 753
diff changeset
3081 val = (*XSUBR (fun)->function) (internal_args[0], internal_args[1],
427299469901 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 753
diff changeset
3082 internal_args[2], internal_args[3],
427299469901 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 753
diff changeset
3083 internal_args[4], internal_args[5],
427299469901 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 753
diff changeset
3084 internal_args[6]);
427299469901 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 753
diff changeset
3085 goto done;
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3086
19544
fc0bb24597ba (Feval): Handle a subr which takes 8 arguments.
Kenichi Handa <handa@m17n.org>
parents: 19237
diff changeset
3087 case 8:
fc0bb24597ba (Feval): Handle a subr which takes 8 arguments.
Kenichi Handa <handa@m17n.org>
parents: 19237
diff changeset
3088 val = (*XSUBR (fun)->function) (internal_args[0], internal_args[1],
fc0bb24597ba (Feval): Handle a subr which takes 8 arguments.
Kenichi Handa <handa@m17n.org>
parents: 19237
diff changeset
3089 internal_args[2], internal_args[3],
fc0bb24597ba (Feval): Handle a subr which takes 8 arguments.
Kenichi Handa <handa@m17n.org>
parents: 19237
diff changeset
3090 internal_args[4], internal_args[5],
fc0bb24597ba (Feval): Handle a subr which takes 8 arguments.
Kenichi Handa <handa@m17n.org>
parents: 19237
diff changeset
3091 internal_args[6], internal_args[7]);
fc0bb24597ba (Feval): Handle a subr which takes 8 arguments.
Kenichi Handa <handa@m17n.org>
parents: 19237
diff changeset
3092 goto done;
fc0bb24597ba (Feval): Handle a subr which takes 8 arguments.
Kenichi Handa <handa@m17n.org>
parents: 19237
diff changeset
3093
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3094 default:
573
f0ffd1764382 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 515
diff changeset
3095
19544
fc0bb24597ba (Feval): Handle a subr which takes 8 arguments.
Kenichi Handa <handa@m17n.org>
parents: 19237
diff changeset
3096 /* If a subr takes more than 8 arguments without using MANY
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 49105
diff changeset
3097 or UNEVALLED, we need to extend this function to support it.
573
f0ffd1764382 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 515
diff changeset
3098 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
3099 abort ();
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3100 }
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3101 }
9148
e7ab930bb7eb (Fprogn, Finteractive_p, Fuser_variable_p, FletX, Flet, Fmacroexpand,
Karl Heuer <kwzh@gnu.org>
parents: 8980
diff changeset
3102 if (COMPILEDP (fun))
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3103 val = funcall_lambda (fun, numargs, args + 1);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3104 else
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3105 {
71872
b20203b004f8 (Fthrow): Remove loop around Fsignal.
Kim F. Storm <storm@cua.dk>
parents: 71574
diff changeset
3106 if (EQ (fun, Qunbound))
71976
66a9a086ddbb * eval.c (xsignal): New func. Like Fsignal, but marked no-return.
Kim F. Storm <storm@cua.dk>
parents: 71872
diff changeset
3107 xsignal1 (Qvoid_function, original_fun);
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3108 if (!CONSP (fun))
71976
66a9a086ddbb * eval.c (xsignal): New func. Like Fsignal, but marked no-return.
Kim F. Storm <storm@cua.dk>
parents: 71872
diff changeset
3109 xsignal1 (Qinvalid_function, original_fun);
66a9a086ddbb * eval.c (xsignal): New func. Like Fsignal, but marked no-return.
Kim F. Storm <storm@cua.dk>
parents: 71872
diff changeset
3110 funcar = XCAR (fun);
9148
e7ab930bb7eb (Fprogn, Finteractive_p, Fuser_variable_p, FletX, Flet, Fmacroexpand,
Karl Heuer <kwzh@gnu.org>
parents: 8980
diff changeset
3111 if (!SYMBOLP (funcar))
71976
66a9a086ddbb * eval.c (xsignal): New func. Like Fsignal, but marked no-return.
Kim F. Storm <storm@cua.dk>
parents: 71872
diff changeset
3112 xsignal1 (Qinvalid_function, original_fun);
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3113 if (EQ (funcar, Qlambda))
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3114 val = funcall_lambda (fun, numargs, args + 1);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3115 else if (EQ (funcar, Qautoload))
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3116 {
71872
b20203b004f8 (Fthrow): Remove loop around Fsignal.
Kim F. Storm <storm@cua.dk>
parents: 71574
diff changeset
3117 do_autoload (fun, original_fun);
61250
4c111b6f6378 (Ffuncall): Always call CHECK_CONS_LIST on entry.
Kim F. Storm <storm@cua.dk>
parents: 60418
diff changeset
3118 CHECK_CONS_LIST ();
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3119 goto retry;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3120 }
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3121 else
71976
66a9a086ddbb * eval.c (xsignal): New func. Like Fsignal, but marked no-return.
Kim F. Storm <storm@cua.dk>
parents: 71872
diff changeset
3122 xsignal1 (Qinvalid_function, original_fun);
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3123 }
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3124 done:
60418
887436be5f78 (unwind_to_catch): Use UNBLOCK_INPUT_TO.
Richard M. Stallman <rms@gnu.org>
parents: 59953
diff changeset
3125 CHECK_CONS_LIST ();
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3126 lisp_eval_depth--;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3127 if (backtrace.debug_on_exit)
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3128 val = call_debugger (Fcons (Qexit, Fcons (val, Qnil)));
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3129 backtrace_list = backtrace.next;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3130 return val;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3131 }
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3132
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3133 Lisp_Object
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3134 apply_lambda (fun, args, eval_flag)
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3135 Lisp_Object fun, args;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3136 int eval_flag;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3137 {
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3138 Lisp_Object args_left;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3139 Lisp_Object numargs;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3140 register Lisp_Object *arg_vector;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3141 struct gcpro gcpro1, gcpro2, gcpro3;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3142 register int i;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3143 register Lisp_Object tem;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3144
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3145 numargs = Flength (args);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3146 arg_vector = (Lisp_Object *) alloca (XINT (numargs) * sizeof (Lisp_Object));
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3147 args_left = args;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3148
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3149 GCPRO3 (*arg_vector, args_left, fun);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3150 gcpro1.nvars = 0;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3151
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3152 for (i = 0; i < XINT (numargs);)
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3153 {
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3154 tem = Fcar (args_left), args_left = Fcdr (args_left);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3155 if (eval_flag) tem = Feval (tem);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3156 arg_vector[i++] = tem;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3157 gcpro1.nvars = i;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3158 }
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3159
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3160 UNGCPRO;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3161
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3162 if (eval_flag)
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3163 {
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3164 backtrace_list->args = arg_vector;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3165 backtrace_list->nargs = i;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3166 }
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3167 backtrace_list->evalargs = 0;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3168 tem = funcall_lambda (fun, XINT (numargs), arg_vector);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3169
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3170 /* Do the debug-on-exit now, while arg_vector still exists. */
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3171 if (backtrace_list->debug_on_exit)
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3172 tem = call_debugger (Fcons (Qexit, Fcons (tem, Qnil)));
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3173 /* Don't do it again when we return to eval. */
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3174 backtrace_list->debug_on_exit = 0;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3175 return tem;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3176 }
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3177
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3178 /* Apply a Lisp function FUN to the NARGS evaluated arguments in ARG_VECTOR
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3179 and return the result of evaluation.
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3180 FUN must be either a lambda-expression or a compiled-code object. */
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3181
41114
242c6928accc (max_specpdl_size, max_lisp_eval_depth): Use EMACS_INT.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 41029
diff changeset
3182 static Lisp_Object
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3183 funcall_lambda (fun, nargs, arg_vector)
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3184 Lisp_Object fun;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3185 int nargs;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3186 register Lisp_Object *arg_vector;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3187 {
27781
f84c7b8308c5 (funcall_lambda): Don't bind Qmocklisp_arguments unless
Gerd Moellmann <gerd@gnu.org>
parents: 27704
diff changeset
3188 Lisp_Object val, syms_left, next;
46293
1fb8f75062c6 Use macro SPECPDL_INDEX.
Juanma Barranquero <lekktu@gmail.com>
parents: 46198
diff changeset
3189 int count = SPECPDL_INDEX ();
27781
f84c7b8308c5 (funcall_lambda): Don't bind Qmocklisp_arguments unless
Gerd Moellmann <gerd@gnu.org>
parents: 27704
diff changeset
3190 int i, optional, rest;
f84c7b8308c5 (funcall_lambda): Don't bind Qmocklisp_arguments unless
Gerd Moellmann <gerd@gnu.org>
parents: 27704
diff changeset
3191
9148
e7ab930bb7eb (Fprogn, Finteractive_p, Fuser_variable_p, FletX, Flet, Fmacroexpand,
Karl Heuer <kwzh@gnu.org>
parents: 8980
diff changeset
3192 if (CONSP (fun))
27781
f84c7b8308c5 (funcall_lambda): Don't bind Qmocklisp_arguments unless
Gerd Moellmann <gerd@gnu.org>
parents: 27704
diff changeset
3193 {
f84c7b8308c5 (funcall_lambda): Don't bind Qmocklisp_arguments unless
Gerd Moellmann <gerd@gnu.org>
parents: 27704
diff changeset
3194 syms_left = XCDR (fun);
f84c7b8308c5 (funcall_lambda): Don't bind Qmocklisp_arguments unless
Gerd Moellmann <gerd@gnu.org>
parents: 27704
diff changeset
3195 if (CONSP (syms_left))
f84c7b8308c5 (funcall_lambda): Don't bind Qmocklisp_arguments unless
Gerd Moellmann <gerd@gnu.org>
parents: 27704
diff changeset
3196 syms_left = XCAR (syms_left);
f84c7b8308c5 (funcall_lambda): Don't bind Qmocklisp_arguments unless
Gerd Moellmann <gerd@gnu.org>
parents: 27704
diff changeset
3197 else
71976
66a9a086ddbb * eval.c (xsignal): New func. Like Fsignal, but marked no-return.
Kim F. Storm <storm@cua.dk>
parents: 71872
diff changeset
3198 xsignal1 (Qinvalid_function, fun);
27781
f84c7b8308c5 (funcall_lambda): Don't bind Qmocklisp_arguments unless
Gerd Moellmann <gerd@gnu.org>
parents: 27704
diff changeset
3199 }
9148
e7ab930bb7eb (Fprogn, Finteractive_p, Fuser_variable_p, FletX, Flet, Fmacroexpand,
Karl Heuer <kwzh@gnu.org>
parents: 8980
diff changeset
3200 else if (COMPILEDP (fun))
41597
b28d5d866500 Use AREF and ASIZE.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 41114
diff changeset
3201 syms_left = AREF (fun, COMPILED_ARGLIST);
27781
f84c7b8308c5 (funcall_lambda): Don't bind Qmocklisp_arguments unless
Gerd Moellmann <gerd@gnu.org>
parents: 27704
diff changeset
3202 else
f84c7b8308c5 (funcall_lambda): Don't bind Qmocklisp_arguments unless
Gerd Moellmann <gerd@gnu.org>
parents: 27704
diff changeset
3203 abort ();
f84c7b8308c5 (funcall_lambda): Don't bind Qmocklisp_arguments unless
Gerd Moellmann <gerd@gnu.org>
parents: 27704
diff changeset
3204
f84c7b8308c5 (funcall_lambda): Don't bind Qmocklisp_arguments unless
Gerd Moellmann <gerd@gnu.org>
parents: 27704
diff changeset
3205 i = optional = rest = 0;
f84c7b8308c5 (funcall_lambda): Don't bind Qmocklisp_arguments unless
Gerd Moellmann <gerd@gnu.org>
parents: 27704
diff changeset
3206 for (; CONSP (syms_left); syms_left = XCDR (syms_left))
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3207 {
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3208 QUIT;
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 49105
diff changeset
3209
27781
f84c7b8308c5 (funcall_lambda): Don't bind Qmocklisp_arguments unless
Gerd Moellmann <gerd@gnu.org>
parents: 27704
diff changeset
3210 next = XCAR (syms_left);
71872
b20203b004f8 (Fthrow): Remove loop around Fsignal.
Kim F. Storm <storm@cua.dk>
parents: 71574
diff changeset
3211 if (!SYMBOLP (next))
71976
66a9a086ddbb * eval.c (xsignal): New func. Like Fsignal, but marked no-return.
Kim F. Storm <storm@cua.dk>
parents: 71872
diff changeset
3212 xsignal1 (Qinvalid_function, fun);
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 49105
diff changeset
3213
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3214 if (EQ (next, Qand_rest))
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3215 rest = 1;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3216 else if (EQ (next, Qand_optional))
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3217 optional = 1;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3218 else if (rest)
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3219 {
431
504d7cdfd311 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 381
diff changeset
3220 specbind (next, Flist (nargs - i, &arg_vector[i]));
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3221 i = nargs;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3222 }
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3223 else if (i < nargs)
27781
f84c7b8308c5 (funcall_lambda): Don't bind Qmocklisp_arguments unless
Gerd Moellmann <gerd@gnu.org>
parents: 27704
diff changeset
3224 specbind (next, arg_vector[i++]);
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3225 else if (!optional)
71976
66a9a086ddbb * eval.c (xsignal): New func. Like Fsignal, but marked no-return.
Kim F. Storm <storm@cua.dk>
parents: 71872
diff changeset
3226 xsignal2 (Qwrong_number_of_arguments, fun, make_number (nargs));
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3227 else
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3228 specbind (next, Qnil);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3229 }
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3230
27781
f84c7b8308c5 (funcall_lambda): Don't bind Qmocklisp_arguments unless
Gerd Moellmann <gerd@gnu.org>
parents: 27704
diff changeset
3231 if (!NILP (syms_left))
71976
66a9a086ddbb * eval.c (xsignal): New func. Like Fsignal, but marked no-return.
Kim F. Storm <storm@cua.dk>
parents: 71872
diff changeset
3232 xsignal1 (Qinvalid_function, fun);
27781
f84c7b8308c5 (funcall_lambda): Don't bind Qmocklisp_arguments unless
Gerd Moellmann <gerd@gnu.org>
parents: 27704
diff changeset
3233 else if (i < nargs)
71976
66a9a086ddbb * eval.c (xsignal): New func. Like Fsignal, but marked no-return.
Kim F. Storm <storm@cua.dk>
parents: 71872
diff changeset
3234 xsignal2 (Qwrong_number_of_arguments, fun, make_number (nargs));
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3235
9148
e7ab930bb7eb (Fprogn, Finteractive_p, Fuser_variable_p, FletX, Flet, Fmacroexpand,
Karl Heuer <kwzh@gnu.org>
parents: 8980
diff changeset
3236 if (CONSP (fun))
27781
f84c7b8308c5 (funcall_lambda): Don't bind Qmocklisp_arguments unless
Gerd Moellmann <gerd@gnu.org>
parents: 27704
diff changeset
3237 val = Fprogn (XCDR (XCDR (fun)));
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3238 else
10201
03f3a1f4264a (Fdefvar): Fix minor error in previous change.
Richard M. Stallman <rms@gnu.org>
parents: 10161
diff changeset
3239 {
03f3a1f4264a (Fdefvar): Fix minor error in previous change.
Richard M. Stallman <rms@gnu.org>
parents: 10161
diff changeset
3240 /* 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
3241 and constants vector yet, fetch them from the file. */
41597
b28d5d866500 Use AREF and ASIZE.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 41114
diff changeset
3242 if (CONSP (AREF (fun, COMPILED_BYTECODE)))
11205
81a008df9184 (Ffetch_bytecode): New function.
Karl Heuer <kwzh@gnu.org>
parents: 11007
diff changeset
3243 Ffetch_bytecode (fun);
41597
b28d5d866500 Use AREF and ASIZE.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 41114
diff changeset
3244 val = Fbyte_code (AREF (fun, COMPILED_BYTECODE),
b28d5d866500 Use AREF and ASIZE.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 41114
diff changeset
3245 AREF (fun, COMPILED_CONSTANTS),
b28d5d866500 Use AREF and ASIZE.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 41114
diff changeset
3246 AREF (fun, COMPILED_STACK_DEPTH));
10201
03f3a1f4264a (Fdefvar): Fix minor error in previous change.
Richard M. Stallman <rms@gnu.org>
parents: 10161
diff changeset
3247 }
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 49105
diff changeset
3248
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3249 return unbind_to (count, val);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3250 }
11205
81a008df9184 (Ffetch_bytecode): New function.
Karl Heuer <kwzh@gnu.org>
parents: 11007
diff changeset
3251
81a008df9184 (Ffetch_bytecode): New function.
Karl Heuer <kwzh@gnu.org>
parents: 11007
diff changeset
3252 DEFUN ("fetch-bytecode", Ffetch_bytecode, Sfetch_bytecode,
40570
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
3253 1, 1, 0,
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
3254 doc: /* If byte-compiled OBJECT is lazy-loaded, fetch it now. */)
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
3255 (object)
11205
81a008df9184 (Ffetch_bytecode): New function.
Karl Heuer <kwzh@gnu.org>
parents: 11007
diff changeset
3256 Lisp_Object object;
81a008df9184 (Ffetch_bytecode): New function.
Karl Heuer <kwzh@gnu.org>
parents: 11007
diff changeset
3257 {
81a008df9184 (Ffetch_bytecode): New function.
Karl Heuer <kwzh@gnu.org>
parents: 11007
diff changeset
3258 Lisp_Object tem;
81a008df9184 (Ffetch_bytecode): New function.
Karl Heuer <kwzh@gnu.org>
parents: 11007
diff changeset
3259
41597
b28d5d866500 Use AREF and ASIZE.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 41114
diff changeset
3260 if (COMPILEDP (object) && CONSP (AREF (object, COMPILED_BYTECODE)))
11205
81a008df9184 (Ffetch_bytecode): New function.
Karl Heuer <kwzh@gnu.org>
parents: 11007
diff changeset
3261 {
41597
b28d5d866500 Use AREF and ASIZE.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 41114
diff changeset
3262 tem = read_doc_string (AREF (object, COMPILED_BYTECODE));
11481
af7833ecb551 (Ffetch_bytecode): Check the type of the object being read from the file.
Richard M. Stallman <rms@gnu.org>
parents: 11365
diff changeset
3263 if (!CONSP (tem))
41597
b28d5d866500 Use AREF and ASIZE.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 41114
diff changeset
3264 {
b28d5d866500 Use AREF and ASIZE.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 41114
diff changeset
3265 tem = AREF (object, COMPILED_BYTECODE);
b28d5d866500 Use AREF and ASIZE.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 41114
diff changeset
3266 if (CONSP (tem) && STRINGP (XCAR (tem)))
46370
40db0673e6f0 Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents: 46315
diff changeset
3267 error ("Invalid byte code in %s", SDATA (XCAR (tem)));
41597
b28d5d866500 Use AREF and ASIZE.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 41114
diff changeset
3268 else
b28d5d866500 Use AREF and ASIZE.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 41114
diff changeset
3269 error ("Invalid byte code");
b28d5d866500 Use AREF and ASIZE.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 41114
diff changeset
3270 }
91607
d1e53221c4aa * xselect.c (x_handle_dnd_message):
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 87649
diff changeset
3271 ASET (object, COMPILED_BYTECODE, XCAR (tem));
d1e53221c4aa * xselect.c (x_handle_dnd_message):
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 87649
diff changeset
3272 ASET (object, COMPILED_CONSTANTS, XCDR (tem));
11205
81a008df9184 (Ffetch_bytecode): New function.
Karl Heuer <kwzh@gnu.org>
parents: 11007
diff changeset
3273 }
81a008df9184 (Ffetch_bytecode): New function.
Karl Heuer <kwzh@gnu.org>
parents: 11007
diff changeset
3274 return object;
81a008df9184 (Ffetch_bytecode): New function.
Karl Heuer <kwzh@gnu.org>
parents: 11007
diff changeset
3275 }
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3276
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3277 void
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3278 grow_specpdl ()
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3279 {
46293
1fb8f75062c6 Use macro SPECPDL_INDEX.
Juanma Barranquero <lekktu@gmail.com>
parents: 46198
diff changeset
3280 register int count = SPECPDL_INDEX ();
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3281 if (specpdl_size >= max_specpdl_size)
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3282 {
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3283 if (max_specpdl_size < 400)
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3284 max_specpdl_size = 400;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3285 if (specpdl_size >= max_specpdl_size)
71976
66a9a086ddbb * eval.c (xsignal): New func. Like Fsignal, but marked no-return.
Kim F. Storm <storm@cua.dk>
parents: 71872
diff changeset
3286 signal_error ("Variable binding depth exceeds max-specpdl-size", Qnil);
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3287 }
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3288 specpdl_size *= 2;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3289 if (specpdl_size > max_specpdl_size)
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3290 specpdl_size = max_specpdl_size;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3291 specpdl = (struct specbinding *) xrealloc (specpdl, specpdl_size * sizeof (struct specbinding));
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3292 specpdl_ptr = specpdl + count;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3293 }
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3294
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3295 void
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3296 specbind (symbol, value)
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3297 Lisp_Object symbol, value;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3298 {
39577
d93909a71fa4 (Fdefvaralias): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 38290
diff changeset
3299 Lisp_Object valcontents;
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3300
40656
cdfd4d09b79a Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents: 40629
diff changeset
3301 CHECK_SYMBOL (symbol);
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3302 if (specpdl_ptr == specpdl + specpdl_size)
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3303 grow_specpdl ();
27781
f84c7b8308c5 (funcall_lambda): Don't bind Qmocklisp_arguments unless
Gerd Moellmann <gerd@gnu.org>
parents: 27704
diff changeset
3304
39577
d93909a71fa4 (Fdefvaralias): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 38290
diff changeset
3305 /* The most common case is that of a non-constant symbol with a
d93909a71fa4 (Fdefvaralias): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 38290
diff changeset
3306 trivial value. Make that as fast as we can. */
d93909a71fa4 (Fdefvaralias): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 38290
diff changeset
3307 valcontents = SYMBOL_VALUE (symbol);
d93909a71fa4 (Fdefvaralias): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 38290
diff changeset
3308 if (!MISCP (valcontents) && !SYMBOL_CONSTANT_P (symbol))
27295
1e2af531f308 (specbind): Record buffer-local variables specially,
Richard M. Stallman <rms@gnu.org>
parents: 27226
diff changeset
3309 {
27781
f84c7b8308c5 (funcall_lambda): Don't bind Qmocklisp_arguments unless
Gerd Moellmann <gerd@gnu.org>
parents: 27704
diff changeset
3310 specpdl_ptr->symbol = symbol;
39577
d93909a71fa4 (Fdefvaralias): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 38290
diff changeset
3311 specpdl_ptr->old_value = valcontents;
27781
f84c7b8308c5 (funcall_lambda): Don't bind Qmocklisp_arguments unless
Gerd Moellmann <gerd@gnu.org>
parents: 27704
diff changeset
3312 specpdl_ptr->func = NULL;
f84c7b8308c5 (funcall_lambda): Don't bind Qmocklisp_arguments unless
Gerd Moellmann <gerd@gnu.org>
parents: 27704
diff changeset
3313 ++specpdl_ptr;
39577
d93909a71fa4 (Fdefvaralias): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 38290
diff changeset
3314 SET_SYMBOL_VALUE (symbol, value);
27295
1e2af531f308 (specbind): Record buffer-local variables specially,
Richard M. Stallman <rms@gnu.org>
parents: 27226
diff changeset
3315 }
1e2af531f308 (specbind): Record buffer-local variables specially,
Richard M. Stallman <rms@gnu.org>
parents: 27226
diff changeset
3316 else
27781
f84c7b8308c5 (funcall_lambda): Don't bind Qmocklisp_arguments unless
Gerd Moellmann <gerd@gnu.org>
parents: 27704
diff changeset
3317 {
86229
0ec5ce87b9e0 * data.c (store_symval_forwarding, set_internal):
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 85688
diff changeset
3318 Lisp_Object ovalue = find_symbol_value (symbol);
27781
f84c7b8308c5 (funcall_lambda): Don't bind Qmocklisp_arguments unless
Gerd Moellmann <gerd@gnu.org>
parents: 27704
diff changeset
3319 specpdl_ptr->func = 0;
f84c7b8308c5 (funcall_lambda): Don't bind Qmocklisp_arguments unless
Gerd Moellmann <gerd@gnu.org>
parents: 27704
diff changeset
3320 specpdl_ptr->old_value = ovalue;
f84c7b8308c5 (funcall_lambda): Don't bind Qmocklisp_arguments unless
Gerd Moellmann <gerd@gnu.org>
parents: 27704
diff changeset
3321
38276
93bcc7200a67 (specbind): If SYMBOL has a frame-local binding, record
Gerd Moellmann <gerd@gnu.org>
parents: 37799
diff changeset
3322 valcontents = XSYMBOL (symbol)->value;
93bcc7200a67 (specbind): If SYMBOL has a frame-local binding, record
Gerd Moellmann <gerd@gnu.org>
parents: 37799
diff changeset
3323
93bcc7200a67 (specbind): If SYMBOL has a frame-local binding, record
Gerd Moellmann <gerd@gnu.org>
parents: 37799
diff changeset
3324 if (BUFFER_LOCAL_VALUEP (valcontents)
93bcc7200a67 (specbind): If SYMBOL has a frame-local binding, record
Gerd Moellmann <gerd@gnu.org>
parents: 37799
diff changeset
3325 || BUFFER_OBJFWDP (valcontents))
27781
f84c7b8308c5 (funcall_lambda): Don't bind Qmocklisp_arguments unless
Gerd Moellmann <gerd@gnu.org>
parents: 27704
diff changeset
3326 {
38290
57b9619e2e44 (specbind): Additionally record the buffer that was
Gerd Moellmann <gerd@gnu.org>
parents: 38276
diff changeset
3327 Lisp_Object where, current_buffer;
57b9619e2e44 (specbind): Additionally record the buffer that was
Gerd Moellmann <gerd@gnu.org>
parents: 38276
diff changeset
3328
57b9619e2e44 (specbind): Additionally record the buffer that was
Gerd Moellmann <gerd@gnu.org>
parents: 38276
diff changeset
3329 current_buffer = Fcurrent_buffer ();
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 49105
diff changeset
3330
27781
f84c7b8308c5 (funcall_lambda): Don't bind Qmocklisp_arguments unless
Gerd Moellmann <gerd@gnu.org>
parents: 27704
diff changeset
3331 /* For a local variable, record both the symbol and which
38276
93bcc7200a67 (specbind): If SYMBOL has a frame-local binding, record
Gerd Moellmann <gerd@gnu.org>
parents: 37799
diff changeset
3332 buffer's or frame's value we are saving. */
93bcc7200a67 (specbind): If SYMBOL has a frame-local binding, record
Gerd Moellmann <gerd@gnu.org>
parents: 37799
diff changeset
3333 if (!NILP (Flocal_variable_p (symbol, Qnil)))
38290
57b9619e2e44 (specbind): Additionally record the buffer that was
Gerd Moellmann <gerd@gnu.org>
parents: 38276
diff changeset
3334 where = current_buffer;
85328
d0d527210b0c * lisp.h (enum Lisp_Misc_Type): Del Lisp_Misc_Some_Buffer_Local_Value.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 85291
diff changeset
3335 else if (BUFFER_LOCAL_VALUEP (valcontents)
38276
93bcc7200a67 (specbind): If SYMBOL has a frame-local binding, record
Gerd Moellmann <gerd@gnu.org>
parents: 37799
diff changeset
3336 && XBUFFER_LOCAL_VALUE (valcontents)->found_for_frame)
93bcc7200a67 (specbind): If SYMBOL has a frame-local binding, record
Gerd Moellmann <gerd@gnu.org>
parents: 37799
diff changeset
3337 where = XBUFFER_LOCAL_VALUE (valcontents)->frame;
93bcc7200a67 (specbind): If SYMBOL has a frame-local binding, record
Gerd Moellmann <gerd@gnu.org>
parents: 37799
diff changeset
3338 else
93bcc7200a67 (specbind): If SYMBOL has a frame-local binding, record
Gerd Moellmann <gerd@gnu.org>
parents: 37799
diff changeset
3339 where = Qnil;
93bcc7200a67 (specbind): If SYMBOL has a frame-local binding, record
Gerd Moellmann <gerd@gnu.org>
parents: 37799
diff changeset
3340
93bcc7200a67 (specbind): If SYMBOL has a frame-local binding, record
Gerd Moellmann <gerd@gnu.org>
parents: 37799
diff changeset
3341 /* We're not using the `unused' slot in the specbinding
93bcc7200a67 (specbind): If SYMBOL has a frame-local binding, record
Gerd Moellmann <gerd@gnu.org>
parents: 37799
diff changeset
3342 structure because this would mean we have to do more
93bcc7200a67 (specbind): If SYMBOL has a frame-local binding, record
Gerd Moellmann <gerd@gnu.org>
parents: 37799
diff changeset
3343 work for simple variables. */
38290
57b9619e2e44 (specbind): Additionally record the buffer that was
Gerd Moellmann <gerd@gnu.org>
parents: 38276
diff changeset
3344 specpdl_ptr->symbol = Fcons (symbol, Fcons (where, current_buffer));
35394
0936433023f5 (specbind): If binding a per-buffer variable which
Gerd Moellmann <gerd@gnu.org>
parents: 34013
diff changeset
3345
0936433023f5 (specbind): If binding a per-buffer variable which
Gerd Moellmann <gerd@gnu.org>
parents: 34013
diff changeset
3346 /* If SYMBOL is a per-buffer variable which doesn't have a
0936433023f5 (specbind): If binding a per-buffer variable which
Gerd Moellmann <gerd@gnu.org>
parents: 34013
diff changeset
3347 buffer-local value here, make the `let' change the global
0936433023f5 (specbind): If binding a per-buffer variable which
Gerd Moellmann <gerd@gnu.org>
parents: 34013
diff changeset
3348 value by changing the value of SYMBOL in all buffers not
0936433023f5 (specbind): If binding a per-buffer variable which
Gerd Moellmann <gerd@gnu.org>
parents: 34013
diff changeset
3349 having their own value. This is consistent with what
0936433023f5 (specbind): If binding a per-buffer variable which
Gerd Moellmann <gerd@gnu.org>
parents: 34013
diff changeset
3350 happens with other buffer-local variables. */
38276
93bcc7200a67 (specbind): If SYMBOL has a frame-local binding, record
Gerd Moellmann <gerd@gnu.org>
parents: 37799
diff changeset
3351 if (NILP (where)
93bcc7200a67 (specbind): If SYMBOL has a frame-local binding, record
Gerd Moellmann <gerd@gnu.org>
parents: 37799
diff changeset
3352 && BUFFER_OBJFWDP (valcontents))
35394
0936433023f5 (specbind): If binding a per-buffer variable which
Gerd Moellmann <gerd@gnu.org>
parents: 34013
diff changeset
3353 {
0936433023f5 (specbind): If binding a per-buffer variable which
Gerd Moellmann <gerd@gnu.org>
parents: 34013
diff changeset
3354 ++specpdl_ptr;
0936433023f5 (specbind): If binding a per-buffer variable which
Gerd Moellmann <gerd@gnu.org>
parents: 34013
diff changeset
3355 Fset_default (symbol, value);
0936433023f5 (specbind): If binding a per-buffer variable which
Gerd Moellmann <gerd@gnu.org>
parents: 34013
diff changeset
3356 return;
0936433023f5 (specbind): If binding a per-buffer variable which
Gerd Moellmann <gerd@gnu.org>
parents: 34013
diff changeset
3357 }
27781
f84c7b8308c5 (funcall_lambda): Don't bind Qmocklisp_arguments unless
Gerd Moellmann <gerd@gnu.org>
parents: 27704
diff changeset
3358 }
f84c7b8308c5 (funcall_lambda): Don't bind Qmocklisp_arguments unless
Gerd Moellmann <gerd@gnu.org>
parents: 27704
diff changeset
3359 else
f84c7b8308c5 (funcall_lambda): Don't bind Qmocklisp_arguments unless
Gerd Moellmann <gerd@gnu.org>
parents: 27704
diff changeset
3360 specpdl_ptr->symbol = symbol;
f84c7b8308c5 (funcall_lambda): Don't bind Qmocklisp_arguments unless
Gerd Moellmann <gerd@gnu.org>
parents: 27704
diff changeset
3361
f84c7b8308c5 (funcall_lambda): Don't bind Qmocklisp_arguments unless
Gerd Moellmann <gerd@gnu.org>
parents: 27704
diff changeset
3362 specpdl_ptr++;
86229
0ec5ce87b9e0 * data.c (store_symval_forwarding, set_internal):
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 85688
diff changeset
3363 /* We used to do
0ec5ce87b9e0 * data.c (store_symval_forwarding, set_internal):
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 85688
diff changeset
3364 if (BUFFER_OBJFWDP (ovalue) || KBOARD_OBJFWDP (ovalue))
0ec5ce87b9e0 * data.c (store_symval_forwarding, set_internal):
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 85688
diff changeset
3365 store_symval_forwarding (symbol, ovalue, value, NULL);
0ec5ce87b9e0 * data.c (store_symval_forwarding, set_internal):
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 85688
diff changeset
3366 else
0ec5ce87b9e0 * data.c (store_symval_forwarding, set_internal):
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 85688
diff changeset
3367 but ovalue comes from find_symbol_value which should never return
0ec5ce87b9e0 * data.c (store_symval_forwarding, set_internal):
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 85688
diff changeset
3368 such an internal value. */
0ec5ce87b9e0 * data.c (store_symval_forwarding, set_internal):
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 85688
diff changeset
3369 eassert (!(BUFFER_OBJFWDP (ovalue) || KBOARD_OBJFWDP (ovalue)));
0ec5ce87b9e0 * data.c (store_symval_forwarding, set_internal):
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 85688
diff changeset
3370 set_internal (symbol, value, 0, 1);
27781
f84c7b8308c5 (funcall_lambda): Don't bind Qmocklisp_arguments unless
Gerd Moellmann <gerd@gnu.org>
parents: 27704
diff changeset
3371 }
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3372 }
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3373
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3374 void
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3375 record_unwind_protect (function, arg)
20312
d75a1b915e20 (record_unwind_protect): Protoize parameter.
Andreas Schwab <schwab@suse.de>
parents: 19544
diff changeset
3376 Lisp_Object (*function) P_ ((Lisp_Object));
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3377 Lisp_Object arg;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3378 {
69152
f2147c1027b6 * xterm.h (x_catch_errors) Return value changed to void.
Chong Yidong <cyd@stupidchicken.com>
parents: 68758
diff changeset
3379 eassert (!handling_signal);
f2147c1027b6 * xterm.h (x_catch_errors) Return value changed to void.
Chong Yidong <cyd@stupidchicken.com>
parents: 68758
diff changeset
3380
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3381 if (specpdl_ptr == specpdl + specpdl_size)
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3382 grow_specpdl ();
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3383 specpdl_ptr->func = function;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3384 specpdl_ptr->symbol = Qnil;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3385 specpdl_ptr->old_value = arg;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3386 specpdl_ptr++;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3387 }
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3388
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3389 Lisp_Object
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3390 unbind_to (count, value)
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3391 int count;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3392 Lisp_Object value;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3393 {
62980
5b94f4660d9d (unbind_to): Preserve value of Vquit_flag.
Kim F. Storm <storm@cua.dk>
parents: 62709
diff changeset
3394 Lisp_Object quitf = Vquit_flag;
5b94f4660d9d (unbind_to): Preserve value of Vquit_flag.
Kim F. Storm <storm@cua.dk>
parents: 62709
diff changeset
3395 struct gcpro gcpro1, gcpro2;
5b94f4660d9d (unbind_to): Preserve value of Vquit_flag.
Kim F. Storm <storm@cua.dk>
parents: 62709
diff changeset
3396
5b94f4660d9d (unbind_to): Preserve value of Vquit_flag.
Kim F. Storm <storm@cua.dk>
parents: 62709
diff changeset
3397 GCPRO2 (value, quitf);
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3398 Vquit_flag = Qnil;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3399
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3400 while (specpdl_ptr != specpdl + count)
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3401 {
50919
bbe405e5721e (specpdl_ptr): Declare volatile.
Richard M. Stallman <rms@gnu.org>
parents: 50774
diff changeset
3402 /* Copy the binding, and decrement specpdl_ptr, before we do
bbe405e5721e (specpdl_ptr): Declare volatile.
Richard M. Stallman <rms@gnu.org>
parents: 50774
diff changeset
3403 the work to unbind it. We decrement first
bbe405e5721e (specpdl_ptr): Declare volatile.
Richard M. Stallman <rms@gnu.org>
parents: 50774
diff changeset
3404 so that an error in unbinding won't try to unbind
bbe405e5721e (specpdl_ptr): Declare volatile.
Richard M. Stallman <rms@gnu.org>
parents: 50774
diff changeset
3405 the same entry again, and we copy the binding first
bbe405e5721e (specpdl_ptr): Declare volatile.
Richard M. Stallman <rms@gnu.org>
parents: 50774
diff changeset
3406 in case more bindings are made during some of the code we run. */
bbe405e5721e (specpdl_ptr): Declare volatile.
Richard M. Stallman <rms@gnu.org>
parents: 50774
diff changeset
3407
51294
8c0215bae09e (unbind_to): Fix last change for K&R. From rms.
Dave Love <fx@gnu.org>
parents: 50919
diff changeset
3408 struct specbinding this_binding;
8c0215bae09e (unbind_to): Fix last change for K&R. From rms.
Dave Love <fx@gnu.org>
parents: 50919
diff changeset
3409 this_binding = *--specpdl_ptr;
50919
bbe405e5721e (specpdl_ptr): Declare volatile.
Richard M. Stallman <rms@gnu.org>
parents: 50774
diff changeset
3410
bbe405e5721e (specpdl_ptr): Declare volatile.
Richard M. Stallman <rms@gnu.org>
parents: 50774
diff changeset
3411 if (this_binding.func != 0)
bbe405e5721e (specpdl_ptr): Declare volatile.
Richard M. Stallman <rms@gnu.org>
parents: 50774
diff changeset
3412 (*this_binding.func) (this_binding.old_value);
38290
57b9619e2e44 (specbind): Additionally record the buffer that was
Gerd Moellmann <gerd@gnu.org>
parents: 38276
diff changeset
3413 /* If the symbol is a list, it is really (SYMBOL WHERE
57b9619e2e44 (specbind): Additionally record the buffer that was
Gerd Moellmann <gerd@gnu.org>
parents: 38276
diff changeset
3414 . CURRENT-BUFFER) where WHERE is either nil, a buffer, or a
57b9619e2e44 (specbind): Additionally record the buffer that was
Gerd Moellmann <gerd@gnu.org>
parents: 38276
diff changeset
3415 frame. If WHERE is a buffer or frame, this indicates we
40661
2677a5e901f8 (debugger_may_continue, Vdebug_ignored_errors, call_debugger,
Pavel Janík <Pavel@Janik.cz>
parents: 40656
diff changeset
3416 bound a variable that had a buffer-local or frame-local
2677a5e901f8 (debugger_may_continue, Vdebug_ignored_errors, call_debugger,
Pavel Janík <Pavel@Janik.cz>
parents: 40656
diff changeset
3417 binding. WHERE nil means that the variable had the default
38290
57b9619e2e44 (specbind): Additionally record the buffer that was
Gerd Moellmann <gerd@gnu.org>
parents: 38276
diff changeset
3418 value when it was bound. CURRENT-BUFFER is the buffer that
57b9619e2e44 (specbind): Additionally record the buffer that was
Gerd Moellmann <gerd@gnu.org>
parents: 38276
diff changeset
3419 was current when the variable was bound. */
50919
bbe405e5721e (specpdl_ptr): Declare volatile.
Richard M. Stallman <rms@gnu.org>
parents: 50774
diff changeset
3420 else if (CONSP (this_binding.symbol))
27295
1e2af531f308 (specbind): Record buffer-local variables specially,
Richard M. Stallman <rms@gnu.org>
parents: 27226
diff changeset
3421 {
38276
93bcc7200a67 (specbind): If SYMBOL has a frame-local binding, record
Gerd Moellmann <gerd@gnu.org>
parents: 37799
diff changeset
3422 Lisp_Object symbol, where;
27295
1e2af531f308 (specbind): Record buffer-local variables specially,
Richard M. Stallman <rms@gnu.org>
parents: 27226
diff changeset
3423
50919
bbe405e5721e (specpdl_ptr): Declare volatile.
Richard M. Stallman <rms@gnu.org>
parents: 50774
diff changeset
3424 symbol = XCAR (this_binding.symbol);
bbe405e5721e (specpdl_ptr): Declare volatile.
Richard M. Stallman <rms@gnu.org>
parents: 50774
diff changeset
3425 where = XCAR (XCDR (this_binding.symbol));
38276
93bcc7200a67 (specbind): If SYMBOL has a frame-local binding, record
Gerd Moellmann <gerd@gnu.org>
parents: 37799
diff changeset
3426
93bcc7200a67 (specbind): If SYMBOL has a frame-local binding, record
Gerd Moellmann <gerd@gnu.org>
parents: 37799
diff changeset
3427 if (NILP (where))
50919
bbe405e5721e (specpdl_ptr): Declare volatile.
Richard M. Stallman <rms@gnu.org>
parents: 50774
diff changeset
3428 Fset_default (symbol, this_binding.old_value);
38276
93bcc7200a67 (specbind): If SYMBOL has a frame-local binding, record
Gerd Moellmann <gerd@gnu.org>
parents: 37799
diff changeset
3429 else if (BUFFERP (where))
50919
bbe405e5721e (specpdl_ptr): Declare volatile.
Richard M. Stallman <rms@gnu.org>
parents: 50774
diff changeset
3430 set_internal (symbol, this_binding.old_value, XBUFFER (where), 1);
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 49105
diff changeset
3431 else
50919
bbe405e5721e (specpdl_ptr): Declare volatile.
Richard M. Stallman <rms@gnu.org>
parents: 50774
diff changeset
3432 set_internal (symbol, this_binding.old_value, NULL, 1);
27295
1e2af531f308 (specbind): Record buffer-local variables specially,
Richard M. Stallman <rms@gnu.org>
parents: 27226
diff changeset
3433 }
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3434 else
27781
f84c7b8308c5 (funcall_lambda): Don't bind Qmocklisp_arguments unless
Gerd Moellmann <gerd@gnu.org>
parents: 27704
diff changeset
3435 {
f84c7b8308c5 (funcall_lambda): Don't bind Qmocklisp_arguments unless
Gerd Moellmann <gerd@gnu.org>
parents: 27704
diff changeset
3436 /* If variable has a trivial value (no forwarding), we can
f84c7b8308c5 (funcall_lambda): Don't bind Qmocklisp_arguments unless
Gerd Moellmann <gerd@gnu.org>
parents: 27704
diff changeset
3437 just set it. No need to check for constant symbols here,
f84c7b8308c5 (funcall_lambda): Don't bind Qmocklisp_arguments unless
Gerd Moellmann <gerd@gnu.org>
parents: 27704
diff changeset
3438 since that was already done by specbind. */
50919
bbe405e5721e (specpdl_ptr): Declare volatile.
Richard M. Stallman <rms@gnu.org>
parents: 50774
diff changeset
3439 if (!MISCP (SYMBOL_VALUE (this_binding.symbol)))
bbe405e5721e (specpdl_ptr): Declare volatile.
Richard M. Stallman <rms@gnu.org>
parents: 50774
diff changeset
3440 SET_SYMBOL_VALUE (this_binding.symbol, this_binding.old_value);
27781
f84c7b8308c5 (funcall_lambda): Don't bind Qmocklisp_arguments unless
Gerd Moellmann <gerd@gnu.org>
parents: 27704
diff changeset
3441 else
50919
bbe405e5721e (specpdl_ptr): Declare volatile.
Richard M. Stallman <rms@gnu.org>
parents: 50774
diff changeset
3442 set_internal (this_binding.symbol, this_binding.old_value, 0, 1);
27781
f84c7b8308c5 (funcall_lambda): Don't bind Qmocklisp_arguments unless
Gerd Moellmann <gerd@gnu.org>
parents: 27704
diff changeset
3443 }
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3444 }
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 49105
diff changeset
3445
62980
5b94f4660d9d (unbind_to): Preserve value of Vquit_flag.
Kim F. Storm <storm@cua.dk>
parents: 62709
diff changeset
3446 if (NILP (Vquit_flag) && !NILP (quitf))
5b94f4660d9d (unbind_to): Preserve value of Vquit_flag.
Kim F. Storm <storm@cua.dk>
parents: 62709
diff changeset
3447 Vquit_flag = quitf;
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3448
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3449 UNGCPRO;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3450 return value;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3451 }
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3452
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3453 DEFUN ("backtrace-debug", Fbacktrace_debug, Sbacktrace_debug, 2, 2, 0,
40570
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
3454 doc: /* Set the debug-on-exit flag of eval frame LEVEL levels down to FLAG.
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
3455 The debugger is entered when that frame exits, if the flag is non-nil. */)
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
3456 (level, flag)
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3457 Lisp_Object level, flag;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3458 {
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3459 register struct backtrace *backlist = backtrace_list;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3460 register int i;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3461
40656
cdfd4d09b79a Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents: 40629
diff changeset
3462 CHECK_NUMBER (level);
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3463
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3464 for (i = 0; backlist && i < XINT (level); i++)
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3465 {
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3466 backlist = backlist->next;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3467 }
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3468
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3469 if (backlist)
485
8c615e453683 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 431
diff changeset
3470 backlist->debug_on_exit = !NILP (flag);
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3471
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3472 return flag;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3473 }
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3474
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3475 DEFUN ("backtrace", Fbacktrace, Sbacktrace, 0, 0, "",
40570
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
3476 doc: /* Print a trace of Lisp function calls currently active.
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
3477 Output stream used is value of `standard-output'. */)
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
3478 ()
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3479 {
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3480 register struct backtrace *backlist = backtrace_list;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3481 register int i;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3482 Lisp_Object tail;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3483 Lisp_Object tem;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3484 extern Lisp_Object Vprint_level;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3485 struct gcpro gcpro1;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3486
9306
ac852c183fa1 (Feval, Ffuncall, funcall_lambda, Fbacktrace): Don't use XFASTINT as an
Karl Heuer <kwzh@gnu.org>
parents: 9148
diff changeset
3487 XSETFASTINT (Vprint_level, 3);
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3488
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3489 tail = Qnil;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3490 GCPRO1 (tail);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3491
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3492 while (backlist)
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3493 {
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3494 write_string (backlist->debug_on_exit ? "* " : " ", 2);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3495 if (backlist->nargs == UNEVALLED)
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3496 {
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3497 Fprin1 (Fcons (*backlist->function, *backlist->args), Qnil);
7533
62e3e25bc8f6 (Fbacktrace): Properly nest parentheses.
Karl Heuer <kwzh@gnu.org>
parents: 7511
diff changeset
3498 write_string ("\n", -1);
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3499 }
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3500 else
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3501 {
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3502 tem = *backlist->function;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3503 Fprin1 (tem, Qnil); /* This can QUIT */
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3504 write_string ("(", -1);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3505 if (backlist->nargs == MANY)
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3506 {
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3507 for (tail = *backlist->args, i = 0;
485
8c615e453683 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 431
diff changeset
3508 !NILP (tail);
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3509 tail = Fcdr (tail), i++)
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3510 {
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3511 if (i) write_string (" ", -1);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3512 Fprin1 (Fcar (tail), Qnil);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3513 }
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3514 }
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3515 else
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3516 {
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3517 for (i = 0; i < backlist->nargs; i++)
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3518 {
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3519 if (i) write_string (" ", -1);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3520 Fprin1 (backlist->args[i], Qnil);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3521 }
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3522 }
7533
62e3e25bc8f6 (Fbacktrace): Properly nest parentheses.
Karl Heuer <kwzh@gnu.org>
parents: 7511
diff changeset
3523 write_string (")\n", -1);
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3524 }
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3525 backlist = backlist->next;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3526 }
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3527
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3528 Vprint_level = Qnil;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3529 UNGCPRO;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3530 return Qnil;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3531 }
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3532
32657
a0c4d9cbadcd (skip_debugger): Prevent a compiler warning.
Gerd Moellmann <gerd@gnu.org>
parents: 32066
diff changeset
3533 DEFUN ("backtrace-frame", Fbacktrace_frame, Sbacktrace_frame, 1, 1, NULL,
40570
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
3534 doc: /* Return the function and arguments NFRAMES up from current execution point.
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
3535 If that frame has not evaluated the arguments yet (or is a special form),
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
3536 the value is (nil FUNCTION ARG-FORMS...).
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
3537 If that frame has evaluated its arguments and called its function already,
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
3538 the value is (t FUNCTION ARG-VALUES...).
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
3539 A &rest arg is represented as the tail of the list ARG-VALUES.
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
3540 FUNCTION is whatever was supplied as car of evaluated list,
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
3541 or a lambda expression for macro calls.
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
3542 If NFRAMES is more than the number of frames, the value is nil. */)
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
3543 (nframes)
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3544 Lisp_Object nframes;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3545 {
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3546 register struct backtrace *backlist = backtrace_list;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3547 register int i;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3548 Lisp_Object tem;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3549
40656
cdfd4d09b79a Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents: 40629
diff changeset
3550 CHECK_NATNUM (nframes);
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3551
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3552 /* Find the frame requested. */
7533
62e3e25bc8f6 (Fbacktrace): Properly nest parentheses.
Karl Heuer <kwzh@gnu.org>
parents: 7511
diff changeset
3553 for (i = 0; backlist && i < XFASTINT (nframes); i++)
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3554 backlist = backlist->next;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3555
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3556 if (!backlist)
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3557 return Qnil;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3558 if (backlist->nargs == UNEVALLED)
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3559 return Fcons (Qnil, Fcons (*backlist->function, *backlist->args));
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3560 else
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3561 {
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3562 if (backlist->nargs == MANY)
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3563 tem = *backlist->args;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3564 else
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3565 tem = Flist (backlist->nargs, backlist->args);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3566
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3567 return Fcons (Qt, Fcons (*backlist->function, tem));
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3568 }
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3569 }
30073
ed8f34a43649 (Vsignaling_function): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 30058
diff changeset
3570
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3571
21514
fa9ff387d260 Fix -Wimplicit warnings.
Andreas Schwab <schwab@suse.de>
parents: 20378
diff changeset
3572 void
55796
97fe0ef6c077 (mark_backtrace): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 54630
diff changeset
3573 mark_backtrace ()
97fe0ef6c077 (mark_backtrace): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 54630
diff changeset
3574 {
97fe0ef6c077 (mark_backtrace): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 54630
diff changeset
3575 register struct backtrace *backlist;
97fe0ef6c077 (mark_backtrace): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 54630
diff changeset
3576 register int i;
97fe0ef6c077 (mark_backtrace): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 54630
diff changeset
3577
97fe0ef6c077 (mark_backtrace): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 54630
diff changeset
3578 for (backlist = backtrace_list; backlist; backlist = backlist->next)
97fe0ef6c077 (mark_backtrace): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 54630
diff changeset
3579 {
97fe0ef6c077 (mark_backtrace): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 54630
diff changeset
3580 mark_object (*backlist->function);
97fe0ef6c077 (mark_backtrace): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 54630
diff changeset
3581
97fe0ef6c077 (mark_backtrace): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 54630
diff changeset
3582 if (backlist->nargs == UNEVALLED || backlist->nargs == MANY)
97fe0ef6c077 (mark_backtrace): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 54630
diff changeset
3583 i = 0;
97fe0ef6c077 (mark_backtrace): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 54630
diff changeset
3584 else
97fe0ef6c077 (mark_backtrace): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 54630
diff changeset
3585 i = backlist->nargs - 1;
97fe0ef6c077 (mark_backtrace): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 54630
diff changeset
3586 for (; i >= 0; i--)
97fe0ef6c077 (mark_backtrace): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 54630
diff changeset
3587 mark_object (backlist->args[i]);
97fe0ef6c077 (mark_backtrace): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 54630
diff changeset
3588 }
97fe0ef6c077 (mark_backtrace): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 54630
diff changeset
3589 }
97fe0ef6c077 (mark_backtrace): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 54630
diff changeset
3590
97fe0ef6c077 (mark_backtrace): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 54630
diff changeset
3591 void
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3592 syms_of_eval ()
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3593 {
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3594 DEFVAR_INT ("max-specpdl-size", &max_specpdl_size,
64499
34bf5187c5aa (Fprog2, Fcalled_interactively_p), (syms_of_eval) <debug-on-quit>: Doc fixes.
Juanma Barranquero <lekktu@gmail.com>
parents: 64271
diff changeset
3595 doc: /* *Limit on number of Lisp variable bindings and `unwind-protect's.
63767
60a9b2133cf1 (call_debugger): Take full care of extending stack limits
Richard M. Stallman <rms@gnu.org>
parents: 63697
diff changeset
3596 If Lisp code tries to increase the total number past this amount,
45560
f1be57638503 (syms_of_eval): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 45400
diff changeset
3597 an error is signaled.
f1be57638503 (syms_of_eval): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 45400
diff changeset
3598 You can safely use a value considerably larger than the default value,
f1be57638503 (syms_of_eval): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 45400
diff changeset
3599 if that proves inconveniently small. However, if you increase it too far,
f1be57638503 (syms_of_eval): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 45400
diff changeset
3600 Emacs could run out of memory trying to make the stack bigger. */);
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3601
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3602 DEFVAR_INT ("max-lisp-eval-depth", &max_lisp_eval_depth,
40570
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
3603 doc: /* *Limit on depth in `eval', `apply' and `funcall' before error.
45560
f1be57638503 (syms_of_eval): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 45400
diff changeset
3604
f1be57638503 (syms_of_eval): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 45400
diff changeset
3605 This limit serves to catch infinite recursions for you before they cause
40570
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
3606 actual stack overflow in C, which would be fatal for Emacs.
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
3607 You can safely make it considerably larger than its default value,
45560
f1be57638503 (syms_of_eval): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 45400
diff changeset
3608 if that proves inconveniently small. However, if you increase it too far,
f1be57638503 (syms_of_eval): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 45400
diff changeset
3609 Emacs could overflow the real C stack, and crash. */);
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3610
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3611 DEFVAR_LISP ("quit-flag", &Vquit_flag,
40570
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
3612 doc: /* Non-nil causes `eval' to abort, unless `inhibit-quit' is non-nil.
58933
dae0885d0340 (syms_of_eval) <quit-flag>: Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 58827
diff changeset
3613 If the value is t, that means do an ordinary quit.
dae0885d0340 (syms_of_eval) <quit-flag>: Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 58827
diff changeset
3614 If the value equals `throw-on-input', that means quit by throwing
dae0885d0340 (syms_of_eval) <quit-flag>: Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 58827
diff changeset
3615 to the tag specified in `throw-on-input'; it's for handling `while-no-input'.
dae0885d0340 (syms_of_eval) <quit-flag>: Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 58827
diff changeset
3616 Typing C-g sets `quit-flag' to t, regardless of `inhibit-quit',
dae0885d0340 (syms_of_eval) <quit-flag>: Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 58827
diff changeset
3617 but `inhibit-quit' non-nil prevents anything from taking notice of that. */);
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3618 Vquit_flag = Qnil;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3619
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3620 DEFVAR_LISP ("inhibit-quit", &Vinhibit_quit,
40570
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
3621 doc: /* Non-nil inhibits C-g quitting from happening immediately.
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
3622 Note that `quit-flag' will still be set by typing C-g,
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
3623 so a quit will be signaled as soon as `inhibit-quit' is nil.
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
3624 To prevent this happening, set `quit-flag' to nil
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
3625 before making `inhibit-quit' nil. */);
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3626 Vinhibit_quit = Qnil;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3627
381
0673e72f6c8c *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 323
diff changeset
3628 Qinhibit_quit = intern ("inhibit-quit");
0673e72f6c8c *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 323
diff changeset
3629 staticpro (&Qinhibit_quit);
0673e72f6c8c *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 323
diff changeset
3630
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3631 Qautoload = intern ("autoload");
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3632 staticpro (&Qautoload);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3633
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3634 Qdebug_on_error = intern ("debug-on-error");
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3635 staticpro (&Qdebug_on_error);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3636
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3637 Qmacro = intern ("macro");
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3638 staticpro (&Qmacro);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3639
44132
8b63b08a2619 (Qdeclare, Vmacro_declaration_function): New variables.
Gerd Moellmann <gerd@gnu.org>
parents: 43713
diff changeset
3640 Qdeclare = intern ("declare");
8b63b08a2619 (Qdeclare, Vmacro_declaration_function): New variables.
Gerd Moellmann <gerd@gnu.org>
parents: 43713
diff changeset
3641 staticpro (&Qdeclare);
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 49105
diff changeset
3642
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3643 /* Note that the process handling also uses Qexit, but we don't want
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3644 to staticpro it twice, so we just do it here. */
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3645 Qexit = intern ("exit");
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3646 staticpro (&Qexit);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3647
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3648 Qinteractive = intern ("interactive");
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3649 staticpro (&Qinteractive);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3650
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3651 Qcommandp = intern ("commandp");
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3652 staticpro (&Qcommandp);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3653
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3654 Qdefun = intern ("defun");
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3655 staticpro (&Qdefun);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3656
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3657 Qand_rest = intern ("&rest");
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3658 staticpro (&Qand_rest);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3659
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3660 Qand_optional = intern ("&optional");
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3661 staticpro (&Qand_optional);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3662
78141
5589aa4fb553 (Fsetq): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 75348
diff changeset
3663 Qdebug = intern ("debug");
5589aa4fb553 (Fsetq): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 75348
diff changeset
3664 staticpro (&Qdebug);
5589aa4fb553 (Fsetq): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 75348
diff changeset
3665
684
bd574e49bfac *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 648
diff changeset
3666 DEFVAR_LISP ("stack-trace-on-error", &Vstack_trace_on_error,
41029
2823497a0206 (syms_of_eval): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 40983
diff changeset
3667 doc: /* *Non-nil means errors display a backtrace buffer.
2823497a0206 (syms_of_eval): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 40983
diff changeset
3668 More precisely, this happens for any error that is handled
2823497a0206 (syms_of_eval): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 40983
diff changeset
3669 by the editor command loop.
40570
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
3670 If the value is a list, an error only means to display a backtrace
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
3671 if one of its condition symbols appears in the list. */);
684
bd574e49bfac *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 648
diff changeset
3672 Vstack_trace_on_error = Qnil;
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3673
684
bd574e49bfac *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 648
diff changeset
3674 DEFVAR_LISP ("debug-on-error", &Vdebug_on_error,
40570
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
3675 doc: /* *Non-nil means enter debugger if an error is signaled.
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
3676 Does not apply to errors handled by `condition-case' or those
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
3677 matched by `debug-ignored-errors'.
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
3678 If the value is a list, an error only means to enter the debugger
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
3679 if one of its condition symbols appears in the list.
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
3680 When you evaluate an expression interactively, this variable
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
3681 is temporarily non-nil if `eval-expression-debug-on-error' is non-nil.
100243
18ca5c2bd793 (Vdebug_on_error): Doc fix.
Chong Yidong <cyd@stupidchicken.com>
parents: 97775
diff changeset
3682 The command `toggle-debug-on-error' toggles this.
18ca5c2bd793 (Vdebug_on_error): Doc fix.
Chong Yidong <cyd@stupidchicken.com>
parents: 97775
diff changeset
3683 See also the variable `debug-on-quit'. */);
684
bd574e49bfac *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 648
diff changeset
3684 Vdebug_on_error = Qnil;
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3685
13768
353d32d374db (skip_debugger): New function.
Karl Heuer <kwzh@gnu.org>
parents: 13444
diff changeset
3686 DEFVAR_LISP ("debug-ignored-errors", &Vdebug_ignored_errors,
40570
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
3687 doc: /* *List of errors for which the debugger should not be called.
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
3688 Each element may be a condition-name or a regexp that matches error messages.
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
3689 If any element applies to a given error, that error skips the debugger
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
3690 and just returns to top level.
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
3691 This overrides the variable `debug-on-error'.
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
3692 It does not apply to errors handled by `condition-case'. */);
13768
353d32d374db (skip_debugger): New function.
Karl Heuer <kwzh@gnu.org>
parents: 13444
diff changeset
3693 Vdebug_ignored_errors = Qnil;
353d32d374db (skip_debugger): New function.
Karl Heuer <kwzh@gnu.org>
parents: 13444
diff changeset
3694
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3695 DEFVAR_BOOL ("debug-on-quit", &debug_on_quit,
64499
34bf5187c5aa (Fprog2, Fcalled_interactively_p), (syms_of_eval) <debug-on-quit>: Doc fixes.
Juanma Barranquero <lekktu@gmail.com>
parents: 64271
diff changeset
3696 doc: /* *Non-nil means enter debugger if quit is signaled (C-g, for example).
34bf5187c5aa (Fprog2, Fcalled_interactively_p), (syms_of_eval) <debug-on-quit>: Doc fixes.
Juanma Barranquero <lekktu@gmail.com>
parents: 64271
diff changeset
3697 Does not apply if quit is handled by a `condition-case'. */);
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3698 debug_on_quit = 0;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3699
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3700 DEFVAR_BOOL ("debug-on-next-call", &debug_on_next_call,
40570
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
3701 doc: /* Non-nil means enter debugger before next `eval', `apply' or `funcall'. */);
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3702
26947
7987a6499aaa (debugger_may_continue): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 26764
diff changeset
3703 DEFVAR_BOOL ("debugger-may-continue", &debugger_may_continue,
40570
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
3704 doc: /* Non-nil means debugger may continue execution.
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
3705 This is nil when the debugger is called under circumstances where it
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
3706 might not be safe to continue. */);
27031
083866c85a33 (syms_of_eval): Initialize debug_may_continue.
Gerd Moellmann <gerd@gnu.org>
parents: 26947
diff changeset
3707 debugger_may_continue = 1;
26947
7987a6499aaa (debugger_may_continue): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 26764
diff changeset
3708
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3709 DEFVAR_LISP ("debugger", &Vdebugger,
40570
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
3710 doc: /* Function to call to invoke debugger.
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
3711 If due to frame exit, args are `exit' and the value being returned;
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
3712 this function's value will be returned instead of that.
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
3713 If due to error, args are `error' and a list of the args to `signal'.
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
3714 If due to `apply' or `funcall' entry, one arg, `lambda'.
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
3715 If due to `eval' entry, one arg, t. */);
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3716 Vdebugger = Qnil;
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3717
16355
1d85b2698564 (Vdebug_force): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 16296
diff changeset
3718 DEFVAR_LISP ("signal-hook-function", &Vsignal_hook_function,
40570
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
3719 doc: /* If non-nil, this is a function for `signal' to call.
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
3720 It receives the same arguments that `signal' was given.
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
3721 The Edebug package uses this to regain control. */);
16355
1d85b2698564 (Vdebug_force): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 16296
diff changeset
3722 Vsignal_hook_function = Qnil;
1d85b2698564 (Vdebug_force): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 16296
diff changeset
3723
16443
0128b923d281 (Vdebug_on_signal): Renamed from Vdebug_force.
Richard M. Stallman <rms@gnu.org>
parents: 16355
diff changeset
3724 DEFVAR_LISP ("debug-on-signal", &Vdebug_on_signal,
40570
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
3725 doc: /* *Non-nil means call the debugger regardless of condition handlers.
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
3726 Note that `debug-on-error', `debug-on-quit' and friends
5ffb57fd759e (Fcommandp): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40141
diff changeset
3727 still determine whether to handle the particular condition. */);
16443
0128b923d281 (Vdebug_on_signal): Renamed from Vdebug_force.
Richard M. Stallman <rms@gnu.org>
parents: 16355
diff changeset
3728 Vdebug_on_signal = Qnil;
16355
1d85b2698564 (Vdebug_force): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 16296
diff changeset
3729
44132
8b63b08a2619 (Qdeclare, Vmacro_declaration_function): New variables.
Gerd Moellmann <gerd@gnu.org>
parents: 43713
diff changeset
3730 DEFVAR_LISP ("macro-declaration-function", &Vmacro_declaration_function,
8b63b08a2619 (Qdeclare, Vmacro_declaration_function): New variables.
Gerd Moellmann <gerd@gnu.org>
parents: 43713
diff changeset
3731 doc: /* Function to process declarations in a macro definition.
8b63b08a2619 (Qdeclare, Vmacro_declaration_function): New variables.
Gerd Moellmann <gerd@gnu.org>
parents: 43713
diff changeset
3732 The function will be called with two args MACRO and DECL.
8b63b08a2619 (Qdeclare, Vmacro_declaration_function): New variables.
Gerd Moellmann <gerd@gnu.org>
parents: 43713
diff changeset
3733 MACRO is the name of the macro being defined.
8b63b08a2619 (Qdeclare, Vmacro_declaration_function): New variables.
Gerd Moellmann <gerd@gnu.org>
parents: 43713
diff changeset
3734 DECL is a list `(declare ...)' containing the declarations.
8b63b08a2619 (Qdeclare, Vmacro_declaration_function): New variables.
Gerd Moellmann <gerd@gnu.org>
parents: 43713
diff changeset
3735 The value the function returns is not used. */);
8b63b08a2619 (Qdeclare, Vmacro_declaration_function): New variables.
Gerd Moellmann <gerd@gnu.org>
parents: 43713
diff changeset
3736 Vmacro_declaration_function = Qnil;
8b63b08a2619 (Qdeclare, Vmacro_declaration_function): New variables.
Gerd Moellmann <gerd@gnu.org>
parents: 43713
diff changeset
3737
16296
584310941e70 (syms_of_eval): Initialize Vrun_hooks here.
Richard M. Stallman <rms@gnu.org>
parents: 16113
diff changeset
3738 Vrun_hooks = intern ("run-hooks");
584310941e70 (syms_of_eval): Initialize Vrun_hooks here.
Richard M. Stallman <rms@gnu.org>
parents: 16113
diff changeset
3739 staticpro (&Vrun_hooks);
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3740
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3741 staticpro (&Vautoload_queue);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3742 Vautoload_queue = Qnil;
30073
ed8f34a43649 (Vsignaling_function): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 30058
diff changeset
3743 staticpro (&Vsignaling_function);
ed8f34a43649 (Vsignaling_function): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 30058
diff changeset
3744 Vsignaling_function = Qnil;
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3745
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3746 defsubr (&Sor);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3747 defsubr (&Sand);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3748 defsubr (&Sif);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3749 defsubr (&Scond);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3750 defsubr (&Sprogn);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3751 defsubr (&Sprog1);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3752 defsubr (&Sprog2);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3753 defsubr (&Ssetq);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3754 defsubr (&Squote);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3755 defsubr (&Sfunction);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3756 defsubr (&Sdefun);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3757 defsubr (&Sdefmacro);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3758 defsubr (&Sdefvar);
39577
d93909a71fa4 (Fdefvaralias): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 38290
diff changeset
3759 defsubr (&Sdefvaralias);
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3760 defsubr (&Sdefconst);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3761 defsubr (&Suser_variable_p);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3762 defsubr (&Slet);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3763 defsubr (&SletX);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3764 defsubr (&Swhile);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3765 defsubr (&Smacroexpand);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3766 defsubr (&Scatch);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3767 defsubr (&Sthrow);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3768 defsubr (&Sunwind_protect);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3769 defsubr (&Scondition_case);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3770 defsubr (&Ssignal);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3771 defsubr (&Sinteractive_p);
57889
d502896ff443 (Fcalled_interactively_p): Rename from Fcall_interactive_p.
Kim F. Storm <storm@cua.dk>
parents: 57873
diff changeset
3772 defsubr (&Scalled_interactively_p);
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3773 defsubr (&Scommandp);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3774 defsubr (&Sautoload);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3775 defsubr (&Seval);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3776 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
3777 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
3778 defsubr (&Srun_hooks);
12711
a8feaa42d775 (syms_of_eval): Add missing defsubr.
Karl Heuer <kwzh@gnu.org>
parents: 12663
diff changeset
3779 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
3780 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
3781 defsubr (&Srun_hook_with_args_until_failure);
11205
81a008df9184 (Ffetch_bytecode): New function.
Karl Heuer <kwzh@gnu.org>
parents: 11007
diff changeset
3782 defsubr (&Sfetch_bytecode);
272
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3783 defsubr (&Sbacktrace_debug);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3784 defsubr (&Sbacktrace);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3785 defsubr (&Sbacktrace_frame);
ce09dc583890 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3786 }
52401
695cf19ef79e Add arch taglines
Miles Bader <miles@gnu.org>
parents: 51294
diff changeset
3787
695cf19ef79e Add arch taglines
Miles Bader <miles@gnu.org>
parents: 51294
diff changeset
3788 /* arch-tag: 014a07aa-33ab-4a8f-a3d2-ee8a4a9ff7fb
695cf19ef79e Add arch taglines
Miles Bader <miles@gnu.org>
parents: 51294
diff changeset
3789 (do not change this comment) */