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