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