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