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