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