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