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