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