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