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