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