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