Mercurial > emacs
annotate src/data.c @ 3273:a5e5e1e04331
Don't include termios.h directly--let systty.h do it.
(shut_down_emacs): Maybe close X connection here. New arg NO_X.
(Fkill_emacs): Don't close it here. Pass new arg.
(fatal_error_signal): Pass new arg.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Sat, 29 May 1993 20:57:33 +0000 |
parents | e94a593c3952 |
children | 30b946dd8c66 |
rev | line source |
---|---|
298 | 1 /* Primitive operations on Lisp data types for GNU Emacs Lisp interpreter. |
2961 | 2 Copyright (C) 1985, 1986, 1988, 1993 Free Software Foundation, Inc. |
298 | 3 |
4 This file is part of GNU Emacs. | |
5 | |
6 GNU Emacs is free software; you can redistribute it and/or modify | |
7 it under the terms of the GNU General Public License as published by | |
8 the Free Software Foundation; either version 1, or (at your option) | |
9 any later version. | |
10 | |
11 GNU Emacs is distributed in the hope that it will be useful, | |
12 but WITHOUT ANY WARRANTY; without even the implied warranty of | |
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
14 GNU General Public License for more details. | |
15 | |
16 You should have received a copy of the GNU General Public License | |
17 along with GNU Emacs; see the file COPYING. If not, write to | |
18 the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ | |
19 | |
20 | |
21 #include <signal.h> | |
22 | |
23 #include "config.h" | |
24 #include "lisp.h" | |
336 | 25 #include "puresize.h" |
298 | 26 |
27 #ifndef standalone | |
28 #include "buffer.h" | |
29 #endif | |
30 | |
552 | 31 #include "syssignal.h" |
348 | 32 |
298 | 33 #ifdef LISP_FLOAT_TYPE |
2781
fde05936aebb
* lread.c, data.c: If STDC_HEADERS is #defined, include <stdlib.h>
Jim Blandy <jimb@redhat.com>
parents:
2647
diff
changeset
|
34 #ifdef STDC_HEADERS |
fde05936aebb
* lread.c, data.c: If STDC_HEADERS is #defined, include <stdlib.h>
Jim Blandy <jimb@redhat.com>
parents:
2647
diff
changeset
|
35 #include <stdlib.h> |
fde05936aebb
* lread.c, data.c: If STDC_HEADERS is #defined, include <stdlib.h>
Jim Blandy <jimb@redhat.com>
parents:
2647
diff
changeset
|
36 #endif |
298 | 37 #include <math.h> |
38 #endif /* LISP_FLOAT_TYPE */ | |
39 | |
40 Lisp_Object Qnil, Qt, Qquote, Qlambda, Qsubr, Qunbound; | |
41 Lisp_Object Qerror_conditions, Qerror_message, Qtop_level; | |
42 Lisp_Object Qerror, Qquit, Qwrong_type_argument, Qargs_out_of_range; | |
648 | 43 Lisp_Object Qvoid_variable, Qvoid_function, Qcyclic_function_indirection; |
298 | 44 Lisp_Object Qsetting_constant, Qinvalid_read_syntax; |
45 Lisp_Object Qinvalid_function, Qwrong_number_of_arguments, Qno_catch; | |
46 Lisp_Object Qend_of_file, Qarith_error; | |
47 Lisp_Object Qbeginning_of_buffer, Qend_of_buffer, Qbuffer_read_only; | |
48 Lisp_Object Qintegerp, Qnatnump, Qsymbolp, Qlistp, Qconsp; | |
49 Lisp_Object Qstringp, Qarrayp, Qsequencep, Qbufferp; | |
50 Lisp_Object Qchar_or_string_p, Qmarkerp, Qinteger_or_marker_p, Qvectorp; | |
1293 | 51 Lisp_Object Qbuffer_or_string_p; |
298 | 52 Lisp_Object Qboundp, Qfboundp; |
53 Lisp_Object Qcdr; | |
54 | |
2092
7497fce1e426
(syms_of_data) [LISP_FLOAT_TYPE]: Define new error conditions:
Richard M. Stallman <rms@gnu.org>
parents:
1987
diff
changeset
|
55 Lisp_Object Qrange_error, Qdomain_error, Qsingularity_error; |
7497fce1e426
(syms_of_data) [LISP_FLOAT_TYPE]: Define new error conditions:
Richard M. Stallman <rms@gnu.org>
parents:
1987
diff
changeset
|
56 Lisp_Object Qoverflow_error, Qunderflow_error; |
7497fce1e426
(syms_of_data) [LISP_FLOAT_TYPE]: Define new error conditions:
Richard M. Stallman <rms@gnu.org>
parents:
1987
diff
changeset
|
57 |
298 | 58 #ifdef LISP_FLOAT_TYPE |
695
e3fac20d3015
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
648
diff
changeset
|
59 Lisp_Object Qfloatp; |
298 | 60 Lisp_Object Qnumberp, Qnumber_or_marker_p; |
61 #endif | |
62 | |
63 static Lisp_Object swap_in_symval_forwarding (); | |
64 | |
65 Lisp_Object | |
66 wrong_type_argument (predicate, value) | |
67 register Lisp_Object predicate, value; | |
68 { | |
69 register Lisp_Object tem; | |
70 do | |
71 { | |
72 if (!EQ (Vmocklisp_arguments, Qt)) | |
73 { | |
74 if (XTYPE (value) == Lisp_String && | |
75 (EQ (predicate, Qintegerp) || EQ (predicate, Qinteger_or_marker_p))) | |
1914
60965a5c325f
* data.c (Fstring_to_number): Skip initial spaces, to make Emacs
Jim Blandy <jimb@redhat.com>
parents:
1821
diff
changeset
|
76 return Fstring_to_number (value); |
298 | 77 if (XTYPE (value) == Lisp_Int && EQ (predicate, Qstringp)) |
2429
96b55f2f19cd
Rename int-to-string to number-to-string, since it can handle
Jim Blandy <jimb@redhat.com>
parents:
2092
diff
changeset
|
78 return Fnumber_to_string (value); |
298 | 79 } |
80 value = Fsignal (Qwrong_type_argument, Fcons (predicate, Fcons (value, Qnil))); | |
81 tem = call1 (predicate, value); | |
82 } | |
490 | 83 while (NILP (tem)); |
298 | 84 return value; |
85 } | |
86 | |
87 pure_write_error () | |
88 { | |
89 error ("Attempt to modify read-only object"); | |
90 } | |
91 | |
92 void | |
93 args_out_of_range (a1, a2) | |
94 Lisp_Object a1, a2; | |
95 { | |
96 while (1) | |
97 Fsignal (Qargs_out_of_range, Fcons (a1, Fcons (a2, Qnil))); | |
98 } | |
99 | |
100 void | |
101 args_out_of_range_3 (a1, a2, a3) | |
102 Lisp_Object a1, a2, a3; | |
103 { | |
104 while (1) | |
105 Fsignal (Qargs_out_of_range, Fcons (a1, Fcons (a2, Fcons (a3, Qnil)))); | |
106 } | |
107 | |
108 Lisp_Object | |
109 make_number (num) | |
110 int num; | |
111 { | |
112 register Lisp_Object val; | |
113 XSET (val, Lisp_Int, num); | |
114 return val; | |
115 } | |
116 | |
117 /* On some machines, XINT needs a temporary location. | |
118 Here it is, in case it is needed. */ | |
119 | |
120 int sign_extend_temp; | |
121 | |
122 /* On a few machines, XINT can only be done by calling this. */ | |
123 | |
124 int | |
125 sign_extend_lisp_int (num) | |
126 int num; | |
127 { | |
128 if (num & (1 << (VALBITS - 1))) | |
129 return num | ((-1) << VALBITS); | |
130 else | |
131 return num & ((1 << VALBITS) - 1); | |
132 } | |
133 | |
134 /* Data type predicates */ | |
135 | |
136 DEFUN ("eq", Feq, Seq, 2, 2, 0, | |
137 "T if the two args are the same Lisp object.") | |
138 (obj1, obj2) | |
139 Lisp_Object obj1, obj2; | |
140 { | |
141 if (EQ (obj1, obj2)) | |
142 return Qt; | |
143 return Qnil; | |
144 } | |
145 | |
146 DEFUN ("null", Fnull, Snull, 1, 1, 0, "T if OBJECT is nil.") | |
147 (obj) | |
148 Lisp_Object obj; | |
149 { | |
490 | 150 if (NILP (obj)) |
298 | 151 return Qt; |
152 return Qnil; | |
153 } | |
154 | |
155 DEFUN ("consp", Fconsp, Sconsp, 1, 1, 0, "T if OBJECT is a cons cell.") | |
156 (obj) | |
157 Lisp_Object obj; | |
158 { | |
159 if (XTYPE (obj) == Lisp_Cons) | |
160 return Qt; | |
161 return Qnil; | |
162 } | |
163 | |
164 DEFUN ("atom", Fatom, Satom, 1, 1, 0, "T if OBJECT is not a cons cell. This includes nil.") | |
165 (obj) | |
166 Lisp_Object obj; | |
167 { | |
168 if (XTYPE (obj) == Lisp_Cons) | |
169 return Qnil; | |
170 return Qt; | |
171 } | |
172 | |
173 DEFUN ("listp", Flistp, Slistp, 1, 1, 0, "T if OBJECT is a list. This includes nil.") | |
174 (obj) | |
175 Lisp_Object obj; | |
176 { | |
490 | 177 if (XTYPE (obj) == Lisp_Cons || NILP (obj)) |
298 | 178 return Qt; |
179 return Qnil; | |
180 } | |
181 | |
182 DEFUN ("nlistp", Fnlistp, Snlistp, 1, 1, 0, "T if OBJECT is not a list. Lists include nil.") | |
183 (obj) | |
184 Lisp_Object obj; | |
185 { | |
490 | 186 if (XTYPE (obj) == Lisp_Cons || NILP (obj)) |
298 | 187 return Qnil; |
188 return Qt; | |
189 } | |
190 | |
191 DEFUN ("symbolp", Fsymbolp, Ssymbolp, 1, 1, 0, "T if OBJECT is a symbol.") | |
192 (obj) | |
193 Lisp_Object obj; | |
194 { | |
195 if (XTYPE (obj) == Lisp_Symbol) | |
196 return Qt; | |
197 return Qnil; | |
198 } | |
199 | |
200 DEFUN ("vectorp", Fvectorp, Svectorp, 1, 1, 0, "T if OBJECT is a vector.") | |
201 (obj) | |
202 Lisp_Object obj; | |
203 { | |
204 if (XTYPE (obj) == Lisp_Vector) | |
205 return Qt; | |
206 return Qnil; | |
207 } | |
208 | |
209 DEFUN ("stringp", Fstringp, Sstringp, 1, 1, 0, "T if OBJECT is a string.") | |
210 (obj) | |
211 Lisp_Object obj; | |
212 { | |
213 if (XTYPE (obj) == Lisp_String) | |
214 return Qt; | |
215 return Qnil; | |
216 } | |
217 | |
218 DEFUN ("arrayp", Farrayp, Sarrayp, 1, 1, 0, "T if OBJECT is an array (string or vector).") | |
219 (obj) | |
220 Lisp_Object obj; | |
221 { | |
222 if (XTYPE (obj) == Lisp_Vector || XTYPE (obj) == Lisp_String) | |
223 return Qt; | |
224 return Qnil; | |
225 } | |
226 | |
227 DEFUN ("sequencep", Fsequencep, Ssequencep, 1, 1, 0, | |
228 "T if OBJECT is a sequence (list or array).") | |
229 (obj) | |
230 register Lisp_Object obj; | |
231 { | |
490 | 232 if (CONSP (obj) || NILP (obj) || |
298 | 233 XTYPE (obj) == Lisp_Vector || XTYPE (obj) == Lisp_String) |
234 return Qt; | |
235 return Qnil; | |
236 } | |
237 | |
238 DEFUN ("bufferp", Fbufferp, Sbufferp, 1, 1, 0, "T if OBJECT is an editor buffer.") | |
239 (obj) | |
240 Lisp_Object obj; | |
241 { | |
242 if (XTYPE (obj) == Lisp_Buffer) | |
243 return Qt; | |
244 return Qnil; | |
245 } | |
246 | |
247 DEFUN ("markerp", Fmarkerp, Smarkerp, 1, 1, 0, "T if OBJECT is a marker (editor pointer).") | |
248 (obj) | |
249 Lisp_Object obj; | |
250 { | |
251 if (XTYPE (obj) == Lisp_Marker) | |
252 return Qt; | |
253 return Qnil; | |
254 } | |
255 | |
256 DEFUN ("subrp", Fsubrp, Ssubrp, 1, 1, 0, "T if OBJECT is a built-in function.") | |
257 (obj) | |
258 Lisp_Object obj; | |
259 { | |
260 if (XTYPE (obj) == Lisp_Subr) | |
261 return Qt; | |
262 return Qnil; | |
263 } | |
264 | |
1821
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1648
diff
changeset
|
265 DEFUN ("byte-code-function-p", Fbyte_code_function_p, Sbyte_code_function_p, |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1648
diff
changeset
|
266 1, 1, 0, "T if OBJECT is a byte-compiled function object.") |
298 | 267 (obj) |
268 Lisp_Object obj; | |
269 { | |
270 if (XTYPE (obj) == Lisp_Compiled) | |
271 return Qt; | |
272 return Qnil; | |
273 } | |
274 | |
275 DEFUN ("char-or-string-p", Fchar_or_string_p, Schar_or_string_p, 1, 1, 0, "T if OBJECT is a character (a number) or a string.") | |
276 (obj) | |
277 register Lisp_Object obj; | |
278 { | |
279 if (XTYPE (obj) == Lisp_Int || XTYPE (obj) == Lisp_String) | |
280 return Qt; | |
281 return Qnil; | |
282 } | |
283 | |
284 DEFUN ("integerp", Fintegerp, Sintegerp, 1, 1, 0, "T if OBJECT is a number.") | |
285 (obj) | |
286 Lisp_Object obj; | |
287 { | |
288 if (XTYPE (obj) == Lisp_Int) | |
289 return Qt; | |
290 return Qnil; | |
291 } | |
292 | |
695
e3fac20d3015
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
648
diff
changeset
|
293 DEFUN ("integer-or-marker-p", Finteger_or_marker_p, Sinteger_or_marker_p, 1, 1, 0, |
e3fac20d3015
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
648
diff
changeset
|
294 "T if OBJECT is an integer or a marker (editor pointer).") |
e3fac20d3015
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
648
diff
changeset
|
295 (obj) |
e3fac20d3015
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
648
diff
changeset
|
296 register Lisp_Object obj; |
e3fac20d3015
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
648
diff
changeset
|
297 { |
e3fac20d3015
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
648
diff
changeset
|
298 if (XTYPE (obj) == Lisp_Marker || XTYPE (obj) == Lisp_Int) |
e3fac20d3015
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
648
diff
changeset
|
299 return Qt; |
e3fac20d3015
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
648
diff
changeset
|
300 return Qnil; |
e3fac20d3015
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
648
diff
changeset
|
301 } |
e3fac20d3015
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
648
diff
changeset
|
302 |
298 | 303 DEFUN ("natnump", Fnatnump, Snatnump, 1, 1, 0, "T if OBJECT is a nonnegative number.") |
304 (obj) | |
305 Lisp_Object obj; | |
306 { | |
307 if (XTYPE (obj) == Lisp_Int && XINT (obj) >= 0) | |
308 return Qt; | |
309 return Qnil; | |
310 } | |
311 | |
695
e3fac20d3015
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
648
diff
changeset
|
312 DEFUN ("numberp", Fnumberp, Snumberp, 1, 1, 0, |
e3fac20d3015
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
648
diff
changeset
|
313 "T if OBJECT is a number (floating point or integer).") |
e3fac20d3015
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
648
diff
changeset
|
314 (obj) |
e3fac20d3015
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
648
diff
changeset
|
315 Lisp_Object obj; |
e3fac20d3015
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
648
diff
changeset
|
316 { |
1821
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1648
diff
changeset
|
317 if (NUMBERP (obj)) |
695
e3fac20d3015
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
648
diff
changeset
|
318 return Qt; |
1821
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1648
diff
changeset
|
319 else |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1648
diff
changeset
|
320 return Qnil; |
695
e3fac20d3015
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
648
diff
changeset
|
321 } |
e3fac20d3015
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
648
diff
changeset
|
322 |
e3fac20d3015
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
648
diff
changeset
|
323 DEFUN ("number-or-marker-p", Fnumber_or_marker_p, |
e3fac20d3015
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
648
diff
changeset
|
324 Snumber_or_marker_p, 1, 1, 0, |
e3fac20d3015
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
648
diff
changeset
|
325 "T if OBJECT is a number or a marker.") |
e3fac20d3015
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
648
diff
changeset
|
326 (obj) |
e3fac20d3015
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
648
diff
changeset
|
327 Lisp_Object obj; |
e3fac20d3015
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
648
diff
changeset
|
328 { |
1821
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1648
diff
changeset
|
329 if (NUMBERP (obj) |
695
e3fac20d3015
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
648
diff
changeset
|
330 || XTYPE (obj) == Lisp_Marker) |
e3fac20d3015
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
648
diff
changeset
|
331 return Qt; |
e3fac20d3015
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
648
diff
changeset
|
332 return Qnil; |
e3fac20d3015
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
648
diff
changeset
|
333 } |
e3fac20d3015
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
648
diff
changeset
|
334 |
298 | 335 #ifdef LISP_FLOAT_TYPE |
336 DEFUN ("floatp", Ffloatp, Sfloatp, 1, 1, 0, | |
337 "T if OBJECT is a floating point number.") | |
338 (obj) | |
339 Lisp_Object obj; | |
340 { | |
341 if (XTYPE (obj) == Lisp_Float) | |
342 return Qt; | |
343 return Qnil; | |
344 } | |
345 #endif /* LISP_FLOAT_TYPE */ | |
346 | |
347 /* Extract and set components of lists */ | |
348 | |
349 DEFUN ("car", Fcar, Scar, 1, 1, 0, | |
350 "Return the car of CONSCELL. If arg is nil, return nil.\n\ | |
351 Error if arg is not nil and not a cons cell. See also `car-safe'.") | |
352 (list) | |
353 register Lisp_Object list; | |
354 { | |
355 while (1) | |
356 { | |
357 if (XTYPE (list) == Lisp_Cons) | |
358 return XCONS (list)->car; | |
359 else if (EQ (list, Qnil)) | |
360 return Qnil; | |
361 else | |
362 list = wrong_type_argument (Qlistp, list); | |
363 } | |
364 } | |
365 | |
366 DEFUN ("car-safe", Fcar_safe, Scar_safe, 1, 1, 0, | |
367 "Return the car of OBJECT if it is a cons cell, or else nil.") | |
368 (object) | |
369 Lisp_Object object; | |
370 { | |
371 if (XTYPE (object) == Lisp_Cons) | |
372 return XCONS (object)->car; | |
373 else | |
374 return Qnil; | |
375 } | |
376 | |
377 DEFUN ("cdr", Fcdr, Scdr, 1, 1, 0, | |
378 "Return the cdr of CONSCELL. If arg is nil, return nil.\n\ | |
379 Error if arg is not nil and not a cons cell. See also `cdr-safe'.") | |
380 | |
381 (list) | |
382 register Lisp_Object list; | |
383 { | |
384 while (1) | |
385 { | |
386 if (XTYPE (list) == Lisp_Cons) | |
387 return XCONS (list)->cdr; | |
388 else if (EQ (list, Qnil)) | |
389 return Qnil; | |
390 else | |
391 list = wrong_type_argument (Qlistp, list); | |
392 } | |
393 } | |
394 | |
395 DEFUN ("cdr-safe", Fcdr_safe, Scdr_safe, 1, 1, 0, | |
396 "Return the cdr of OBJECT if it is a cons cell, or else nil.") | |
397 (object) | |
398 Lisp_Object object; | |
399 { | |
400 if (XTYPE (object) == Lisp_Cons) | |
401 return XCONS (object)->cdr; | |
402 else | |
403 return Qnil; | |
404 } | |
405 | |
406 DEFUN ("setcar", Fsetcar, Ssetcar, 2, 2, 0, | |
407 "Set the car of CONSCELL to be NEWCAR. Returns NEWCAR.") | |
408 (cell, newcar) | |
409 register Lisp_Object cell, newcar; | |
410 { | |
411 if (XTYPE (cell) != Lisp_Cons) | |
412 cell = wrong_type_argument (Qconsp, cell); | |
413 | |
414 CHECK_IMPURE (cell); | |
415 XCONS (cell)->car = newcar; | |
416 return newcar; | |
417 } | |
418 | |
419 DEFUN ("setcdr", Fsetcdr, Ssetcdr, 2, 2, 0, | |
420 "Set the cdr of CONSCELL to be NEWCDR. Returns NEWCDR.") | |
421 (cell, newcdr) | |
422 register Lisp_Object cell, newcdr; | |
423 { | |
424 if (XTYPE (cell) != Lisp_Cons) | |
425 cell = wrong_type_argument (Qconsp, cell); | |
426 | |
427 CHECK_IMPURE (cell); | |
428 XCONS (cell)->cdr = newcdr; | |
429 return newcdr; | |
430 } | |
431 | |
432 /* Extract and set components of symbols */ | |
433 | |
434 DEFUN ("boundp", Fboundp, Sboundp, 1, 1, 0, "T if SYMBOL's value is not void.") | |
435 (sym) | |
436 register Lisp_Object sym; | |
437 { | |
438 Lisp_Object valcontents; | |
439 CHECK_SYMBOL (sym, 0); | |
440 | |
441 valcontents = XSYMBOL (sym)->value; | |
442 | |
443 #ifdef SWITCH_ENUM_BUG | |
444 switch ((int) XTYPE (valcontents)) | |
445 #else | |
446 switch (XTYPE (valcontents)) | |
447 #endif | |
448 { | |
449 case Lisp_Buffer_Local_Value: | |
450 case Lisp_Some_Buffer_Local_Value: | |
451 valcontents = swap_in_symval_forwarding (sym, valcontents); | |
452 } | |
453 | |
454 return (XTYPE (valcontents) == Lisp_Void || EQ (valcontents, Qunbound) | |
455 ? Qnil : Qt); | |
456 } | |
457 | |
458 DEFUN ("fboundp", Ffboundp, Sfboundp, 1, 1, 0, "T if SYMBOL's function definition is not void.") | |
459 (sym) | |
460 register Lisp_Object sym; | |
461 { | |
462 CHECK_SYMBOL (sym, 0); | |
463 return (XTYPE (XSYMBOL (sym)->function) == Lisp_Void | |
464 || EQ (XSYMBOL (sym)->function, Qunbound)) | |
465 ? Qnil : Qt; | |
466 } | |
467 | |
468 DEFUN ("makunbound", Fmakunbound, Smakunbound, 1, 1, 0, "Make SYMBOL's value be void.") | |
469 (sym) | |
470 register Lisp_Object sym; | |
471 { | |
472 CHECK_SYMBOL (sym, 0); | |
490 | 473 if (NILP (sym) || EQ (sym, Qt)) |
298 | 474 return Fsignal (Qsetting_constant, Fcons (sym, Qnil)); |
475 Fset (sym, Qunbound); | |
476 return sym; | |
477 } | |
478 | |
479 DEFUN ("fmakunbound", Ffmakunbound, Sfmakunbound, 1, 1, 0, "Make SYMBOL's function definition be void.") | |
480 (sym) | |
481 register Lisp_Object sym; | |
482 { | |
483 CHECK_SYMBOL (sym, 0); | |
484 XSYMBOL (sym)->function = Qunbound; | |
485 return sym; | |
486 } | |
487 | |
488 DEFUN ("symbol-function", Fsymbol_function, Ssymbol_function, 1, 1, 0, | |
489 "Return SYMBOL's function definition. Error if that is void.") | |
648 | 490 (symbol) |
491 register Lisp_Object symbol; | |
298 | 492 { |
648 | 493 CHECK_SYMBOL (symbol, 0); |
494 if (EQ (XSYMBOL (symbol)->function, Qunbound)) | |
495 return Fsignal (Qvoid_function, Fcons (symbol, Qnil)); | |
496 return XSYMBOL (symbol)->function; | |
298 | 497 } |
498 | |
499 DEFUN ("symbol-plist", Fsymbol_plist, Ssymbol_plist, 1, 1, 0, "Return SYMBOL's property list.") | |
500 (sym) | |
501 register Lisp_Object sym; | |
502 { | |
503 CHECK_SYMBOL (sym, 0); | |
504 return XSYMBOL (sym)->plist; | |
505 } | |
506 | |
507 DEFUN ("symbol-name", Fsymbol_name, Ssymbol_name, 1, 1, 0, "Return SYMBOL's name, a string.") | |
508 (sym) | |
509 register Lisp_Object sym; | |
510 { | |
511 register Lisp_Object name; | |
512 | |
513 CHECK_SYMBOL (sym, 0); | |
514 XSET (name, Lisp_String, XSYMBOL (sym)->name); | |
515 return name; | |
516 } | |
517 | |
518 DEFUN ("fset", Ffset, Sfset, 2, 2, 0, | |
519 "Set SYMBOL's function definition to NEWVAL, and return NEWVAL.") | |
520 (sym, newdef) | |
521 register Lisp_Object sym, newdef; | |
522 { | |
523 CHECK_SYMBOL (sym, 0); | |
2647
425c4138af31
* data.c (Ffset): Refuse to set the function value of t or nil.
Jim Blandy <jimb@redhat.com>
parents:
2606
diff
changeset
|
524 if (NILP (sym) || EQ (sym, Qt)) |
425c4138af31
* data.c (Ffset): Refuse to set the function value of t or nil.
Jim Blandy <jimb@redhat.com>
parents:
2606
diff
changeset
|
525 return Fsignal (Qsetting_constant, Fcons (sym, Qnil)); |
425c4138af31
* data.c (Ffset): Refuse to set the function value of t or nil.
Jim Blandy <jimb@redhat.com>
parents:
2606
diff
changeset
|
526 |
490 | 527 if (!NILP (Vautoload_queue) && !EQ (XSYMBOL (sym)->function, Qunbound)) |
298 | 528 Vautoload_queue = Fcons (Fcons (sym, XSYMBOL (sym)->function), |
529 Vautoload_queue); | |
530 XSYMBOL (sym)->function = newdef; | |
531 return newdef; | |
532 } | |
533 | |
2606
6bf6499fe4db
(Fdefine_function): New function (same code as Fdefalias).
Richard M. Stallman <rms@gnu.org>
parents:
2565
diff
changeset
|
534 /* This name should be removed once it is eliminated from elsewhere. */ |
6bf6499fe4db
(Fdefine_function): New function (same code as Fdefalias).
Richard M. Stallman <rms@gnu.org>
parents:
2565
diff
changeset
|
535 |
2565
c1a1557bffde
(Fdefine_function): Changed name back to Fdefalias, so we get things
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2548
diff
changeset
|
536 DEFUN ("defalias", Fdefalias, Sdefalias, 2, 2, 0, |
2548
b66eeded6afc
(Fdefine_function): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2515
diff
changeset
|
537 "Set SYMBOL's function definition to NEWVAL, and return NEWVAL.\n\ |
b66eeded6afc
(Fdefine_function): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2515
diff
changeset
|
538 Associates the function with the current load file, if any.") |
b66eeded6afc
(Fdefine_function): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2515
diff
changeset
|
539 (sym, newdef) |
b66eeded6afc
(Fdefine_function): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2515
diff
changeset
|
540 register Lisp_Object sym, newdef; |
b66eeded6afc
(Fdefine_function): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2515
diff
changeset
|
541 { |
b66eeded6afc
(Fdefine_function): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2515
diff
changeset
|
542 CHECK_SYMBOL (sym, 0); |
b66eeded6afc
(Fdefine_function): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2515
diff
changeset
|
543 if (!NILP (Vautoload_queue) && !EQ (XSYMBOL (sym)->function, Qunbound)) |
b66eeded6afc
(Fdefine_function): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2515
diff
changeset
|
544 Vautoload_queue = Fcons (Fcons (sym, XSYMBOL (sym)->function), |
b66eeded6afc
(Fdefine_function): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2515
diff
changeset
|
545 Vautoload_queue); |
b66eeded6afc
(Fdefine_function): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2515
diff
changeset
|
546 XSYMBOL (sym)->function = newdef; |
b66eeded6afc
(Fdefine_function): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2515
diff
changeset
|
547 LOADHIST_ATTACH (sym); |
b66eeded6afc
(Fdefine_function): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2515
diff
changeset
|
548 return newdef; |
b66eeded6afc
(Fdefine_function): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2515
diff
changeset
|
549 } |
b66eeded6afc
(Fdefine_function): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2515
diff
changeset
|
550 |
2606
6bf6499fe4db
(Fdefine_function): New function (same code as Fdefalias).
Richard M. Stallman <rms@gnu.org>
parents:
2565
diff
changeset
|
551 DEFUN ("define-function", Fdefine_function, Sdefine_function, 2, 2, 0, |
6bf6499fe4db
(Fdefine_function): New function (same code as Fdefalias).
Richard M. Stallman <rms@gnu.org>
parents:
2565
diff
changeset
|
552 "Set SYMBOL's function definition to NEWVAL, and return NEWVAL.\n\ |
6bf6499fe4db
(Fdefine_function): New function (same code as Fdefalias).
Richard M. Stallman <rms@gnu.org>
parents:
2565
diff
changeset
|
553 Associates the function with the current load file, if any.") |
6bf6499fe4db
(Fdefine_function): New function (same code as Fdefalias).
Richard M. Stallman <rms@gnu.org>
parents:
2565
diff
changeset
|
554 (sym, newdef) |
6bf6499fe4db
(Fdefine_function): New function (same code as Fdefalias).
Richard M. Stallman <rms@gnu.org>
parents:
2565
diff
changeset
|
555 register Lisp_Object sym, newdef; |
6bf6499fe4db
(Fdefine_function): New function (same code as Fdefalias).
Richard M. Stallman <rms@gnu.org>
parents:
2565
diff
changeset
|
556 { |
6bf6499fe4db
(Fdefine_function): New function (same code as Fdefalias).
Richard M. Stallman <rms@gnu.org>
parents:
2565
diff
changeset
|
557 CHECK_SYMBOL (sym, 0); |
6bf6499fe4db
(Fdefine_function): New function (same code as Fdefalias).
Richard M. Stallman <rms@gnu.org>
parents:
2565
diff
changeset
|
558 if (!NILP (Vautoload_queue) && !EQ (XSYMBOL (sym)->function, Qunbound)) |
6bf6499fe4db
(Fdefine_function): New function (same code as Fdefalias).
Richard M. Stallman <rms@gnu.org>
parents:
2565
diff
changeset
|
559 Vautoload_queue = Fcons (Fcons (sym, XSYMBOL (sym)->function), |
6bf6499fe4db
(Fdefine_function): New function (same code as Fdefalias).
Richard M. Stallman <rms@gnu.org>
parents:
2565
diff
changeset
|
560 Vautoload_queue); |
6bf6499fe4db
(Fdefine_function): New function (same code as Fdefalias).
Richard M. Stallman <rms@gnu.org>
parents:
2565
diff
changeset
|
561 XSYMBOL (sym)->function = newdef; |
6bf6499fe4db
(Fdefine_function): New function (same code as Fdefalias).
Richard M. Stallman <rms@gnu.org>
parents:
2565
diff
changeset
|
562 LOADHIST_ATTACH (sym); |
6bf6499fe4db
(Fdefine_function): New function (same code as Fdefalias).
Richard M. Stallman <rms@gnu.org>
parents:
2565
diff
changeset
|
563 return newdef; |
6bf6499fe4db
(Fdefine_function): New function (same code as Fdefalias).
Richard M. Stallman <rms@gnu.org>
parents:
2565
diff
changeset
|
564 } |
6bf6499fe4db
(Fdefine_function): New function (same code as Fdefalias).
Richard M. Stallman <rms@gnu.org>
parents:
2565
diff
changeset
|
565 |
298 | 566 DEFUN ("setplist", Fsetplist, Ssetplist, 2, 2, 0, |
567 "Set SYMBOL's property list to NEWVAL, and return NEWVAL.") | |
568 (sym, newplist) | |
569 register Lisp_Object sym, newplist; | |
570 { | |
571 CHECK_SYMBOL (sym, 0); | |
572 XSYMBOL (sym)->plist = newplist; | |
573 return newplist; | |
574 } | |
648 | 575 |
298 | 576 |
577 /* Getting and setting values of symbols */ | |
578 | |
579 /* Given the raw contents of a symbol value cell, | |
580 return the Lisp value of the symbol. | |
581 This does not handle buffer-local variables; use | |
582 swap_in_symval_forwarding for that. */ | |
583 | |
584 Lisp_Object | |
585 do_symval_forwarding (valcontents) | |
586 register Lisp_Object valcontents; | |
587 { | |
588 register Lisp_Object val; | |
589 #ifdef SWITCH_ENUM_BUG | |
590 switch ((int) XTYPE (valcontents)) | |
591 #else | |
592 switch (XTYPE (valcontents)) | |
593 #endif | |
594 { | |
595 case Lisp_Intfwd: | |
596 XSET (val, Lisp_Int, *XINTPTR (valcontents)); | |
597 return val; | |
598 | |
599 case Lisp_Boolfwd: | |
600 if (*XINTPTR (valcontents)) | |
601 return Qt; | |
602 return Qnil; | |
603 | |
604 case Lisp_Objfwd: | |
605 return *XOBJFWD (valcontents); | |
606 | |
607 case Lisp_Buffer_Objfwd: | |
608 return *(Lisp_Object *)(XUINT (valcontents) + (char *)current_buffer); | |
609 } | |
610 return valcontents; | |
611 } | |
612 | |
613 /* Store NEWVAL into SYM, where VALCONTENTS is found in the value cell | |
614 of SYM. If SYM is buffer-local, VALCONTENTS should be the | |
615 buffer-independent contents of the value cell: forwarded just one | |
616 step past the buffer-localness. */ | |
617 | |
618 void | |
619 store_symval_forwarding (sym, valcontents, newval) | |
620 Lisp_Object sym; | |
621 register Lisp_Object valcontents, newval; | |
622 { | |
623 #ifdef SWITCH_ENUM_BUG | |
624 switch ((int) XTYPE (valcontents)) | |
625 #else | |
626 switch (XTYPE (valcontents)) | |
627 #endif | |
628 { | |
629 case Lisp_Intfwd: | |
630 CHECK_NUMBER (newval, 1); | |
631 *XINTPTR (valcontents) = XINT (newval); | |
632 break; | |
633 | |
634 case Lisp_Boolfwd: | |
490 | 635 *XINTPTR (valcontents) = NILP(newval) ? 0 : 1; |
298 | 636 break; |
637 | |
638 case Lisp_Objfwd: | |
639 *XOBJFWD (valcontents) = newval; | |
640 break; | |
641 | |
642 case Lisp_Buffer_Objfwd: | |
1002
65f15f1961d8
* data.c [USG] (Frem): Call fmod, rather than drem. Rah.
Jim Blandy <jimb@redhat.com>
parents:
733
diff
changeset
|
643 { |
65f15f1961d8
* data.c [USG] (Frem): Call fmod, rather than drem. Rah.
Jim Blandy <jimb@redhat.com>
parents:
733
diff
changeset
|
644 unsigned int offset = XUINT (valcontents); |
65f15f1961d8
* data.c [USG] (Frem): Call fmod, rather than drem. Rah.
Jim Blandy <jimb@redhat.com>
parents:
733
diff
changeset
|
645 Lisp_Object type = |
65f15f1961d8
* data.c [USG] (Frem): Call fmod, rather than drem. Rah.
Jim Blandy <jimb@redhat.com>
parents:
733
diff
changeset
|
646 *(Lisp_Object *)(offset + (char *)&buffer_local_types); |
65f15f1961d8
* data.c [USG] (Frem): Call fmod, rather than drem. Rah.
Jim Blandy <jimb@redhat.com>
parents:
733
diff
changeset
|
647 |
65f15f1961d8
* data.c [USG] (Frem): Call fmod, rather than drem. Rah.
Jim Blandy <jimb@redhat.com>
parents:
733
diff
changeset
|
648 if (! NILP (type) && ! NILP (newval) |
65f15f1961d8
* data.c [USG] (Frem): Call fmod, rather than drem. Rah.
Jim Blandy <jimb@redhat.com>
parents:
733
diff
changeset
|
649 && XTYPE (newval) != XINT (type)) |
65f15f1961d8
* data.c [USG] (Frem): Call fmod, rather than drem. Rah.
Jim Blandy <jimb@redhat.com>
parents:
733
diff
changeset
|
650 buffer_slot_type_mismatch (valcontents, newval); |
65f15f1961d8
* data.c [USG] (Frem): Call fmod, rather than drem. Rah.
Jim Blandy <jimb@redhat.com>
parents:
733
diff
changeset
|
651 |
65f15f1961d8
* data.c [USG] (Frem): Call fmod, rather than drem. Rah.
Jim Blandy <jimb@redhat.com>
parents:
733
diff
changeset
|
652 *(Lisp_Object *)(XUINT (valcontents) + (char *)current_buffer) |
65f15f1961d8
* data.c [USG] (Frem): Call fmod, rather than drem. Rah.
Jim Blandy <jimb@redhat.com>
parents:
733
diff
changeset
|
653 = newval; |
65f15f1961d8
* data.c [USG] (Frem): Call fmod, rather than drem. Rah.
Jim Blandy <jimb@redhat.com>
parents:
733
diff
changeset
|
654 break; |
65f15f1961d8
* data.c [USG] (Frem): Call fmod, rather than drem. Rah.
Jim Blandy <jimb@redhat.com>
parents:
733
diff
changeset
|
655 } |
298 | 656 |
657 default: | |
658 valcontents = XSYMBOL (sym)->value; | |
659 if (XTYPE (valcontents) == Lisp_Buffer_Local_Value | |
660 || XTYPE (valcontents) == Lisp_Some_Buffer_Local_Value) | |
661 XCONS (XSYMBOL (sym)->value)->car = newval; | |
662 else | |
663 XSYMBOL (sym)->value = newval; | |
664 } | |
665 } | |
666 | |
667 /* Set up the buffer-local symbol SYM for validity in the current | |
668 buffer. VALCONTENTS is the contents of its value cell. | |
669 Return the value forwarded one step past the buffer-local indicator. */ | |
670 | |
671 static Lisp_Object | |
672 swap_in_symval_forwarding (sym, valcontents) | |
673 Lisp_Object sym, valcontents; | |
674 { | |
675 /* valcontents is a list | |
676 (REALVALUE BUFFER CURRENT-ALIST-ELEMENT . DEFAULT-VALUE)). | |
677 | |
678 CURRENT-ALIST-ELEMENT is a pointer to an element of BUFFER's | |
1263
3790dfbefb30
* data.c (swap_in_symval_forwarding): Formatting tweaked.
Jim Blandy <jimb@redhat.com>
parents:
1253
diff
changeset
|
679 local_var_alist, that being the element whose car is this |
3790dfbefb30
* data.c (swap_in_symval_forwarding): Formatting tweaked.
Jim Blandy <jimb@redhat.com>
parents:
1253
diff
changeset
|
680 variable. Or it can be a pointer to the |
3790dfbefb30
* data.c (swap_in_symval_forwarding): Formatting tweaked.
Jim Blandy <jimb@redhat.com>
parents:
1253
diff
changeset
|
681 (CURRENT-ALIST-ELEMENT . DEFAULT-VALUE), if BUFFER does not have |
3790dfbefb30
* data.c (swap_in_symval_forwarding): Formatting tweaked.
Jim Blandy <jimb@redhat.com>
parents:
1253
diff
changeset
|
682 an element in its alist for this variable. |
3790dfbefb30
* data.c (swap_in_symval_forwarding): Formatting tweaked.
Jim Blandy <jimb@redhat.com>
parents:
1253
diff
changeset
|
683 |
3790dfbefb30
* data.c (swap_in_symval_forwarding): Formatting tweaked.
Jim Blandy <jimb@redhat.com>
parents:
1253
diff
changeset
|
684 If the current buffer is not BUFFER, we store the current |
3790dfbefb30
* data.c (swap_in_symval_forwarding): Formatting tweaked.
Jim Blandy <jimb@redhat.com>
parents:
1253
diff
changeset
|
685 REALVALUE value into CURRENT-ALIST-ELEMENT, then find the |
3790dfbefb30
* data.c (swap_in_symval_forwarding): Formatting tweaked.
Jim Blandy <jimb@redhat.com>
parents:
1253
diff
changeset
|
686 appropriate alist element for the buffer now current and set up |
3790dfbefb30
* data.c (swap_in_symval_forwarding): Formatting tweaked.
Jim Blandy <jimb@redhat.com>
parents:
1253
diff
changeset
|
687 CURRENT-ALIST-ELEMENT. Then we set REALVALUE out of that |
3790dfbefb30
* data.c (swap_in_symval_forwarding): Formatting tweaked.
Jim Blandy <jimb@redhat.com>
parents:
1253
diff
changeset
|
688 element, and store into BUFFER. |
3790dfbefb30
* data.c (swap_in_symval_forwarding): Formatting tweaked.
Jim Blandy <jimb@redhat.com>
parents:
1253
diff
changeset
|
689 |
298 | 690 Note that REALVALUE can be a forwarding pointer. */ |
691 | |
692 register Lisp_Object tem1; | |
693 tem1 = XCONS (XCONS (valcontents)->cdr)->car; | |
694 | |
490 | 695 if (NILP (tem1) || current_buffer != XBUFFER (tem1)) |
298 | 696 { |
697 tem1 = XCONS (XCONS (XCONS (valcontents)->cdr)->cdr)->car; | |
698 Fsetcdr (tem1, do_symval_forwarding (XCONS (valcontents)->car)); | |
699 tem1 = assq_no_quit (sym, current_buffer->local_var_alist); | |
490 | 700 if (NILP (tem1)) |
298 | 701 tem1 = XCONS (XCONS (valcontents)->cdr)->cdr; |
702 XCONS (XCONS (XCONS (valcontents)->cdr)->cdr)->car = tem1; | |
703 XSET (XCONS (XCONS (valcontents)->cdr)->car, Lisp_Buffer, current_buffer); | |
704 store_symval_forwarding (sym, XCONS (valcontents)->car, Fcdr (tem1)); | |
705 } | |
706 return XCONS (valcontents)->car; | |
707 } | |
708 | |
514 | 709 /* Find the value of a symbol, returning Qunbound if it's not bound. |
710 This is helpful for code which just wants to get a variable's value | |
711 if it has one, without signalling an error. | |
712 Note that it must not be possible to quit | |
713 within this function. Great care is required for this. */ | |
298 | 714 |
514 | 715 Lisp_Object |
716 find_symbol_value (sym) | |
298 | 717 Lisp_Object sym; |
718 { | |
719 register Lisp_Object valcontents, tem1; | |
720 register Lisp_Object val; | |
721 CHECK_SYMBOL (sym, 0); | |
722 valcontents = XSYMBOL (sym)->value; | |
723 | |
724 retry: | |
725 #ifdef SWITCH_ENUM_BUG | |
726 switch ((int) XTYPE (valcontents)) | |
727 #else | |
728 switch (XTYPE (valcontents)) | |
729 #endif | |
730 { | |
731 case Lisp_Buffer_Local_Value: | |
732 case Lisp_Some_Buffer_Local_Value: | |
733 valcontents = swap_in_symval_forwarding (sym, valcontents); | |
734 goto retry; | |
735 | |
736 case Lisp_Intfwd: | |
737 XSET (val, Lisp_Int, *XINTPTR (valcontents)); | |
738 return val; | |
739 | |
740 case Lisp_Boolfwd: | |
741 if (*XINTPTR (valcontents)) | |
742 return Qt; | |
743 return Qnil; | |
744 | |
745 case Lisp_Objfwd: | |
746 return *XOBJFWD (valcontents); | |
747 | |
748 case Lisp_Buffer_Objfwd: | |
749 return *(Lisp_Object *)(XUINT (valcontents) + (char *)current_buffer); | |
750 | |
751 case Lisp_Void: | |
514 | 752 return Qunbound; |
298 | 753 } |
754 | |
755 return valcontents; | |
756 } | |
757 | |
514 | 758 DEFUN ("symbol-value", Fsymbol_value, Ssymbol_value, 1, 1, 0, |
759 "Return SYMBOL's value. Error if that is void.") | |
760 (sym) | |
761 Lisp_Object sym; | |
762 { | |
763 Lisp_Object val = find_symbol_value (sym); | |
764 | |
765 if (EQ (val, Qunbound)) | |
766 return Fsignal (Qvoid_variable, Fcons (sym, Qnil)); | |
767 else | |
768 return val; | |
769 } | |
770 | |
298 | 771 DEFUN ("set", Fset, Sset, 2, 2, 0, |
772 "Set SYMBOL's value to NEWVAL, and return NEWVAL.") | |
773 (sym, newval) | |
774 register Lisp_Object sym, newval; | |
775 { | |
776 int voide = (XTYPE (newval) == Lisp_Void || EQ (newval, Qunbound)); | |
777 | |
778 #ifndef RTPC_REGISTER_BUG | |
779 register Lisp_Object valcontents, tem1, current_alist_element; | |
780 #else /* RTPC_REGISTER_BUG */ | |
781 register Lisp_Object tem1; | |
782 Lisp_Object valcontents, current_alist_element; | |
783 #endif /* RTPC_REGISTER_BUG */ | |
784 | |
785 CHECK_SYMBOL (sym, 0); | |
490 | 786 if (NILP (sym) || EQ (sym, Qt)) |
298 | 787 return Fsignal (Qsetting_constant, Fcons (sym, Qnil)); |
788 valcontents = XSYMBOL (sym)->value; | |
789 | |
790 if (XTYPE (valcontents) == Lisp_Buffer_Objfwd) | |
791 { | |
792 register int idx = XUINT (valcontents); | |
793 register int mask = *(int *)(idx + (char *) &buffer_local_flags); | |
794 if (mask > 0) | |
795 current_buffer->local_var_flags |= mask; | |
796 } | |
797 | |
733 | 798 else if (XTYPE (valcontents) == Lisp_Buffer_Local_Value |
799 || XTYPE (valcontents) == Lisp_Some_Buffer_Local_Value) | |
298 | 800 { |
733 | 801 /* valcontents is actually a pointer to a cons heading something like: |
802 (REALVALUE BUFFER CURRENT-ALIST-ELEMENT . DEFAULT-VALUE). | |
803 | |
804 BUFFER is the last buffer for which this symbol's value was | |
805 made up to date. | |
298 | 806 |
733 | 807 CURRENT-ALIST-ELEMENT is a pointer to an element of BUFFER's |
808 local_var_alist, that being the element whose car is this | |
809 variable. Or it can be a pointer to the | |
810 (CURRENT-ALIST-ELEMENT . DEFAULT-VALUE), if BUFFER does not | |
811 have an element in its alist for this variable (that is, if | |
812 BUFFER sees the default value of this variable). | |
813 | |
814 If we want to examine or set the value and BUFFER is current, | |
815 we just examine or set REALVALUE. If BUFFER is not current, we | |
816 store the current REALVALUE value into CURRENT-ALIST-ELEMENT, | |
817 then find the appropriate alist element for the buffer now | |
818 current and set up CURRENT-ALIST-ELEMENT. Then we set | |
819 REALVALUE out of that element, and store into BUFFER. | |
298 | 820 |
733 | 821 If we are setting the variable and the current buffer does |
822 not have an alist entry for this variable, an alist entry is | |
823 created. | |
824 | |
825 Note that REALVALUE can be a forwarding pointer. Each time | |
826 it is examined or set, forwarding must be done. */ | |
827 | |
828 /* What value are we caching right now? */ | |
829 current_alist_element = | |
830 XCONS (XCONS (XCONS (valcontents)->cdr)->cdr)->car; | |
298 | 831 |
733 | 832 /* If the current buffer is not the buffer whose binding is |
833 currently cached, or if it's a Lisp_Buffer_Local_Value and | |
834 we're looking at the default value, the cache is invalid; we | |
835 need to write it out, and find the new CURRENT-ALIST-ELEMENT. */ | |
836 if ((current_buffer | |
837 != XBUFFER (XCONS (XCONS (valcontents)->cdr)->car)) | |
838 || (XTYPE (valcontents) == Lisp_Buffer_Local_Value | |
1508
768d4c10c2bf
* data.c (Fset): See if current_alist_element points to itself
Jim Blandy <jimb@redhat.com>
parents:
1293
diff
changeset
|
839 && EQ (XCONS (current_alist_element)->car, |
768d4c10c2bf
* data.c (Fset): See if current_alist_element points to itself
Jim Blandy <jimb@redhat.com>
parents:
1293
diff
changeset
|
840 current_alist_element))) |
298 | 841 { |
733 | 842 /* Write out the cached value for the old buffer; copy it |
843 back to its alist element. This works if the current | |
844 buffer only sees the default value, too. */ | |
845 Fsetcdr (current_alist_element, | |
846 do_symval_forwarding (XCONS (valcontents)->car)); | |
298 | 847 |
733 | 848 /* Find the new value for CURRENT-ALIST-ELEMENT. */ |
298 | 849 tem1 = Fassq (sym, current_buffer->local_var_alist); |
490 | 850 if (NILP (tem1)) |
733 | 851 { |
852 /* This buffer still sees the default value. */ | |
853 | |
854 /* If the variable is a Lisp_Some_Buffer_Local_Value, | |
855 make CURRENT-ALIST-ELEMENT point to itself, | |
856 indicating that we're seeing the default value. */ | |
857 if (XTYPE (valcontents) == Lisp_Some_Buffer_Local_Value) | |
858 tem1 = XCONS (XCONS (valcontents)->cdr)->cdr; | |
859 | |
860 /* If it's a Lisp_Buffer_Local_Value, give this buffer a | |
861 new assoc for a local value and set | |
862 CURRENT-ALIST-ELEMENT to point to that. */ | |
863 else | |
864 { | |
865 tem1 = Fcons (sym, Fcdr (current_alist_element)); | |
866 current_buffer->local_var_alist = | |
867 Fcons (tem1, current_buffer->local_var_alist); | |
868 } | |
869 } | |
870 /* Cache the new buffer's assoc in CURRENT-ALIST-ELEMENT. */ | |
298 | 871 XCONS (XCONS (XCONS (valcontents)->cdr)->cdr)->car = tem1; |
733 | 872 |
873 /* Set BUFFER, now that CURRENT-ALIST-ELEMENT is accurate. */ | |
874 XSET (XCONS (XCONS (valcontents)->cdr)->car, | |
875 Lisp_Buffer, current_buffer); | |
298 | 876 } |
877 valcontents = XCONS (valcontents)->car; | |
878 } | |
733 | 879 |
298 | 880 /* If storing void (making the symbol void), forward only through |
881 buffer-local indicator, not through Lisp_Objfwd, etc. */ | |
882 if (voide) | |
883 store_symval_forwarding (sym, Qnil, newval); | |
884 else | |
885 store_symval_forwarding (sym, valcontents, newval); | |
733 | 886 |
298 | 887 return newval; |
888 } | |
889 | |
890 /* Access or set a buffer-local symbol's default value. */ | |
891 | |
892 /* Return the default value of SYM, but don't check for voidness. | |
893 Return Qunbound or a Lisp_Void object if it is void. */ | |
894 | |
895 Lisp_Object | |
896 default_value (sym) | |
897 Lisp_Object sym; | |
898 { | |
899 register Lisp_Object valcontents; | |
900 | |
901 CHECK_SYMBOL (sym, 0); | |
902 valcontents = XSYMBOL (sym)->value; | |
903 | |
904 /* For a built-in buffer-local variable, get the default value | |
905 rather than letting do_symval_forwarding get the current value. */ | |
906 if (XTYPE (valcontents) == Lisp_Buffer_Objfwd) | |
907 { | |
908 register int idx = XUINT (valcontents); | |
909 | |
910 if (*(int *) (idx + (char *) &buffer_local_flags) != 0) | |
911 return *(Lisp_Object *)(idx + (char *) &buffer_defaults); | |
912 } | |
913 | |
914 /* Handle user-created local variables. */ | |
915 if (XTYPE (valcontents) == Lisp_Buffer_Local_Value | |
916 || XTYPE (valcontents) == Lisp_Some_Buffer_Local_Value) | |
917 { | |
918 /* If var is set up for a buffer that lacks a local value for it, | |
919 the current value is nominally the default value. | |
920 But the current value slot may be more up to date, since | |
921 ordinary setq stores just that slot. So use that. */ | |
922 Lisp_Object current_alist_element, alist_element_car; | |
923 current_alist_element | |
924 = XCONS (XCONS (XCONS (valcontents)->cdr)->cdr)->car; | |
925 alist_element_car = XCONS (current_alist_element)->car; | |
926 if (EQ (alist_element_car, current_alist_element)) | |
927 return do_symval_forwarding (XCONS (valcontents)->car); | |
928 else | |
929 return XCONS (XCONS (XCONS (valcontents)->cdr)->cdr)->cdr; | |
930 } | |
931 /* For other variables, get the current value. */ | |
932 return do_symval_forwarding (valcontents); | |
933 } | |
934 | |
935 DEFUN ("default-boundp", Fdefault_boundp, Sdefault_boundp, 1, 1, 0, | |
936 "Return T if SYMBOL has a non-void default value.\n\ | |
937 This is the value that is seen in buffers that do not have their own values\n\ | |
938 for this variable.") | |
939 (sym) | |
940 Lisp_Object sym; | |
941 { | |
942 register Lisp_Object value; | |
943 | |
944 value = default_value (sym); | |
945 return (XTYPE (value) == Lisp_Void || EQ (value, Qunbound) | |
946 ? Qnil : Qt); | |
947 } | |
948 | |
949 DEFUN ("default-value", Fdefault_value, Sdefault_value, 1, 1, 0, | |
950 "Return SYMBOL's default value.\n\ | |
951 This is the value that is seen in buffers that do not have their own values\n\ | |
952 for this variable. The default value is meaningful for variables with\n\ | |
953 local bindings in certain buffers.") | |
954 (sym) | |
955 Lisp_Object sym; | |
956 { | |
957 register Lisp_Object value; | |
958 | |
959 value = default_value (sym); | |
960 if (XTYPE (value) == Lisp_Void || EQ (value, Qunbound)) | |
961 return Fsignal (Qvoid_variable, Fcons (sym, Qnil)); | |
962 return value; | |
963 } | |
964 | |
965 DEFUN ("set-default", Fset_default, Sset_default, 2, 2, 0, | |
966 "Set SYMBOL's default value to VAL. SYMBOL and VAL are evaluated.\n\ | |
967 The default value is seen in buffers that do not have their own values\n\ | |
968 for this variable.") | |
969 (sym, value) | |
970 Lisp_Object sym, value; | |
971 { | |
972 register Lisp_Object valcontents, current_alist_element, alist_element_buffer; | |
973 | |
974 CHECK_SYMBOL (sym, 0); | |
975 valcontents = XSYMBOL (sym)->value; | |
976 | |
977 /* Handle variables like case-fold-search that have special slots | |
978 in the buffer. Make them work apparently like Lisp_Buffer_Local_Value | |
979 variables. */ | |
980 if (XTYPE (valcontents) == Lisp_Buffer_Objfwd) | |
981 { | |
982 register int idx = XUINT (valcontents); | |
983 #ifndef RTPC_REGISTER_BUG | |
984 register struct buffer *b; | |
985 #else | |
986 struct buffer *b; | |
987 #endif | |
988 register int mask = *(int *) (idx + (char *) &buffer_local_flags); | |
989 | |
990 if (mask > 0) | |
991 { | |
992 *(Lisp_Object *)(idx + (char *) &buffer_defaults) = value; | |
993 for (b = all_buffers; b; b = b->next) | |
994 if (!(b->local_var_flags & mask)) | |
995 *(Lisp_Object *)(idx + (char *) b) = value; | |
996 } | |
997 return value; | |
998 } | |
999 | |
1000 if (XTYPE (valcontents) != Lisp_Buffer_Local_Value && | |
1001 XTYPE (valcontents) != Lisp_Some_Buffer_Local_Value) | |
1002 return Fset (sym, value); | |
1003 | |
1004 /* Store new value into the DEFAULT-VALUE slot */ | |
1005 XCONS (XCONS (XCONS (valcontents)->cdr)->cdr)->cdr = value; | |
1006 | |
1007 /* If that slot is current, we must set the REALVALUE slot too */ | |
1008 current_alist_element = XCONS (XCONS (XCONS (valcontents)->cdr)->cdr)->car; | |
1009 alist_element_buffer = Fcar (current_alist_element); | |
1010 if (EQ (alist_element_buffer, current_alist_element)) | |
1011 store_symval_forwarding (sym, XCONS (valcontents)->car, value); | |
1012 | |
1013 return value; | |
1014 } | |
1015 | |
1016 DEFUN ("setq-default", Fsetq_default, Ssetq_default, 2, UNEVALLED, 0, | |
1017 "\ | |
1018 (setq-default SYM VAL SYM VAL ...): set each SYM's default value to its VAL.\n\ | |
1019 VAL is evaluated; SYM is not. The default value is seen in buffers that do\n\ | |
1020 not have their own values for this variable.") | |
1021 (args) | |
1022 Lisp_Object args; | |
1023 { | |
1024 register Lisp_Object args_left; | |
1025 register Lisp_Object val, sym; | |
1026 struct gcpro gcpro1; | |
1027 | |
490 | 1028 if (NILP (args)) |
298 | 1029 return Qnil; |
1030 | |
1031 args_left = args; | |
1032 GCPRO1 (args); | |
1033 | |
1034 do | |
1035 { | |
1036 val = Feval (Fcar (Fcdr (args_left))); | |
1037 sym = Fcar (args_left); | |
1038 Fset_default (sym, val); | |
1039 args_left = Fcdr (Fcdr (args_left)); | |
1040 } | |
490 | 1041 while (!NILP (args_left)); |
298 | 1042 |
1043 UNGCPRO; | |
1044 return val; | |
1045 } | |
1046 | |
1278
0a0646ae381f
* data.c (Fmake_local_variable): If SYM forwards to a C variable,
Jim Blandy <jimb@redhat.com>
parents:
1263
diff
changeset
|
1047 /* Lisp functions for creating and removing buffer-local variables. */ |
0a0646ae381f
* data.c (Fmake_local_variable): If SYM forwards to a C variable,
Jim Blandy <jimb@redhat.com>
parents:
1263
diff
changeset
|
1048 |
298 | 1049 DEFUN ("make-variable-buffer-local", Fmake_variable_buffer_local, Smake_variable_buffer_local, |
1050 1, 1, "vMake Variable Buffer Local: ", | |
1051 "Make VARIABLE have a separate value for each buffer.\n\ | |
1052 At any time, the value for the current buffer is in effect.\n\ | |
1053 There is also a default value which is seen in any buffer which has not yet\n\ | |
1054 set its own value.\n\ | |
1055 Using `set' or `setq' to set the variable causes it to have a separate value\n\ | |
1056 for the current buffer if it was previously using the default value.\n\ | |
1057 The function `default-value' gets the default value and `set-default' sets it.") | |
1058 (sym) | |
1059 register Lisp_Object sym; | |
1060 { | |
1061 register Lisp_Object tem, valcontents; | |
1062 | |
1063 CHECK_SYMBOL (sym, 0); | |
1064 | |
1065 if (EQ (sym, Qnil) || EQ (sym, Qt)) | |
1066 error ("Symbol %s may not be buffer-local", XSYMBOL (sym)->name->data); | |
1067 | |
1068 valcontents = XSYMBOL (sym)->value; | |
1069 if ((XTYPE (valcontents) == Lisp_Buffer_Local_Value) || | |
1070 (XTYPE (valcontents) == Lisp_Buffer_Objfwd)) | |
1071 return sym; | |
1072 if (XTYPE (valcontents) == Lisp_Some_Buffer_Local_Value) | |
1073 { | |
1074 XSETTYPE (XSYMBOL (sym)->value, Lisp_Buffer_Local_Value); | |
1075 return sym; | |
1076 } | |
1077 if (EQ (valcontents, Qunbound)) | |
1078 XSYMBOL (sym)->value = Qnil; | |
1079 tem = Fcons (Qnil, Fsymbol_value (sym)); | |
1080 XCONS (tem)->car = tem; | |
1081 XSYMBOL (sym)->value = Fcons (XSYMBOL (sym)->value, Fcons (Fcurrent_buffer (), tem)); | |
1082 XSETTYPE (XSYMBOL (sym)->value, Lisp_Buffer_Local_Value); | |
1083 return sym; | |
1084 } | |
1085 | |
1086 DEFUN ("make-local-variable", Fmake_local_variable, Smake_local_variable, | |
1087 1, 1, "vMake Local Variable: ", | |
1088 "Make VARIABLE have a separate value in the current buffer.\n\ | |
1089 Other buffers will continue to share a common default value.\n\ | |
1090 See also `make-variable-buffer-local'.\n\n\ | |
1091 If the variable is already arranged to become local when set,\n\ | |
1092 this function causes a local value to exist for this buffer,\n\ | |
1093 just as if the variable were set.") | |
1094 (sym) | |
1095 register Lisp_Object sym; | |
1096 { | |
1097 register Lisp_Object tem, valcontents; | |
1098 | |
1099 CHECK_SYMBOL (sym, 0); | |
1100 | |
1101 if (EQ (sym, Qnil) || EQ (sym, Qt)) | |
1102 error ("Symbol %s may not be buffer-local", XSYMBOL (sym)->name->data); | |
1103 | |
1104 valcontents = XSYMBOL (sym)->value; | |
1105 if (XTYPE (valcontents) == Lisp_Buffer_Local_Value | |
1106 || XTYPE (valcontents) == Lisp_Buffer_Objfwd) | |
1107 { | |
1108 tem = Fboundp (sym); | |
1109 | |
1110 /* Make sure the symbol has a local value in this particular buffer, | |
1111 by setting it to the same value it already has. */ | |
1112 Fset (sym, (EQ (tem, Qt) ? Fsymbol_value (sym) : Qunbound)); | |
1113 return sym; | |
1114 } | |
1115 /* Make sure sym is set up to hold per-buffer values */ | |
1116 if (XTYPE (valcontents) != Lisp_Some_Buffer_Local_Value) | |
1117 { | |
1118 if (EQ (valcontents, Qunbound)) | |
1119 XSYMBOL (sym)->value = Qnil; | |
1120 tem = Fcons (Qnil, do_symval_forwarding (valcontents)); | |
1121 XCONS (tem)->car = tem; | |
1122 XSYMBOL (sym)->value = Fcons (XSYMBOL (sym)->value, Fcons (Qnil, tem)); | |
1123 XSETTYPE (XSYMBOL (sym)->value, Lisp_Some_Buffer_Local_Value); | |
1124 } | |
1125 /* Make sure this buffer has its own value of sym */ | |
1126 tem = Fassq (sym, current_buffer->local_var_alist); | |
490 | 1127 if (NILP (tem)) |
298 | 1128 { |
1129 current_buffer->local_var_alist | |
1130 = Fcons (Fcons (sym, XCONS (XCONS (XCONS (XSYMBOL (sym)->value)->cdr)->cdr)->cdr), | |
1131 current_buffer->local_var_alist); | |
1132 | |
1133 /* Make sure symbol does not think it is set up for this buffer; | |
1134 force it to look once again for this buffer's value */ | |
1135 { | |
1136 /* This local variable avoids "expression too complex" on IBM RT. */ | |
1137 Lisp_Object xs; | |
1138 | |
1139 xs = XSYMBOL (sym)->value; | |
1140 if (current_buffer == XBUFFER (XCONS (XCONS (xs)->cdr)->car)) | |
1141 XCONS (XCONS (XSYMBOL (sym)->value)->cdr)->car = Qnil; | |
1142 } | |
1278
0a0646ae381f
* data.c (Fmake_local_variable): If SYM forwards to a C variable,
Jim Blandy <jimb@redhat.com>
parents:
1263
diff
changeset
|
1143 } |
298 | 1144 |
1278
0a0646ae381f
* data.c (Fmake_local_variable): If SYM forwards to a C variable,
Jim Blandy <jimb@redhat.com>
parents:
1263
diff
changeset
|
1145 /* If the symbol forwards into a C variable, then swap in the |
0a0646ae381f
* data.c (Fmake_local_variable): If SYM forwards to a C variable,
Jim Blandy <jimb@redhat.com>
parents:
1263
diff
changeset
|
1146 variable for this buffer immediately. If C code modifies the |
0a0646ae381f
* data.c (Fmake_local_variable): If SYM forwards to a C variable,
Jim Blandy <jimb@redhat.com>
parents:
1263
diff
changeset
|
1147 variable before we swap in, then that new value will clobber the |
0a0646ae381f
* data.c (Fmake_local_variable): If SYM forwards to a C variable,
Jim Blandy <jimb@redhat.com>
parents:
1263
diff
changeset
|
1148 default value the next time we swap. */ |
0a0646ae381f
* data.c (Fmake_local_variable): If SYM forwards to a C variable,
Jim Blandy <jimb@redhat.com>
parents:
1263
diff
changeset
|
1149 valcontents = XCONS (XSYMBOL (sym)->value)->car; |
0a0646ae381f
* data.c (Fmake_local_variable): If SYM forwards to a C variable,
Jim Blandy <jimb@redhat.com>
parents:
1263
diff
changeset
|
1150 if (XTYPE (valcontents) == Lisp_Intfwd |
0a0646ae381f
* data.c (Fmake_local_variable): If SYM forwards to a C variable,
Jim Blandy <jimb@redhat.com>
parents:
1263
diff
changeset
|
1151 || XTYPE (valcontents) == Lisp_Boolfwd |
0a0646ae381f
* data.c (Fmake_local_variable): If SYM forwards to a C variable,
Jim Blandy <jimb@redhat.com>
parents:
1263
diff
changeset
|
1152 || XTYPE (valcontents) == Lisp_Objfwd) |
0a0646ae381f
* data.c (Fmake_local_variable): If SYM forwards to a C variable,
Jim Blandy <jimb@redhat.com>
parents:
1263
diff
changeset
|
1153 swap_in_symval_forwarding (sym, XSYMBOL (sym)->value); |
0a0646ae381f
* data.c (Fmake_local_variable): If SYM forwards to a C variable,
Jim Blandy <jimb@redhat.com>
parents:
1263
diff
changeset
|
1154 |
298 | 1155 return sym; |
1156 } | |
1157 | |
1158 DEFUN ("kill-local-variable", Fkill_local_variable, Skill_local_variable, | |
1159 1, 1, "vKill Local Variable: ", | |
1160 "Make VARIABLE no longer have a separate value in the current buffer.\n\ | |
1161 From now on the default value will apply in this buffer.") | |
1162 (sym) | |
1163 register Lisp_Object sym; | |
1164 { | |
1165 register Lisp_Object tem, valcontents; | |
1166 | |
1167 CHECK_SYMBOL (sym, 0); | |
1168 | |
1169 valcontents = XSYMBOL (sym)->value; | |
1170 | |
1171 if (XTYPE (valcontents) == Lisp_Buffer_Objfwd) | |
1172 { | |
1173 register int idx = XUINT (valcontents); | |
1174 register int mask = *(int *) (idx + (char *) &buffer_local_flags); | |
1175 | |
1176 if (mask > 0) | |
1177 { | |
1178 *(Lisp_Object *)(idx + (char *) current_buffer) | |
1179 = *(Lisp_Object *)(idx + (char *) &buffer_defaults); | |
1180 current_buffer->local_var_flags &= ~mask; | |
1181 } | |
1182 return sym; | |
1183 } | |
1184 | |
1185 if (XTYPE (valcontents) != Lisp_Buffer_Local_Value && | |
1186 XTYPE (valcontents) != Lisp_Some_Buffer_Local_Value) | |
1187 return sym; | |
1188 | |
1189 /* Get rid of this buffer's alist element, if any */ | |
1190 | |
1191 tem = Fassq (sym, current_buffer->local_var_alist); | |
490 | 1192 if (!NILP (tem)) |
298 | 1193 current_buffer->local_var_alist = Fdelq (tem, current_buffer->local_var_alist); |
1194 | |
1195 /* Make sure symbol does not think it is set up for this buffer; | |
1196 force it to look once again for this buffer's value */ | |
1197 { | |
1198 Lisp_Object sv; | |
1199 sv = XSYMBOL (sym)->value; | |
1200 if (current_buffer == XBUFFER (XCONS (XCONS (sv)->cdr)->car)) | |
1201 XCONS (XCONS (sv)->cdr)->car = Qnil; | |
1202 } | |
1203 | |
1204 return sym; | |
1205 } | |
1206 | |
648 | 1207 /* Find the function at the end of a chain of symbol function indirections. */ |
1208 | |
1209 /* If OBJECT is a symbol, find the end of its function chain and | |
1210 return the value found there. If OBJECT is not a symbol, just | |
1211 return it. If there is a cycle in the function chain, signal a | |
1212 cyclic-function-indirection error. | |
1213 | |
1214 This is like Findirect_function, except that it doesn't signal an | |
1215 error if the chain ends up unbound. */ | |
1216 Lisp_Object | |
1648
27e9f99fe095
src/ * data.c (indirect_function): Delete unused argument ERROR.
Jim Blandy <jimb@redhat.com>
parents:
1508
diff
changeset
|
1217 indirect_function (object) |
648 | 1218 register Lisp_Object object; |
1219 { | |
1220 Lisp_Object tortise, hare; | |
1221 | |
1222 hare = tortise = object; | |
1223 | |
1224 for (;;) | |
1225 { | |
1226 if (XTYPE (hare) != Lisp_Symbol || EQ (hare, Qunbound)) | |
1227 break; | |
1228 hare = XSYMBOL (hare)->function; | |
1229 if (XTYPE (hare) != Lisp_Symbol || EQ (hare, Qunbound)) | |
1230 break; | |
1231 hare = XSYMBOL (hare)->function; | |
1232 | |
1233 tortise = XSYMBOL (tortise)->function; | |
1234 | |
1235 if (EQ (hare, tortise)) | |
1236 Fsignal (Qcyclic_function_indirection, Fcons (object, Qnil)); | |
1237 } | |
1238 | |
1239 return hare; | |
1240 } | |
1241 | |
1242 DEFUN ("indirect-function", Findirect_function, Sindirect_function, 1, 1, 0, | |
1243 "Return the function at the end of OBJECT's function chain.\n\ | |
1244 If OBJECT is a symbol, follow all function indirections and return the final\n\ | |
1245 function binding.\n\ | |
1246 If OBJECT is not a symbol, just return it.\n\ | |
1247 Signal a void-function error if the final symbol is unbound.\n\ | |
1248 Signal a cyclic-function-indirection error if there is a loop in the\n\ | |
1249 function chain of symbols.") | |
1250 (object) | |
1251 register Lisp_Object object; | |
1252 { | |
1253 Lisp_Object result; | |
1254 | |
1255 result = indirect_function (object); | |
1256 | |
1257 if (EQ (result, Qunbound)) | |
1258 return Fsignal (Qvoid_function, Fcons (object, Qnil)); | |
1259 return result; | |
1260 } | |
1261 | |
298 | 1262 /* Extract and set vector and string elements */ |
1263 | |
1264 DEFUN ("aref", Faref, Saref, 2, 2, 0, | |
1265 "Return the element of ARRAY at index INDEX.\n\ | |
1266 ARRAY may be a vector or a string, or a byte-code object. INDEX starts at 0.") | |
1267 (array, idx) | |
1268 register Lisp_Object array; | |
1269 Lisp_Object idx; | |
1270 { | |
1271 register int idxval; | |
1272 | |
1273 CHECK_NUMBER (idx, 1); | |
1274 idxval = XINT (idx); | |
1275 if (XTYPE (array) != Lisp_Vector && XTYPE (array) != Lisp_String | |
1276 && XTYPE (array) != Lisp_Compiled) | |
1277 array = wrong_type_argument (Qarrayp, array); | |
1278 if (idxval < 0 || idxval >= XVECTOR (array)->size) | |
1279 args_out_of_range (array, idx); | |
1280 if (XTYPE (array) == Lisp_String) | |
1281 { | |
1282 Lisp_Object val; | |
1283 XFASTINT (val) = (unsigned char) XSTRING (array)->data[idxval]; | |
1284 return val; | |
1285 } | |
1286 else | |
1287 return XVECTOR (array)->contents[idxval]; | |
1288 } | |
1289 | |
1290 DEFUN ("aset", Faset, Saset, 3, 3, 0, | |
1291 "Store into the element of ARRAY at index INDEX the value NEWVAL.\n\ | |
1292 ARRAY may be a vector or a string. INDEX starts at 0.") | |
1293 (array, idx, newelt) | |
1294 register Lisp_Object array; | |
1295 Lisp_Object idx, newelt; | |
1296 { | |
1297 register int idxval; | |
1298 | |
1299 CHECK_NUMBER (idx, 1); | |
1300 idxval = XINT (idx); | |
1301 if (XTYPE (array) != Lisp_Vector && XTYPE (array) != Lisp_String) | |
1302 array = wrong_type_argument (Qarrayp, array); | |
1303 if (idxval < 0 || idxval >= XVECTOR (array)->size) | |
1304 args_out_of_range (array, idx); | |
1305 CHECK_IMPURE (array); | |
1306 | |
1307 if (XTYPE (array) == Lisp_Vector) | |
1308 XVECTOR (array)->contents[idxval] = newelt; | |
1309 else | |
1310 { | |
1311 CHECK_NUMBER (newelt, 2); | |
1312 XSTRING (array)->data[idxval] = XINT (newelt); | |
1313 } | |
1314 | |
1315 return newelt; | |
1316 } | |
1317 | |
1318 Lisp_Object | |
1319 Farray_length (array) | |
1320 register Lisp_Object array; | |
1321 { | |
1322 register Lisp_Object size; | |
1323 if (XTYPE (array) != Lisp_Vector && XTYPE (array) != Lisp_String | |
1324 && XTYPE (array) != Lisp_Compiled) | |
1325 array = wrong_type_argument (Qarrayp, array); | |
1326 XFASTINT (size) = XVECTOR (array)->size; | |
1327 return size; | |
1328 } | |
1329 | |
1330 /* Arithmetic functions */ | |
1331 | |
1332 enum comparison { equal, notequal, less, grtr, less_or_equal, grtr_or_equal }; | |
1333 | |
1334 Lisp_Object | |
1335 arithcompare (num1, num2, comparison) | |
1336 Lisp_Object num1, num2; | |
1337 enum comparison comparison; | |
1338 { | |
1339 double f1, f2; | |
1340 int floatp = 0; | |
1341 | |
1342 #ifdef LISP_FLOAT_TYPE | |
1343 CHECK_NUMBER_OR_FLOAT_COERCE_MARKER (num1, 0); | |
1344 CHECK_NUMBER_OR_FLOAT_COERCE_MARKER (num2, 0); | |
1345 | |
1346 if (XTYPE (num1) == Lisp_Float || XTYPE (num2) == Lisp_Float) | |
1347 { | |
1348 floatp = 1; | |
1349 f1 = (XTYPE (num1) == Lisp_Float) ? XFLOAT (num1)->data : XINT (num1); | |
1350 f2 = (XTYPE (num2) == Lisp_Float) ? XFLOAT (num2)->data : XINT (num2); | |
1351 } | |
1352 #else | |
1353 CHECK_NUMBER_COERCE_MARKER (num1, 0); | |
1354 CHECK_NUMBER_COERCE_MARKER (num2, 0); | |
1355 #endif /* LISP_FLOAT_TYPE */ | |
1356 | |
1357 switch (comparison) | |
1358 { | |
1359 case equal: | |
1360 if (floatp ? f1 == f2 : XINT (num1) == XINT (num2)) | |
1361 return Qt; | |
1362 return Qnil; | |
1363 | |
1364 case notequal: | |
1365 if (floatp ? f1 != f2 : XINT (num1) != XINT (num2)) | |
1366 return Qt; | |
1367 return Qnil; | |
1368 | |
1369 case less: | |
1370 if (floatp ? f1 < f2 : XINT (num1) < XINT (num2)) | |
1371 return Qt; | |
1372 return Qnil; | |
1373 | |
1374 case less_or_equal: | |
1375 if (floatp ? f1 <= f2 : XINT (num1) <= XINT (num2)) | |
1376 return Qt; | |
1377 return Qnil; | |
1378 | |
1379 case grtr: | |
1380 if (floatp ? f1 > f2 : XINT (num1) > XINT (num2)) | |
1381 return Qt; | |
1382 return Qnil; | |
1383 | |
1384 case grtr_or_equal: | |
1385 if (floatp ? f1 >= f2 : XINT (num1) >= XINT (num2)) | |
1386 return Qt; | |
1387 return Qnil; | |
1914
60965a5c325f
* data.c (Fstring_to_number): Skip initial spaces, to make Emacs
Jim Blandy <jimb@redhat.com>
parents:
1821
diff
changeset
|
1388 |
60965a5c325f
* data.c (Fstring_to_number): Skip initial spaces, to make Emacs
Jim Blandy <jimb@redhat.com>
parents:
1821
diff
changeset
|
1389 default: |
60965a5c325f
* data.c (Fstring_to_number): Skip initial spaces, to make Emacs
Jim Blandy <jimb@redhat.com>
parents:
1821
diff
changeset
|
1390 abort (); |
298 | 1391 } |
1392 } | |
1393 | |
1394 DEFUN ("=", Feqlsign, Seqlsign, 2, 2, 0, | |
1395 "T if two args, both numbers or markers, are equal.") | |
1396 (num1, num2) | |
1397 register Lisp_Object num1, num2; | |
1398 { | |
1399 return arithcompare (num1, num2, equal); | |
1400 } | |
1401 | |
1402 DEFUN ("<", Flss, Slss, 2, 2, 0, | |
1403 "T if first arg is less than second arg. Both must be numbers or markers.") | |
1404 (num1, num2) | |
1405 register Lisp_Object num1, num2; | |
1406 { | |
1407 return arithcompare (num1, num2, less); | |
1408 } | |
1409 | |
1410 DEFUN (">", Fgtr, Sgtr, 2, 2, 0, | |
1411 "T if first arg is greater than second arg. Both must be numbers or markers.") | |
1412 (num1, num2) | |
1413 register Lisp_Object num1, num2; | |
1414 { | |
1415 return arithcompare (num1, num2, grtr); | |
1416 } | |
1417 | |
1418 DEFUN ("<=", Fleq, Sleq, 2, 2, 0, | |
1419 "T if first arg is less than or equal to second arg.\n\ | |
1420 Both must be numbers or markers.") | |
1421 (num1, num2) | |
1422 register Lisp_Object num1, num2; | |
1423 { | |
1424 return arithcompare (num1, num2, less_or_equal); | |
1425 } | |
1426 | |
1427 DEFUN (">=", Fgeq, Sgeq, 2, 2, 0, | |
1428 "T if first arg is greater than or equal to second arg.\n\ | |
1429 Both must be numbers or markers.") | |
1430 (num1, num2) | |
1431 register Lisp_Object num1, num2; | |
1432 { | |
1433 return arithcompare (num1, num2, grtr_or_equal); | |
1434 } | |
1435 | |
1436 DEFUN ("/=", Fneq, Sneq, 2, 2, 0, | |
1437 "T if first arg is not equal to second arg. Both must be numbers or markers.") | |
1438 (num1, num2) | |
1439 register Lisp_Object num1, num2; | |
1440 { | |
1441 return arithcompare (num1, num2, notequal); | |
1442 } | |
1443 | |
1444 DEFUN ("zerop", Fzerop, Szerop, 1, 1, 0, "T if NUMBER is zero.") | |
1445 (num) | |
1446 register Lisp_Object num; | |
1447 { | |
1448 #ifdef LISP_FLOAT_TYPE | |
1449 CHECK_NUMBER_OR_FLOAT (num, 0); | |
1450 | |
1451 if (XTYPE(num) == Lisp_Float) | |
1452 { | |
1453 if (XFLOAT(num)->data == 0.0) | |
1454 return Qt; | |
1455 return Qnil; | |
1456 } | |
1457 #else | |
1458 CHECK_NUMBER (num, 0); | |
1459 #endif /* LISP_FLOAT_TYPE */ | |
1460 | |
1461 if (!XINT (num)) | |
1462 return Qt; | |
1463 return Qnil; | |
1464 } | |
1465 | |
2515
c0cdd6a80391
long_to_cons and cons_to_long are generally useful things; they're
Jim Blandy <jimb@redhat.com>
parents:
2429
diff
changeset
|
1466 /* Convert between 32-bit values and pairs of lispy 24-bit values. */ |
c0cdd6a80391
long_to_cons and cons_to_long are generally useful things; they're
Jim Blandy <jimb@redhat.com>
parents:
2429
diff
changeset
|
1467 |
c0cdd6a80391
long_to_cons and cons_to_long are generally useful things; they're
Jim Blandy <jimb@redhat.com>
parents:
2429
diff
changeset
|
1468 Lisp_Object |
c0cdd6a80391
long_to_cons and cons_to_long are generally useful things; they're
Jim Blandy <jimb@redhat.com>
parents:
2429
diff
changeset
|
1469 long_to_cons (i) |
c0cdd6a80391
long_to_cons and cons_to_long are generally useful things; they're
Jim Blandy <jimb@redhat.com>
parents:
2429
diff
changeset
|
1470 unsigned long i; |
c0cdd6a80391
long_to_cons and cons_to_long are generally useful things; they're
Jim Blandy <jimb@redhat.com>
parents:
2429
diff
changeset
|
1471 { |
c0cdd6a80391
long_to_cons and cons_to_long are generally useful things; they're
Jim Blandy <jimb@redhat.com>
parents:
2429
diff
changeset
|
1472 unsigned int top = i >> 16; |
c0cdd6a80391
long_to_cons and cons_to_long are generally useful things; they're
Jim Blandy <jimb@redhat.com>
parents:
2429
diff
changeset
|
1473 unsigned int bot = i & 0xFFFF; |
c0cdd6a80391
long_to_cons and cons_to_long are generally useful things; they're
Jim Blandy <jimb@redhat.com>
parents:
2429
diff
changeset
|
1474 if (top == 0) |
c0cdd6a80391
long_to_cons and cons_to_long are generally useful things; they're
Jim Blandy <jimb@redhat.com>
parents:
2429
diff
changeset
|
1475 return make_number (bot); |
c0cdd6a80391
long_to_cons and cons_to_long are generally useful things; they're
Jim Blandy <jimb@redhat.com>
parents:
2429
diff
changeset
|
1476 if (top == 0xFFFF) |
c0cdd6a80391
long_to_cons and cons_to_long are generally useful things; they're
Jim Blandy <jimb@redhat.com>
parents:
2429
diff
changeset
|
1477 return Fcons (make_number (-1), make_number (bot)); |
c0cdd6a80391
long_to_cons and cons_to_long are generally useful things; they're
Jim Blandy <jimb@redhat.com>
parents:
2429
diff
changeset
|
1478 return Fcons (make_number (top), make_number (bot)); |
c0cdd6a80391
long_to_cons and cons_to_long are generally useful things; they're
Jim Blandy <jimb@redhat.com>
parents:
2429
diff
changeset
|
1479 } |
c0cdd6a80391
long_to_cons and cons_to_long are generally useful things; they're
Jim Blandy <jimb@redhat.com>
parents:
2429
diff
changeset
|
1480 |
c0cdd6a80391
long_to_cons and cons_to_long are generally useful things; they're
Jim Blandy <jimb@redhat.com>
parents:
2429
diff
changeset
|
1481 unsigned long |
c0cdd6a80391
long_to_cons and cons_to_long are generally useful things; they're
Jim Blandy <jimb@redhat.com>
parents:
2429
diff
changeset
|
1482 cons_to_long (c) |
c0cdd6a80391
long_to_cons and cons_to_long are generally useful things; they're
Jim Blandy <jimb@redhat.com>
parents:
2429
diff
changeset
|
1483 Lisp_Object c; |
c0cdd6a80391
long_to_cons and cons_to_long are generally useful things; they're
Jim Blandy <jimb@redhat.com>
parents:
2429
diff
changeset
|
1484 { |
c0cdd6a80391
long_to_cons and cons_to_long are generally useful things; they're
Jim Blandy <jimb@redhat.com>
parents:
2429
diff
changeset
|
1485 int top, bot; |
c0cdd6a80391
long_to_cons and cons_to_long are generally useful things; they're
Jim Blandy <jimb@redhat.com>
parents:
2429
diff
changeset
|
1486 if (INTEGERP (c)) |
c0cdd6a80391
long_to_cons and cons_to_long are generally useful things; they're
Jim Blandy <jimb@redhat.com>
parents:
2429
diff
changeset
|
1487 return XINT (c); |
c0cdd6a80391
long_to_cons and cons_to_long are generally useful things; they're
Jim Blandy <jimb@redhat.com>
parents:
2429
diff
changeset
|
1488 top = XCONS (c)->car; |
c0cdd6a80391
long_to_cons and cons_to_long are generally useful things; they're
Jim Blandy <jimb@redhat.com>
parents:
2429
diff
changeset
|
1489 bot = XCONS (c)->cdr; |
c0cdd6a80391
long_to_cons and cons_to_long are generally useful things; they're
Jim Blandy <jimb@redhat.com>
parents:
2429
diff
changeset
|
1490 if (CONSP (bot)) |
c0cdd6a80391
long_to_cons and cons_to_long are generally useful things; they're
Jim Blandy <jimb@redhat.com>
parents:
2429
diff
changeset
|
1491 bot = XCONS (bot)->car; |
c0cdd6a80391
long_to_cons and cons_to_long are generally useful things; they're
Jim Blandy <jimb@redhat.com>
parents:
2429
diff
changeset
|
1492 return ((XINT (top) << 16) | XINT (bot)); |
c0cdd6a80391
long_to_cons and cons_to_long are generally useful things; they're
Jim Blandy <jimb@redhat.com>
parents:
2429
diff
changeset
|
1493 } |
c0cdd6a80391
long_to_cons and cons_to_long are generally useful things; they're
Jim Blandy <jimb@redhat.com>
parents:
2429
diff
changeset
|
1494 |
2429
96b55f2f19cd
Rename int-to-string to number-to-string, since it can handle
Jim Blandy <jimb@redhat.com>
parents:
2092
diff
changeset
|
1495 DEFUN ("number-to-string", Fnumber_to_string, Snumber_to_string, 1, 1, 0, |
1914
60965a5c325f
* data.c (Fstring_to_number): Skip initial spaces, to make Emacs
Jim Blandy <jimb@redhat.com>
parents:
1821
diff
changeset
|
1496 "Convert NUM to a string by printing it in decimal.\n\ |
60965a5c325f
* data.c (Fstring_to_number): Skip initial spaces, to make Emacs
Jim Blandy <jimb@redhat.com>
parents:
1821
diff
changeset
|
1497 Uses a minus sign if negative.\n\ |
60965a5c325f
* data.c (Fstring_to_number): Skip initial spaces, to make Emacs
Jim Blandy <jimb@redhat.com>
parents:
1821
diff
changeset
|
1498 NUM may be an integer or a floating point number.") |
298 | 1499 (num) |
1500 Lisp_Object num; | |
1501 { | |
1502 char buffer[20]; | |
1503 | |
1504 #ifndef LISP_FLOAT_TYPE | |
1505 CHECK_NUMBER (num, 0); | |
1506 #else | |
1507 CHECK_NUMBER_OR_FLOAT (num, 0); | |
1508 | |
1509 if (XTYPE(num) == Lisp_Float) | |
1510 { | |
1511 char pigbuf[350]; /* see comments in float_to_string */ | |
1512 | |
1513 float_to_string (pigbuf, XFLOAT(num)->data); | |
1514 return build_string (pigbuf); | |
1515 } | |
1516 #endif /* LISP_FLOAT_TYPE */ | |
1517 | |
1518 sprintf (buffer, "%d", XINT (num)); | |
1519 return build_string (buffer); | |
1520 } | |
1521 | |
1914
60965a5c325f
* data.c (Fstring_to_number): Skip initial spaces, to make Emacs
Jim Blandy <jimb@redhat.com>
parents:
1821
diff
changeset
|
1522 DEFUN ("string-to-number", Fstring_to_number, Sstring_to_number, 1, 1, 0, |
60965a5c325f
* data.c (Fstring_to_number): Skip initial spaces, to make Emacs
Jim Blandy <jimb@redhat.com>
parents:
1821
diff
changeset
|
1523 "Convert STRING to a number by parsing it as a decimal number.\n\ |
60965a5c325f
* data.c (Fstring_to_number): Skip initial spaces, to make Emacs
Jim Blandy <jimb@redhat.com>
parents:
1821
diff
changeset
|
1524 This parses both integers and floating point numbers.") |
298 | 1525 (str) |
1526 register Lisp_Object str; | |
1527 { | |
1987
cd893024d6b9
* data.c (Fstring_to_number): Declare p to be an unsigned char, to
Jim Blandy <jimb@redhat.com>
parents:
1914
diff
changeset
|
1528 unsigned char *p; |
1914
60965a5c325f
* data.c (Fstring_to_number): Skip initial spaces, to make Emacs
Jim Blandy <jimb@redhat.com>
parents:
1821
diff
changeset
|
1529 |
298 | 1530 CHECK_STRING (str, 0); |
1531 | |
1914
60965a5c325f
* data.c (Fstring_to_number): Skip initial spaces, to make Emacs
Jim Blandy <jimb@redhat.com>
parents:
1821
diff
changeset
|
1532 p = XSTRING (str)->data; |
60965a5c325f
* data.c (Fstring_to_number): Skip initial spaces, to make Emacs
Jim Blandy <jimb@redhat.com>
parents:
1821
diff
changeset
|
1533 |
60965a5c325f
* data.c (Fstring_to_number): Skip initial spaces, to make Emacs
Jim Blandy <jimb@redhat.com>
parents:
1821
diff
changeset
|
1534 /* Skip any whitespace at the front of the number. Some versions of |
60965a5c325f
* data.c (Fstring_to_number): Skip initial spaces, to make Emacs
Jim Blandy <jimb@redhat.com>
parents:
1821
diff
changeset
|
1535 atoi do this anyway, so we might as well make Emacs lisp consistent. */ |
1987
cd893024d6b9
* data.c (Fstring_to_number): Declare p to be an unsigned char, to
Jim Blandy <jimb@redhat.com>
parents:
1914
diff
changeset
|
1536 while (*p == ' ' || *p == '\t') |
1914
60965a5c325f
* data.c (Fstring_to_number): Skip initial spaces, to make Emacs
Jim Blandy <jimb@redhat.com>
parents:
1821
diff
changeset
|
1537 p++; |
60965a5c325f
* data.c (Fstring_to_number): Skip initial spaces, to make Emacs
Jim Blandy <jimb@redhat.com>
parents:
1821
diff
changeset
|
1538 |
298 | 1539 #ifdef LISP_FLOAT_TYPE |
1914
60965a5c325f
* data.c (Fstring_to_number): Skip initial spaces, to make Emacs
Jim Blandy <jimb@redhat.com>
parents:
1821
diff
changeset
|
1540 if (isfloat_string (p)) |
60965a5c325f
* data.c (Fstring_to_number): Skip initial spaces, to make Emacs
Jim Blandy <jimb@redhat.com>
parents:
1821
diff
changeset
|
1541 return make_float (atof (p)); |
298 | 1542 #endif /* LISP_FLOAT_TYPE */ |
1543 | |
1914
60965a5c325f
* data.c (Fstring_to_number): Skip initial spaces, to make Emacs
Jim Blandy <jimb@redhat.com>
parents:
1821
diff
changeset
|
1544 return make_number (atoi (p)); |
298 | 1545 } |
1546 | |
1547 enum arithop | |
1548 { Aadd, Asub, Amult, Adiv, Alogand, Alogior, Alogxor, Amax, Amin }; | |
1549 | |
1508
768d4c10c2bf
* data.c (Fset): See if current_alist_element points to itself
Jim Blandy <jimb@redhat.com>
parents:
1293
diff
changeset
|
1550 extern Lisp_Object float_arith_driver (); |
768d4c10c2bf
* data.c (Fset): See if current_alist_element points to itself
Jim Blandy <jimb@redhat.com>
parents:
1293
diff
changeset
|
1551 |
298 | 1552 Lisp_Object |
1553 arith_driver | |
1554 (code, nargs, args) | |
1555 enum arithop code; | |
1556 int nargs; | |
1557 register Lisp_Object *args; | |
1558 { | |
1559 register Lisp_Object val; | |
1560 register int argnum; | |
1561 register int accum; | |
1562 register int next; | |
1563 | |
1564 #ifdef SWITCH_ENUM_BUG | |
1565 switch ((int) code) | |
1566 #else | |
1567 switch (code) | |
1568 #endif | |
1569 { | |
1570 case Alogior: | |
1571 case Alogxor: | |
1572 case Aadd: | |
1573 case Asub: | |
1574 accum = 0; break; | |
1575 case Amult: | |
1576 accum = 1; break; | |
1577 case Alogand: | |
1578 accum = -1; break; | |
1579 } | |
1580 | |
1581 for (argnum = 0; argnum < nargs; argnum++) | |
1582 { | |
1583 val = args[argnum]; /* using args[argnum] as argument to CHECK_NUMBER_... */ | |
1584 #ifdef LISP_FLOAT_TYPE | |
1585 CHECK_NUMBER_OR_FLOAT_COERCE_MARKER (val, argnum); | |
1586 | |
1587 if (XTYPE (val) == Lisp_Float) /* time to do serious math */ | |
1588 return (float_arith_driver ((double) accum, argnum, code, | |
1589 nargs, args)); | |
1590 #else | |
1591 CHECK_NUMBER_COERCE_MARKER (val, argnum); | |
1592 #endif /* LISP_FLOAT_TYPE */ | |
1593 args[argnum] = val; /* runs into a compiler bug. */ | |
1594 next = XINT (args[argnum]); | |
1595 #ifdef SWITCH_ENUM_BUG | |
1596 switch ((int) code) | |
1597 #else | |
1598 switch (code) | |
1599 #endif | |
1600 { | |
1601 case Aadd: accum += next; break; | |
1602 case Asub: | |
1603 if (!argnum && nargs != 1) | |
1604 next = - next; | |
1605 accum -= next; | |
1606 break; | |
1607 case Amult: accum *= next; break; | |
1608 case Adiv: | |
1609 if (!argnum) accum = next; | |
1610 else accum /= next; | |
1611 break; | |
1612 case Alogand: accum &= next; break; | |
1613 case Alogior: accum |= next; break; | |
1614 case Alogxor: accum ^= next; break; | |
1615 case Amax: if (!argnum || next > accum) accum = next; break; | |
1616 case Amin: if (!argnum || next < accum) accum = next; break; | |
1617 } | |
1618 } | |
1619 | |
1620 XSET (val, Lisp_Int, accum); | |
1621 return val; | |
1622 } | |
1623 | |
1624 #ifdef LISP_FLOAT_TYPE | |
1625 Lisp_Object | |
1626 float_arith_driver (accum, argnum, code, nargs, args) | |
1627 double accum; | |
1628 register int argnum; | |
1629 enum arithop code; | |
1630 int nargs; | |
1631 register Lisp_Object *args; | |
1632 { | |
1633 register Lisp_Object val; | |
1634 double next; | |
1635 | |
1636 for (; argnum < nargs; argnum++) | |
1637 { | |
1638 val = args[argnum]; /* using args[argnum] as argument to CHECK_NUMBER_... */ | |
1639 CHECK_NUMBER_OR_FLOAT_COERCE_MARKER (val, argnum); | |
1640 | |
1641 if (XTYPE (val) == Lisp_Float) | |
1642 { | |
1643 next = XFLOAT (val)->data; | |
1644 } | |
1645 else | |
1646 { | |
1647 args[argnum] = val; /* runs into a compiler bug. */ | |
1648 next = XINT (args[argnum]); | |
1649 } | |
1650 #ifdef SWITCH_ENUM_BUG | |
1651 switch ((int) code) | |
1652 #else | |
1653 switch (code) | |
1654 #endif | |
1655 { | |
1656 case Aadd: | |
1657 accum += next; | |
1658 break; | |
1659 case Asub: | |
1660 if (!argnum && nargs != 1) | |
1661 next = - next; | |
1662 accum -= next; | |
1663 break; | |
1664 case Amult: | |
1665 accum *= next; | |
1666 break; | |
1667 case Adiv: | |
1668 if (!argnum) | |
1669 accum = next; | |
1670 else | |
1671 accum /= next; | |
1672 break; | |
1673 case Alogand: | |
1674 case Alogior: | |
1675 case Alogxor: | |
1676 return wrong_type_argument (Qinteger_or_marker_p, val); | |
1677 case Amax: | |
1678 if (!argnum || next > accum) | |
1679 accum = next; | |
1680 break; | |
1681 case Amin: | |
1682 if (!argnum || next < accum) | |
1683 accum = next; | |
1684 break; | |
1685 } | |
1686 } | |
1687 | |
1688 return make_float (accum); | |
1689 } | |
1690 #endif /* LISP_FLOAT_TYPE */ | |
1691 | |
1692 DEFUN ("+", Fplus, Splus, 0, MANY, 0, | |
1693 "Return sum of any number of arguments, which are numbers or markers.") | |
1694 (nargs, args) | |
1695 int nargs; | |
1696 Lisp_Object *args; | |
1697 { | |
1698 return arith_driver (Aadd, nargs, args); | |
1699 } | |
1700 | |
1701 DEFUN ("-", Fminus, Sminus, 0, MANY, 0, | |
1702 "Negate number or subtract numbers or markers.\n\ | |
1703 With one arg, negates it. With more than one arg,\n\ | |
1704 subtracts all but the first from the first.") | |
1705 (nargs, args) | |
1706 int nargs; | |
1707 Lisp_Object *args; | |
1708 { | |
1709 return arith_driver (Asub, nargs, args); | |
1710 } | |
1711 | |
1712 DEFUN ("*", Ftimes, Stimes, 0, MANY, 0, | |
1713 "Returns product of any number of arguments, which are numbers or markers.") | |
1714 (nargs, args) | |
1715 int nargs; | |
1716 Lisp_Object *args; | |
1717 { | |
1718 return arith_driver (Amult, nargs, args); | |
1719 } | |
1720 | |
1721 DEFUN ("/", Fquo, Squo, 2, MANY, 0, | |
1722 "Returns first argument divided by all the remaining arguments.\n\ | |
1723 The arguments must be numbers or markers.") | |
1724 (nargs, args) | |
1725 int nargs; | |
1726 Lisp_Object *args; | |
1727 { | |
1728 return arith_driver (Adiv, nargs, args); | |
1729 } | |
1730 | |
1731 DEFUN ("%", Frem, Srem, 2, 2, 0, | |
1732 "Returns remainder of first arg divided by second.\n\ | |
1733 Both must be numbers or markers.") | |
1734 (num1, num2) | |
1735 register Lisp_Object num1, num2; | |
1736 { | |
1737 Lisp_Object val; | |
1738 | |
1739 #ifdef LISP_FLOAT_TYPE | |
1740 CHECK_NUMBER_OR_FLOAT_COERCE_MARKER (num1, 0); | |
1741 CHECK_NUMBER_OR_FLOAT_COERCE_MARKER (num2, 0); | |
1742 | |
1743 if (XTYPE (num1) == Lisp_Float || XTYPE (num2) == Lisp_Float) | |
1744 { | |
1745 double f1, f2; | |
1746 | |
1747 f1 = XTYPE (num1) == Lisp_Float ? XFLOAT (num1)->data : XINT (num1); | |
1748 f2 = XTYPE (num2) == Lisp_Float ? XFLOAT (num2)->data : XINT (num2); | |
1253
7afcf7be0d30
* data.c (Frem): Use the `fmod' function under SunOS, Ultrix, and
Jim Blandy <jimb@redhat.com>
parents:
1002
diff
changeset
|
1749 #if defined (USG) || defined (sun) || defined (ultrix) || defined (hpux) |
1002
65f15f1961d8
* data.c [USG] (Frem): Call fmod, rather than drem. Rah.
Jim Blandy <jimb@redhat.com>
parents:
733
diff
changeset
|
1750 f1 = fmod (f1, f2); |
65f15f1961d8
* data.c [USG] (Frem): Call fmod, rather than drem. Rah.
Jim Blandy <jimb@redhat.com>
parents:
733
diff
changeset
|
1751 #else |
733 | 1752 f1 = drem (f1, f2); |
1002
65f15f1961d8
* data.c [USG] (Frem): Call fmod, rather than drem. Rah.
Jim Blandy <jimb@redhat.com>
parents:
733
diff
changeset
|
1753 #endif |
733 | 1754 if (f1 < 0) |
1755 f1 += f2; | |
1756 return (make_float (f1)); | |
298 | 1757 } |
1758 #else /* not LISP_FLOAT_TYPE */ | |
1759 CHECK_NUMBER_COERCE_MARKER (num1, 0); | |
1760 CHECK_NUMBER_COERCE_MARKER (num2, 1); | |
1761 #endif /* not LISP_FLOAT_TYPE */ | |
1762 | |
1763 XSET (val, Lisp_Int, XINT (num1) % XINT (num2)); | |
1764 return val; | |
1765 } | |
1766 | |
1767 DEFUN ("max", Fmax, Smax, 1, MANY, 0, | |
1768 "Return largest of all the arguments (which must be numbers or markers).\n\ | |
1769 The value is always a number; markers are converted to numbers.") | |
1770 (nargs, args) | |
1771 int nargs; | |
1772 Lisp_Object *args; | |
1773 { | |
1774 return arith_driver (Amax, nargs, args); | |
1775 } | |
1776 | |
1777 DEFUN ("min", Fmin, Smin, 1, MANY, 0, | |
1778 "Return smallest of all the arguments (which must be numbers or markers).\n\ | |
1779 The value is always a number; markers are converted to numbers.") | |
1780 (nargs, args) | |
1781 int nargs; | |
1782 Lisp_Object *args; | |
1783 { | |
1784 return arith_driver (Amin, nargs, args); | |
1785 } | |
1786 | |
1787 DEFUN ("logand", Flogand, Slogand, 0, MANY, 0, | |
1788 "Return bitwise-and of all the arguments.\n\ | |
1789 Arguments may be integers, or markers converted to integers.") | |
1790 (nargs, args) | |
1791 int nargs; | |
1792 Lisp_Object *args; | |
1793 { | |
1794 return arith_driver (Alogand, nargs, args); | |
1795 } | |
1796 | |
1797 DEFUN ("logior", Flogior, Slogior, 0, MANY, 0, | |
1798 "Return bitwise-or of all the arguments.\n\ | |
1799 Arguments may be integers, or markers converted to integers.") | |
1800 (nargs, args) | |
1801 int nargs; | |
1802 Lisp_Object *args; | |
1803 { | |
1804 return arith_driver (Alogior, nargs, args); | |
1805 } | |
1806 | |
1807 DEFUN ("logxor", Flogxor, Slogxor, 0, MANY, 0, | |
1808 "Return bitwise-exclusive-or of all the arguments.\n\ | |
1809 Arguments may be integers, or markers converted to integers.") | |
1810 (nargs, args) | |
1811 int nargs; | |
1812 Lisp_Object *args; | |
1813 { | |
1814 return arith_driver (Alogxor, nargs, args); | |
1815 } | |
1816 | |
1817 DEFUN ("ash", Fash, Sash, 2, 2, 0, | |
1818 "Return VALUE with its bits shifted left by COUNT.\n\ | |
1819 If COUNT is negative, shifting is actually to the right.\n\ | |
1820 In this case, the sign bit is duplicated.") | |
1821 (num1, num2) | |
1822 register Lisp_Object num1, num2; | |
1823 { | |
1824 register Lisp_Object val; | |
1825 | |
1826 CHECK_NUMBER (num1, 0); | |
1827 CHECK_NUMBER (num2, 1); | |
1828 | |
1829 if (XINT (num2) > 0) | |
1830 XSET (val, Lisp_Int, XINT (num1) << XFASTINT (num2)); | |
1831 else | |
1832 XSET (val, Lisp_Int, XINT (num1) >> -XINT (num2)); | |
1833 return val; | |
1834 } | |
1835 | |
1836 DEFUN ("lsh", Flsh, Slsh, 2, 2, 0, | |
1837 "Return VALUE with its bits shifted left by COUNT.\n\ | |
1838 If COUNT is negative, shifting is actually to the right.\n\ | |
1839 In this case, zeros are shifted in on the left.") | |
1840 (num1, num2) | |
1841 register Lisp_Object num1, num2; | |
1842 { | |
1843 register Lisp_Object val; | |
1844 | |
1845 CHECK_NUMBER (num1, 0); | |
1846 CHECK_NUMBER (num2, 1); | |
1847 | |
1848 if (XINT (num2) > 0) | |
1849 XSET (val, Lisp_Int, (unsigned) XFASTINT (num1) << XFASTINT (num2)); | |
1850 else | |
1851 XSET (val, Lisp_Int, (unsigned) XFASTINT (num1) >> -XINT (num2)); | |
1852 return val; | |
1853 } | |
1854 | |
1855 DEFUN ("1+", Fadd1, Sadd1, 1, 1, 0, | |
1856 "Return NUMBER plus one. NUMBER may be a number or a marker.\n\ | |
1857 Markers are converted to integers.") | |
1858 (num) | |
1859 register Lisp_Object num; | |
1860 { | |
1861 #ifdef LISP_FLOAT_TYPE | |
1862 CHECK_NUMBER_OR_FLOAT_COERCE_MARKER (num, 0); | |
1863 | |
1864 if (XTYPE (num) == Lisp_Float) | |
1865 return (make_float (1.0 + XFLOAT (num)->data)); | |
1866 #else | |
1867 CHECK_NUMBER_COERCE_MARKER (num, 0); | |
1868 #endif /* LISP_FLOAT_TYPE */ | |
1869 | |
1870 XSETINT (num, XFASTINT (num) + 1); | |
1871 return num; | |
1872 } | |
1873 | |
1874 DEFUN ("1-", Fsub1, Ssub1, 1, 1, 0, | |
1875 "Return NUMBER minus one. NUMBER may be a number or a marker.\n\ | |
1876 Markers are converted to integers.") | |
1877 (num) | |
1878 register Lisp_Object num; | |
1879 { | |
1880 #ifdef LISP_FLOAT_TYPE | |
1881 CHECK_NUMBER_OR_FLOAT_COERCE_MARKER (num, 0); | |
1882 | |
1883 if (XTYPE (num) == Lisp_Float) | |
1884 return (make_float (-1.0 + XFLOAT (num)->data)); | |
1885 #else | |
1886 CHECK_NUMBER_COERCE_MARKER (num, 0); | |
1887 #endif /* LISP_FLOAT_TYPE */ | |
1888 | |
1889 XSETINT (num, XFASTINT (num) - 1); | |
1890 return num; | |
1891 } | |
1892 | |
1893 DEFUN ("lognot", Flognot, Slognot, 1, 1, 0, | |
1894 "Return the bitwise complement of ARG. ARG must be an integer.") | |
1895 (num) | |
1896 register Lisp_Object num; | |
1897 { | |
1898 CHECK_NUMBER (num, 0); | |
1899 XSETINT (num, ~XFASTINT (num)); | |
1900 return num; | |
1901 } | |
1902 | |
1903 void | |
1904 syms_of_data () | |
1905 { | |
2092
7497fce1e426
(syms_of_data) [LISP_FLOAT_TYPE]: Define new error conditions:
Richard M. Stallman <rms@gnu.org>
parents:
1987
diff
changeset
|
1906 Lisp_Object error_tail, arith_tail; |
7497fce1e426
(syms_of_data) [LISP_FLOAT_TYPE]: Define new error conditions:
Richard M. Stallman <rms@gnu.org>
parents:
1987
diff
changeset
|
1907 |
298 | 1908 Qquote = intern ("quote"); |
1909 Qlambda = intern ("lambda"); | |
1910 Qsubr = intern ("subr"); | |
1911 Qerror_conditions = intern ("error-conditions"); | |
1912 Qerror_message = intern ("error-message"); | |
1913 Qtop_level = intern ("top-level"); | |
1914 | |
1915 Qerror = intern ("error"); | |
1916 Qquit = intern ("quit"); | |
1917 Qwrong_type_argument = intern ("wrong-type-argument"); | |
1918 Qargs_out_of_range = intern ("args-out-of-range"); | |
1919 Qvoid_function = intern ("void-function"); | |
648 | 1920 Qcyclic_function_indirection = intern ("cyclic-function-indirection"); |
298 | 1921 Qvoid_variable = intern ("void-variable"); |
1922 Qsetting_constant = intern ("setting-constant"); | |
1923 Qinvalid_read_syntax = intern ("invalid-read-syntax"); | |
1924 | |
1925 Qinvalid_function = intern ("invalid-function"); | |
1926 Qwrong_number_of_arguments = intern ("wrong-number-of-arguments"); | |
1927 Qno_catch = intern ("no-catch"); | |
1928 Qend_of_file = intern ("end-of-file"); | |
1929 Qarith_error = intern ("arith-error"); | |
1930 Qbeginning_of_buffer = intern ("beginning-of-buffer"); | |
1931 Qend_of_buffer = intern ("end-of-buffer"); | |
1932 Qbuffer_read_only = intern ("buffer-read-only"); | |
1933 | |
1934 Qlistp = intern ("listp"); | |
1935 Qconsp = intern ("consp"); | |
1936 Qsymbolp = intern ("symbolp"); | |
1937 Qintegerp = intern ("integerp"); | |
1938 Qnatnump = intern ("natnump"); | |
1939 Qstringp = intern ("stringp"); | |
1940 Qarrayp = intern ("arrayp"); | |
1941 Qsequencep = intern ("sequencep"); | |
1942 Qbufferp = intern ("bufferp"); | |
1943 Qvectorp = intern ("vectorp"); | |
1944 Qchar_or_string_p = intern ("char-or-string-p"); | |
1945 Qmarkerp = intern ("markerp"); | |
1293 | 1946 Qbuffer_or_string_p = intern ("buffer-or-string-p"); |
298 | 1947 Qinteger_or_marker_p = intern ("integer-or-marker-p"); |
1948 Qboundp = intern ("boundp"); | |
1949 Qfboundp = intern ("fboundp"); | |
1950 | |
1951 #ifdef LISP_FLOAT_TYPE | |
1952 Qfloatp = intern ("floatp"); | |
1953 Qnumberp = intern ("numberp"); | |
1954 Qnumber_or_marker_p = intern ("number-or-marker-p"); | |
1955 #endif /* LISP_FLOAT_TYPE */ | |
1956 | |
1957 Qcdr = intern ("cdr"); | |
1958 | |
2092
7497fce1e426
(syms_of_data) [LISP_FLOAT_TYPE]: Define new error conditions:
Richard M. Stallman <rms@gnu.org>
parents:
1987
diff
changeset
|
1959 error_tail = Fcons (Qerror, Qnil); |
7497fce1e426
(syms_of_data) [LISP_FLOAT_TYPE]: Define new error conditions:
Richard M. Stallman <rms@gnu.org>
parents:
1987
diff
changeset
|
1960 |
298 | 1961 /* ERROR is used as a signaler for random errors for which nothing else is right */ |
1962 | |
1963 Fput (Qerror, Qerror_conditions, | |
2092
7497fce1e426
(syms_of_data) [LISP_FLOAT_TYPE]: Define new error conditions:
Richard M. Stallman <rms@gnu.org>
parents:
1987
diff
changeset
|
1964 error_tail); |
298 | 1965 Fput (Qerror, Qerror_message, |
1966 build_string ("error")); | |
1967 | |
1968 Fput (Qquit, Qerror_conditions, | |
1969 Fcons (Qquit, Qnil)); | |
1970 Fput (Qquit, Qerror_message, | |
1971 build_string ("Quit")); | |
1972 | |
1973 Fput (Qwrong_type_argument, Qerror_conditions, | |
2092
7497fce1e426
(syms_of_data) [LISP_FLOAT_TYPE]: Define new error conditions:
Richard M. Stallman <rms@gnu.org>
parents:
1987
diff
changeset
|
1974 Fcons (Qwrong_type_argument, error_tail)); |
298 | 1975 Fput (Qwrong_type_argument, Qerror_message, |
1976 build_string ("Wrong type argument")); | |
1977 | |
1978 Fput (Qargs_out_of_range, Qerror_conditions, | |
2092
7497fce1e426
(syms_of_data) [LISP_FLOAT_TYPE]: Define new error conditions:
Richard M. Stallman <rms@gnu.org>
parents:
1987
diff
changeset
|
1979 Fcons (Qargs_out_of_range, error_tail)); |
298 | 1980 Fput (Qargs_out_of_range, Qerror_message, |
1981 build_string ("Args out of range")); | |
1982 | |
1983 Fput (Qvoid_function, Qerror_conditions, | |
2092
7497fce1e426
(syms_of_data) [LISP_FLOAT_TYPE]: Define new error conditions:
Richard M. Stallman <rms@gnu.org>
parents:
1987
diff
changeset
|
1984 Fcons (Qvoid_function, error_tail)); |
298 | 1985 Fput (Qvoid_function, Qerror_message, |
1986 build_string ("Symbol's function definition is void")); | |
1987 | |
648 | 1988 Fput (Qcyclic_function_indirection, Qerror_conditions, |
2092
7497fce1e426
(syms_of_data) [LISP_FLOAT_TYPE]: Define new error conditions:
Richard M. Stallman <rms@gnu.org>
parents:
1987
diff
changeset
|
1989 Fcons (Qcyclic_function_indirection, error_tail)); |
648 | 1990 Fput (Qcyclic_function_indirection, Qerror_message, |
1991 build_string ("Symbol's chain of function indirections contains a loop")); | |
1992 | |
298 | 1993 Fput (Qvoid_variable, Qerror_conditions, |
2092
7497fce1e426
(syms_of_data) [LISP_FLOAT_TYPE]: Define new error conditions:
Richard M. Stallman <rms@gnu.org>
parents:
1987
diff
changeset
|
1994 Fcons (Qvoid_variable, error_tail)); |
298 | 1995 Fput (Qvoid_variable, Qerror_message, |
1996 build_string ("Symbol's value as variable is void")); | |
1997 | |
1998 Fput (Qsetting_constant, Qerror_conditions, | |
2092
7497fce1e426
(syms_of_data) [LISP_FLOAT_TYPE]: Define new error conditions:
Richard M. Stallman <rms@gnu.org>
parents:
1987
diff
changeset
|
1999 Fcons (Qsetting_constant, error_tail)); |
298 | 2000 Fput (Qsetting_constant, Qerror_message, |
2001 build_string ("Attempt to set a constant symbol")); | |
2002 | |
2003 Fput (Qinvalid_read_syntax, Qerror_conditions, | |
2092
7497fce1e426
(syms_of_data) [LISP_FLOAT_TYPE]: Define new error conditions:
Richard M. Stallman <rms@gnu.org>
parents:
1987
diff
changeset
|
2004 Fcons (Qinvalid_read_syntax, error_tail)); |
298 | 2005 Fput (Qinvalid_read_syntax, Qerror_message, |
2006 build_string ("Invalid read syntax")); | |
2007 | |
2008 Fput (Qinvalid_function, Qerror_conditions, | |
2092
7497fce1e426
(syms_of_data) [LISP_FLOAT_TYPE]: Define new error conditions:
Richard M. Stallman <rms@gnu.org>
parents:
1987
diff
changeset
|
2009 Fcons (Qinvalid_function, error_tail)); |
298 | 2010 Fput (Qinvalid_function, Qerror_message, |
2011 build_string ("Invalid function")); | |
2012 | |
2013 Fput (Qwrong_number_of_arguments, Qerror_conditions, | |
2092
7497fce1e426
(syms_of_data) [LISP_FLOAT_TYPE]: Define new error conditions:
Richard M. Stallman <rms@gnu.org>
parents:
1987
diff
changeset
|
2014 Fcons (Qwrong_number_of_arguments, error_tail)); |
298 | 2015 Fput (Qwrong_number_of_arguments, Qerror_message, |
2016 build_string ("Wrong number of arguments")); | |
2017 | |
2018 Fput (Qno_catch, Qerror_conditions, | |
2092
7497fce1e426
(syms_of_data) [LISP_FLOAT_TYPE]: Define new error conditions:
Richard M. Stallman <rms@gnu.org>
parents:
1987
diff
changeset
|
2019 Fcons (Qno_catch, error_tail)); |
298 | 2020 Fput (Qno_catch, Qerror_message, |
2021 build_string ("No catch for tag")); | |
2022 | |
2023 Fput (Qend_of_file, Qerror_conditions, | |
2092
7497fce1e426
(syms_of_data) [LISP_FLOAT_TYPE]: Define new error conditions:
Richard M. Stallman <rms@gnu.org>
parents:
1987
diff
changeset
|
2024 Fcons (Qend_of_file, error_tail)); |
298 | 2025 Fput (Qend_of_file, Qerror_message, |
2026 build_string ("End of file during parsing")); | |
2027 | |
2092
7497fce1e426
(syms_of_data) [LISP_FLOAT_TYPE]: Define new error conditions:
Richard M. Stallman <rms@gnu.org>
parents:
1987
diff
changeset
|
2028 arith_tail = Fcons (Qarith_error, error_tail); |
298 | 2029 Fput (Qarith_error, Qerror_conditions, |
2092
7497fce1e426
(syms_of_data) [LISP_FLOAT_TYPE]: Define new error conditions:
Richard M. Stallman <rms@gnu.org>
parents:
1987
diff
changeset
|
2030 arith_tail); |
298 | 2031 Fput (Qarith_error, Qerror_message, |
2032 build_string ("Arithmetic error")); | |
2033 | |
2034 Fput (Qbeginning_of_buffer, Qerror_conditions, | |
2092
7497fce1e426
(syms_of_data) [LISP_FLOAT_TYPE]: Define new error conditions:
Richard M. Stallman <rms@gnu.org>
parents:
1987
diff
changeset
|
2035 Fcons (Qbeginning_of_buffer, error_tail)); |
298 | 2036 Fput (Qbeginning_of_buffer, Qerror_message, |
2037 build_string ("Beginning of buffer")); | |
2038 | |
2039 Fput (Qend_of_buffer, Qerror_conditions, | |
2092
7497fce1e426
(syms_of_data) [LISP_FLOAT_TYPE]: Define new error conditions:
Richard M. Stallman <rms@gnu.org>
parents:
1987
diff
changeset
|
2040 Fcons (Qend_of_buffer, error_tail)); |
298 | 2041 Fput (Qend_of_buffer, Qerror_message, |
2042 build_string ("End of buffer")); | |
2043 | |
2044 Fput (Qbuffer_read_only, Qerror_conditions, | |
2092
7497fce1e426
(syms_of_data) [LISP_FLOAT_TYPE]: Define new error conditions:
Richard M. Stallman <rms@gnu.org>
parents:
1987
diff
changeset
|
2045 Fcons (Qbuffer_read_only, error_tail)); |
298 | 2046 Fput (Qbuffer_read_only, Qerror_message, |
2047 build_string ("Buffer is read-only")); | |
2048 | |
2092
7497fce1e426
(syms_of_data) [LISP_FLOAT_TYPE]: Define new error conditions:
Richard M. Stallman <rms@gnu.org>
parents:
1987
diff
changeset
|
2049 #ifdef LISP_FLOAT_TYPE |
7497fce1e426
(syms_of_data) [LISP_FLOAT_TYPE]: Define new error conditions:
Richard M. Stallman <rms@gnu.org>
parents:
1987
diff
changeset
|
2050 Qrange_error = intern ("range-error"); |
7497fce1e426
(syms_of_data) [LISP_FLOAT_TYPE]: Define new error conditions:
Richard M. Stallman <rms@gnu.org>
parents:
1987
diff
changeset
|
2051 Qdomain_error = intern ("domain-error"); |
7497fce1e426
(syms_of_data) [LISP_FLOAT_TYPE]: Define new error conditions:
Richard M. Stallman <rms@gnu.org>
parents:
1987
diff
changeset
|
2052 Qsingularity_error = intern ("singularity-error"); |
7497fce1e426
(syms_of_data) [LISP_FLOAT_TYPE]: Define new error conditions:
Richard M. Stallman <rms@gnu.org>
parents:
1987
diff
changeset
|
2053 Qoverflow_error = intern ("overflow-error"); |
7497fce1e426
(syms_of_data) [LISP_FLOAT_TYPE]: Define new error conditions:
Richard M. Stallman <rms@gnu.org>
parents:
1987
diff
changeset
|
2054 Qunderflow_error = intern ("underflow-error"); |
7497fce1e426
(syms_of_data) [LISP_FLOAT_TYPE]: Define new error conditions:
Richard M. Stallman <rms@gnu.org>
parents:
1987
diff
changeset
|
2055 |
7497fce1e426
(syms_of_data) [LISP_FLOAT_TYPE]: Define new error conditions:
Richard M. Stallman <rms@gnu.org>
parents:
1987
diff
changeset
|
2056 Fput (Qdomain_error, Qerror_conditions, |
7497fce1e426
(syms_of_data) [LISP_FLOAT_TYPE]: Define new error conditions:
Richard M. Stallman <rms@gnu.org>
parents:
1987
diff
changeset
|
2057 Fcons (Qdomain_error, arith_tail)); |
7497fce1e426
(syms_of_data) [LISP_FLOAT_TYPE]: Define new error conditions:
Richard M. Stallman <rms@gnu.org>
parents:
1987
diff
changeset
|
2058 Fput (Qdomain_error, Qerror_message, |
7497fce1e426
(syms_of_data) [LISP_FLOAT_TYPE]: Define new error conditions:
Richard M. Stallman <rms@gnu.org>
parents:
1987
diff
changeset
|
2059 build_string ("Arithmetic domain error")); |
7497fce1e426
(syms_of_data) [LISP_FLOAT_TYPE]: Define new error conditions:
Richard M. Stallman <rms@gnu.org>
parents:
1987
diff
changeset
|
2060 |
7497fce1e426
(syms_of_data) [LISP_FLOAT_TYPE]: Define new error conditions:
Richard M. Stallman <rms@gnu.org>
parents:
1987
diff
changeset
|
2061 Fput (Qrange_error, Qerror_conditions, |
7497fce1e426
(syms_of_data) [LISP_FLOAT_TYPE]: Define new error conditions:
Richard M. Stallman <rms@gnu.org>
parents:
1987
diff
changeset
|
2062 Fcons (Qrange_error, arith_tail)); |
7497fce1e426
(syms_of_data) [LISP_FLOAT_TYPE]: Define new error conditions:
Richard M. Stallman <rms@gnu.org>
parents:
1987
diff
changeset
|
2063 Fput (Qrange_error, Qerror_message, |
7497fce1e426
(syms_of_data) [LISP_FLOAT_TYPE]: Define new error conditions:
Richard M. Stallman <rms@gnu.org>
parents:
1987
diff
changeset
|
2064 build_string ("Arithmetic range error")); |
7497fce1e426
(syms_of_data) [LISP_FLOAT_TYPE]: Define new error conditions:
Richard M. Stallman <rms@gnu.org>
parents:
1987
diff
changeset
|
2065 |
7497fce1e426
(syms_of_data) [LISP_FLOAT_TYPE]: Define new error conditions:
Richard M. Stallman <rms@gnu.org>
parents:
1987
diff
changeset
|
2066 Fput (Qsingularity_error, Qerror_conditions, |
7497fce1e426
(syms_of_data) [LISP_FLOAT_TYPE]: Define new error conditions:
Richard M. Stallman <rms@gnu.org>
parents:
1987
diff
changeset
|
2067 Fcons (Qsingularity_error, Fcons (Qdomain_error, arith_tail))); |
7497fce1e426
(syms_of_data) [LISP_FLOAT_TYPE]: Define new error conditions:
Richard M. Stallman <rms@gnu.org>
parents:
1987
diff
changeset
|
2068 Fput (Qsingularity_error, Qerror_message, |
7497fce1e426
(syms_of_data) [LISP_FLOAT_TYPE]: Define new error conditions:
Richard M. Stallman <rms@gnu.org>
parents:
1987
diff
changeset
|
2069 build_string ("Arithmetic singularity error")); |
7497fce1e426
(syms_of_data) [LISP_FLOAT_TYPE]: Define new error conditions:
Richard M. Stallman <rms@gnu.org>
parents:
1987
diff
changeset
|
2070 |
7497fce1e426
(syms_of_data) [LISP_FLOAT_TYPE]: Define new error conditions:
Richard M. Stallman <rms@gnu.org>
parents:
1987
diff
changeset
|
2071 Fput (Qoverflow_error, Qerror_conditions, |
7497fce1e426
(syms_of_data) [LISP_FLOAT_TYPE]: Define new error conditions:
Richard M. Stallman <rms@gnu.org>
parents:
1987
diff
changeset
|
2072 Fcons (Qoverflow_error, Fcons (Qdomain_error, arith_tail))); |
7497fce1e426
(syms_of_data) [LISP_FLOAT_TYPE]: Define new error conditions:
Richard M. Stallman <rms@gnu.org>
parents:
1987
diff
changeset
|
2073 Fput (Qoverflow_error, Qerror_message, |
7497fce1e426
(syms_of_data) [LISP_FLOAT_TYPE]: Define new error conditions:
Richard M. Stallman <rms@gnu.org>
parents:
1987
diff
changeset
|
2074 build_string ("Arithmetic overflow error")); |
7497fce1e426
(syms_of_data) [LISP_FLOAT_TYPE]: Define new error conditions:
Richard M. Stallman <rms@gnu.org>
parents:
1987
diff
changeset
|
2075 |
7497fce1e426
(syms_of_data) [LISP_FLOAT_TYPE]: Define new error conditions:
Richard M. Stallman <rms@gnu.org>
parents:
1987
diff
changeset
|
2076 Fput (Qunderflow_error, Qerror_conditions, |
7497fce1e426
(syms_of_data) [LISP_FLOAT_TYPE]: Define new error conditions:
Richard M. Stallman <rms@gnu.org>
parents:
1987
diff
changeset
|
2077 Fcons (Qunderflow_error, Fcons (Qdomain_error, arith_tail))); |
7497fce1e426
(syms_of_data) [LISP_FLOAT_TYPE]: Define new error conditions:
Richard M. Stallman <rms@gnu.org>
parents:
1987
diff
changeset
|
2078 Fput (Qunderflow_error, Qerror_message, |
7497fce1e426
(syms_of_data) [LISP_FLOAT_TYPE]: Define new error conditions:
Richard M. Stallman <rms@gnu.org>
parents:
1987
diff
changeset
|
2079 build_string ("Arithmetic underflow error")); |
7497fce1e426
(syms_of_data) [LISP_FLOAT_TYPE]: Define new error conditions:
Richard M. Stallman <rms@gnu.org>
parents:
1987
diff
changeset
|
2080 |
7497fce1e426
(syms_of_data) [LISP_FLOAT_TYPE]: Define new error conditions:
Richard M. Stallman <rms@gnu.org>
parents:
1987
diff
changeset
|
2081 staticpro (&Qrange_error); |
7497fce1e426
(syms_of_data) [LISP_FLOAT_TYPE]: Define new error conditions:
Richard M. Stallman <rms@gnu.org>
parents:
1987
diff
changeset
|
2082 staticpro (&Qdomain_error); |
7497fce1e426
(syms_of_data) [LISP_FLOAT_TYPE]: Define new error conditions:
Richard M. Stallman <rms@gnu.org>
parents:
1987
diff
changeset
|
2083 staticpro (&Qsingularity_error); |
7497fce1e426
(syms_of_data) [LISP_FLOAT_TYPE]: Define new error conditions:
Richard M. Stallman <rms@gnu.org>
parents:
1987
diff
changeset
|
2084 staticpro (&Qoverflow_error); |
7497fce1e426
(syms_of_data) [LISP_FLOAT_TYPE]: Define new error conditions:
Richard M. Stallman <rms@gnu.org>
parents:
1987
diff
changeset
|
2085 staticpro (&Qunderflow_error); |
7497fce1e426
(syms_of_data) [LISP_FLOAT_TYPE]: Define new error conditions:
Richard M. Stallman <rms@gnu.org>
parents:
1987
diff
changeset
|
2086 #endif /* LISP_FLOAT_TYPE */ |
7497fce1e426
(syms_of_data) [LISP_FLOAT_TYPE]: Define new error conditions:
Richard M. Stallman <rms@gnu.org>
parents:
1987
diff
changeset
|
2087 |
298 | 2088 staticpro (&Qnil); |
2089 staticpro (&Qt); | |
2090 staticpro (&Qquote); | |
2091 staticpro (&Qlambda); | |
2092 staticpro (&Qsubr); | |
2093 staticpro (&Qunbound); | |
2094 staticpro (&Qerror_conditions); | |
2095 staticpro (&Qerror_message); | |
2096 staticpro (&Qtop_level); | |
2097 | |
2098 staticpro (&Qerror); | |
2099 staticpro (&Qquit); | |
2100 staticpro (&Qwrong_type_argument); | |
2101 staticpro (&Qargs_out_of_range); | |
2102 staticpro (&Qvoid_function); | |
648 | 2103 staticpro (&Qcyclic_function_indirection); |
298 | 2104 staticpro (&Qvoid_variable); |
2105 staticpro (&Qsetting_constant); | |
2106 staticpro (&Qinvalid_read_syntax); | |
2107 staticpro (&Qwrong_number_of_arguments); | |
2108 staticpro (&Qinvalid_function); | |
2109 staticpro (&Qno_catch); | |
2110 staticpro (&Qend_of_file); | |
2111 staticpro (&Qarith_error); | |
2112 staticpro (&Qbeginning_of_buffer); | |
2113 staticpro (&Qend_of_buffer); | |
2114 staticpro (&Qbuffer_read_only); | |
2115 | |
2116 staticpro (&Qlistp); | |
2117 staticpro (&Qconsp); | |
2118 staticpro (&Qsymbolp); | |
2119 staticpro (&Qintegerp); | |
2120 staticpro (&Qnatnump); | |
2121 staticpro (&Qstringp); | |
2122 staticpro (&Qarrayp); | |
2123 staticpro (&Qsequencep); | |
2124 staticpro (&Qbufferp); | |
2125 staticpro (&Qvectorp); | |
2126 staticpro (&Qchar_or_string_p); | |
2127 staticpro (&Qmarkerp); | |
1293 | 2128 staticpro (&Qbuffer_or_string_p); |
298 | 2129 staticpro (&Qinteger_or_marker_p); |
2130 #ifdef LISP_FLOAT_TYPE | |
2131 staticpro (&Qfloatp); | |
695
e3fac20d3015
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
648
diff
changeset
|
2132 staticpro (&Qnumberp); |
e3fac20d3015
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
648
diff
changeset
|
2133 staticpro (&Qnumber_or_marker_p); |
298 | 2134 #endif /* LISP_FLOAT_TYPE */ |
2135 | |
2136 staticpro (&Qboundp); | |
2137 staticpro (&Qfboundp); | |
2138 staticpro (&Qcdr); | |
2139 | |
2140 defsubr (&Seq); | |
2141 defsubr (&Snull); | |
2142 defsubr (&Slistp); | |
2143 defsubr (&Snlistp); | |
2144 defsubr (&Sconsp); | |
2145 defsubr (&Satom); | |
2146 defsubr (&Sintegerp); | |
695
e3fac20d3015
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
648
diff
changeset
|
2147 defsubr (&Sinteger_or_marker_p); |
e3fac20d3015
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
648
diff
changeset
|
2148 defsubr (&Snumberp); |
e3fac20d3015
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
648
diff
changeset
|
2149 defsubr (&Snumber_or_marker_p); |
298 | 2150 #ifdef LISP_FLOAT_TYPE |
2151 defsubr (&Sfloatp); | |
2152 #endif /* LISP_FLOAT_TYPE */ | |
2153 defsubr (&Snatnump); | |
2154 defsubr (&Ssymbolp); | |
2155 defsubr (&Sstringp); | |
2156 defsubr (&Svectorp); | |
2157 defsubr (&Sarrayp); | |
2158 defsubr (&Ssequencep); | |
2159 defsubr (&Sbufferp); | |
2160 defsubr (&Smarkerp); | |
2161 defsubr (&Ssubrp); | |
1821
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1648
diff
changeset
|
2162 defsubr (&Sbyte_code_function_p); |
298 | 2163 defsubr (&Schar_or_string_p); |
2164 defsubr (&Scar); | |
2165 defsubr (&Scdr); | |
2166 defsubr (&Scar_safe); | |
2167 defsubr (&Scdr_safe); | |
2168 defsubr (&Ssetcar); | |
2169 defsubr (&Ssetcdr); | |
2170 defsubr (&Ssymbol_function); | |
648 | 2171 defsubr (&Sindirect_function); |
298 | 2172 defsubr (&Ssymbol_plist); |
2173 defsubr (&Ssymbol_name); | |
2174 defsubr (&Smakunbound); | |
2175 defsubr (&Sfmakunbound); | |
2176 defsubr (&Sboundp); | |
2177 defsubr (&Sfboundp); | |
2178 defsubr (&Sfset); | |
2565
c1a1557bffde
(Fdefine_function): Changed name back to Fdefalias, so we get things
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2548
diff
changeset
|
2179 defsubr (&Sdefalias); |
2606
6bf6499fe4db
(Fdefine_function): New function (same code as Fdefalias).
Richard M. Stallman <rms@gnu.org>
parents:
2565
diff
changeset
|
2180 defsubr (&Sdefine_function); |
298 | 2181 defsubr (&Ssetplist); |
2182 defsubr (&Ssymbol_value); | |
2183 defsubr (&Sset); | |
2184 defsubr (&Sdefault_boundp); | |
2185 defsubr (&Sdefault_value); | |
2186 defsubr (&Sset_default); | |
2187 defsubr (&Ssetq_default); | |
2188 defsubr (&Smake_variable_buffer_local); | |
2189 defsubr (&Smake_local_variable); | |
2190 defsubr (&Skill_local_variable); | |
2191 defsubr (&Saref); | |
2192 defsubr (&Saset); | |
2429
96b55f2f19cd
Rename int-to-string to number-to-string, since it can handle
Jim Blandy <jimb@redhat.com>
parents:
2092
diff
changeset
|
2193 defsubr (&Snumber_to_string); |
1914
60965a5c325f
* data.c (Fstring_to_number): Skip initial spaces, to make Emacs
Jim Blandy <jimb@redhat.com>
parents:
1821
diff
changeset
|
2194 defsubr (&Sstring_to_number); |
298 | 2195 defsubr (&Seqlsign); |
2196 defsubr (&Slss); | |
2197 defsubr (&Sgtr); | |
2198 defsubr (&Sleq); | |
2199 defsubr (&Sgeq); | |
2200 defsubr (&Sneq); | |
2201 defsubr (&Szerop); | |
2202 defsubr (&Splus); | |
2203 defsubr (&Sminus); | |
2204 defsubr (&Stimes); | |
2205 defsubr (&Squo); | |
2206 defsubr (&Srem); | |
2207 defsubr (&Smax); | |
2208 defsubr (&Smin); | |
2209 defsubr (&Slogand); | |
2210 defsubr (&Slogior); | |
2211 defsubr (&Slogxor); | |
2212 defsubr (&Slsh); | |
2213 defsubr (&Sash); | |
2214 defsubr (&Sadd1); | |
2215 defsubr (&Ssub1); | |
2216 defsubr (&Slognot); | |
2217 } | |
2218 | |
490 | 2219 SIGTYPE |
298 | 2220 arith_error (signo) |
2221 int signo; | |
2222 { | |
2223 #ifdef USG | |
2224 /* USG systems forget handlers when they are used; | |
2225 must reestablish each time */ | |
2226 signal (signo, arith_error); | |
2227 #endif /* USG */ | |
2228 #ifdef VMS | |
2229 /* VMS systems are like USG. */ | |
2230 signal (signo, arith_error); | |
2231 #endif /* VMS */ | |
2232 #ifdef BSD4_1 | |
2233 sigrelse (SIGFPE); | |
2234 #else /* not BSD4_1 */ | |
638 | 2235 sigsetmask (SIGEMPTYMASK); |
298 | 2236 #endif /* not BSD4_1 */ |
2237 | |
2238 Fsignal (Qarith_error, Qnil); | |
2239 } | |
2240 | |
2241 init_data () | |
2242 { | |
2243 /* Don't do this if just dumping out. | |
2244 We don't want to call `signal' in this case | |
2245 so that we don't have trouble with dumping | |
2246 signal-delivering routines in an inconsistent state. */ | |
2247 #ifndef CANNOT_DUMP | |
2248 if (!initialized) | |
2249 return; | |
2250 #endif /* CANNOT_DUMP */ | |
2251 signal (SIGFPE, arith_error); | |
591 | 2252 |
298 | 2253 #ifdef uts |
2254 signal (SIGEMT, arith_error); | |
2255 #endif /* uts */ | |
2256 } |