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