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