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