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