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