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