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