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