Silence some byte-compiler warnings in ERC
[bpt/emacs.git] / src / data.c
CommitLineData
7921925c 1/* Primitive operations on Lisp data types for GNU Emacs Lisp interpreter.
0b5538bd 2 Copyright (C) 1985, 1986, 1988, 1993, 1994, 1995, 1997, 1998, 1999, 2000,
4e6835db 3 2001, 2002, 2003, 2004, 2005, 2006, 2007 Free Software Foundation, Inc.
7921925c
JB
4
5This file is part of GNU Emacs.
6
7GNU Emacs is free software; you can redistribute it and/or modify
8it under the terms of the GNU General Public License as published by
684d6f5b 9the Free Software Foundation; either version 3, or (at your option)
7921925c
JB
10any later version.
11
12GNU Emacs is distributed in the hope that it will be useful,
13but WITHOUT ANY WARRANTY; without even the implied warranty of
14MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15GNU General Public License for more details.
16
17You should have received a copy of the GNU General Public License
18along with GNU Emacs; see the file COPYING. If not, write to
4fc5845f
LK
19the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
20Boston, MA 02110-1301, USA. */
7921925c
JB
21
22
18160b98 23#include <config.h>
68c45bf0 24#include <signal.h>
dd8daec5 25#include <stdio.h>
7921925c 26#include "lisp.h"
29eab336 27#include "puresize.h"
8313c4e7 28#include "charset.h"
7921925c 29#include "buffer.h"
077d751f 30#include "keyboard.h"
b0c2d1c6 31#include "frame.h"
a44804c2 32#include "syssignal.h"
256c9c3a 33#include "termhooks.h" /* For FRAME_KBOARD reference in y-or-n-p. */
fb8e9847 34
93b91208 35#ifdef STDC_HEADERS
2f261542 36#include <float.h>
93b91208 37#endif
defa77b5 38
ad8d56b9
PE
39/* If IEEE_FLOATING_POINT isn't defined, default it from FLT_*. */
40#ifndef IEEE_FLOATING_POINT
41#if (FLT_RADIX == 2 && FLT_MANT_DIG == 24 \
42 && FLT_MIN_EXP == -125 && FLT_MAX_EXP == 128)
43#define IEEE_FLOATING_POINT 1
44#else
45#define IEEE_FLOATING_POINT 0
46#endif
47#endif
48
defa77b5
RS
49/* Work around a problem that happens because math.h on hpux 7
50 defines two static variables--which, in Emacs, are not really static,
51 because `static' is defined as nothing. The problem is that they are
52 here, in floatfns.c, and in lread.c.
53 These macros prevent the name conflict. */
54#if defined (HPUX) && !defined (HPUX8)
55#define _MAXLDBL data_c_maxldbl
56#define _NMAXLDBL data_c_nmaxldbl
57#endif
58
7921925c 59#include <math.h>
7921925c 60
024ec58f
BF
61#if !defined (atof)
62extern double atof ();
63#endif /* !atof */
64
7921925c
JB
65Lisp_Object Qnil, Qt, Qquote, Qlambda, Qsubr, Qunbound;
66Lisp_Object Qerror_conditions, Qerror_message, Qtop_level;
67Lisp_Object Qerror, Qquit, Qwrong_type_argument, Qargs_out_of_range;
ffd56f97 68Lisp_Object Qvoid_variable, Qvoid_function, Qcyclic_function_indirection;
13d95cc0 69Lisp_Object Qcyclic_variable_indirection, Qcircular_list;
7921925c
JB
70Lisp_Object Qsetting_constant, Qinvalid_read_syntax;
71Lisp_Object Qinvalid_function, Qwrong_number_of_arguments, Qno_catch;
3b8819d6 72Lisp_Object Qend_of_file, Qarith_error, Qmark_inactive;
7921925c 73Lisp_Object Qbeginning_of_buffer, Qend_of_buffer, Qbuffer_read_only;
8f9f49d7 74Lisp_Object Qtext_read_only;
aae13d36 75
8e86942b 76Lisp_Object Qintegerp, Qnatnump, Qwholenump, Qsymbolp, Qlistp, Qconsp;
7921925c
JB
77Lisp_Object Qstringp, Qarrayp, Qsequencep, Qbufferp;
78Lisp_Object Qchar_or_string_p, Qmarkerp, Qinteger_or_marker_p, Qvectorp;
cda9b832 79Lisp_Object Qbuffer_or_string_p, Qkeywordp;
7921925c 80Lisp_Object Qboundp, Qfboundp;
7f0edce7 81Lisp_Object Qchar_table_p, Qvector_or_char_table_p;
39bcc759 82
7921925c 83Lisp_Object Qcdr;
c1307a23 84Lisp_Object Qad_advice_info, Qad_activate_internal;
7921925c 85
6315e761
RS
86Lisp_Object Qrange_error, Qdomain_error, Qsingularity_error;
87Lisp_Object Qoverflow_error, Qunderflow_error;
88
464f8898 89Lisp_Object Qfloatp;
7921925c 90Lisp_Object Qnumberp, Qnumber_or_marker_p;
7921925c 91
aae13d36
LH
92Lisp_Object Qinteger;
93static Lisp_Object Qsymbol, Qstring, Qcons, Qmarker, Qoverlay;
8313c4e7
KH
94static Lisp_Object Qfloat, Qwindow_configuration, Qwindow;
95Lisp_Object Qprocess;
39bcc759 96static Lisp_Object Qcompiled_function, Qbuffer, Qframe, Qvector;
81dc5de5 97static Lisp_Object Qchar_table, Qbool_vector, Qhash_table;
6f0e897f 98static Lisp_Object Qsubrp, Qmany, Qunevalled;
39bcc759 99
7a283f36 100static Lisp_Object swap_in_symval_forwarding P_ ((Lisp_Object, Lisp_Object));
d02eeab3 101
9d113d9d 102Lisp_Object Vmost_positive_fixnum, Vmost_negative_fixnum;
e6190b11 103
13d95cc0
GM
104
105void
106circular_list_error (list)
107 Lisp_Object list;
108{
740ef0b5 109 xsignal (Qcircular_list, list);
13d95cc0
GM
110}
111
112
7921925c
JB
113Lisp_Object
114wrong_type_argument (predicate, value)
115 register Lisp_Object predicate, value;
116{
0c64a8cd
KS
117 /* If VALUE is not even a valid Lisp object, abort here
118 where we can get a backtrace showing where it came from. */
119 if ((unsigned int) XGCTYPE (value) >= Lisp_Type_Limit)
120 abort ();
121
740ef0b5 122 xsignal2 (Qwrong_type_argument, predicate, value);
7921925c
JB
123}
124
dfcf069d 125void
7921925c
JB
126pure_write_error ()
127{
128 error ("Attempt to modify read-only object");
129}
130
131void
132args_out_of_range (a1, a2)
133 Lisp_Object a1, a2;
134{
740ef0b5 135 xsignal2 (Qargs_out_of_range, a1, a2);
7921925c
JB
136}
137
138void
139args_out_of_range_3 (a1, a2, a3)
140 Lisp_Object a1, a2, a3;
141{
740ef0b5 142 xsignal3 (Qargs_out_of_range, a1, a2, a3);
7921925c
JB
143}
144
7921925c
JB
145/* On some machines, XINT needs a temporary location.
146 Here it is, in case it is needed. */
147
148int sign_extend_temp;
149
150/* On a few machines, XINT can only be done by calling this. */
151
152int
153sign_extend_lisp_int (num)
a0ed95ea 154 EMACS_INT num;
7921925c 155{
a0ed95ea
RS
156 if (num & (((EMACS_INT) 1) << (VALBITS - 1)))
157 return num | (((EMACS_INT) (-1)) << VALBITS);
7921925c 158 else
a0ed95ea 159 return num & ((((EMACS_INT) 1) << VALBITS) - 1);
7921925c
JB
160}
161\f
162/* Data type predicates */
163
164DEFUN ("eq", Feq, Seq, 2, 2, 0,
8c1a1077
PJ
165 doc: /* Return t if the two args are the same Lisp object. */)
166 (obj1, obj2)
7921925c
JB
167 Lisp_Object obj1, obj2;
168{
169 if (EQ (obj1, obj2))
170 return Qt;
171 return Qnil;
172}
173
8c1a1077
PJ
174DEFUN ("null", Fnull, Snull, 1, 1, 0,
175 doc: /* Return t if OBJECT is nil. */)
176 (object)
39bcc759 177 Lisp_Object object;
7921925c 178{
39bcc759 179 if (NILP (object))
7921925c
JB
180 return Qt;
181 return Qnil;
182}
183
39bcc759 184DEFUN ("type-of", Ftype_of, Stype_of, 1, 1, 0,
8c1a1077
PJ
185 doc: /* Return a symbol representing the type of OBJECT.
186The symbol returned names the object's basic type;
187for example, (type-of 1) returns `integer'. */)
188 (object)
39bcc759
RS
189 Lisp_Object object;
190{
191 switch (XGCTYPE (object))
192 {
193 case Lisp_Int:
194 return Qinteger;
195
196 case Lisp_Symbol:
197 return Qsymbol;
198
199 case Lisp_String:
200 return Qstring;
201
202 case Lisp_Cons:
203 return Qcons;
204
205 case Lisp_Misc:
324a6eef 206 switch (XMISCTYPE (object))
39bcc759
RS
207 {
208 case Lisp_Misc_Marker:
209 return Qmarker;
210 case Lisp_Misc_Overlay:
211 return Qoverlay;
212 case Lisp_Misc_Float:
213 return Qfloat;
214 }
215 abort ();
216
217 case Lisp_Vectorlike:
218 if (GC_WINDOW_CONFIGURATIONP (object))
219 return Qwindow_configuration;
220 if (GC_PROCESSP (object))
221 return Qprocess;
222 if (GC_WINDOWP (object))
223 return Qwindow;
224 if (GC_SUBRP (object))
225 return Qsubr;
226 if (GC_COMPILEDP (object))
227 return Qcompiled_function;
228 if (GC_BUFFERP (object))
229 return Qbuffer;
fc67d5be
KH
230 if (GC_CHAR_TABLE_P (object))
231 return Qchar_table;
232 if (GC_BOOL_VECTOR_P (object))
233 return Qbool_vector;
39bcc759
RS
234 if (GC_FRAMEP (object))
235 return Qframe;
81dc5de5
GM
236 if (GC_HASH_TABLE_P (object))
237 return Qhash_table;
39bcc759
RS
238 return Qvector;
239
39bcc759
RS
240 case Lisp_Float:
241 return Qfloat;
39bcc759
RS
242
243 default:
244 abort ();
245 }
246}
247
8c1a1077
PJ
248DEFUN ("consp", Fconsp, Sconsp, 1, 1, 0,
249 doc: /* Return t if OBJECT is a cons cell. */)
250 (object)
39bcc759 251 Lisp_Object object;
7921925c 252{
39bcc759 253 if (CONSP (object))
7921925c
JB
254 return Qt;
255 return Qnil;
256}
257
25638b07 258DEFUN ("atom", Fatom, Satom, 1, 1, 0,
8c1a1077
PJ
259 doc: /* Return t if OBJECT is not a cons cell. This includes nil. */)
260 (object)
39bcc759 261 Lisp_Object object;
7921925c 262{
39bcc759 263 if (CONSP (object))
7921925c
JB
264 return Qnil;
265 return Qt;
266}
267
25638b07 268DEFUN ("listp", Flistp, Slistp, 1, 1, 0,
4cdcdcc9
LT
269 doc: /* Return t if OBJECT is a list, that is, a cons cell or nil.
270Otherwise, return nil. */)
8c1a1077 271 (object)
39bcc759 272 Lisp_Object object;
7921925c 273{
39bcc759 274 if (CONSP (object) || NILP (object))
7921925c
JB
275 return Qt;
276 return Qnil;
277}
278
25638b07 279DEFUN ("nlistp", Fnlistp, Snlistp, 1, 1, 0,
8c1a1077
PJ
280 doc: /* Return t if OBJECT is not a list. Lists include nil. */)
281 (object)
39bcc759 282 Lisp_Object object;
7921925c 283{
39bcc759 284 if (CONSP (object) || NILP (object))
7921925c
JB
285 return Qnil;
286 return Qt;
287}
288\f
25638b07 289DEFUN ("symbolp", Fsymbolp, Ssymbolp, 1, 1, 0,
8c1a1077
PJ
290 doc: /* Return t if OBJECT is a symbol. */)
291 (object)
39bcc759 292 Lisp_Object object;
7921925c 293{
39bcc759 294 if (SYMBOLP (object))
7921925c
JB
295 return Qt;
296 return Qnil;
297}
298
cda9b832
DL
299/* Define this in C to avoid unnecessarily consing up the symbol
300 name. */
301DEFUN ("keywordp", Fkeywordp, Skeywordp, 1, 1, 0,
8c1a1077
PJ
302 doc: /* Return t if OBJECT is a keyword.
303This means that it is a symbol with a print name beginning with `:'
304interned in the initial obarray. */)
305 (object)
cda9b832
DL
306 Lisp_Object object;
307{
308 if (SYMBOLP (object)
d5db4077 309 && SREF (SYMBOL_NAME (object), 0) == ':'
f35d5bad 310 && SYMBOL_INTERNED_IN_INITIAL_OBARRAY_P (object))
cda9b832
DL
311 return Qt;
312 return Qnil;
313}
314
25638b07 315DEFUN ("vectorp", Fvectorp, Svectorp, 1, 1, 0,
8c1a1077
PJ
316 doc: /* Return t if OBJECT is a vector. */)
317 (object)
39bcc759 318 Lisp_Object object;
7921925c 319{
39bcc759 320 if (VECTORP (object))
7921925c
JB
321 return Qt;
322 return Qnil;
323}
324
25638b07 325DEFUN ("stringp", Fstringp, Sstringp, 1, 1, 0,
8c1a1077
PJ
326 doc: /* Return t if OBJECT is a string. */)
327 (object)
39bcc759 328 Lisp_Object object;
7921925c 329{
39bcc759 330 if (STRINGP (object))
7921925c
JB
331 return Qt;
332 return Qnil;
333}
334
25638b07 335DEFUN ("multibyte-string-p", Fmultibyte_string_p, Smultibyte_string_p,
8c1a1077
PJ
336 1, 1, 0,
337 doc: /* Return t if OBJECT is a multibyte string. */)
338 (object)
25638b07
RS
339 Lisp_Object object;
340{
341 if (STRINGP (object) && STRING_MULTIBYTE (object))
342 return Qt;
343 return Qnil;
344}
345
346DEFUN ("char-table-p", Fchar_table_p, Schar_table_p, 1, 1, 0,
8c1a1077
PJ
347 doc: /* Return t if OBJECT is a char-table. */)
348 (object)
4d276982
RS
349 Lisp_Object object;
350{
351 if (CHAR_TABLE_P (object))
352 return Qt;
353 return Qnil;
354}
355
7f0edce7
RS
356DEFUN ("vector-or-char-table-p", Fvector_or_char_table_p,
357 Svector_or_char_table_p, 1, 1, 0,
8c1a1077
PJ
358 doc: /* Return t if OBJECT is a char-table or vector. */)
359 (object)
7f0edce7
RS
360 Lisp_Object object;
361{
362 if (VECTORP (object) || CHAR_TABLE_P (object))
363 return Qt;
364 return Qnil;
365}
366
8c1a1077
PJ
367DEFUN ("bool-vector-p", Fbool_vector_p, Sbool_vector_p, 1, 1, 0,
368 doc: /* Return t if OBJECT is a bool-vector. */)
369 (object)
4d276982
RS
370 Lisp_Object object;
371{
372 if (BOOL_VECTOR_P (object))
373 return Qt;
374 return Qnil;
375}
376
8c1a1077
PJ
377DEFUN ("arrayp", Farrayp, Sarrayp, 1, 1, 0,
378 doc: /* Return t if OBJECT is an array (string or vector). */)
379 (object)
39bcc759 380 Lisp_Object object;
7921925c 381{
0c64a8cd 382 if (ARRAYP (object))
7921925c
JB
383 return Qt;
384 return Qnil;
385}
386
387DEFUN ("sequencep", Fsequencep, Ssequencep, 1, 1, 0,
8c1a1077
PJ
388 doc: /* Return t if OBJECT is a sequence (list or array). */)
389 (object)
39bcc759 390 register Lisp_Object object;
7921925c 391{
0c64a8cd 392 if (CONSP (object) || NILP (object) || ARRAYP (object))
7921925c
JB
393 return Qt;
394 return Qnil;
395}
396
8c1a1077
PJ
397DEFUN ("bufferp", Fbufferp, Sbufferp, 1, 1, 0,
398 doc: /* Return t if OBJECT is an editor buffer. */)
399 (object)
39bcc759 400 Lisp_Object object;
7921925c 401{
39bcc759 402 if (BUFFERP (object))
7921925c
JB
403 return Qt;
404 return Qnil;
405}
406
8c1a1077
PJ
407DEFUN ("markerp", Fmarkerp, Smarkerp, 1, 1, 0,
408 doc: /* Return t if OBJECT is a marker (editor pointer). */)
409 (object)
39bcc759 410 Lisp_Object object;
7921925c 411{
39bcc759 412 if (MARKERP (object))
7921925c
JB
413 return Qt;
414 return Qnil;
415}
416
8c1a1077
PJ
417DEFUN ("subrp", Fsubrp, Ssubrp, 1, 1, 0,
418 doc: /* Return t if OBJECT is a built-in function. */)
419 (object)
39bcc759 420 Lisp_Object object;
7921925c 421{
39bcc759 422 if (SUBRP (object))
7921925c
JB
423 return Qt;
424 return Qnil;
425}
426
dbc4e1c1 427DEFUN ("byte-code-function-p", Fbyte_code_function_p, Sbyte_code_function_p,
8c1a1077
PJ
428 1, 1, 0,
429 doc: /* Return t if OBJECT is a byte-compiled function object. */)
430 (object)
39bcc759 431 Lisp_Object object;
7921925c 432{
39bcc759 433 if (COMPILEDP (object))
7921925c
JB
434 return Qt;
435 return Qnil;
436}
437
0321d75c 438DEFUN ("char-or-string-p", Fchar_or_string_p, Schar_or_string_p, 1, 1, 0,
8c1a1077
PJ
439 doc: /* Return t if OBJECT is a character (an integer) or a string. */)
440 (object)
39bcc759 441 register Lisp_Object object;
7921925c 442{
39bcc759 443 if (INTEGERP (object) || STRINGP (object))
7921925c
JB
444 return Qt;
445 return Qnil;
446}
447\f
8c1a1077
PJ
448DEFUN ("integerp", Fintegerp, Sintegerp, 1, 1, 0,
449 doc: /* Return t if OBJECT is an integer. */)
450 (object)
39bcc759 451 Lisp_Object object;
7921925c 452{
39bcc759 453 if (INTEGERP (object))
7921925c
JB
454 return Qt;
455 return Qnil;
456}
457
464f8898 458DEFUN ("integer-or-marker-p", Finteger_or_marker_p, Sinteger_or_marker_p, 1, 1, 0,
8c1a1077
PJ
459 doc: /* Return t if OBJECT is an integer or a marker (editor pointer). */)
460 (object)
39bcc759 461 register Lisp_Object object;
7921925c 462{
39bcc759 463 if (MARKERP (object) || INTEGERP (object))
7921925c
JB
464 return Qt;
465 return Qnil;
466}
467
0321d75c 468DEFUN ("natnump", Fnatnump, Snatnump, 1, 1, 0,
8c1a1077
PJ
469 doc: /* Return t if OBJECT is a nonnegative integer. */)
470 (object)
39bcc759 471 Lisp_Object object;
7921925c 472{
39bcc759 473 if (NATNUMP (object))
7921925c
JB
474 return Qt;
475 return Qnil;
476}
477
478DEFUN ("numberp", Fnumberp, Snumberp, 1, 1, 0,
8c1a1077
PJ
479 doc: /* Return t if OBJECT is a number (floating point or integer). */)
480 (object)
39bcc759 481 Lisp_Object object;
7921925c 482{
39bcc759 483 if (NUMBERP (object))
7921925c 484 return Qt;
dbc4e1c1
JB
485 else
486 return Qnil;
7921925c
JB
487}
488
489DEFUN ("number-or-marker-p", Fnumber_or_marker_p,
490 Snumber_or_marker_p, 1, 1, 0,
8c1a1077
PJ
491 doc: /* Return t if OBJECT is a number or a marker. */)
492 (object)
39bcc759 493 Lisp_Object object;
7921925c 494{
39bcc759 495 if (NUMBERP (object) || MARKERP (object))
7921925c
JB
496 return Qt;
497 return Qnil;
498}
464f8898 499
464f8898 500DEFUN ("floatp", Ffloatp, Sfloatp, 1, 1, 0,
8c1a1077
PJ
501 doc: /* Return t if OBJECT is a floating point number. */)
502 (object)
39bcc759 503 Lisp_Object object;
464f8898 504{
39bcc759 505 if (FLOATP (object))
464f8898
RS
506 return Qt;
507 return Qnil;
508}
cc94f3b2 509
7921925c
JB
510\f
511/* Extract and set components of lists */
512
513DEFUN ("car", Fcar, Scar, 1, 1, 0,
8c1a1077 514 doc: /* Return the car of LIST. If arg is nil, return nil.
9701c742
LT
515Error if arg is not nil and not a cons cell. See also `car-safe'.
516
da46c5be
LT
517See Info node `(elisp)Cons Cells' for a discussion of related basic
518Lisp concepts such as car, cdr, cons cell and list. */)
8c1a1077 519 (list)
7921925c
JB
520 register Lisp_Object list;
521{
0c64a8cd 522 return CAR (list);
7921925c
JB
523}
524
525DEFUN ("car-safe", Fcar_safe, Scar_safe, 1, 1, 0,
8c1a1077
PJ
526 doc: /* Return the car of OBJECT if it is a cons cell, or else nil. */)
527 (object)
7921925c
JB
528 Lisp_Object object;
529{
0c64a8cd 530 return CAR_SAFE (object);
7921925c
JB
531}
532
533DEFUN ("cdr", Fcdr, Scdr, 1, 1, 0,
8c1a1077 534 doc: /* Return the cdr of LIST. If arg is nil, return nil.
9701c742
LT
535Error if arg is not nil and not a cons cell. See also `cdr-safe'.
536
da46c5be
LT
537See Info node `(elisp)Cons Cells' for a discussion of related basic
538Lisp concepts such as cdr, car, cons cell and list. */)
8c1a1077 539 (list)
7921925c
JB
540 register Lisp_Object list;
541{
0c64a8cd 542 return CDR (list);
7921925c
JB
543}
544
545DEFUN ("cdr-safe", Fcdr_safe, Scdr_safe, 1, 1, 0,
8c1a1077
PJ
546 doc: /* Return the cdr of OBJECT if it is a cons cell, or else nil. */)
547 (object)
7921925c
JB
548 Lisp_Object object;
549{
0c64a8cd 550 return CDR_SAFE (object);
7921925c
JB
551}
552
553DEFUN ("setcar", Fsetcar, Ssetcar, 2, 2, 0,
8c1a1077
PJ
554 doc: /* Set the car of CELL to be NEWCAR. Returns NEWCAR. */)
555 (cell, newcar)
7921925c
JB
556 register Lisp_Object cell, newcar;
557{
0c64a8cd 558 CHECK_CONS (cell);
7921925c 559 CHECK_IMPURE (cell);
f3fbd155 560 XSETCAR (cell, newcar);
7921925c
JB
561 return newcar;
562}
563
564DEFUN ("setcdr", Fsetcdr, Ssetcdr, 2, 2, 0,
8c1a1077
PJ
565 doc: /* Set the cdr of CELL to be NEWCDR. Returns NEWCDR. */)
566 (cell, newcdr)
7921925c
JB
567 register Lisp_Object cell, newcdr;
568{
0c64a8cd 569 CHECK_CONS (cell);
7921925c 570 CHECK_IMPURE (cell);
f3fbd155 571 XSETCDR (cell, newcdr);
7921925c
JB
572 return newcdr;
573}
574\f
575/* Extract and set components of symbols */
576
8c1a1077
PJ
577DEFUN ("boundp", Fboundp, Sboundp, 1, 1, 0,
578 doc: /* Return t if SYMBOL's value is not void. */)
579 (symbol)
d9c2a0f2 580 register Lisp_Object symbol;
7921925c
JB
581{
582 Lisp_Object valcontents;
b7826503 583 CHECK_SYMBOL (symbol);
7921925c 584
f35d5bad 585 valcontents = SYMBOL_VALUE (symbol);
7921925c 586
67ee9f6e 587 if (BUFFER_LOCAL_VALUEP (valcontents))
d9c2a0f2 588 valcontents = swap_in_symval_forwarding (symbol, valcontents);
7921925c 589
1bfcade3 590 return (EQ (valcontents, Qunbound) ? Qnil : Qt);
7921925c
JB
591}
592
8c1a1077
PJ
593DEFUN ("fboundp", Ffboundp, Sfboundp, 1, 1, 0,
594 doc: /* Return t if SYMBOL's function definition is not void. */)
595 (symbol)
d9c2a0f2 596 register Lisp_Object symbol;
7921925c 597{
b7826503 598 CHECK_SYMBOL (symbol);
d9c2a0f2 599 return (EQ (XSYMBOL (symbol)->function, Qunbound) ? Qnil : Qt);
7921925c
JB
600}
601
8c1a1077 602DEFUN ("makunbound", Fmakunbound, Smakunbound, 1, 1, 0,
bfb96cb7
FP
603 doc: /* Make SYMBOL's value be void.
604Return SYMBOL. */)
8c1a1077 605 (symbol)
d9c2a0f2 606 register Lisp_Object symbol;
7921925c 607{
b7826503 608 CHECK_SYMBOL (symbol);
64ec26d6 609 if (SYMBOL_CONSTANT_P (symbol))
740ef0b5 610 xsignal1 (Qsetting_constant, symbol);
d9c2a0f2
EN
611 Fset (symbol, Qunbound);
612 return symbol;
7921925c
JB
613}
614
8c1a1077 615DEFUN ("fmakunbound", Ffmakunbound, Sfmakunbound, 1, 1, 0,
bfb96cb7
FP
616 doc: /* Make SYMBOL's function definition be void.
617Return SYMBOL. */)
8c1a1077 618 (symbol)
d9c2a0f2 619 register Lisp_Object symbol;
7921925c 620{
b7826503 621 CHECK_SYMBOL (symbol);
d9c2a0f2 622 if (NILP (symbol) || EQ (symbol, Qt))
740ef0b5 623 xsignal1 (Qsetting_constant, symbol);
d9c2a0f2
EN
624 XSYMBOL (symbol)->function = Qunbound;
625 return symbol;
7921925c
JB
626}
627
628DEFUN ("symbol-function", Fsymbol_function, Ssymbol_function, 1, 1, 0,
8c1a1077
PJ
629 doc: /* Return SYMBOL's function definition. Error if that is void. */)
630 (symbol)
ffd56f97 631 register Lisp_Object symbol;
7921925c 632{
b7826503 633 CHECK_SYMBOL (symbol);
740ef0b5
KS
634 if (!EQ (XSYMBOL (symbol)->function, Qunbound))
635 return XSYMBOL (symbol)->function;
636 xsignal1 (Qvoid_function, symbol);
7921925c
JB
637}
638
8c1a1077
PJ
639DEFUN ("symbol-plist", Fsymbol_plist, Ssymbol_plist, 1, 1, 0,
640 doc: /* Return SYMBOL's property list. */)
641 (symbol)
d9c2a0f2 642 register Lisp_Object symbol;
7921925c 643{
b7826503 644 CHECK_SYMBOL (symbol);
d9c2a0f2 645 return XSYMBOL (symbol)->plist;
7921925c
JB
646}
647
8c1a1077
PJ
648DEFUN ("symbol-name", Fsymbol_name, Ssymbol_name, 1, 1, 0,
649 doc: /* Return SYMBOL's name, a string. */)
650 (symbol)
d9c2a0f2 651 register Lisp_Object symbol;
7921925c
JB
652{
653 register Lisp_Object name;
654
b7826503 655 CHECK_SYMBOL (symbol);
84023177 656 name = SYMBOL_NAME (symbol);
7921925c
JB
657 return name;
658}
659
660DEFUN ("fset", Ffset, Sfset, 2, 2, 0,
8c1a1077
PJ
661 doc: /* Set SYMBOL's function definition to DEFINITION, and return DEFINITION. */)
662 (symbol, definition)
8c0b5540 663 register Lisp_Object symbol, definition;
d9c2a0f2 664{
764ea377
JB
665 register Lisp_Object function;
666
b7826503 667 CHECK_SYMBOL (symbol);
d9c2a0f2 668 if (NILP (symbol) || EQ (symbol, Qt))
740ef0b5 669 xsignal1 (Qsetting_constant, symbol);
764ea377
JB
670
671 function = XSYMBOL (symbol)->function;
672
673 if (!NILP (Vautoload_queue) && !EQ (function, Qunbound))
674 Vautoload_queue = Fcons (Fcons (symbol, function), Vautoload_queue);
675
676 if (CONSP (function) && EQ (XCAR (function), Qautoload))
677 Fput (symbol, Qautoload, XCDR (function));
678
8c0b5540 679 XSYMBOL (symbol)->function = definition;
f845f2c9 680 /* Handle automatic advice activation */
d9c2a0f2 681 if (CONSP (XSYMBOL (symbol)->plist) && !NILP (Fget (symbol, Qad_advice_info)))
f845f2c9 682 {
c1307a23 683 call2 (Qad_activate_internal, symbol, Qnil);
8c0b5540 684 definition = XSYMBOL (symbol)->function;
f845f2c9 685 }
8c0b5540 686 return definition;
7921925c
JB
687}
688
d2fde41d
SM
689extern Lisp_Object Qfunction_documentation;
690
691DEFUN ("defalias", Fdefalias, Sdefalias, 2, 3, 0,
8c1a1077 692 doc: /* Set SYMBOL's function definition to DEFINITION, and return DEFINITION.
96143227
RS
693Associates the function with the current load file, if any.
694The optional third argument DOCSTRING specifies the documentation string
695for SYMBOL; if it is omitted or nil, SYMBOL uses the documentation string
696determined by DEFINITION. */)
d2fde41d
SM
697 (symbol, definition, docstring)
698 register Lisp_Object symbol, definition, docstring;
fc08c367 699{
8a658a52 700 CHECK_SYMBOL (symbol);
894f6538
RS
701 if (CONSP (XSYMBOL (symbol)->function)
702 && EQ (XCAR (XSYMBOL (symbol)->function), Qautoload))
703 LOADHIST_ATTACH (Fcons (Qt, symbol));
32f532b7 704 definition = Ffset (symbol, definition);
62a29071 705 LOADHIST_ATTACH (Fcons (Qdefun, symbol));
d2fde41d
SM
706 if (!NILP (docstring))
707 Fput (symbol, Qfunction_documentation, docstring);
73e0d965 708 return definition;
fc08c367
RS
709}
710
7921925c 711DEFUN ("setplist", Fsetplist, Ssetplist, 2, 2, 0,
29802b85 712 doc: /* Set SYMBOL's property list to NEWPLIST, and return NEWPLIST. */)
8c1a1077 713 (symbol, newplist)
d9c2a0f2 714 register Lisp_Object symbol, newplist;
7921925c 715{
b7826503 716 CHECK_SYMBOL (symbol);
d9c2a0f2 717 XSYMBOL (symbol)->plist = newplist;
7921925c
JB
718 return newplist;
719}
ffd56f97 720
6f0e897f 721DEFUN ("subr-arity", Fsubr_arity, Ssubr_arity, 1, 1, 0,
8c1a1077
PJ
722 doc: /* Return minimum and maximum number of args allowed for SUBR.
723SUBR must be a built-in function.
724The returned value is a pair (MIN . MAX). MIN is the minimum number
725of args. MAX is the maximum number or the symbol `many', for a
726function with `&rest' args, or `unevalled' for a special form. */)
727 (subr)
6f0e897f
DL
728 Lisp_Object subr;
729{
730 short minargs, maxargs;
0c64a8cd 731 CHECK_SUBR (subr);
6f0e897f
DL
732 minargs = XSUBR (subr)->min_args;
733 maxargs = XSUBR (subr)->max_args;
734 if (maxargs == MANY)
735 return Fcons (make_number (minargs), Qmany);
736 else if (maxargs == UNEVALLED)
737 return Fcons (make_number (minargs), Qunevalled);
738 else
739 return Fcons (make_number (minargs), make_number (maxargs));
740}
741
0fddae66
SM
742DEFUN ("subr-name", Fsubr_name, Ssubr_name, 1, 1, 0,
743 doc: /* Return name of subroutine SUBR.
744SUBR must be a built-in function. */)
745 (subr)
746 Lisp_Object subr;
747{
748 const char *name;
0c64a8cd 749 CHECK_SUBR (subr);
0fddae66
SM
750 name = XSUBR (subr)->symbol_name;
751 return make_string (name, strlen (name));
752}
753
f52a3ca3
SM
754DEFUN ("interactive-form", Finteractive_form, Sinteractive_form, 1, 1, 0,
755 doc: /* Return the interactive form of CMD or nil if none.
df133612
LT
756If CMD is not a command, the return value is nil.
757Value, if non-nil, is a list \(interactive SPEC). */)
f52a3ca3
SM
758 (cmd)
759 Lisp_Object cmd;
cc515226 760{
c4f46926 761 Lisp_Object fun = indirect_function (cmd); /* Check cycles. */
764ea377 762
c4f46926
SM
763 if (NILP (fun) || EQ (fun, Qunbound))
764 return Qnil;
765
766 /* Use an `interactive-form' property if present, analogous to the
767 function-documentation property. */
768 fun = cmd;
769 while (SYMBOLP (fun))
770 {
771 Lisp_Object tmp = Fget (fun, intern ("interactive-form"));
772 if (!NILP (tmp))
773 return tmp;
774 else
775 fun = Fsymbol_function (fun);
776 }
f52a3ca3
SM
777
778 if (SUBRP (fun))
779 {
8a6d230a
MC
780 char *spec = XSUBR (fun)->intspec;
781 if (spec)
782 return list2 (Qinteractive,
783 (*spec != '(') ? build_string (spec) :
784 Fcar (Fread_from_string (build_string (spec), Qnil, Qnil)));
f52a3ca3
SM
785 }
786 else if (COMPILEDP (fun))
787 {
788 if ((ASIZE (fun) & PSEUDOVECTOR_SIZE_MASK) > COMPILED_INTERACTIVE)
789 return list2 (Qinteractive, AREF (fun, COMPILED_INTERACTIVE));
790 }
791 else if (CONSP (fun))
792 {
793 Lisp_Object funcar = XCAR (fun);
794 if (EQ (funcar, Qlambda))
795 return Fassq (Qinteractive, Fcdr (XCDR (fun)));
796 else if (EQ (funcar, Qautoload))
797 {
798 struct gcpro gcpro1;
799 GCPRO1 (cmd);
800 do_autoload (fun, cmd);
801 UNGCPRO;
802 return Finteractive_form (cmd);
803 }
804 }
cc515226
GM
805 return Qnil;
806}
807
7921925c 808\f
f35d5bad
GM
809/***********************************************************************
810 Getting and Setting Values of Symbols
811 ***********************************************************************/
812
813/* Return the symbol holding SYMBOL's value. Signal
814 `cyclic-variable-indirection' if SYMBOL's chain of variable
815 indirections contains a loop. */
816
817Lisp_Object
818indirect_variable (symbol)
819 Lisp_Object symbol;
820{
821 Lisp_Object tortoise, hare;
822
823 hare = tortoise = symbol;
824
825 while (XSYMBOL (hare)->indirect_variable)
826 {
827 hare = XSYMBOL (hare)->value;
828 if (!XSYMBOL (hare)->indirect_variable)
829 break;
bfb96cb7 830
f35d5bad
GM
831 hare = XSYMBOL (hare)->value;
832 tortoise = XSYMBOL (tortoise)->value;
833
834 if (EQ (hare, tortoise))
740ef0b5 835 xsignal1 (Qcyclic_variable_indirection, symbol);
f35d5bad
GM
836 }
837
838 return hare;
839}
840
841
842DEFUN ("indirect-variable", Findirect_variable, Sindirect_variable, 1, 1, 0,
8c1a1077
PJ
843 doc: /* Return the variable at the end of OBJECT's variable chain.
844If OBJECT is a symbol, follow all variable indirections and return the final
845variable. If OBJECT is not a symbol, just return it.
846Signal a cyclic-variable-indirection error if there is a loop in the
847variable chain of symbols. */)
848 (object)
f35d5bad
GM
849 Lisp_Object object;
850{
851 if (SYMBOLP (object))
852 object = indirect_variable (object);
853 return object;
854}
855
7921925c
JB
856
857/* Given the raw contents of a symbol value cell,
858 return the Lisp value of the symbol.
859 This does not handle buffer-local variables; use
860 swap_in_symval_forwarding for that. */
861
862Lisp_Object
863do_symval_forwarding (valcontents)
864 register Lisp_Object valcontents;
865{
866 register Lisp_Object val;
46b2ac21
KH
867 int offset;
868 if (MISCP (valcontents))
324a6eef 869 switch (XMISCTYPE (valcontents))
46b2ac21
KH
870 {
871 case Lisp_Misc_Intfwd:
872 XSETINT (val, *XINTFWD (valcontents)->intvar);
873 return val;
7921925c 874
46b2ac21
KH
875 case Lisp_Misc_Boolfwd:
876 return (*XBOOLFWD (valcontents)->boolvar ? Qt : Qnil);
7921925c 877
46b2ac21
KH
878 case Lisp_Misc_Objfwd:
879 return *XOBJFWD (valcontents)->objvar;
7921925c 880
46b2ac21
KH
881 case Lisp_Misc_Buffer_Objfwd:
882 offset = XBUFFER_OBJFWD (valcontents)->offset;
f6cd0527 883 return PER_BUFFER_VALUE (current_buffer, offset);
7403b5c8 884
e5f8af9e
KH
885 case Lisp_Misc_Kboard_Objfwd:
886 offset = XKBOARD_OBJFWD (valcontents)->offset;
c40bb1ba
KL
887 /* We used to simply use current_kboard here, but from Lisp
888 code, it's value is often unexpected. It seems nicer to
889 allow constructions like this to work as intuitively expected:
890
891 (with-selected-frame frame
892 (define-key local-function-map "\eOP" [f1]))
893
894 On the other hand, this affects the semantics of
895 last-command and real-last-command, and people may rely on
896 that. I took a quick look at the Lisp codebase, and I
897 don't think anything will break. --lorentey */
898 return *(Lisp_Object *)(offset + (char *)FRAME_KBOARD (SELECTED_FRAME ()));
46b2ac21 899 }
7921925c
JB
900 return valcontents;
901}
902
d9c2a0f2
EN
903/* Store NEWVAL into SYMBOL, where VALCONTENTS is found in the value cell
904 of SYMBOL. If SYMBOL is buffer-local, VALCONTENTS should be the
7921925c 905 buffer-independent contents of the value cell: forwarded just one
7a283f36
GM
906 step past the buffer-localness.
907
908 BUF non-zero means set the value in buffer BUF instead of the
909 current buffer. This only plays a role for per-buffer variables. */
7921925c
JB
910
911void
7a283f36 912store_symval_forwarding (symbol, valcontents, newval, buf)
d9c2a0f2 913 Lisp_Object symbol;
7921925c 914 register Lisp_Object valcontents, newval;
7a283f36 915 struct buffer *buf;
7921925c 916{
0220c518 917 switch (SWITCH_ENUM_CAST (XTYPE (valcontents)))
7921925c 918 {
46b2ac21 919 case Lisp_Misc:
324a6eef 920 switch (XMISCTYPE (valcontents))
46b2ac21
KH
921 {
922 case Lisp_Misc_Intfwd:
b7826503 923 CHECK_NUMBER (newval);
46b2ac21 924 *XINTFWD (valcontents)->intvar = XINT (newval);
e6c82a8d
RS
925 if (*XINTFWD (valcontents)->intvar != XINT (newval))
926 error ("Value out of range for variable `%s'",
d5db4077 927 SDATA (SYMBOL_NAME (symbol)));
46b2ac21
KH
928 break;
929
930 case Lisp_Misc_Boolfwd:
931 *XBOOLFWD (valcontents)->boolvar = NILP (newval) ? 0 : 1;
932 break;
933
934 case Lisp_Misc_Objfwd:
935 *XOBJFWD (valcontents)->objvar = newval;
7abd90ea
RS
936
937 /* If this variable is a default for something stored
938 in the buffer itself, such as default-fill-column,
939 find the buffers that don't have local values for it
940 and update them. */
941 if (XOBJFWD (valcontents)->objvar > (Lisp_Object *) &buffer_defaults
942 && XOBJFWD (valcontents)->objvar < (Lisp_Object *) (&buffer_defaults + 1))
943 {
944 int offset = ((char *) XOBJFWD (valcontents)->objvar
945 - (char *) &buffer_defaults);
946 int idx = PER_BUFFER_IDX (offset);
947
43e50e40 948 Lisp_Object tail;
7abd90ea
RS
949
950 if (idx <= 0)
951 break;
952
953 for (tail = Vbuffer_alist; CONSP (tail); tail = XCDR (tail))
954 {
955 Lisp_Object buf;
956 struct buffer *b;
957
958 buf = Fcdr (XCAR (tail));
959 if (!BUFFERP (buf)) continue;
960 b = XBUFFER (buf);
961
962 if (! PER_BUFFER_VALUE_P (b, idx))
963 PER_BUFFER_VALUE (b, offset) = newval;
964 }
965 }
46b2ac21
KH
966 break;
967
968 case Lisp_Misc_Buffer_Objfwd:
969 {
970 int offset = XBUFFER_OBJFWD (valcontents)->offset;
971 Lisp_Object type;
972
d9b36d19 973 type = PER_BUFFER_TYPE (offset);
46b2ac21
KH
974 if (! NILP (type) && ! NILP (newval)
975 && XTYPE (newval) != XINT (type))
976 buffer_slot_type_mismatch (offset);
977
7a283f36
GM
978 if (buf == NULL)
979 buf = current_buffer;
980 PER_BUFFER_VALUE (buf, offset) = newval;
46b2ac21 981 }
7403b5c8
KH
982 break;
983
e5f8af9e 984 case Lisp_Misc_Kboard_Objfwd:
7a283f36 985 {
c40bb1ba 986 char *base = (char *) FRAME_KBOARD (SELECTED_FRAME ());
7a283f36
GM
987 char *p = base + XKBOARD_OBJFWD (valcontents)->offset;
988 *(Lisp_Object *) p = newval;
989 }
7403b5c8
KH
990 break;
991
46b2ac21
KH
992 default:
993 goto def;
994 }
7921925c
JB
995 break;
996
7921925c 997 default:
46b2ac21 998 def:
f35d5bad 999 valcontents = SYMBOL_VALUE (symbol);
67ee9f6e 1000 if (BUFFER_LOCAL_VALUEP (valcontents))
b0c2d1c6 1001 XBUFFER_LOCAL_VALUE (valcontents)->realvalue = newval;
7921925c 1002 else
f35d5bad 1003 SET_SYMBOL_VALUE (symbol, newval);
7921925c
JB
1004 }
1005}
1006
b0d53add
GM
1007/* Set up SYMBOL to refer to its global binding.
1008 This makes it safe to alter the status of other bindings. */
1009
1010void
1011swap_in_global_binding (symbol)
1012 Lisp_Object symbol;
1013{
1014 Lisp_Object valcontents, cdr;
bfb96cb7 1015
f35d5bad 1016 valcontents = SYMBOL_VALUE (symbol);
67ee9f6e 1017 if (!BUFFER_LOCAL_VALUEP (valcontents))
b0d53add
GM
1018 abort ();
1019 cdr = XBUFFER_LOCAL_VALUE (valcontents)->cdr;
1020
1021 /* Unload the previously loaded binding. */
1022 Fsetcdr (XCAR (cdr),
1023 do_symval_forwarding (XBUFFER_LOCAL_VALUE (valcontents)->realvalue));
bfb96cb7 1024
b0d53add 1025 /* Select the global binding in the symbol. */
f3fbd155 1026 XSETCAR (cdr, cdr);
7a283f36 1027 store_symval_forwarding (symbol, valcontents, XCDR (cdr), NULL);
b0d53add
GM
1028
1029 /* Indicate that the global binding is set up now. */
1030 XBUFFER_LOCAL_VALUE (valcontents)->frame = Qnil;
1031 XBUFFER_LOCAL_VALUE (valcontents)->buffer = Qnil;
1032 XBUFFER_LOCAL_VALUE (valcontents)->found_for_frame = 0;
1033 XBUFFER_LOCAL_VALUE (valcontents)->found_for_buffer = 0;
1034}
1035
2829d05f 1036/* Set up the buffer-local symbol SYMBOL for validity in the current buffer.
42e975f0
RS
1037 VALCONTENTS is the contents of its value cell,
1038 which points to a struct Lisp_Buffer_Local_Value.
1039
1040 Return the value forwarded one step past the buffer-local stage.
1041 This could be another forwarding pointer. */
7921925c
JB
1042
1043static Lisp_Object
d9c2a0f2
EN
1044swap_in_symval_forwarding (symbol, valcontents)
1045 Lisp_Object symbol, valcontents;
7921925c 1046{
7921925c 1047 register Lisp_Object tem1;
bfb96cb7 1048
b0c2d1c6 1049 tem1 = XBUFFER_LOCAL_VALUE (valcontents)->buffer;
7921925c 1050
42e975f0
RS
1051 if (NILP (tem1)
1052 || current_buffer != XBUFFER (tem1)
1053 || (XBUFFER_LOCAL_VALUE (valcontents)->check_frame
1054 && ! EQ (selected_frame, XBUFFER_LOCAL_VALUE (valcontents)->frame)))
7921925c 1055 {
f35d5bad
GM
1056 if (XSYMBOL (symbol)->indirect_variable)
1057 symbol = indirect_variable (symbol);
bfb96cb7 1058
42e975f0 1059 /* Unload the previously loaded binding. */
7539e11f 1060 tem1 = XCAR (XBUFFER_LOCAL_VALUE (valcontents)->cdr);
8d4afcac 1061 Fsetcdr (tem1,
b0c2d1c6 1062 do_symval_forwarding (XBUFFER_LOCAL_VALUE (valcontents)->realvalue));
42e975f0 1063 /* Choose the new binding. */
d9c2a0f2 1064 tem1 = assq_no_quit (symbol, current_buffer->local_var_alist);
b0c2d1c6
RS
1065 XBUFFER_LOCAL_VALUE (valcontents)->found_for_frame = 0;
1066 XBUFFER_LOCAL_VALUE (valcontents)->found_for_buffer = 0;
a33ef3ab 1067 if (NILP (tem1))
b0c2d1c6
RS
1068 {
1069 if (XBUFFER_LOCAL_VALUE (valcontents)->check_frame)
1cc04aed 1070 tem1 = assq_no_quit (symbol, XFRAME (selected_frame)->param_alist);
b0c2d1c6
RS
1071 if (! NILP (tem1))
1072 XBUFFER_LOCAL_VALUE (valcontents)->found_for_frame = 1;
1073 else
1074 tem1 = XBUFFER_LOCAL_VALUE (valcontents)->cdr;
1075 }
1076 else
1077 XBUFFER_LOCAL_VALUE (valcontents)->found_for_buffer = 1;
1078
42e975f0 1079 /* Load the new binding. */
f3fbd155 1080 XSETCAR (XBUFFER_LOCAL_VALUE (valcontents)->cdr, tem1);
b0c2d1c6 1081 XSETBUFFER (XBUFFER_LOCAL_VALUE (valcontents)->buffer, current_buffer);
1cc04aed 1082 XBUFFER_LOCAL_VALUE (valcontents)->frame = selected_frame;
b0c2d1c6
RS
1083 store_symval_forwarding (symbol,
1084 XBUFFER_LOCAL_VALUE (valcontents)->realvalue,
7a283f36 1085 Fcdr (tem1), NULL);
7921925c 1086 }
b0c2d1c6 1087 return XBUFFER_LOCAL_VALUE (valcontents)->realvalue;
7921925c
JB
1088}
1089\f
14e76af9
JB
1090/* Find the value of a symbol, returning Qunbound if it's not bound.
1091 This is helpful for code which just wants to get a variable's value
8e6208c5 1092 if it has one, without signaling an error.
14e76af9
JB
1093 Note that it must not be possible to quit
1094 within this function. Great care is required for this. */
7921925c 1095
14e76af9 1096Lisp_Object
d9c2a0f2
EN
1097find_symbol_value (symbol)
1098 Lisp_Object symbol;
7921925c 1099{
dd8daec5 1100 register Lisp_Object valcontents;
7921925c 1101 register Lisp_Object val;
bfb96cb7 1102
b7826503 1103 CHECK_SYMBOL (symbol);
f35d5bad 1104 valcontents = SYMBOL_VALUE (symbol);
7921925c 1105
67ee9f6e 1106 if (BUFFER_LOCAL_VALUEP (valcontents))
2a359158 1107 valcontents = swap_in_symval_forwarding (symbol, valcontents);
7921925c 1108
536b772a
KH
1109 if (MISCP (valcontents))
1110 {
324a6eef 1111 switch (XMISCTYPE (valcontents))
46b2ac21
KH
1112 {
1113 case Lisp_Misc_Intfwd:
1114 XSETINT (val, *XINTFWD (valcontents)->intvar);
1115 return val;
7921925c 1116
46b2ac21
KH
1117 case Lisp_Misc_Boolfwd:
1118 return (*XBOOLFWD (valcontents)->boolvar ? Qt : Qnil);
7921925c 1119
46b2ac21
KH
1120 case Lisp_Misc_Objfwd:
1121 return *XOBJFWD (valcontents)->objvar;
7921925c 1122
46b2ac21 1123 case Lisp_Misc_Buffer_Objfwd:
f6cd0527 1124 return PER_BUFFER_VALUE (current_buffer,
999b32fd 1125 XBUFFER_OBJFWD (valcontents)->offset);
7403b5c8 1126
e5f8af9e
KH
1127 case Lisp_Misc_Kboard_Objfwd:
1128 return *(Lisp_Object *)(XKBOARD_OBJFWD (valcontents)->offset
c40bb1ba 1129 + (char *)FRAME_KBOARD (SELECTED_FRAME ()));
46b2ac21 1130 }
7921925c
JB
1131 }
1132
1133 return valcontents;
1134}
1135
14e76af9 1136DEFUN ("symbol-value", Fsymbol_value, Ssymbol_value, 1, 1, 0,
8c1a1077
PJ
1137 doc: /* Return SYMBOL's value. Error if that is void. */)
1138 (symbol)
d9c2a0f2 1139 Lisp_Object symbol;
14e76af9 1140{
0671d7c0 1141 Lisp_Object val;
14e76af9 1142
d9c2a0f2 1143 val = find_symbol_value (symbol);
740ef0b5 1144 if (!EQ (val, Qunbound))
14e76af9 1145 return val;
740ef0b5
KS
1146
1147 xsignal1 (Qvoid_variable, symbol);
14e76af9
JB
1148}
1149
7921925c 1150DEFUN ("set", Fset, Sset, 2, 2, 0,
8c1a1077
PJ
1151 doc: /* Set SYMBOL's value to NEWVAL, and return NEWVAL. */)
1152 (symbol, newval)
d9c2a0f2 1153 register Lisp_Object symbol, newval;
05ef7169 1154{
2829d05f 1155 return set_internal (symbol, newval, current_buffer, 0);
05ef7169
RS
1156}
1157
1f35ce36
RS
1158/* Return 1 if SYMBOL currently has a let-binding
1159 which was made in the buffer that is now current. */
1160
1161static int
1162let_shadows_buffer_binding_p (symbol)
1163 Lisp_Object symbol;
1164{
92426155 1165 volatile struct specbinding *p;
1f35ce36
RS
1166
1167 for (p = specpdl_ptr - 1; p >= specpdl; p--)
f35d5bad
GM
1168 if (p->func == NULL
1169 && CONSP (p->symbol))
1170 {
1171 Lisp_Object let_bound_symbol = XCAR (p->symbol);
1172 if ((EQ (symbol, let_bound_symbol)
1173 || (XSYMBOL (let_bound_symbol)->indirect_variable
1174 && EQ (symbol, indirect_variable (let_bound_symbol))))
1175 && XBUFFER (XCDR (XCDR (p->symbol))) == current_buffer)
1176 break;
1177 }
1f35ce36 1178
f35d5bad 1179 return p >= specpdl;
1f35ce36
RS
1180}
1181
25638b07 1182/* Store the value NEWVAL into SYMBOL.
2829d05f
RS
1183 If buffer-locality is an issue, BUF specifies which buffer to use.
1184 (0 stands for the current buffer.)
1185
05ef7169
RS
1186 If BINDFLAG is zero, then if this symbol is supposed to become
1187 local in every buffer where it is set, then we make it local.
1188 If BINDFLAG is nonzero, we don't do that. */
1189
1190Lisp_Object
2829d05f 1191set_internal (symbol, newval, buf, bindflag)
05ef7169 1192 register Lisp_Object symbol, newval;
2829d05f 1193 struct buffer *buf;
05ef7169 1194 int bindflag;
7921925c 1195{
1bfcade3 1196 int voide = EQ (newval, Qunbound);
7921925c 1197
4c47c973 1198 register Lisp_Object valcontents, innercontents, tem1, current_alist_element;
7921925c 1199
2829d05f
RS
1200 if (buf == 0)
1201 buf = current_buffer;
1202
1203 /* If restoring in a dead buffer, do nothing. */
1204 if (NILP (buf->name))
1205 return newval;
1206
b7826503 1207 CHECK_SYMBOL (symbol);
f35d5bad
GM
1208 if (SYMBOL_CONSTANT_P (symbol)
1209 && (NILP (Fkeywordp (symbol))
1210 || !EQ (newval, SYMBOL_VALUE (symbol))))
740ef0b5 1211 xsignal1 (Qsetting_constant, symbol);
4c47c973 1212
f35d5bad 1213 innercontents = valcontents = SYMBOL_VALUE (symbol);
bfb96cb7 1214
e9ebc175 1215 if (BUFFER_OBJFWDP (valcontents))
7921925c 1216 {
999b32fd 1217 int offset = XBUFFER_OBJFWD (valcontents)->offset;
f6cd0527 1218 int idx = PER_BUFFER_IDX (offset);
999b32fd
GM
1219 if (idx > 0
1220 && !bindflag
1221 && !let_shadows_buffer_binding_p (symbol))
f6cd0527 1222 SET_PER_BUFFER_VALUE_P (buf, idx, 1);
7921925c 1223 }
67ee9f6e 1224 else if (BUFFER_LOCAL_VALUEP (valcontents))
7921925c 1225 {
42e975f0 1226 /* valcontents is a struct Lisp_Buffer_Local_Value. */
f35d5bad
GM
1227 if (XSYMBOL (symbol)->indirect_variable)
1228 symbol = indirect_variable (symbol);
42e975f0
RS
1229
1230 /* What binding is loaded right now? */
b0c2d1c6 1231 current_alist_element
7539e11f 1232 = XCAR (XBUFFER_LOCAL_VALUE (valcontents)->cdr);
d8cafeb5
JB
1233
1234 /* If the current buffer is not the buffer whose binding is
42e975f0
RS
1235 loaded, or if there may be frame-local bindings and the frame
1236 isn't the right one, or if it's a Lisp_Buffer_Local_Value and
1237 the default binding is loaded, the loaded binding may be the
1238 wrong one. */
8801a864
KR
1239 if (!BUFFERP (XBUFFER_LOCAL_VALUE (valcontents)->buffer)
1240 || buf != XBUFFER (XBUFFER_LOCAL_VALUE (valcontents)->buffer)
42e975f0
RS
1241 || (XBUFFER_LOCAL_VALUE (valcontents)->check_frame
1242 && !EQ (selected_frame, XBUFFER_LOCAL_VALUE (valcontents)->frame))
1243 || (BUFFER_LOCAL_VALUEP (valcontents)
1244 && EQ (XCAR (current_alist_element),
1245 current_alist_element)))
7921925c 1246 {
42e975f0
RS
1247 /* The currently loaded binding is not necessarily valid.
1248 We need to unload it, and choose a new binding. */
1249
1250 /* Write out `realvalue' to the old loaded binding. */
d8cafeb5 1251 Fsetcdr (current_alist_element,
b0c2d1c6 1252 do_symval_forwarding (XBUFFER_LOCAL_VALUE (valcontents)->realvalue));
7921925c 1253
42e975f0 1254 /* Find the new binding. */
2829d05f 1255 tem1 = Fassq (symbol, buf->local_var_alist);
b0c2d1c6
RS
1256 XBUFFER_LOCAL_VALUE (valcontents)->found_for_buffer = 1;
1257 XBUFFER_LOCAL_VALUE (valcontents)->found_for_frame = 0;
1258
a33ef3ab 1259 if (NILP (tem1))
d8cafeb5
JB
1260 {
1261 /* This buffer still sees the default value. */
1262
1263 /* If the variable is a Lisp_Some_Buffer_Local_Value,
05ef7169 1264 or if this is `let' rather than `set',
d8cafeb5 1265 make CURRENT-ALIST-ELEMENT point to itself,
1f35ce36
RS
1266 indicating that we're seeing the default value.
1267 Likewise if the variable has been let-bound
1268 in the current buffer. */
67ee9f6e 1269 if (bindflag || !XBUFFER_LOCAL_VALUE (valcontents)->local_if_set
1f35ce36 1270 || let_shadows_buffer_binding_p (symbol))
b0c2d1c6
RS
1271 {
1272 XBUFFER_LOCAL_VALUE (valcontents)->found_for_buffer = 0;
1273
1274 if (XBUFFER_LOCAL_VALUE (valcontents)->check_frame)
1cc04aed
GM
1275 tem1 = Fassq (symbol,
1276 XFRAME (selected_frame)->param_alist);
d8cafeb5 1277
b0c2d1c6
RS
1278 if (! NILP (tem1))
1279 XBUFFER_LOCAL_VALUE (valcontents)->found_for_frame = 1;
1280 else
1281 tem1 = XBUFFER_LOCAL_VALUE (valcontents)->cdr;
1282 }
05ef7169 1283 /* If it's a Lisp_Buffer_Local_Value, being set not bound,
1f35ce36
RS
1284 and we're not within a let that was made for this buffer,
1285 create a new buffer-local binding for the variable.
1286 That means, give this buffer a new assoc for a local value
42e975f0 1287 and load that binding. */
d8cafeb5
JB
1288 else
1289 {
d2fde41d 1290 tem1 = Fcons (symbol, XCDR (current_alist_element));
2829d05f
RS
1291 buf->local_var_alist
1292 = Fcons (tem1, buf->local_var_alist);
d8cafeb5
JB
1293 }
1294 }
b0c2d1c6 1295
42e975f0 1296 /* Record which binding is now loaded. */
67ee9f6e 1297 XSETCAR (XBUFFER_LOCAL_VALUE (valcontents)->cdr, tem1);
d8cafeb5 1298
8013296c 1299 /* Set `buffer' and `frame' slots for the binding now loaded. */
2829d05f 1300 XSETBUFFER (XBUFFER_LOCAL_VALUE (valcontents)->buffer, buf);
1cc04aed 1301 XBUFFER_LOCAL_VALUE (valcontents)->frame = selected_frame;
7921925c 1302 }
4c47c973 1303 innercontents = XBUFFER_LOCAL_VALUE (valcontents)->realvalue;
7921925c 1304 }
d8cafeb5 1305
7921925c
JB
1306 /* If storing void (making the symbol void), forward only through
1307 buffer-local indicator, not through Lisp_Objfwd, etc. */
1308 if (voide)
7a283f36 1309 store_symval_forwarding (symbol, Qnil, newval, buf);
7921925c 1310 else
7a283f36 1311 store_symval_forwarding (symbol, innercontents, newval, buf);
4c47c973
GM
1312
1313 /* If we just set a variable whose current binding is frame-local,
1314 store the new value in the frame parameter too. */
1315
67ee9f6e 1316 if (BUFFER_LOCAL_VALUEP (valcontents))
4c47c973
GM
1317 {
1318 /* What binding is loaded right now? */
1319 current_alist_element
1320 = XCAR (XBUFFER_LOCAL_VALUE (valcontents)->cdr);
1321
1322 /* If the current buffer is not the buffer whose binding is
1323 loaded, or if there may be frame-local bindings and the frame
1324 isn't the right one, or if it's a Lisp_Buffer_Local_Value and
1325 the default binding is loaded, the loaded binding may be the
1326 wrong one. */
1327 if (XBUFFER_LOCAL_VALUE (valcontents)->found_for_frame)
f3fbd155 1328 XSETCDR (current_alist_element, newval);
4c47c973 1329 }
d8cafeb5 1330
7921925c
JB
1331 return newval;
1332}
1333\f
1334/* Access or set a buffer-local symbol's default value. */
1335
d9c2a0f2 1336/* Return the default value of SYMBOL, but don't check for voidness.
1bfcade3 1337 Return Qunbound if it is void. */
7921925c
JB
1338
1339Lisp_Object
d9c2a0f2
EN
1340default_value (symbol)
1341 Lisp_Object symbol;
7921925c
JB
1342{
1343 register Lisp_Object valcontents;
1344
b7826503 1345 CHECK_SYMBOL (symbol);
f35d5bad 1346 valcontents = SYMBOL_VALUE (symbol);
7921925c
JB
1347
1348 /* For a built-in buffer-local variable, get the default value
1349 rather than letting do_symval_forwarding get the current value. */
e9ebc175 1350 if (BUFFER_OBJFWDP (valcontents))
7921925c 1351 {
999b32fd 1352 int offset = XBUFFER_OBJFWD (valcontents)->offset;
f6cd0527
GM
1353 if (PER_BUFFER_IDX (offset) != 0)
1354 return PER_BUFFER_DEFAULT (offset);
7921925c
JB
1355 }
1356
1357 /* Handle user-created local variables. */
67ee9f6e 1358 if (BUFFER_LOCAL_VALUEP (valcontents))
7921925c
JB
1359 {
1360 /* If var is set up for a buffer that lacks a local value for it,
1361 the current value is nominally the default value.
42e975f0 1362 But the `realvalue' slot may be more up to date, since
7921925c
JB
1363 ordinary setq stores just that slot. So use that. */
1364 Lisp_Object current_alist_element, alist_element_car;
1365 current_alist_element
7539e11f
KR
1366 = XCAR (XBUFFER_LOCAL_VALUE (valcontents)->cdr);
1367 alist_element_car = XCAR (current_alist_element);
7921925c 1368 if (EQ (alist_element_car, current_alist_element))
b0c2d1c6 1369 return do_symval_forwarding (XBUFFER_LOCAL_VALUE (valcontents)->realvalue);
7921925c 1370 else
7539e11f 1371 return XCDR (XBUFFER_LOCAL_VALUE (valcontents)->cdr);
7921925c
JB
1372 }
1373 /* For other variables, get the current value. */
1374 return do_symval_forwarding (valcontents);
1375}
1376
1377DEFUN ("default-boundp", Fdefault_boundp, Sdefault_boundp, 1, 1, 0,
8c1a1077
PJ
1378 doc: /* Return t if SYMBOL has a non-void default value.
1379This is the value that is seen in buffers that do not have their own values
1380for this variable. */)
1381 (symbol)
d9c2a0f2 1382 Lisp_Object symbol;
7921925c
JB
1383{
1384 register Lisp_Object value;
1385
d9c2a0f2 1386 value = default_value (symbol);
1bfcade3 1387 return (EQ (value, Qunbound) ? Qnil : Qt);
7921925c
JB
1388}
1389
1390DEFUN ("default-value", Fdefault_value, Sdefault_value, 1, 1, 0,
8c1a1077
PJ
1391 doc: /* Return SYMBOL's default value.
1392This is the value that is seen in buffers that do not have their own values
1393for this variable. The default value is meaningful for variables with
1394local bindings in certain buffers. */)
1395 (symbol)
d9c2a0f2 1396 Lisp_Object symbol;
7921925c
JB
1397{
1398 register Lisp_Object value;
1399
d9c2a0f2 1400 value = default_value (symbol);
740ef0b5
KS
1401 if (!EQ (value, Qunbound))
1402 return value;
1403
1404 xsignal1 (Qvoid_variable, symbol);
7921925c
JB
1405}
1406
1407DEFUN ("set-default", Fset_default, Sset_default, 2, 2, 0,
6e86a75d 1408 doc: /* Set SYMBOL's default value to VALUE. SYMBOL and VALUE are evaluated.
8c1a1077
PJ
1409The default value is seen in buffers that do not have their own values
1410for this variable. */)
1411 (symbol, value)
d9c2a0f2 1412 Lisp_Object symbol, value;
7921925c
JB
1413{
1414 register Lisp_Object valcontents, current_alist_element, alist_element_buffer;
1415
b7826503 1416 CHECK_SYMBOL (symbol);
f35d5bad 1417 valcontents = SYMBOL_VALUE (symbol);
7921925c
JB
1418
1419 /* Handle variables like case-fold-search that have special slots
1420 in the buffer. Make them work apparently like Lisp_Buffer_Local_Value
1421 variables. */
e9ebc175 1422 if (BUFFER_OBJFWDP (valcontents))
7921925c 1423 {
999b32fd 1424 int offset = XBUFFER_OBJFWD (valcontents)->offset;
f6cd0527 1425 int idx = PER_BUFFER_IDX (offset);
7921925c 1426
f6cd0527 1427 PER_BUFFER_DEFAULT (offset) = value;
984ef137
KH
1428
1429 /* If this variable is not always local in all buffers,
1430 set it in the buffers that don't nominally have a local value. */
999b32fd 1431 if (idx > 0)
7921925c 1432 {
999b32fd 1433 struct buffer *b;
bfb96cb7 1434
7921925c 1435 for (b = all_buffers; b; b = b->next)
f6cd0527
GM
1436 if (!PER_BUFFER_VALUE_P (b, idx))
1437 PER_BUFFER_VALUE (b, offset) = value;
7921925c
JB
1438 }
1439 return value;
1440 }
1441
67ee9f6e 1442 if (!BUFFER_LOCAL_VALUEP (valcontents))
d9c2a0f2 1443 return Fset (symbol, value);
7921925c 1444
42e975f0 1445 /* Store new value into the DEFAULT-VALUE slot. */
f3fbd155 1446 XSETCDR (XBUFFER_LOCAL_VALUE (valcontents)->cdr, value);
7921925c 1447
42e975f0 1448 /* If the default binding is now loaded, set the REALVALUE slot too. */
8d4afcac 1449 current_alist_element
7539e11f 1450 = XCAR (XBUFFER_LOCAL_VALUE (valcontents)->cdr);
7921925c
JB
1451 alist_element_buffer = Fcar (current_alist_element);
1452 if (EQ (alist_element_buffer, current_alist_element))
7a283f36
GM
1453 store_symval_forwarding (symbol,
1454 XBUFFER_LOCAL_VALUE (valcontents)->realvalue,
1455 value, NULL);
7921925c
JB
1456
1457 return value;
1458}
1459
7a7df7ac 1460DEFUN ("setq-default", Fsetq_default, Ssetq_default, 0, UNEVALLED, 0,
8c1a1077
PJ
1461 doc: /* Set the default value of variable VAR to VALUE.
1462VAR, the variable name, is literal (not evaluated);
bfb96cb7 1463VALUE is an expression: it is evaluated and its value returned.
8c1a1077
PJ
1464The default value of a variable is seen in buffers
1465that do not have their own values for the variable.
1466
1467More generally, you can use multiple variables and values, as in
948d2995
JB
1468 (setq-default VAR VALUE VAR VALUE...)
1469This sets each VAR's default value to the corresponding VALUE.
1470The VALUE for the Nth VAR can refer to the new default values
1471of previous VARs.
70e9f399 1472usage: (setq-default [VAR VALUE]...) */)
8c1a1077 1473 (args)
7921925c
JB
1474 Lisp_Object args;
1475{
1476 register Lisp_Object args_left;
d9c2a0f2 1477 register Lisp_Object val, symbol;
7921925c
JB
1478 struct gcpro gcpro1;
1479
a33ef3ab 1480 if (NILP (args))
7921925c
JB
1481 return Qnil;
1482
1483 args_left = args;
1484 GCPRO1 (args);
1485
1486 do
1487 {
1488 val = Feval (Fcar (Fcdr (args_left)));
d2fde41d 1489 symbol = XCAR (args_left);
d9c2a0f2 1490 Fset_default (symbol, val);
d2fde41d 1491 args_left = Fcdr (XCDR (args_left));
7921925c 1492 }
a33ef3ab 1493 while (!NILP (args_left));
7921925c
JB
1494
1495 UNGCPRO;
1496 return val;
1497}
1498\f
a5ca2b75
JB
1499/* Lisp functions for creating and removing buffer-local variables. */
1500
7921925c 1501DEFUN ("make-variable-buffer-local", Fmake_variable_buffer_local, Smake_variable_buffer_local,
8c1a1077
PJ
1502 1, 1, "vMake Variable Buffer Local: ",
1503 doc: /* Make VARIABLE become buffer-local whenever it is set.
1504At any time, the value for the current buffer is in effect,
1505unless the variable has never been set in this buffer,
1506in which case the default value is in effect.
1507Note that binding the variable with `let', or setting it while
1508a `let'-style binding made in this buffer is in effect,
bfb96cb7 1509does not make the variable buffer-local. Return VARIABLE.
8c1a1077 1510
a9908653
RS
1511In most cases it is better to use `make-local-variable',
1512which makes a variable local in just one buffer.
1513
8c1a1077
PJ
1514The function `default-value' gets the default value and `set-default' sets it. */)
1515 (variable)
d9c2a0f2 1516 register Lisp_Object variable;
7921925c 1517{
8d4afcac 1518 register Lisp_Object tem, valcontents, newval;
7921925c 1519
b7826503 1520 CHECK_SYMBOL (variable);
14970b45 1521 variable = indirect_variable (variable);
7921925c 1522
f35d5bad 1523 valcontents = SYMBOL_VALUE (variable);
7357cb04 1524 if (XSYMBOL (variable)->constant || KBOARD_OBJFWDP (valcontents))
d5db4077 1525 error ("Symbol %s may not be buffer-local", SDATA (SYMBOL_NAME (variable)));
7921925c 1526
67ee9f6e 1527 if (BUFFER_OBJFWDP (valcontents))
d9c2a0f2 1528 return variable;
67ee9f6e
SM
1529 else if (BUFFER_LOCAL_VALUEP (valcontents))
1530 newval = valcontents;
1531 else
7921925c 1532 {
67ee9f6e
SM
1533 if (EQ (valcontents, Qunbound))
1534 SET_SYMBOL_VALUE (variable, Qnil);
1535 tem = Fcons (Qnil, Fsymbol_value (variable));
1536 XSETCAR (tem, tem);
1537 newval = allocate_misc ();
1538 XMISCTYPE (newval) = Lisp_Misc_Buffer_Local_Value;
1539 XBUFFER_LOCAL_VALUE (newval)->realvalue = SYMBOL_VALUE (variable);
1540 XBUFFER_LOCAL_VALUE (newval)->buffer = Fcurrent_buffer ();
1541 XBUFFER_LOCAL_VALUE (newval)->frame = Qnil;
1542 XBUFFER_LOCAL_VALUE (newval)->found_for_buffer = 0;
1543 XBUFFER_LOCAL_VALUE (newval)->found_for_frame = 0;
1544 XBUFFER_LOCAL_VALUE (newval)->check_frame = 0;
1545 XBUFFER_LOCAL_VALUE (newval)->cdr = tem;
1546 SET_SYMBOL_VALUE (variable, newval);
7921925c 1547 }
67ee9f6e 1548 XBUFFER_LOCAL_VALUE (newval)->local_if_set = 1;
d9c2a0f2 1549 return variable;
7921925c
JB
1550}
1551
1552DEFUN ("make-local-variable", Fmake_local_variable, Smake_local_variable,
8c1a1077
PJ
1553 1, 1, "vMake Local Variable: ",
1554 doc: /* Make VARIABLE have a separate value in the current buffer.
1555Other buffers will continue to share a common default value.
1556\(The buffer-local value of VARIABLE starts out as the same value
1557VARIABLE previously had. If VARIABLE was void, it remains void.\)
a9908653 1558Return VARIABLE.
8c1a1077
PJ
1559
1560If the variable is already arranged to become local when set,
1561this function causes a local value to exist for this buffer,
1562just as setting the variable would do.
1563
1564This function returns VARIABLE, and therefore
1565 (set (make-local-variable 'VARIABLE) VALUE-EXP)
1566works.
1567
a9908653
RS
1568See also `make-variable-buffer-local'.
1569
8c1a1077 1570Do not use `make-local-variable' to make a hook variable buffer-local.
515f3f25 1571Instead, use `add-hook' and specify t for the LOCAL argument. */)
8c1a1077 1572 (variable)
d9c2a0f2 1573 register Lisp_Object variable;
7921925c
JB
1574{
1575 register Lisp_Object tem, valcontents;
1576
b7826503 1577 CHECK_SYMBOL (variable);
14970b45 1578 variable = indirect_variable (variable);
7921925c 1579
f35d5bad 1580 valcontents = SYMBOL_VALUE (variable);
7357cb04 1581 if (XSYMBOL (variable)->constant || KBOARD_OBJFWDP (valcontents))
d5db4077 1582 error ("Symbol %s may not be buffer-local", SDATA (SYMBOL_NAME (variable)));
7921925c 1583
67ee9f6e
SM
1584 if ((BUFFER_LOCAL_VALUEP (valcontents)
1585 && XBUFFER_LOCAL_VALUE (valcontents)->local_if_set)
1586 || BUFFER_OBJFWDP (valcontents))
7921925c 1587 {
d9c2a0f2 1588 tem = Fboundp (variable);
7403b5c8 1589
7921925c
JB
1590 /* Make sure the symbol has a local value in this particular buffer,
1591 by setting it to the same value it already has. */
d9c2a0f2
EN
1592 Fset (variable, (EQ (tem, Qt) ? Fsymbol_value (variable) : Qunbound));
1593 return variable;
7921925c 1594 }
42e975f0 1595 /* Make sure symbol is set up to hold per-buffer values. */
67ee9f6e 1596 if (!BUFFER_LOCAL_VALUEP (valcontents))
7921925c 1597 {
8d4afcac 1598 Lisp_Object newval;
7921925c 1599 tem = Fcons (Qnil, do_symval_forwarding (valcontents));
f3fbd155 1600 XSETCAR (tem, tem);
8d4afcac 1601 newval = allocate_misc ();
67ee9f6e 1602 XMISCTYPE (newval) = Lisp_Misc_Buffer_Local_Value;
f35d5bad 1603 XBUFFER_LOCAL_VALUE (newval)->realvalue = SYMBOL_VALUE (variable);
b0c2d1c6
RS
1604 XBUFFER_LOCAL_VALUE (newval)->buffer = Qnil;
1605 XBUFFER_LOCAL_VALUE (newval)->frame = Qnil;
67ee9f6e 1606 XBUFFER_LOCAL_VALUE (newval)->local_if_set = 0;
b0c2d1c6
RS
1607 XBUFFER_LOCAL_VALUE (newval)->found_for_buffer = 0;
1608 XBUFFER_LOCAL_VALUE (newval)->found_for_frame = 0;
1609 XBUFFER_LOCAL_VALUE (newval)->check_frame = 0;
1610 XBUFFER_LOCAL_VALUE (newval)->cdr = tem;
3b8c0c70 1611 SET_SYMBOL_VALUE (variable, newval);
7921925c 1612 }
42e975f0 1613 /* Make sure this buffer has its own value of symbol. */
d9c2a0f2 1614 tem = Fassq (variable, current_buffer->local_var_alist);
a33ef3ab 1615 if (NILP (tem))
7921925c 1616 {
a5d004a1
RS
1617 /* Swap out any local binding for some other buffer, and make
1618 sure the current value is permanently recorded, if it's the
1619 default value. */
d9c2a0f2 1620 find_symbol_value (variable);
a5d004a1 1621
7921925c 1622 current_buffer->local_var_alist
f35d5bad 1623 = Fcons (Fcons (variable, XCDR (XBUFFER_LOCAL_VALUE (SYMBOL_VALUE (variable))->cdr)),
7921925c
JB
1624 current_buffer->local_var_alist);
1625
1626 /* Make sure symbol does not think it is set up for this buffer;
42e975f0 1627 force it to look once again for this buffer's value. */
7921925c 1628 {
8d4afcac 1629 Lisp_Object *pvalbuf;
a5d004a1 1630
f35d5bad 1631 valcontents = SYMBOL_VALUE (variable);
a5d004a1 1632
b0c2d1c6 1633 pvalbuf = &XBUFFER_LOCAL_VALUE (valcontents)->buffer;
8d4afcac
KH
1634 if (current_buffer == XBUFFER (*pvalbuf))
1635 *pvalbuf = Qnil;
b0c2d1c6 1636 XBUFFER_LOCAL_VALUE (valcontents)->found_for_buffer = 0;
7921925c 1637 }
7921925c 1638 }
a5ca2b75 1639
42e975f0
RS
1640 /* If the symbol forwards into a C variable, then load the binding
1641 for this buffer now. If C code modifies the variable before we
1642 load the binding in, then that new value will clobber the default
1643 binding the next time we unload it. */
f35d5bad 1644 valcontents = XBUFFER_LOCAL_VALUE (SYMBOL_VALUE (variable))->realvalue;
e9ebc175 1645 if (INTFWDP (valcontents) || BOOLFWDP (valcontents) || OBJFWDP (valcontents))
f35d5bad 1646 swap_in_symval_forwarding (variable, SYMBOL_VALUE (variable));
a5ca2b75 1647
d9c2a0f2 1648 return variable;
7921925c
JB
1649}
1650
1651DEFUN ("kill-local-variable", Fkill_local_variable, Skill_local_variable,
8c1a1077
PJ
1652 1, 1, "vKill Local Variable: ",
1653 doc: /* Make VARIABLE no longer have a separate value in the current buffer.
bfb96cb7 1654From now on the default value will apply in this buffer. Return VARIABLE. */)
8c1a1077 1655 (variable)
d9c2a0f2 1656 register Lisp_Object variable;
7921925c
JB
1657{
1658 register Lisp_Object tem, valcontents;
1659
b7826503 1660 CHECK_SYMBOL (variable);
14970b45 1661 variable = indirect_variable (variable);
7921925c 1662
f35d5bad 1663 valcontents = SYMBOL_VALUE (variable);
7921925c 1664
e9ebc175 1665 if (BUFFER_OBJFWDP (valcontents))
7921925c 1666 {
999b32fd 1667 int offset = XBUFFER_OBJFWD (valcontents)->offset;
f6cd0527 1668 int idx = PER_BUFFER_IDX (offset);
7921925c 1669
999b32fd 1670 if (idx > 0)
7921925c 1671 {
f6cd0527
GM
1672 SET_PER_BUFFER_VALUE_P (current_buffer, idx, 0);
1673 PER_BUFFER_VALUE (current_buffer, offset)
1674 = PER_BUFFER_DEFAULT (offset);
7921925c 1675 }
d9c2a0f2 1676 return variable;
7921925c
JB
1677 }
1678
67ee9f6e 1679 if (!BUFFER_LOCAL_VALUEP (valcontents))
d9c2a0f2 1680 return variable;
7921925c 1681
42e975f0 1682 /* Get rid of this buffer's alist element, if any. */
7921925c 1683
d9c2a0f2 1684 tem = Fassq (variable, current_buffer->local_var_alist);
a33ef3ab 1685 if (!NILP (tem))
8d4afcac
KH
1686 current_buffer->local_var_alist
1687 = Fdelq (tem, current_buffer->local_var_alist);
7921925c 1688
42e975f0
RS
1689 /* If the symbol is set up with the current buffer's binding
1690 loaded, recompute its value. We have to do it now, or else
1691 forwarded objects won't work right. */
7921925c 1692 {
999e6484 1693 Lisp_Object *pvalbuf, buf;
f35d5bad 1694 valcontents = SYMBOL_VALUE (variable);
b0c2d1c6 1695 pvalbuf = &XBUFFER_LOCAL_VALUE (valcontents)->buffer;
999e6484
SM
1696 XSETBUFFER (buf, current_buffer);
1697 if (EQ (buf, *pvalbuf))
79c83e03
KH
1698 {
1699 *pvalbuf = Qnil;
b0c2d1c6 1700 XBUFFER_LOCAL_VALUE (valcontents)->found_for_buffer = 0;
978dd578 1701 find_symbol_value (variable);
79c83e03 1702 }
7921925c
JB
1703 }
1704
d9c2a0f2 1705 return variable;
7921925c 1706}
62476adc 1707
b0c2d1c6
RS
1708/* Lisp functions for creating and removing buffer-local variables. */
1709
1710DEFUN ("make-variable-frame-local", Fmake_variable_frame_local, Smake_variable_frame_local,
8c1a1077
PJ
1711 1, 1, "vMake Variable Frame Local: ",
1712 doc: /* Enable VARIABLE to have frame-local bindings.
4d4d36b1
RS
1713This does not create any frame-local bindings for VARIABLE,
1714it just makes them possible.
1715
1716A frame-local binding is actually a frame parameter value.
1717If a frame F has a value for the frame parameter named VARIABLE,
1718that also acts as a frame-local binding for VARIABLE in F--
1719provided this function has been called to enable VARIABLE
1720to have frame-local bindings at all.
1721
1722The only way to create a frame-local binding for VARIABLE in a frame
1723is to set the VARIABLE frame parameter of that frame. See
1724`modify-frame-parameters' for how to set frame parameters.
1725
1726Buffer-local bindings take precedence over frame-local bindings. */)
8c1a1077 1727 (variable)
b0c2d1c6
RS
1728 register Lisp_Object variable;
1729{
1730 register Lisp_Object tem, valcontents, newval;
1731
b7826503 1732 CHECK_SYMBOL (variable);
14970b45 1733 variable = indirect_variable (variable);
b0c2d1c6 1734
f35d5bad 1735 valcontents = SYMBOL_VALUE (variable);
7357cb04 1736 if (XSYMBOL (variable)->constant || KBOARD_OBJFWDP (valcontents)
b0c2d1c6 1737 || BUFFER_OBJFWDP (valcontents))
d5db4077 1738 error ("Symbol %s may not be frame-local", SDATA (SYMBOL_NAME (variable)));
b0c2d1c6 1739
67ee9f6e 1740 if (BUFFER_LOCAL_VALUEP (valcontents))
42e975f0
RS
1741 {
1742 XBUFFER_LOCAL_VALUE (valcontents)->check_frame = 1;
1743 return variable;
1744 }
b0c2d1c6
RS
1745
1746 if (EQ (valcontents, Qunbound))
f35d5bad 1747 SET_SYMBOL_VALUE (variable, Qnil);
b0c2d1c6 1748 tem = Fcons (Qnil, Fsymbol_value (variable));
f3fbd155 1749 XSETCAR (tem, tem);
b0c2d1c6 1750 newval = allocate_misc ();
67ee9f6e 1751 XMISCTYPE (newval) = Lisp_Misc_Buffer_Local_Value;
f35d5bad 1752 XBUFFER_LOCAL_VALUE (newval)->realvalue = SYMBOL_VALUE (variable);
b0c2d1c6
RS
1753 XBUFFER_LOCAL_VALUE (newval)->buffer = Qnil;
1754 XBUFFER_LOCAL_VALUE (newval)->frame = Qnil;
67ee9f6e 1755 XBUFFER_LOCAL_VALUE (newval)->local_if_set = 0;
b0c2d1c6
RS
1756 XBUFFER_LOCAL_VALUE (newval)->found_for_buffer = 0;
1757 XBUFFER_LOCAL_VALUE (newval)->found_for_frame = 0;
1758 XBUFFER_LOCAL_VALUE (newval)->check_frame = 1;
1759 XBUFFER_LOCAL_VALUE (newval)->cdr = tem;
f35d5bad 1760 SET_SYMBOL_VALUE (variable, newval);
b0c2d1c6
RS
1761 return variable;
1762}
1763
62476adc 1764DEFUN ("local-variable-p", Flocal_variable_p, Slocal_variable_p,
8c1a1077
PJ
1765 1, 2, 0,
1766 doc: /* Non-nil if VARIABLE has a local binding in buffer BUFFER.
1767BUFFER defaults to the current buffer. */)
1768 (variable, buffer)
d9c2a0f2 1769 register Lisp_Object variable, buffer;
62476adc
RS
1770{
1771 Lisp_Object valcontents;
c48ead86
KH
1772 register struct buffer *buf;
1773
1774 if (NILP (buffer))
1775 buf = current_buffer;
1776 else
1777 {
b7826503 1778 CHECK_BUFFER (buffer);
c48ead86
KH
1779 buf = XBUFFER (buffer);
1780 }
62476adc 1781
b7826503 1782 CHECK_SYMBOL (variable);
14970b45 1783 variable = indirect_variable (variable);
62476adc 1784
f35d5bad 1785 valcontents = SYMBOL_VALUE (variable);
67ee9f6e 1786 if (BUFFER_LOCAL_VALUEP (valcontents))
c48ead86
KH
1787 {
1788 Lisp_Object tail, elt;
f35d5bad 1789
7539e11f 1790 for (tail = buf->local_var_alist; CONSP (tail); tail = XCDR (tail))
c48ead86 1791 {
7539e11f
KR
1792 elt = XCAR (tail);
1793 if (EQ (variable, XCAR (elt)))
c48ead86
KH
1794 return Qt;
1795 }
1796 }
1797 if (BUFFER_OBJFWDP (valcontents))
1798 {
1799 int offset = XBUFFER_OBJFWD (valcontents)->offset;
f6cd0527
GM
1800 int idx = PER_BUFFER_IDX (offset);
1801 if (idx == -1 || PER_BUFFER_VALUE_P (buf, idx))
c48ead86
KH
1802 return Qt;
1803 }
1804 return Qnil;
62476adc 1805}
f4f04cee
RS
1806
1807DEFUN ("local-variable-if-set-p", Flocal_variable_if_set_p, Slocal_variable_if_set_p,
8c1a1077 1808 1, 2, 0,
1dc5ba01
LT
1809 doc: /* Non-nil if VARIABLE will be local in buffer BUFFER when set there.
1810More precisely, this means that setting the variable \(with `set' or`setq'),
1811while it does not have a `let'-style binding that was made in BUFFER,
1812will produce a buffer local binding. See Info node
1813`(elisp)Creating Buffer-Local'.
8c1a1077
PJ
1814BUFFER defaults to the current buffer. */)
1815 (variable, buffer)
d9c2a0f2 1816 register Lisp_Object variable, buffer;
f4f04cee
RS
1817{
1818 Lisp_Object valcontents;
1819 register struct buffer *buf;
1820
1821 if (NILP (buffer))
1822 buf = current_buffer;
1823 else
1824 {
b7826503 1825 CHECK_BUFFER (buffer);
f4f04cee
RS
1826 buf = XBUFFER (buffer);
1827 }
1828
b7826503 1829 CHECK_SYMBOL (variable);
14970b45 1830 variable = indirect_variable (variable);
f4f04cee 1831
f35d5bad 1832 valcontents = SYMBOL_VALUE (variable);
f4f04cee 1833
f4f04cee 1834 if (BUFFER_OBJFWDP (valcontents))
67ee9f6e 1835 /* All these slots become local if they are set. */
f4f04cee 1836 return Qt;
67ee9f6e 1837 else if (BUFFER_LOCAL_VALUEP (valcontents))
f4f04cee
RS
1838 {
1839 Lisp_Object tail, elt;
67ee9f6e
SM
1840 if (XBUFFER_LOCAL_VALUE (valcontents)->local_if_set)
1841 return Qt;
7539e11f 1842 for (tail = buf->local_var_alist; CONSP (tail); tail = XCDR (tail))
f4f04cee 1843 {
7539e11f
KR
1844 elt = XCAR (tail);
1845 if (EQ (variable, XCAR (elt)))
f4f04cee
RS
1846 return Qt;
1847 }
1848 }
1849 return Qnil;
1850}
0a2546d4
RS
1851
1852DEFUN ("variable-binding-locus", Fvariable_binding_locus, Svariable_binding_locus,
1853 1, 1, 0,
1854 doc: /* Return a value indicating where VARIABLE's current binding comes from.
1855If the current binding is buffer-local, the value is the current buffer.
1856If the current binding is frame-local, the value is the selected frame.
1857If the current binding is global (the default), the value is nil. */)
1858 (variable)
1859 register Lisp_Object variable;
1860{
1861 Lisp_Object valcontents;
1862
1863 CHECK_SYMBOL (variable);
1864 variable = indirect_variable (variable);
1865
1866 /* Make sure the current binding is actually swapped in. */
1867 find_symbol_value (variable);
1868
1869 valcontents = XSYMBOL (variable)->value;
1870
1871 if (BUFFER_LOCAL_VALUEP (valcontents)
0a2546d4
RS
1872 || BUFFER_OBJFWDP (valcontents))
1873 {
1874 /* For a local variable, record both the symbol and which
1875 buffer's or frame's value we are saving. */
1876 if (!NILP (Flocal_variable_p (variable, Qnil)))
1877 return Fcurrent_buffer ();
67ee9f6e 1878 else if (BUFFER_LOCAL_VALUEP (valcontents)
0a2546d4
RS
1879 && XBUFFER_LOCAL_VALUE (valcontents)->found_for_frame)
1880 return XBUFFER_LOCAL_VALUE (valcontents)->frame;
1881 }
1882
1883 return Qnil;
1884}
2a42d440 1885
c40bb1ba
KL
1886/* This code is disabled now that we use the selected frame to return
1887 keyboard-local-values. */
1888#if 0
6ed8eeff 1889extern struct terminal *get_terminal P_ ((Lisp_Object display, int));
2a42d440
KL
1890
1891DEFUN ("terminal-local-value", Fterminal_local_value, Sterminal_local_value, 2, 2, 0,
6ed8eeff 1892 doc: /* Return the terminal-local value of SYMBOL on TERMINAL.
2a42d440
KL
1893If SYMBOL is not a terminal-local variable, then return its normal
1894value, like `symbol-value'.
1895
6ed8eeff
KL
1896TERMINAL may be a terminal id, a frame, or nil (meaning the
1897selected frame's terminal device). */)
1898 (symbol, terminal)
2a42d440 1899 Lisp_Object symbol;
6ed8eeff 1900 Lisp_Object terminal;
2a42d440
KL
1901{
1902 Lisp_Object result;
6ed8eeff
KL
1903 struct terminal *t = get_terminal (terminal, 1);
1904 push_kboard (t->kboard);
2a42d440 1905 result = Fsymbol_value (symbol);
256c9c3a 1906 pop_kboard ();
2a42d440
KL
1907 return result;
1908}
1909
1910DEFUN ("set-terminal-local-value", Fset_terminal_local_value, Sset_terminal_local_value, 3, 3, 0,
6ed8eeff 1911 doc: /* Set the terminal-local binding of SYMBOL on TERMINAL to VALUE.
2a42d440 1912If VARIABLE is not a terminal-local variable, then set its normal
7e59217d
KL
1913binding, like `set'.
1914
6ed8eeff
KL
1915TERMINAL may be a terminal id, a frame, or nil (meaning the
1916selected frame's terminal device). */)
1917 (symbol, terminal, value)
2a42d440 1918 Lisp_Object symbol;
6ed8eeff 1919 Lisp_Object terminal;
2a42d440
KL
1920 Lisp_Object value;
1921{
1922 Lisp_Object result;
6ed8eeff 1923 struct terminal *t = get_terminal (terminal, 1);
256c9c3a 1924 push_kboard (d->kboard);
2a42d440 1925 result = Fset (symbol, value);
256c9c3a 1926 pop_kboard ();
2a42d440
KL
1927 return result;
1928}
c40bb1ba 1929#endif
7921925c 1930\f
ffd56f97
JB
1931/* Find the function at the end of a chain of symbol function indirections. */
1932
1933/* If OBJECT is a symbol, find the end of its function chain and
1934 return the value found there. If OBJECT is not a symbol, just
1935 return it. If there is a cycle in the function chain, signal a
1936 cyclic-function-indirection error.
1937
1938 This is like Findirect_function, except that it doesn't signal an
1939 error if the chain ends up unbound. */
1940Lisp_Object
a2932990 1941indirect_function (object)
62476adc 1942 register Lisp_Object object;
ffd56f97 1943{
eb8c3be9 1944 Lisp_Object tortoise, hare;
ffd56f97 1945
eb8c3be9 1946 hare = tortoise = object;
ffd56f97
JB
1947
1948 for (;;)
1949 {
e9ebc175 1950 if (!SYMBOLP (hare) || EQ (hare, Qunbound))
ffd56f97
JB
1951 break;
1952 hare = XSYMBOL (hare)->function;
e9ebc175 1953 if (!SYMBOLP (hare) || EQ (hare, Qunbound))
ffd56f97
JB
1954 break;
1955 hare = XSYMBOL (hare)->function;
1956
eb8c3be9 1957 tortoise = XSYMBOL (tortoise)->function;
ffd56f97 1958
eb8c3be9 1959 if (EQ (hare, tortoise))
740ef0b5 1960 xsignal1 (Qcyclic_function_indirection, object);
ffd56f97
JB
1961 }
1962
1963 return hare;
1964}
1965
a7f96a35 1966DEFUN ("indirect-function", Findirect_function, Sindirect_function, 1, 2, 0,
8c1a1077 1967 doc: /* Return the function at the end of OBJECT's function chain.
0ddb0ae8
TTN
1968If OBJECT is not a symbol, just return it. Otherwise, follow all
1969function indirections to find the final function binding and return it.
1970If the final symbol in the chain is unbound, signal a void-function error.
1971Optional arg NOERROR non-nil means to return nil instead of signalling.
8c1a1077
PJ
1972Signal a cyclic-function-indirection error if there is a loop in the
1973function chain of symbols. */)
0ddb0ae8 1974 (object, noerror)
8c1a1077 1975 register Lisp_Object object;
0ddb0ae8 1976 Lisp_Object noerror;
ffd56f97
JB
1977{
1978 Lisp_Object result;
1979
64de53d8
KS
1980 /* Optimize for no indirection. */
1981 result = object;
1982 if (SYMBOLP (result) && !EQ (result, Qunbound)
1983 && (result = XSYMBOL (result)->function, SYMBOLP (result)))
1984 result = indirect_function (result);
1985 if (!EQ (result, Qunbound))
1986 return result;
ffd56f97 1987
64de53d8 1988 if (NILP (noerror))
740ef0b5 1989 xsignal1 (Qvoid_function, object);
64de53d8
KS
1990
1991 return Qnil;
ffd56f97
JB
1992}
1993\f
7921925c
JB
1994/* Extract and set vector and string elements */
1995
1996DEFUN ("aref", Faref, Saref, 2, 2, 0,
8c1a1077
PJ
1997 doc: /* Return the element of ARRAY at index IDX.
1998ARRAY may be a vector, a string, a char-table, a bool-vector,
1999or a byte-code object. IDX starts at 0. */)
2000 (array, idx)
7921925c
JB
2001 register Lisp_Object array;
2002 Lisp_Object idx;
2003{
2004 register int idxval;
2005
b7826503 2006 CHECK_NUMBER (idx);
7921925c 2007 idxval = XINT (idx);
e9ebc175 2008 if (STRINGP (array))
7921925c 2009 {
25638b07
RS
2010 int c, idxval_byte;
2011
d5db4077 2012 if (idxval < 0 || idxval >= SCHARS (array))
c24e4efe 2013 args_out_of_range (array, idx);
25638b07 2014 if (! STRING_MULTIBYTE (array))
d5db4077 2015 return make_number ((unsigned char) SREF (array, idxval));
25638b07
RS
2016 idxval_byte = string_char_to_byte (array, idxval);
2017
29f44a37 2018 c = STRING_CHAR (SDATA (array) + idxval_byte,
d5db4077 2019 SBYTES (array) - idxval_byte);
25638b07 2020 return make_number (c);
7921925c 2021 }
4d276982
RS
2022 else if (BOOL_VECTOR_P (array))
2023 {
2024 int val;
4d276982
RS
2025
2026 if (idxval < 0 || idxval >= XBOOL_VECTOR (array)->size)
2027 args_out_of_range (array, idx);
2028
b9ed2177
AS
2029 val = (unsigned char) XBOOL_VECTOR (array)->data[idxval / BOOL_VECTOR_BITS_PER_CHAR];
2030 return (val & (1 << (idxval % BOOL_VECTOR_BITS_PER_CHAR)) ? Qt : Qnil);
4d276982
RS
2031 }
2032 else if (CHAR_TABLE_P (array))
2033 {
2034 Lisp_Object val;
2035
6bbd7a29
GM
2036 val = Qnil;
2037
4d276982
RS
2038 if (idxval < 0)
2039 args_out_of_range (array, idx);
ab5c3f93 2040 if (idxval < CHAR_TABLE_ORDINARY_SLOTS)
8313c4e7 2041 {
256d566c
KH
2042 if (! SINGLE_BYTE_CHAR_P (idxval))
2043 args_out_of_range (array, idx);
39e16e51 2044 /* For ASCII and 8-bit European characters, the element is
3a6cf6bd 2045 stored in the top table. */
8313c4e7 2046 val = XCHAR_TABLE (array)->contents[idxval];
256d566c
KH
2047 if (NILP (val))
2048 {
2049 int default_slot
2050 = (idxval < 0x80 ? CHAR_TABLE_DEFAULT_SLOT_ASCII
2051 : idxval < 0xA0 ? CHAR_TABLE_DEFAULT_SLOT_8_BIT_CONTROL
2052 : CHAR_TABLE_DEFAULT_SLOT_8_BIT_GRAPHIC);
2053 val = XCHAR_TABLE (array)->contents[default_slot];
2054 }
8313c4e7
KH
2055 if (NILP (val))
2056 val = XCHAR_TABLE (array)->defalt;
2057 while (NILP (val)) /* Follow parents until we find some value. */
2058 {
2059 array = XCHAR_TABLE (array)->parent;
2060 if (NILP (array))
2061 return Qnil;
2062 val = XCHAR_TABLE (array)->contents[idxval];
2063 if (NILP (val))
2064 val = XCHAR_TABLE (array)->defalt;
2065 }
2066 return val;
2067 }
4d276982
RS
2068 else
2069 {
39e16e51
KH
2070 int code[4], i;
2071 Lisp_Object sub_table;
256d566c 2072 Lisp_Object current_default;
8313c4e7 2073
37309c9d 2074 SPLIT_CHAR (idxval, code[0], code[1], code[2]);
e19c1eb4
KH
2075 if (code[1] < 32) code[1] = -1;
2076 else if (code[2] < 32) code[2] = -1;
2077
39e16e51
KH
2078 /* Here, the possible range of CODE[0] (== charset ID) is
2079 128..MAX_CHARSET. Since the top level char table contains
2080 data for multibyte characters after 256th element, we must
2081 increment CODE[0] by 128 to get a correct index. */
2082 code[0] += 128;
2083 code[3] = -1; /* anchor */
4d276982
RS
2084
2085 try_parent_char_table:
256d566c 2086 current_default = XCHAR_TABLE (array)->defalt;
39e16e51
KH
2087 sub_table = array;
2088 for (i = 0; code[i] >= 0; i++)
4d276982 2089 {
39e16e51
KH
2090 val = XCHAR_TABLE (sub_table)->contents[code[i]];
2091 if (SUB_CHAR_TABLE_P (val))
256d566c
KH
2092 {
2093 sub_table = val;
2094 if (! NILP (XCHAR_TABLE (sub_table)->defalt))
2095 current_default = XCHAR_TABLE (sub_table)->defalt;
2096 }
39e16e51 2097 else
8313c4e7 2098 {
39e16e51 2099 if (NILP (val))
256d566c 2100 val = current_default;
39e16e51
KH
2101 if (NILP (val))
2102 {
2103 array = XCHAR_TABLE (array)->parent;
2104 if (!NILP (array))
2105 goto try_parent_char_table;
2106 }
2107 return val;
8313c4e7 2108 }
4d276982 2109 }
256d566c
KH
2110 /* Reaching here means IDXVAL is a generic character in
2111 which each character or a group has independent value.
2112 Essentially it's nonsense to get a value for such a
2113 generic character, but for backward compatibility, we try
2114 the default value and parent. */
2115 val = current_default;
8313c4e7 2116 if (NILP (val))
4d276982
RS
2117 {
2118 array = XCHAR_TABLE (array)->parent;
39e16e51
KH
2119 if (!NILP (array))
2120 goto try_parent_char_table;
4d276982 2121 }
4d276982
RS
2122 return val;
2123 }
4d276982 2124 }
7921925c 2125 else
c24e4efe 2126 {
6bbd7a29 2127 int size = 0;
7f358972
RS
2128 if (VECTORP (array))
2129 size = XVECTOR (array)->size;
2130 else if (COMPILEDP (array))
2131 size = XVECTOR (array)->size & PSEUDOVECTOR_SIZE_MASK;
2132 else
2133 wrong_type_argument (Qarrayp, array);
2134
2135 if (idxval < 0 || idxval >= size)
c24e4efe
KH
2136 args_out_of_range (array, idx);
2137 return XVECTOR (array)->contents[idxval];
2138 }
7921925c
JB
2139}
2140
2141DEFUN ("aset", Faset, Saset, 3, 3, 0,
8c1a1077 2142 doc: /* Store into the element of ARRAY at index IDX the value NEWELT.
bfb96cb7
FP
2143Return NEWELT. ARRAY may be a vector, a string, a char-table or a
2144bool-vector. IDX starts at 0. */)
8c1a1077 2145 (array, idx, newelt)
7921925c
JB
2146 register Lisp_Object array;
2147 Lisp_Object idx, newelt;
2148{
2149 register int idxval;
2150
b7826503 2151 CHECK_NUMBER (idx);
7921925c 2152 idxval = XINT (idx);
0c64a8cd 2153 CHECK_ARRAY (array, Qarrayp);
7921925c
JB
2154 CHECK_IMPURE (array);
2155
e9ebc175 2156 if (VECTORP (array))
c24e4efe
KH
2157 {
2158 if (idxval < 0 || idxval >= XVECTOR (array)->size)
2159 args_out_of_range (array, idx);
2160 XVECTOR (array)->contents[idxval] = newelt;
2161 }
4d276982
RS
2162 else if (BOOL_VECTOR_P (array))
2163 {
2164 int val;
4d276982
RS
2165
2166 if (idxval < 0 || idxval >= XBOOL_VECTOR (array)->size)
2167 args_out_of_range (array, idx);
2168
b9ed2177 2169 val = (unsigned char) XBOOL_VECTOR (array)->data[idxval / BOOL_VECTOR_BITS_PER_CHAR];
4d276982
RS
2170
2171 if (! NILP (newelt))
b9ed2177 2172 val |= 1 << (idxval % BOOL_VECTOR_BITS_PER_CHAR);
4d276982 2173 else
b9ed2177
AS
2174 val &= ~(1 << (idxval % BOOL_VECTOR_BITS_PER_CHAR));
2175 XBOOL_VECTOR (array)->data[idxval / BOOL_VECTOR_BITS_PER_CHAR] = val;
4d276982
RS
2176 }
2177 else if (CHAR_TABLE_P (array))
2178 {
4d276982
RS
2179 if (idxval < 0)
2180 args_out_of_range (array, idx);
ab5c3f93 2181 if (idxval < CHAR_TABLE_ORDINARY_SLOTS)
256d566c
KH
2182 {
2183 if (! SINGLE_BYTE_CHAR_P (idxval))
2184 args_out_of_range (array, idx);
2185 XCHAR_TABLE (array)->contents[idxval] = newelt;
2186 }
4d276982
RS
2187 else
2188 {
39e16e51 2189 int code[4], i;
8313c4e7 2190 Lisp_Object val;
4d276982 2191
37309c9d 2192 SPLIT_CHAR (idxval, code[0], code[1], code[2]);
e19c1eb4
KH
2193 if (code[1] < 32) code[1] = -1;
2194 else if (code[2] < 32) code[2] = -1;
2195
39e16e51
KH
2196 /* See the comment of the corresponding part in Faref. */
2197 code[0] += 128;
2198 code[3] = -1; /* anchor */
2199 for (i = 0; code[i + 1] >= 0; i++)
8313c4e7 2200 {
39e16e51
KH
2201 val = XCHAR_TABLE (array)->contents[code[i]];
2202 if (SUB_CHAR_TABLE_P (val))
8313c4e7
KH
2203 array = val;
2204 else
3c8fccc3
RS
2205 {
2206 Lisp_Object temp;
2207
2208 /* VAL is a leaf. Create a sub char table with the
256d566c 2209 initial value VAL and look into it. */
3c8fccc3 2210
256d566c 2211 temp = make_sub_char_table (val);
3c8fccc3
RS
2212 XCHAR_TABLE (array)->contents[code[i]] = temp;
2213 array = temp;
2214 }
8313c4e7 2215 }
39e16e51 2216 XCHAR_TABLE (array)->contents[code[i]] = newelt;
4d276982 2217 }
4d276982 2218 }
25638b07
RS
2219 else if (STRING_MULTIBYTE (array))
2220 {
c6464167 2221 int idxval_byte, prev_bytes, new_bytes, nbytes;
3c9de1af 2222 unsigned char workbuf[MAX_MULTIBYTE_LENGTH], *p0 = workbuf, *p1;
25638b07 2223
d5db4077 2224 if (idxval < 0 || idxval >= SCHARS (array))
25638b07 2225 args_out_of_range (array, idx);
b7826503 2226 CHECK_NUMBER (newelt);
25638b07 2227
c6464167
MB
2228 nbytes = SBYTES (array);
2229
25638b07 2230 idxval_byte = string_char_to_byte (array, idxval);
29f44a37 2231 p1 = SDATA (array) + idxval_byte;
3c9de1af
KH
2232 PARSE_MULTIBYTE_SEQ (p1, nbytes - idxval_byte, prev_bytes);
2233 new_bytes = CHAR_STRING (XINT (newelt), p0);
2234 if (prev_bytes != new_bytes)
2235 {
2236 /* We must relocate the string data. */
d5db4077 2237 int nchars = SCHARS (array);
3c9de1af 2238 unsigned char *str;
f1a87317 2239 USE_SAFE_ALLOCA;
3c9de1af 2240
f1a87317 2241 SAFE_ALLOCA (str, unsigned char *, nbytes);
d5db4077 2242 bcopy (SDATA (array), str, nbytes);
3c9de1af
KH
2243 allocate_string_data (XSTRING (array), nchars,
2244 nbytes + new_bytes - prev_bytes);
d5db4077
KR
2245 bcopy (str, SDATA (array), idxval_byte);
2246 p1 = SDATA (array) + idxval_byte;
3c9de1af
KH
2247 bcopy (str + idxval_byte + prev_bytes, p1 + new_bytes,
2248 nbytes - (idxval_byte + prev_bytes));
233f3db6 2249 SAFE_FREE ();
3c9de1af
KH
2250 clear_string_char_byte_cache ();
2251 }
2252 while (new_bytes--)
2253 *p1++ = *p0++;
25638b07 2254 }
7921925c
JB
2255 else
2256 {
d5db4077 2257 if (idxval < 0 || idxval >= SCHARS (array))
c24e4efe 2258 args_out_of_range (array, idx);
b7826503 2259 CHECK_NUMBER (newelt);
3c9de1af
KH
2260
2261 if (XINT (newelt) < 0 || SINGLE_BYTE_CHAR_P (XINT (newelt)))
29f44a37 2262 SSET (array, idxval, XINT (newelt));
3c9de1af
KH
2263 else
2264 {
2265 /* We must relocate the string data while converting it to
2266 multibyte. */
2267 int idxval_byte, prev_bytes, new_bytes;
2268 unsigned char workbuf[MAX_MULTIBYTE_LENGTH], *p0 = workbuf, *p1;
d5db4077 2269 unsigned char *origstr = SDATA (array), *str;
3c9de1af 2270 int nchars, nbytes;
f1a87317 2271 USE_SAFE_ALLOCA;
3c9de1af 2272
d5db4077 2273 nchars = SCHARS (array);
3c9de1af
KH
2274 nbytes = idxval_byte = count_size_as_multibyte (origstr, idxval);
2275 nbytes += count_size_as_multibyte (origstr + idxval,
2276 nchars - idxval);
f1a87317 2277 SAFE_ALLOCA (str, unsigned char *, nbytes);
d5db4077 2278 copy_text (SDATA (array), str, nchars, 0, 1);
3c9de1af
KH
2279 PARSE_MULTIBYTE_SEQ (str + idxval_byte, nbytes - idxval_byte,
2280 prev_bytes);
2281 new_bytes = CHAR_STRING (XINT (newelt), p0);
2282 allocate_string_data (XSTRING (array), nchars,
2283 nbytes + new_bytes - prev_bytes);
d5db4077
KR
2284 bcopy (str, SDATA (array), idxval_byte);
2285 p1 = SDATA (array) + idxval_byte;
3c9de1af
KH
2286 while (new_bytes--)
2287 *p1++ = *p0++;
2288 bcopy (str + idxval_byte + prev_bytes, p1,
2289 nbytes - (idxval_byte + prev_bytes));
233f3db6 2290 SAFE_FREE ();
3c9de1af
KH
2291 clear_string_char_byte_cache ();
2292 }
7921925c
JB
2293 }
2294
2295 return newelt;
2296}
7921925c
JB
2297\f
2298/* Arithmetic functions */
2299
2300enum comparison { equal, notequal, less, grtr, less_or_equal, grtr_or_equal };
2301
2302Lisp_Object
2303arithcompare (num1, num2, comparison)
2304 Lisp_Object num1, num2;
2305 enum comparison comparison;
2306{
6bbd7a29 2307 double f1 = 0, f2 = 0;
7921925c
JB
2308 int floatp = 0;
2309
b7826503
PJ
2310 CHECK_NUMBER_OR_FLOAT_COERCE_MARKER (num1);
2311 CHECK_NUMBER_OR_FLOAT_COERCE_MARKER (num2);
7921925c 2312
e9ebc175 2313 if (FLOATP (num1) || FLOATP (num2))
7921925c
JB
2314 {
2315 floatp = 1;
7539e11f
KR
2316 f1 = (FLOATP (num1)) ? XFLOAT_DATA (num1) : XINT (num1);
2317 f2 = (FLOATP (num2)) ? XFLOAT_DATA (num2) : XINT (num2);
7921925c 2318 }
7921925c
JB
2319
2320 switch (comparison)
2321 {
2322 case equal:
2323 if (floatp ? f1 == f2 : XINT (num1) == XINT (num2))
2324 return Qt;
2325 return Qnil;
2326
2327 case notequal:
2328 if (floatp ? f1 != f2 : XINT (num1) != XINT (num2))
2329 return Qt;
2330 return Qnil;
2331
2332 case less:
2333 if (floatp ? f1 < f2 : XINT (num1) < XINT (num2))
2334 return Qt;
2335 return Qnil;
2336
2337 case less_or_equal:
2338 if (floatp ? f1 <= f2 : XINT (num1) <= XINT (num2))
2339 return Qt;
2340 return Qnil;
2341
2342 case grtr:
2343 if (floatp ? f1 > f2 : XINT (num1) > XINT (num2))
2344 return Qt;
2345 return Qnil;
2346
2347 case grtr_or_equal:
2348 if (floatp ? f1 >= f2 : XINT (num1) >= XINT (num2))
2349 return Qt;
2350 return Qnil;
25e40a4b
JB
2351
2352 default:
2353 abort ();
7921925c
JB
2354 }
2355}
2356
2357DEFUN ("=", Feqlsign, Seqlsign, 2, 2, 0,
8c1a1077
PJ
2358 doc: /* Return t if two args, both numbers or markers, are equal. */)
2359 (num1, num2)
7921925c
JB
2360 register Lisp_Object num1, num2;
2361{
2362 return arithcompare (num1, num2, equal);
2363}
2364
2365DEFUN ("<", Flss, Slss, 2, 2, 0,
8c1a1077
PJ
2366 doc: /* Return t if first arg is less than second arg. Both must be numbers or markers. */)
2367 (num1, num2)
7921925c
JB
2368 register Lisp_Object num1, num2;
2369{
2370 return arithcompare (num1, num2, less);
2371}
2372
2373DEFUN (">", Fgtr, Sgtr, 2, 2, 0,
8c1a1077
PJ
2374 doc: /* Return t if first arg is greater than second arg. Both must be numbers or markers. */)
2375 (num1, num2)
7921925c
JB
2376 register Lisp_Object num1, num2;
2377{
2378 return arithcompare (num1, num2, grtr);
2379}
2380
2381DEFUN ("<=", Fleq, Sleq, 2, 2, 0,
8c1a1077
PJ
2382 doc: /* Return t if first arg is less than or equal to second arg.
2383Both must be numbers or markers. */)
2384 (num1, num2)
7921925c
JB
2385 register Lisp_Object num1, num2;
2386{
2387 return arithcompare (num1, num2, less_or_equal);
2388}
2389
2390DEFUN (">=", Fgeq, Sgeq, 2, 2, 0,
8c1a1077
PJ
2391 doc: /* Return t if first arg is greater than or equal to second arg.
2392Both must be numbers or markers. */)
2393 (num1, num2)
7921925c
JB
2394 register Lisp_Object num1, num2;
2395{
2396 return arithcompare (num1, num2, grtr_or_equal);
2397}
2398
2399DEFUN ("/=", Fneq, Sneq, 2, 2, 0,
8c1a1077
PJ
2400 doc: /* Return t if first arg is not equal to second arg. Both must be numbers or markers. */)
2401 (num1, num2)
7921925c
JB
2402 register Lisp_Object num1, num2;
2403{
2404 return arithcompare (num1, num2, notequal);
2405}
2406
8c1a1077
PJ
2407DEFUN ("zerop", Fzerop, Szerop, 1, 1, 0,
2408 doc: /* Return t if NUMBER is zero. */)
2409 (number)
d9c2a0f2 2410 register Lisp_Object number;
7921925c 2411{
b7826503 2412 CHECK_NUMBER_OR_FLOAT (number);
7921925c 2413
d9c2a0f2 2414 if (FLOATP (number))
7921925c 2415 {
7539e11f 2416 if (XFLOAT_DATA (number) == 0.0)
7921925c
JB
2417 return Qt;
2418 return Qnil;
2419 }
7921925c 2420
d9c2a0f2 2421 if (!XINT (number))
7921925c
JB
2422 return Qt;
2423 return Qnil;
2424}
2425\f
70e9f399
RS
2426/* Convert between long values and pairs of Lisp integers.
2427 Note that long_to_cons returns a single Lisp integer
2428 when the value fits in one. */
51cf3e31
JB
2429
2430Lisp_Object
2431long_to_cons (i)
2432 unsigned long i;
2433{
9bc7166b 2434 unsigned long top = i >> 16;
51cf3e31
JB
2435 unsigned int bot = i & 0xFFFF;
2436 if (top == 0)
2437 return make_number (bot);
b42cfa11 2438 if (top == (unsigned long)-1 >> 16)
51cf3e31
JB
2439 return Fcons (make_number (-1), make_number (bot));
2440 return Fcons (make_number (top), make_number (bot));
2441}
2442
2443unsigned long
2444cons_to_long (c)
2445 Lisp_Object c;
2446{
878a80cc 2447 Lisp_Object top, bot;
51cf3e31
JB
2448 if (INTEGERP (c))
2449 return XINT (c);
7539e11f
KR
2450 top = XCAR (c);
2451 bot = XCDR (c);
51cf3e31 2452 if (CONSP (bot))
7539e11f 2453 bot = XCAR (bot);
51cf3e31
JB
2454 return ((XINT (top) << 16) | XINT (bot));
2455}
2456\f
f2980264 2457DEFUN ("number-to-string", Fnumber_to_string, Snumber_to_string, 1, 1, 0,
bfb96cb7 2458 doc: /* Return the decimal representation of NUMBER as a string.
8c1a1077
PJ
2459Uses a minus sign if negative.
2460NUMBER may be an integer or a floating point number. */)
2461 (number)
d9c2a0f2 2462 Lisp_Object number;
7921925c 2463{
6030ce64 2464 char buffer[VALBITS];
7921925c 2465
b7826503 2466 CHECK_NUMBER_OR_FLOAT (number);
7921925c 2467
d9c2a0f2 2468 if (FLOATP (number))
7921925c
JB
2469 {
2470 char pigbuf[350]; /* see comments in float_to_string */
2471
7539e11f 2472 float_to_string (pigbuf, XFLOAT_DATA (number));
7403b5c8 2473 return build_string (pigbuf);
7921925c 2474 }
7921925c 2475
e6c82a8d 2476 if (sizeof (int) == sizeof (EMACS_INT))
d9c2a0f2 2477 sprintf (buffer, "%d", XINT (number));
e6c82a8d 2478 else if (sizeof (long) == sizeof (EMACS_INT))
dd8daec5 2479 sprintf (buffer, "%ld", (long) XINT (number));
e6c82a8d
RS
2480 else
2481 abort ();
7921925c
JB
2482 return build_string (buffer);
2483}
2484
3883fbeb
RS
2485INLINE static int
2486digit_to_number (character, base)
2487 int character, base;
2488{
2489 int digit;
2490
2491 if (character >= '0' && character <= '9')
2492 digit = character - '0';
2493 else if (character >= 'a' && character <= 'z')
2494 digit = character - 'a' + 10;
2495 else if (character >= 'A' && character <= 'Z')
2496 digit = character - 'A' + 10;
2497 else
2498 return -1;
2499
2500 if (digit >= base)
2501 return -1;
2502 else
2503 return digit;
bfb96cb7 2504}
3883fbeb
RS
2505
2506DEFUN ("string-to-number", Fstring_to_number, Sstring_to_number, 1, 2, 0,
558ee900 2507 doc: /* Parse STRING as a decimal number and return the number.
8c1a1077
PJ
2508This parses both integers and floating point numbers.
2509It ignores leading spaces and tabs.
2510
2511If BASE, interpret STRING as a number in that base. If BASE isn't
2512present, base 10 is used. BASE must be between 2 and 16 (inclusive).
2513If the base used is not 10, floating point is not recognized. */)
2514 (string, base)
3883fbeb 2515 register Lisp_Object string, base;
7921925c 2516{
3883fbeb 2517 register unsigned char *p;
342858a5
GM
2518 register int b;
2519 int sign = 1;
2520 Lisp_Object val;
25e40a4b 2521
b7826503 2522 CHECK_STRING (string);
7921925c 2523
3883fbeb
RS
2524 if (NILP (base))
2525 b = 10;
2526 else
2527 {
b7826503 2528 CHECK_NUMBER (base);
3883fbeb
RS
2529 b = XINT (base);
2530 if (b < 2 || b > 16)
740ef0b5 2531 xsignal1 (Qargs_out_of_range, base);
3883fbeb
RS
2532 }
2533
25e40a4b
JB
2534 /* Skip any whitespace at the front of the number. Some versions of
2535 atoi do this anyway, so we might as well make Emacs lisp consistent. */
d5db4077 2536 p = SDATA (string);
0a3e4d65 2537 while (*p == ' ' || *p == '\t')
25e40a4b
JB
2538 p++;
2539
3883fbeb
RS
2540 if (*p == '-')
2541 {
342858a5 2542 sign = -1;
3883fbeb
RS
2543 p++;
2544 }
2545 else if (*p == '+')
2546 p++;
bfb96cb7 2547
8e36ae7f 2548 if (isfloat_string (p) && b == 10)
342858a5
GM
2549 val = make_float (sign * atof (p));
2550 else
3883fbeb 2551 {
342858a5
GM
2552 double v = 0;
2553
2554 while (1)
2555 {
2556 int digit = digit_to_number (*p++, b);
2557 if (digit < 0)
2558 break;
2559 v = v * b + digit;
2560 }
2561
cb938d46 2562 val = make_fixnum_or_float (sign * v);
3883fbeb 2563 }
342858a5
GM
2564
2565 return val;
7921925c 2566}
3883fbeb 2567
7403b5c8 2568\f
7921925c 2569enum arithop
7a283f36
GM
2570 {
2571 Aadd,
2572 Asub,
2573 Amult,
2574 Adiv,
2575 Alogand,
2576 Alogior,
2577 Alogxor,
2578 Amax,
2579 Amin
2580 };
2581
2582static Lisp_Object float_arith_driver P_ ((double, int, enum arithop,
2583 int, Lisp_Object *));
ad8d56b9 2584extern Lisp_Object fmod_float ();
b06faa91 2585
7921925c 2586Lisp_Object
87fbf902 2587arith_driver (code, nargs, args)
7921925c
JB
2588 enum arithop code;
2589 int nargs;
2590 register Lisp_Object *args;
2591{
2592 register Lisp_Object val;
2593 register int argnum;
7a283f36 2594 register EMACS_INT accum = 0;
5260234d 2595 register EMACS_INT next;
7921925c 2596
0220c518 2597 switch (SWITCH_ENUM_CAST (code))
7921925c
JB
2598 {
2599 case Alogior:
2600 case Alogxor:
2601 case Aadd:
2602 case Asub:
7a283f36
GM
2603 accum = 0;
2604 break;
7921925c 2605 case Amult:
7a283f36
GM
2606 accum = 1;
2607 break;
7921925c 2608 case Alogand:
7a283f36
GM
2609 accum = -1;
2610 break;
2611 default:
2612 break;
7921925c
JB
2613 }
2614
2615 for (argnum = 0; argnum < nargs; argnum++)
2616 {
7a283f36
GM
2617 /* Using args[argnum] as argument to CHECK_NUMBER_... */
2618 val = args[argnum];
b7826503 2619 CHECK_NUMBER_OR_FLOAT_COERCE_MARKER (val);
7921925c 2620
7a283f36
GM
2621 if (FLOATP (val))
2622 return float_arith_driver ((double) accum, argnum, code,
2623 nargs, args);
2624 args[argnum] = val;
7921925c 2625 next = XINT (args[argnum]);
0220c518 2626 switch (SWITCH_ENUM_CAST (code))
7921925c 2627 {
7a283f36
GM
2628 case Aadd:
2629 accum += next;
2630 break;
7921925c 2631 case Asub:
e64981da 2632 accum = argnum ? accum - next : nargs == 1 ? - next : next;
7921925c 2633 break;
7a283f36
GM
2634 case Amult:
2635 accum *= next;
2636 break;
7921925c 2637 case Adiv:
7a283f36
GM
2638 if (!argnum)
2639 accum = next;
87fbf902
RS
2640 else
2641 {
2642 if (next == 0)
740ef0b5 2643 xsignal0 (Qarith_error);
87fbf902
RS
2644 accum /= next;
2645 }
7921925c 2646 break;
7a283f36
GM
2647 case Alogand:
2648 accum &= next;
2649 break;
2650 case Alogior:
2651 accum |= next;
2652 break;
2653 case Alogxor:
2654 accum ^= next;
2655 break;
2656 case Amax:
2657 if (!argnum || next > accum)
2658 accum = next;
2659 break;
2660 case Amin:
2661 if (!argnum || next < accum)
2662 accum = next;
2663 break;
7921925c
JB
2664 }
2665 }
2666
f187f1f7 2667 XSETINT (val, accum);
7921925c
JB
2668 return val;
2669}
2670
1a2f2d33
KH
2671#undef isnan
2672#define isnan(x) ((x) != (x))
2673
7a283f36 2674static Lisp_Object
7921925c
JB
2675float_arith_driver (accum, argnum, code, nargs, args)
2676 double accum;
2677 register int argnum;
2678 enum arithop code;
2679 int nargs;
2680 register Lisp_Object *args;
2681{
2682 register Lisp_Object val;
2683 double next;
7403b5c8 2684
7921925c
JB
2685 for (; argnum < nargs; argnum++)
2686 {
2687 val = args[argnum]; /* using args[argnum] as argument to CHECK_NUMBER_... */
b7826503 2688 CHECK_NUMBER_OR_FLOAT_COERCE_MARKER (val);
7921925c 2689
e9ebc175 2690 if (FLOATP (val))
7921925c 2691 {
7539e11f 2692 next = XFLOAT_DATA (val);
7921925c
JB
2693 }
2694 else
2695 {
2696 args[argnum] = val; /* runs into a compiler bug. */
2697 next = XINT (args[argnum]);
2698 }
0220c518 2699 switch (SWITCH_ENUM_CAST (code))
7921925c
JB
2700 {
2701 case Aadd:
2702 accum += next;
2703 break;
2704 case Asub:
e64981da 2705 accum = argnum ? accum - next : nargs == 1 ? - next : next;
7921925c
JB
2706 break;
2707 case Amult:
2708 accum *= next;
2709 break;
2710 case Adiv:
2711 if (!argnum)
2712 accum = next;
2713 else
87fbf902 2714 {
ad8d56b9 2715 if (! IEEE_FLOATING_POINT && next == 0)
740ef0b5 2716 xsignal0 (Qarith_error);
87fbf902
RS
2717 accum /= next;
2718 }
7921925c
JB
2719 break;
2720 case Alogand:
2721 case Alogior:
2722 case Alogxor:
2723 return wrong_type_argument (Qinteger_or_marker_p, val);
2724 case Amax:
1a2f2d33 2725 if (!argnum || isnan (next) || next > accum)
7921925c
JB
2726 accum = next;
2727 break;
2728 case Amin:
1a2f2d33 2729 if (!argnum || isnan (next) || next < accum)
7921925c
JB
2730 accum = next;
2731 break;
2732 }
2733 }
2734
2735 return make_float (accum);
2736}
cc94f3b2 2737
7921925c
JB
2738
2739DEFUN ("+", Fplus, Splus, 0, MANY, 0,
8c1a1077
PJ
2740 doc: /* Return sum of any number of arguments, which are numbers or markers.
2741usage: (+ &rest NUMBERS-OR-MARKERS) */)
2742 (nargs, args)
7921925c
JB
2743 int nargs;
2744 Lisp_Object *args;
2745{
2746 return arith_driver (Aadd, nargs, args);
2747}
2748
2749DEFUN ("-", Fminus, Sminus, 0, MANY, 0,
558ee900 2750 doc: /* Negate number or subtract numbers or markers and return the result.
8c1a1077 2751With one arg, negates it. With more than one arg,
f44fba9e 2752subtracts all but the first from the first.
8c1a1077
PJ
2753usage: (- &optional NUMBER-OR-MARKER &rest MORE-NUMBERS-OR-MARKERS) */)
2754 (nargs, args)
7921925c
JB
2755 int nargs;
2756 Lisp_Object *args;
2757{
2758 return arith_driver (Asub, nargs, args);
2759}
2760
2761DEFUN ("*", Ftimes, Stimes, 0, MANY, 0,
be24eadf 2762 doc: /* Return product of any number of arguments, which are numbers or markers.
8c1a1077
PJ
2763usage: (* &rest NUMBERS-OR-MARKERS) */)
2764 (nargs, args)
7921925c
JB
2765 int nargs;
2766 Lisp_Object *args;
2767{
2768 return arith_driver (Amult, nargs, args);
2769}
2770
2771DEFUN ("/", Fquo, Squo, 2, MANY, 0,
be24eadf 2772 doc: /* Return first argument divided by all the remaining arguments.
f44fba9e 2773The arguments must be numbers or markers.
8c1a1077
PJ
2774usage: (/ DIVIDEND DIVISOR &rest DIVISORS) */)
2775 (nargs, args)
7921925c
JB
2776 int nargs;
2777 Lisp_Object *args;
2778{
28712a21 2779 int argnum;
7ef98053 2780 for (argnum = 2; argnum < nargs; argnum++)
28712a21
JB
2781 if (FLOATP (args[argnum]))
2782 return float_arith_driver (0, 0, Adiv, nargs, args);
7921925c
JB
2783 return arith_driver (Adiv, nargs, args);
2784}
2785
2786DEFUN ("%", Frem, Srem, 2, 2, 0,
be24eadf 2787 doc: /* Return remainder of X divided by Y.
8c1a1077
PJ
2788Both must be integers or markers. */)
2789 (x, y)
d9c2a0f2 2790 register Lisp_Object x, y;
7921925c
JB
2791{
2792 Lisp_Object val;
2793
b7826503
PJ
2794 CHECK_NUMBER_COERCE_MARKER (x);
2795 CHECK_NUMBER_COERCE_MARKER (y);
7921925c 2796
d9c2a0f2 2797 if (XFASTINT (y) == 0)
740ef0b5 2798 xsignal0 (Qarith_error);
87fbf902 2799
d9c2a0f2 2800 XSETINT (val, XINT (x) % XINT (y));
7921925c
JB
2801 return val;
2802}
2803
1d66a5fa
KH
2804#ifndef HAVE_FMOD
2805double
2806fmod (f1, f2)
2807 double f1, f2;
2808{
bc1c9d7e
PE
2809 double r = f1;
2810
fa43b1e8
KH
2811 if (f2 < 0.0)
2812 f2 = -f2;
bc1c9d7e
PE
2813
2814 /* If the magnitude of the result exceeds that of the divisor, or
2815 the sign of the result does not agree with that of the dividend,
2816 iterate with the reduced value. This does not yield a
2817 particularly accurate result, but at least it will be in the
2818 range promised by fmod. */
2819 do
2820 r -= f2 * floor (r / f2);
2821 while (f2 <= (r < 0 ? -r : r) || ((r < 0) != (f1 < 0) && ! isnan (r)));
2822
2823 return r;
1d66a5fa
KH
2824}
2825#endif /* ! HAVE_FMOD */
2826
44fa9da5 2827DEFUN ("mod", Fmod, Smod, 2, 2, 0,
be24eadf 2828 doc: /* Return X modulo Y.
8c1a1077
PJ
2829The result falls between zero (inclusive) and Y (exclusive).
2830Both X and Y must be numbers or markers. */)
2831 (x, y)
d9c2a0f2 2832 register Lisp_Object x, y;
44fa9da5
PE
2833{
2834 Lisp_Object val;
5260234d 2835 EMACS_INT i1, i2;
44fa9da5 2836
b7826503
PJ
2837 CHECK_NUMBER_OR_FLOAT_COERCE_MARKER (x);
2838 CHECK_NUMBER_OR_FLOAT_COERCE_MARKER (y);
44fa9da5 2839
d9c2a0f2 2840 if (FLOATP (x) || FLOATP (y))
ad8d56b9
PE
2841 return fmod_float (x, y);
2842
d9c2a0f2
EN
2843 i1 = XINT (x);
2844 i2 = XINT (y);
44fa9da5
PE
2845
2846 if (i2 == 0)
740ef0b5 2847 xsignal0 (Qarith_error);
7403b5c8 2848
44fa9da5
PE
2849 i1 %= i2;
2850
2851 /* If the "remainder" comes out with the wrong sign, fix it. */
04f7ec69 2852 if (i2 < 0 ? i1 > 0 : i1 < 0)
44fa9da5
PE
2853 i1 += i2;
2854
f187f1f7 2855 XSETINT (val, i1);
44fa9da5
PE
2856 return val;
2857}
2858
7921925c 2859DEFUN ("max", Fmax, Smax, 1, MANY, 0,
8c1a1077 2860 doc: /* Return largest of all the arguments (which must be numbers or markers).
f44fba9e 2861The value is always a number; markers are converted to numbers.
8c1a1077
PJ
2862usage: (max NUMBER-OR-MARKER &rest NUMBERS-OR-MARKERS) */)
2863 (nargs, args)
7921925c
JB
2864 int nargs;
2865 Lisp_Object *args;
2866{
2867 return arith_driver (Amax, nargs, args);
2868}
2869
2870DEFUN ("min", Fmin, Smin, 1, MANY, 0,
8c1a1077 2871 doc: /* Return smallest of all the arguments (which must be numbers or markers).
f44fba9e 2872The value is always a number; markers are converted to numbers.
8c1a1077
PJ
2873usage: (min NUMBER-OR-MARKER &rest NUMBERS-OR-MARKERS) */)
2874 (nargs, args)
7921925c
JB
2875 int nargs;
2876 Lisp_Object *args;
2877{
2878 return arith_driver (Amin, nargs, args);
2879}
2880
2881DEFUN ("logand", Flogand, Slogand, 0, MANY, 0,
8c1a1077 2882 doc: /* Return bitwise-and of all the arguments.
f44fba9e 2883Arguments may be integers, or markers converted to integers.
8c1a1077
PJ
2884usage: (logand &rest INTS-OR-MARKERS) */)
2885 (nargs, args)
7921925c
JB
2886 int nargs;
2887 Lisp_Object *args;
2888{
2889 return arith_driver (Alogand, nargs, args);
2890}
2891
2892DEFUN ("logior", Flogior, Slogior, 0, MANY, 0,
8c1a1077 2893 doc: /* Return bitwise-or of all the arguments.
f44fba9e 2894Arguments may be integers, or markers converted to integers.
8c1a1077
PJ
2895usage: (logior &rest INTS-OR-MARKERS) */)
2896 (nargs, args)
7921925c
JB
2897 int nargs;
2898 Lisp_Object *args;
2899{
2900 return arith_driver (Alogior, nargs, args);
2901}
2902
2903DEFUN ("logxor", Flogxor, Slogxor, 0, MANY, 0,
8c1a1077 2904 doc: /* Return bitwise-exclusive-or of all the arguments.
f44fba9e 2905Arguments may be integers, or markers converted to integers.
31fb1b2c 2906usage: (logxor &rest INTS-OR-MARKERS) */)
8c1a1077 2907 (nargs, args)
7921925c
JB
2908 int nargs;
2909 Lisp_Object *args;
2910{
2911 return arith_driver (Alogxor, nargs, args);
2912}
2913
2914DEFUN ("ash", Fash, Sash, 2, 2, 0,
8c1a1077
PJ
2915 doc: /* Return VALUE with its bits shifted left by COUNT.
2916If COUNT is negative, shifting is actually to the right.
2917In this case, the sign bit is duplicated. */)
2918 (value, count)
3b9f7964 2919 register Lisp_Object value, count;
7921925c
JB
2920{
2921 register Lisp_Object val;
2922
b7826503
PJ
2923 CHECK_NUMBER (value);
2924 CHECK_NUMBER (count);
7921925c 2925
81d70626
RS
2926 if (XINT (count) >= BITS_PER_EMACS_INT)
2927 XSETINT (val, 0);
2928 else if (XINT (count) > 0)
3d9652eb 2929 XSETINT (val, XINT (value) << XFASTINT (count));
81d70626
RS
2930 else if (XINT (count) <= -BITS_PER_EMACS_INT)
2931 XSETINT (val, XINT (value) < 0 ? -1 : 0);
7921925c 2932 else
3d9652eb 2933 XSETINT (val, XINT (value) >> -XINT (count));
7921925c
JB
2934 return val;
2935}
2936
2937DEFUN ("lsh", Flsh, Slsh, 2, 2, 0,
8c1a1077
PJ
2938 doc: /* Return VALUE with its bits shifted left by COUNT.
2939If COUNT is negative, shifting is actually to the right.
3a9b1297 2940In this case, zeros are shifted in on the left. */)
8c1a1077 2941 (value, count)
3d9652eb 2942 register Lisp_Object value, count;
7921925c
JB
2943{
2944 register Lisp_Object val;
2945
b7826503
PJ
2946 CHECK_NUMBER (value);
2947 CHECK_NUMBER (count);
7921925c 2948
81d70626
RS
2949 if (XINT (count) >= BITS_PER_EMACS_INT)
2950 XSETINT (val, 0);
2951 else if (XINT (count) > 0)
3d9652eb 2952 XSETINT (val, (EMACS_UINT) XUINT (value) << XFASTINT (count));
81d70626
RS
2953 else if (XINT (count) <= -BITS_PER_EMACS_INT)
2954 XSETINT (val, 0);
7921925c 2955 else
3d9652eb 2956 XSETINT (val, (EMACS_UINT) XUINT (value) >> -XINT (count));
7921925c
JB
2957 return val;
2958}
2959
2960DEFUN ("1+", Fadd1, Sadd1, 1, 1, 0,
8c1a1077
PJ
2961 doc: /* Return NUMBER plus one. NUMBER may be a number or a marker.
2962Markers are converted to integers. */)
2963 (number)
d9c2a0f2 2964 register Lisp_Object number;
7921925c 2965{
b7826503 2966 CHECK_NUMBER_OR_FLOAT_COERCE_MARKER (number);
7921925c 2967
d9c2a0f2 2968 if (FLOATP (number))
7539e11f 2969 return (make_float (1.0 + XFLOAT_DATA (number)));
7921925c 2970
d9c2a0f2
EN
2971 XSETINT (number, XINT (number) + 1);
2972 return number;
7921925c
JB
2973}
2974
2975DEFUN ("1-", Fsub1, Ssub1, 1, 1, 0,
8c1a1077
PJ
2976 doc: /* Return NUMBER minus one. NUMBER may be a number or a marker.
2977Markers are converted to integers. */)
2978 (number)
d9c2a0f2 2979 register Lisp_Object number;
7921925c 2980{
b7826503 2981 CHECK_NUMBER_OR_FLOAT_COERCE_MARKER (number);
7921925c 2982
d9c2a0f2 2983 if (FLOATP (number))
7539e11f 2984 return (make_float (-1.0 + XFLOAT_DATA (number)));
7921925c 2985
d9c2a0f2
EN
2986 XSETINT (number, XINT (number) - 1);
2987 return number;
7921925c
JB
2988}
2989
2990DEFUN ("lognot", Flognot, Slognot, 1, 1, 0,
8c1a1077
PJ
2991 doc: /* Return the bitwise complement of NUMBER. NUMBER must be an integer. */)
2992 (number)
d9c2a0f2 2993 register Lisp_Object number;
7921925c 2994{
b7826503 2995 CHECK_NUMBER (number);
53924017 2996 XSETINT (number, ~XINT (number));
d9c2a0f2 2997 return number;
7921925c 2998}
d4be0d31
JD
2999
3000DEFUN ("byteorder", Fbyteorder, Sbyteorder, 0, 0, 0,
3001 doc: /* Return the byteorder for the machine.
3002Returns 66 (ASCII uppercase B) for big endian machines or 108 (ASCII
3003lowercase l) for small endian machines. */)
3004 ()
3005{
3006 unsigned i = 0x04030201;
7a8560d7 3007 int order = *(char *)&i == 1 ? 108 : 66;
d4be0d31 3008
d2f14999 3009 return make_number (order);
d4be0d31
JD
3010}
3011
3012
7921925c
JB
3013\f
3014void
3015syms_of_data ()
3016{
6315e761
RS
3017 Lisp_Object error_tail, arith_tail;
3018
7921925c
JB
3019 Qquote = intern ("quote");
3020 Qlambda = intern ("lambda");
3021 Qsubr = intern ("subr");
3022 Qerror_conditions = intern ("error-conditions");
3023 Qerror_message = intern ("error-message");
3024 Qtop_level = intern ("top-level");
3025
3026 Qerror = intern ("error");
3027 Qquit = intern ("quit");
3028 Qwrong_type_argument = intern ("wrong-type-argument");
3029 Qargs_out_of_range = intern ("args-out-of-range");
3030 Qvoid_function = intern ("void-function");
ffd56f97 3031 Qcyclic_function_indirection = intern ("cyclic-function-indirection");
f35d5bad 3032 Qcyclic_variable_indirection = intern ("cyclic-variable-indirection");
7921925c
JB
3033 Qvoid_variable = intern ("void-variable");
3034 Qsetting_constant = intern ("setting-constant");
3035 Qinvalid_read_syntax = intern ("invalid-read-syntax");
3036
3037 Qinvalid_function = intern ("invalid-function");
3038 Qwrong_number_of_arguments = intern ("wrong-number-of-arguments");
3039 Qno_catch = intern ("no-catch");
3040 Qend_of_file = intern ("end-of-file");
3041 Qarith_error = intern ("arith-error");
3042 Qbeginning_of_buffer = intern ("beginning-of-buffer");
3043 Qend_of_buffer = intern ("end-of-buffer");
3044 Qbuffer_read_only = intern ("buffer-read-only");
8f9f49d7 3045 Qtext_read_only = intern ("text-read-only");
3b8819d6 3046 Qmark_inactive = intern ("mark-inactive");
7921925c
JB
3047
3048 Qlistp = intern ("listp");
3049 Qconsp = intern ("consp");
3050 Qsymbolp = intern ("symbolp");
cda9b832 3051 Qkeywordp = intern ("keywordp");
7921925c
JB
3052 Qintegerp = intern ("integerp");
3053 Qnatnump = intern ("natnump");
8e86942b 3054 Qwholenump = intern ("wholenump");
7921925c
JB
3055 Qstringp = intern ("stringp");
3056 Qarrayp = intern ("arrayp");
3057 Qsequencep = intern ("sequencep");
3058 Qbufferp = intern ("bufferp");
3059 Qvectorp = intern ("vectorp");
3060 Qchar_or_string_p = intern ("char-or-string-p");
3061 Qmarkerp = intern ("markerp");
07bd8472 3062 Qbuffer_or_string_p = intern ("buffer-or-string-p");
7921925c
JB
3063 Qinteger_or_marker_p = intern ("integer-or-marker-p");
3064 Qboundp = intern ("boundp");
3065 Qfboundp = intern ("fboundp");
3066
7921925c
JB
3067 Qfloatp = intern ("floatp");
3068 Qnumberp = intern ("numberp");
3069 Qnumber_or_marker_p = intern ("number-or-marker-p");
7921925c 3070
4d276982 3071 Qchar_table_p = intern ("char-table-p");
7f0edce7 3072 Qvector_or_char_table_p = intern ("vector-or-char-table-p");
4d276982 3073
6f0e897f
DL
3074 Qsubrp = intern ("subrp");
3075 Qunevalled = intern ("unevalled");
3076 Qmany = intern ("many");
3077
7921925c
JB
3078 Qcdr = intern ("cdr");
3079
f845f2c9 3080 /* Handle automatic advice activation */
ab297811 3081 Qad_advice_info = intern ("ad-advice-info");
c1307a23 3082 Qad_activate_internal = intern ("ad-activate-internal");
f845f2c9 3083
6315e761
RS
3084 error_tail = Fcons (Qerror, Qnil);
3085
7921925c
JB
3086 /* ERROR is used as a signaler for random errors for which nothing else is right */
3087
3088 Fput (Qerror, Qerror_conditions,
6315e761 3089 error_tail);
7921925c
JB
3090 Fput (Qerror, Qerror_message,
3091 build_string ("error"));
3092
3093 Fput (Qquit, Qerror_conditions,
3094 Fcons (Qquit, Qnil));
3095 Fput (Qquit, Qerror_message,
3096 build_string ("Quit"));
3097
3098 Fput (Qwrong_type_argument, Qerror_conditions,
6315e761 3099 Fcons (Qwrong_type_argument, error_tail));
7921925c
JB
3100 Fput (Qwrong_type_argument, Qerror_message,
3101 build_string ("Wrong type argument"));
3102
3103 Fput (Qargs_out_of_range, Qerror_conditions,
6315e761 3104 Fcons (Qargs_out_of_range, error_tail));
7921925c
JB
3105 Fput (Qargs_out_of_range, Qerror_message,
3106 build_string ("Args out of range"));
3107
3108 Fput (Qvoid_function, Qerror_conditions,
6315e761 3109 Fcons (Qvoid_function, error_tail));
7921925c
JB
3110 Fput (Qvoid_function, Qerror_message,
3111 build_string ("Symbol's function definition is void"));
3112
ffd56f97 3113 Fput (Qcyclic_function_indirection, Qerror_conditions,
6315e761 3114 Fcons (Qcyclic_function_indirection, error_tail));
ffd56f97
JB
3115 Fput (Qcyclic_function_indirection, Qerror_message,
3116 build_string ("Symbol's chain of function indirections contains a loop"));
3117
f35d5bad
GM
3118 Fput (Qcyclic_variable_indirection, Qerror_conditions,
3119 Fcons (Qcyclic_variable_indirection, error_tail));
3120 Fput (Qcyclic_variable_indirection, Qerror_message,
3121 build_string ("Symbol's chain of variable indirections contains a loop"));
3122
13d95cc0
GM
3123 Qcircular_list = intern ("circular-list");
3124 staticpro (&Qcircular_list);
3125 Fput (Qcircular_list, Qerror_conditions,
3126 Fcons (Qcircular_list, error_tail));
3127 Fput (Qcircular_list, Qerror_message,
3128 build_string ("List contains a loop"));
3129
7921925c 3130 Fput (Qvoid_variable, Qerror_conditions,
6315e761 3131 Fcons (Qvoid_variable, error_tail));
7921925c
JB
3132 Fput (Qvoid_variable, Qerror_message,
3133 build_string ("Symbol's value as variable is void"));
3134
3135 Fput (Qsetting_constant, Qerror_conditions,
6315e761 3136 Fcons (Qsetting_constant, error_tail));
7921925c
JB
3137 Fput (Qsetting_constant, Qerror_message,
3138 build_string ("Attempt to set a constant symbol"));
3139
3140 Fput (Qinvalid_read_syntax, Qerror_conditions,
6315e761 3141 Fcons (Qinvalid_read_syntax, error_tail));
7921925c
JB
3142 Fput (Qinvalid_read_syntax, Qerror_message,
3143 build_string ("Invalid read syntax"));
3144
3145 Fput (Qinvalid_function, Qerror_conditions,
6315e761 3146 Fcons (Qinvalid_function, error_tail));
7921925c
JB
3147 Fput (Qinvalid_function, Qerror_message,
3148 build_string ("Invalid function"));
3149
3150 Fput (Qwrong_number_of_arguments, Qerror_conditions,
6315e761 3151 Fcons (Qwrong_number_of_arguments, error_tail));
7921925c
JB
3152 Fput (Qwrong_number_of_arguments, Qerror_message,
3153 build_string ("Wrong number of arguments"));
3154
3155 Fput (Qno_catch, Qerror_conditions,
6315e761 3156 Fcons (Qno_catch, error_tail));
7921925c
JB
3157 Fput (Qno_catch, Qerror_message,
3158 build_string ("No catch for tag"));
3159
3160 Fput (Qend_of_file, Qerror_conditions,
6315e761 3161 Fcons (Qend_of_file, error_tail));
7921925c
JB
3162 Fput (Qend_of_file, Qerror_message,
3163 build_string ("End of file during parsing"));
3164
6315e761 3165 arith_tail = Fcons (Qarith_error, error_tail);
7921925c 3166 Fput (Qarith_error, Qerror_conditions,
6315e761 3167 arith_tail);
7921925c
JB
3168 Fput (Qarith_error, Qerror_message,
3169 build_string ("Arithmetic error"));
3170
3171 Fput (Qbeginning_of_buffer, Qerror_conditions,
6315e761 3172 Fcons (Qbeginning_of_buffer, error_tail));
7921925c
JB
3173 Fput (Qbeginning_of_buffer, Qerror_message,
3174 build_string ("Beginning of buffer"));
3175
3176 Fput (Qend_of_buffer, Qerror_conditions,
6315e761 3177 Fcons (Qend_of_buffer, error_tail));
7921925c
JB
3178 Fput (Qend_of_buffer, Qerror_message,
3179 build_string ("End of buffer"));
3180
3181 Fput (Qbuffer_read_only, Qerror_conditions,
6315e761 3182 Fcons (Qbuffer_read_only, error_tail));
7921925c
JB
3183 Fput (Qbuffer_read_only, Qerror_message,
3184 build_string ("Buffer is read-only"));
3185
8f9f49d7
GM
3186 Fput (Qtext_read_only, Qerror_conditions,
3187 Fcons (Qtext_read_only, error_tail));
3188 Fput (Qtext_read_only, Qerror_message,
3189 build_string ("Text is read-only"));
3190
6315e761
RS
3191 Qrange_error = intern ("range-error");
3192 Qdomain_error = intern ("domain-error");
3193 Qsingularity_error = intern ("singularity-error");
3194 Qoverflow_error = intern ("overflow-error");
3195 Qunderflow_error = intern ("underflow-error");
3196
3197 Fput (Qdomain_error, Qerror_conditions,
3198 Fcons (Qdomain_error, arith_tail));
3199 Fput (Qdomain_error, Qerror_message,
3200 build_string ("Arithmetic domain error"));
3201
3202 Fput (Qrange_error, Qerror_conditions,
3203 Fcons (Qrange_error, arith_tail));
3204 Fput (Qrange_error, Qerror_message,
3205 build_string ("Arithmetic range error"));
3206
3207 Fput (Qsingularity_error, Qerror_conditions,
3208 Fcons (Qsingularity_error, Fcons (Qdomain_error, arith_tail)));
3209 Fput (Qsingularity_error, Qerror_message,
3210 build_string ("Arithmetic singularity error"));
3211
3212 Fput (Qoverflow_error, Qerror_conditions,
3213 Fcons (Qoverflow_error, Fcons (Qdomain_error, arith_tail)));
3214 Fput (Qoverflow_error, Qerror_message,
3215 build_string ("Arithmetic overflow error"));
3216
3217 Fput (Qunderflow_error, Qerror_conditions,
3218 Fcons (Qunderflow_error, Fcons (Qdomain_error, arith_tail)));
3219 Fput (Qunderflow_error, Qerror_message,
3220 build_string ("Arithmetic underflow error"));
3221
3222 staticpro (&Qrange_error);
3223 staticpro (&Qdomain_error);
3224 staticpro (&Qsingularity_error);
3225 staticpro (&Qoverflow_error);
3226 staticpro (&Qunderflow_error);
6315e761 3227
7921925c
JB
3228 staticpro (&Qnil);
3229 staticpro (&Qt);
3230 staticpro (&Qquote);
3231 staticpro (&Qlambda);
3232 staticpro (&Qsubr);
3233 staticpro (&Qunbound);
3234 staticpro (&Qerror_conditions);
3235 staticpro (&Qerror_message);
3236 staticpro (&Qtop_level);
3237
3238 staticpro (&Qerror);
3239 staticpro (&Qquit);
3240 staticpro (&Qwrong_type_argument);
3241 staticpro (&Qargs_out_of_range);
3242 staticpro (&Qvoid_function);
ffd56f97 3243 staticpro (&Qcyclic_function_indirection);
dfad0b34 3244 staticpro (&Qcyclic_variable_indirection);
7921925c
JB
3245 staticpro (&Qvoid_variable);
3246 staticpro (&Qsetting_constant);
3247 staticpro (&Qinvalid_read_syntax);
3248 staticpro (&Qwrong_number_of_arguments);
3249 staticpro (&Qinvalid_function);
3250 staticpro (&Qno_catch);
3251 staticpro (&Qend_of_file);
3252 staticpro (&Qarith_error);
3253 staticpro (&Qbeginning_of_buffer);
3254 staticpro (&Qend_of_buffer);
3255 staticpro (&Qbuffer_read_only);
8f9f49d7 3256 staticpro (&Qtext_read_only);
638b77e6 3257 staticpro (&Qmark_inactive);
7921925c
JB
3258
3259 staticpro (&Qlistp);
3260 staticpro (&Qconsp);
3261 staticpro (&Qsymbolp);
cda9b832 3262 staticpro (&Qkeywordp);
7921925c
JB
3263 staticpro (&Qintegerp);
3264 staticpro (&Qnatnump);
8e86942b 3265 staticpro (&Qwholenump);
7921925c
JB
3266 staticpro (&Qstringp);
3267 staticpro (&Qarrayp);
3268 staticpro (&Qsequencep);
3269 staticpro (&Qbufferp);
3270 staticpro (&Qvectorp);
3271 staticpro (&Qchar_or_string_p);
3272 staticpro (&Qmarkerp);
07bd8472 3273 staticpro (&Qbuffer_or_string_p);
7921925c 3274 staticpro (&Qinteger_or_marker_p);
7921925c 3275 staticpro (&Qfloatp);
464f8898
RS
3276 staticpro (&Qnumberp);
3277 staticpro (&Qnumber_or_marker_p);
4d276982 3278 staticpro (&Qchar_table_p);
7f0edce7 3279 staticpro (&Qvector_or_char_table_p);
6f0e897f
DL
3280 staticpro (&Qsubrp);
3281 staticpro (&Qmany);
3282 staticpro (&Qunevalled);
7921925c
JB
3283
3284 staticpro (&Qboundp);
3285 staticpro (&Qfboundp);
3286 staticpro (&Qcdr);
ab297811 3287 staticpro (&Qad_advice_info);
c1307a23 3288 staticpro (&Qad_activate_internal);
7921925c 3289
39bcc759
RS
3290 /* Types that type-of returns. */
3291 Qinteger = intern ("integer");
3292 Qsymbol = intern ("symbol");
3293 Qstring = intern ("string");
3294 Qcons = intern ("cons");
3295 Qmarker = intern ("marker");
3296 Qoverlay = intern ("overlay");
3297 Qfloat = intern ("float");
3298 Qwindow_configuration = intern ("window-configuration");
3299 Qprocess = intern ("process");
3300 Qwindow = intern ("window");
3301 /* Qsubr = intern ("subr"); */
3302 Qcompiled_function = intern ("compiled-function");
3303 Qbuffer = intern ("buffer");
3304 Qframe = intern ("frame");
3305 Qvector = intern ("vector");
fc67d5be
KH
3306 Qchar_table = intern ("char-table");
3307 Qbool_vector = intern ("bool-vector");
81dc5de5 3308 Qhash_table = intern ("hash-table");
39bcc759
RS
3309
3310 staticpro (&Qinteger);
3311 staticpro (&Qsymbol);
3312 staticpro (&Qstring);
3313 staticpro (&Qcons);
3314 staticpro (&Qmarker);
3315 staticpro (&Qoverlay);
3316 staticpro (&Qfloat);
3317 staticpro (&Qwindow_configuration);
3318 staticpro (&Qprocess);
3319 staticpro (&Qwindow);
3320 /* staticpro (&Qsubr); */
3321 staticpro (&Qcompiled_function);
3322 staticpro (&Qbuffer);
3323 staticpro (&Qframe);
3324 staticpro (&Qvector);
fc67d5be
KH
3325 staticpro (&Qchar_table);
3326 staticpro (&Qbool_vector);
81dc5de5 3327 staticpro (&Qhash_table);
39bcc759 3328
f35d5bad 3329 defsubr (&Sindirect_variable);
f52a3ca3 3330 defsubr (&Sinteractive_form);
7921925c
JB
3331 defsubr (&Seq);
3332 defsubr (&Snull);
39bcc759 3333 defsubr (&Stype_of);
7921925c
JB
3334 defsubr (&Slistp);
3335 defsubr (&Snlistp);
3336 defsubr (&Sconsp);
3337 defsubr (&Satom);
3338 defsubr (&Sintegerp);
464f8898 3339 defsubr (&Sinteger_or_marker_p);
7921925c
JB
3340 defsubr (&Snumberp);
3341 defsubr (&Snumber_or_marker_p);
464f8898 3342 defsubr (&Sfloatp);
7921925c
JB
3343 defsubr (&Snatnump);
3344 defsubr (&Ssymbolp);
cda9b832 3345 defsubr (&Skeywordp);
7921925c 3346 defsubr (&Sstringp);
0f56470d 3347 defsubr (&Smultibyte_string_p);
7921925c 3348 defsubr (&Svectorp);
4d276982 3349 defsubr (&Schar_table_p);
7f0edce7 3350 defsubr (&Svector_or_char_table_p);
4d276982 3351 defsubr (&Sbool_vector_p);
7921925c
JB
3352 defsubr (&Sarrayp);
3353 defsubr (&Ssequencep);
3354 defsubr (&Sbufferp);
3355 defsubr (&Smarkerp);
7921925c 3356 defsubr (&Ssubrp);
dbc4e1c1 3357 defsubr (&Sbyte_code_function_p);
7921925c
JB
3358 defsubr (&Schar_or_string_p);
3359 defsubr (&Scar);
3360 defsubr (&Scdr);
3361 defsubr (&Scar_safe);
3362 defsubr (&Scdr_safe);
3363 defsubr (&Ssetcar);
3364 defsubr (&Ssetcdr);
3365 defsubr (&Ssymbol_function);
ffd56f97 3366 defsubr (&Sindirect_function);
7921925c
JB
3367 defsubr (&Ssymbol_plist);
3368 defsubr (&Ssymbol_name);
3369 defsubr (&Smakunbound);
3370 defsubr (&Sfmakunbound);
3371 defsubr (&Sboundp);
3372 defsubr (&Sfboundp);
3373 defsubr (&Sfset);
80df38a2 3374 defsubr (&Sdefalias);
7921925c
JB
3375 defsubr (&Ssetplist);
3376 defsubr (&Ssymbol_value);
3377 defsubr (&Sset);
3378 defsubr (&Sdefault_boundp);
3379 defsubr (&Sdefault_value);
3380 defsubr (&Sset_default);
3381 defsubr (&Ssetq_default);
3382 defsubr (&Smake_variable_buffer_local);
3383 defsubr (&Smake_local_variable);
3384 defsubr (&Skill_local_variable);
b0c2d1c6 3385 defsubr (&Smake_variable_frame_local);
62476adc 3386 defsubr (&Slocal_variable_p);
f4f04cee 3387 defsubr (&Slocal_variable_if_set_p);
0a2546d4 3388 defsubr (&Svariable_binding_locus);
c40bb1ba 3389#if 0 /* XXX Remove this. --lorentey */
2a42d440
KL
3390 defsubr (&Sterminal_local_value);
3391 defsubr (&Sset_terminal_local_value);
c40bb1ba 3392#endif
7921925c
JB
3393 defsubr (&Saref);
3394 defsubr (&Saset);
f2980264 3395 defsubr (&Snumber_to_string);
25e40a4b 3396 defsubr (&Sstring_to_number);
7921925c
JB
3397 defsubr (&Seqlsign);
3398 defsubr (&Slss);
3399 defsubr (&Sgtr);
3400 defsubr (&Sleq);
3401 defsubr (&Sgeq);
3402 defsubr (&Sneq);
3403 defsubr (&Szerop);
3404 defsubr (&Splus);
3405 defsubr (&Sminus);
3406 defsubr (&Stimes);
3407 defsubr (&Squo);
3408 defsubr (&Srem);
44fa9da5 3409 defsubr (&Smod);
7921925c
JB
3410 defsubr (&Smax);
3411 defsubr (&Smin);
3412 defsubr (&Slogand);
3413 defsubr (&Slogior);
3414 defsubr (&Slogxor);
3415 defsubr (&Slsh);
3416 defsubr (&Sash);
3417 defsubr (&Sadd1);
3418 defsubr (&Ssub1);
3419 defsubr (&Slognot);
d4be0d31 3420 defsubr (&Sbyteorder);
6f0e897f 3421 defsubr (&Ssubr_arity);
0fddae66 3422 defsubr (&Ssubr_name);
8e86942b 3423
c80bd143 3424 XSYMBOL (Qwholenump)->function = XSYMBOL (Qnatnump)->function;
e6190b11 3425
9d113d9d
AS
3426 DEFVAR_LISP ("most-positive-fixnum", &Vmost_positive_fixnum,
3427 doc: /* The largest value that is representable in a Lisp integer. */);
3428 Vmost_positive_fixnum = make_number (MOST_POSITIVE_FIXNUM);
bfb96cb7 3429
9d113d9d
AS
3430 DEFVAR_LISP ("most-negative-fixnum", &Vmost_negative_fixnum,
3431 doc: /* The smallest value that is representable in a Lisp integer. */);
3432 Vmost_negative_fixnum = make_number (MOST_NEGATIVE_FIXNUM);
7921925c
JB
3433}
3434
a33ef3ab 3435SIGTYPE
7921925c
JB
3436arith_error (signo)
3437 int signo;
3438{
fe42a920 3439#if defined(USG) && !defined(POSIX_SIGNALS)
7921925c
JB
3440 /* USG systems forget handlers when they are used;
3441 must reestablish each time */
3442 signal (signo, arith_error);
3443#endif /* USG */
3444#ifdef VMS
3445 /* VMS systems are like USG. */
3446 signal (signo, arith_error);
3447#endif /* VMS */
3448#ifdef BSD4_1
3449 sigrelse (SIGFPE);
3450#else /* not BSD4_1 */
e065a56e 3451 sigsetmask (SIGEMPTYMASK);
7921925c
JB
3452#endif /* not BSD4_1 */
3453
333f1b6f 3454 SIGNAL_THREAD_CHECK (signo);
740ef0b5 3455 xsignal0 (Qarith_error);
7921925c
JB
3456}
3457
dfcf069d 3458void
7921925c
JB
3459init_data ()
3460{
3461 /* Don't do this if just dumping out.
3462 We don't want to call `signal' in this case
3463 so that we don't have trouble with dumping
3464 signal-delivering routines in an inconsistent state. */
3465#ifndef CANNOT_DUMP
3466 if (!initialized)
3467 return;
3468#endif /* CANNOT_DUMP */
3469 signal (SIGFPE, arith_error);
7403b5c8 3470
7921925c
JB
3471#ifdef uts
3472 signal (SIGEMT, arith_error);
3473#endif /* uts */
3474}
ab5796a9
MB
3475
3476/* arch-tag: 25879798-b84d-479a-9c89-7d148e2109f7
3477 (do not change this comment) */