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