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