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