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