home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-dist / emacs-19.28-src.tgz / tar.out / fsf / emacs / src / data.c < prev    next >
C/C++ Source or Header  |  1996-09-28  |  66KB  |  2,384 lines

  1. /* Primitive operations on Lisp data types for GNU Emacs Lisp interpreter.
  2.    Copyright (C) 1985, 1986, 1988, 1993, 1994 Free Software Foundation, Inc.
  3.  
  4. This file is part of GNU Emacs.
  5.  
  6. GNU Emacs is free software; you can redistribute it and/or modify
  7. it under the terms of the GNU General Public License as published by
  8. the Free Software Foundation; either version 1, or (at your option)
  9. any later version.
  10.  
  11. GNU Emacs is distributed in the hope that it will be useful,
  12. but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14. GNU General Public License for more details.
  15.  
  16. You should have received a copy of the GNU General Public License
  17. along with GNU Emacs; see the file COPYING.  If not, write to
  18. the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.  */
  19.  
  20.  
  21. #include <signal.h>
  22.  
  23. #include <config.h>
  24. #include "lisp.h"
  25. #include "puresize.h"
  26.  
  27. #ifndef standalone
  28. #include "buffer.h"
  29. #endif
  30.  
  31. #include "syssignal.h"
  32.  
  33. #ifdef MSDOS
  34. /* These are redefined (correctly, but differently) in values.h.  */
  35. #undef INTBITS
  36. #undef LONGBITS
  37. #undef SHORTBITS
  38. #endif
  39.  
  40. #ifdef LISP_FLOAT_TYPE
  41.  
  42. #ifdef STDC_HEADERS
  43. #ifdef AMIGA /* CHFIXME */
  44. #undef abort
  45. #endif
  46. #include <stdlib.h>
  47. #endif
  48.  
  49. /* Work around a problem that happens because math.h on hpux 7
  50.    defines two static variables--which, in Emacs, are not really static,
  51.    because `static' is defined as nothing.  The problem is that they are
  52.    here, in floatfns.c, and in lread.c.
  53.    These macros prevent the name conflict.  */
  54. #if defined (HPUX) && !defined (HPUX8)
  55. #define _MAXLDBL data_c_maxldbl
  56. #define _NMAXLDBL data_c_nmaxldbl
  57. #endif
  58.  
  59. #include <math.h>
  60. #endif /* LISP_FLOAT_TYPE */
  61.  
  62. #if !defined (atof)
  63. extern double atof ();
  64. #endif /* !atof */
  65.  
  66. Lisp_Object Qnil, Qt, Qquote, Qlambda, Qsubr, Qunbound;
  67. Lisp_Object Qerror_conditions, Qerror_message, Qtop_level;
  68. Lisp_Object Qerror, Qquit, Qwrong_type_argument, Qargs_out_of_range;
  69. Lisp_Object Qvoid_variable, Qvoid_function, Qcyclic_function_indirection;
  70. Lisp_Object Qsetting_constant, Qinvalid_read_syntax;
  71. Lisp_Object Qinvalid_function, Qwrong_number_of_arguments, Qno_catch;
  72. Lisp_Object Qend_of_file, Qarith_error, Qmark_inactive;
  73. Lisp_Object Qbeginning_of_buffer, Qend_of_buffer, Qbuffer_read_only;
  74. Lisp_Object Qintegerp, Qnatnump, Qwholenump, Qsymbolp, Qlistp, Qconsp;
  75. Lisp_Object Qstringp, Qarrayp, Qsequencep, Qbufferp;
  76. Lisp_Object Qchar_or_string_p, Qmarkerp, Qinteger_or_marker_p, Qvectorp;
  77. Lisp_Object Qbuffer_or_string_p;
  78. Lisp_Object Qboundp, Qfboundp;
  79. Lisp_Object Qcdr;
  80. Lisp_Object Qad_advice_info, Qad_activate;
  81.  
  82. Lisp_Object Qrange_error, Qdomain_error, Qsingularity_error;
  83. Lisp_Object Qoverflow_error, Qunderflow_error;
  84.  
  85. #ifdef LISP_FLOAT_TYPE
  86. Lisp_Object Qfloatp;
  87. Lisp_Object Qnumberp, Qnumber_or_marker_p;
  88. #endif
  89.  
  90. static Lisp_Object swap_in_symval_forwarding ();
  91.  
  92. Lisp_Object
  93. wrong_type_argument (predicate, value)
  94.      register Lisp_Object predicate, value;
  95. {
  96.   register Lisp_Object tem;
  97.   do
  98.     {
  99.       if (!EQ (Vmocklisp_arguments, Qt))
  100.     {
  101.      if (XTYPE (value) == Lisp_String &&
  102.          (EQ (predicate, Qintegerp) || EQ (predicate, Qinteger_or_marker_p)))
  103.        return Fstring_to_number (value);
  104.      if (XTYPE (value) == Lisp_Int && EQ (predicate, Qstringp))
  105.        return Fnumber_to_string (value);
  106.     }
  107.       value = Fsignal (Qwrong_type_argument, Fcons (predicate, Fcons (value, Qnil)));
  108.       tem = call1 (predicate, value);
  109.     }
  110.   while (NILP (tem));
  111.   return value;
  112. }
  113.  
  114. pure_write_error ()
  115. {
  116.   error ("Attempt to modify read-only object");
  117. }
  118.  
  119. void
  120. args_out_of_range (a1, a2)
  121.      Lisp_Object a1, a2;
  122. {
  123.   while (1)
  124.     Fsignal (Qargs_out_of_range, Fcons (a1, Fcons (a2, Qnil)));
  125. }
  126.  
  127. void
  128. args_out_of_range_3 (a1, a2, a3)
  129.      Lisp_Object a1, a2, a3;
  130. {
  131.   while (1)
  132.     Fsignal (Qargs_out_of_range, Fcons (a1, Fcons (a2, Fcons (a3, Qnil))));
  133. }
  134.  
  135. Lisp_Object
  136. make_number (num)
  137.      int num;
  138. {
  139.   register Lisp_Object val;
  140.   XSET (val, Lisp_Int, num);
  141.   return val;
  142. }
  143.  
  144. /* On some machines, XINT needs a temporary location.
  145.    Here it is, in case it is needed.  */
  146.  
  147. int sign_extend_temp;
  148.  
  149. /* On a few machines, XINT can only be done by calling this.  */
  150.  
  151. int
  152. sign_extend_lisp_int (num)
  153.      int num;
  154. {
  155.   if (num & (1 << (VALBITS - 1)))
  156.     return num | ((-1) << VALBITS);
  157.   else
  158.     return num & ((1 << VALBITS) - 1);
  159. }
  160.  
  161. /* Data type predicates */
  162.  
  163. DEFUN ("eq", Feq, Seq, 2, 2, 0,
  164.   "T if the two args are the same Lisp object.")
  165.   (obj1, obj2)
  166.      Lisp_Object obj1, obj2;
  167. {
  168.   if (EQ (obj1, obj2))
  169.     return Qt;
  170.   return Qnil;
  171. }
  172.  
  173. DEFUN ("null", Fnull, Snull, 1, 1, 0, "T if OBJECT is nil.")
  174.   (obj)
  175.      Lisp_Object obj;
  176. {
  177.   if (NILP (obj))
  178.     return Qt;
  179.   return Qnil;
  180. }
  181.  
  182. DEFUN ("consp", Fconsp, Sconsp, 1, 1, 0, "T if OBJECT is a cons cell.")
  183.   (obj)
  184.      Lisp_Object obj;
  185. {
  186.   if (XTYPE (obj) == Lisp_Cons)
  187.     return Qt;
  188.   return Qnil;
  189. }
  190.  
  191. DEFUN ("atom", Fatom, Satom, 1, 1, 0, "T if OBJECT is not a cons cell.  This includes nil.")
  192.   (obj)
  193.      Lisp_Object obj;
  194. {
  195.   if (XTYPE (obj) == Lisp_Cons)
  196.     return Qnil;
  197.   return Qt;
  198. }
  199.  
  200. DEFUN ("listp", Flistp, Slistp, 1, 1, 0, "T if OBJECT is a list.  This includes nil.")
  201.   (obj)
  202.      Lisp_Object obj;
  203. {
  204.   if (XTYPE (obj) == Lisp_Cons || NILP (obj))
  205.     return Qt;
  206.   return Qnil;
  207. }
  208.  
  209. DEFUN ("nlistp", Fnlistp, Snlistp, 1, 1, 0, "T if OBJECT is not a list.  Lists include nil.")
  210.   (obj)
  211.      Lisp_Object obj;
  212. {
  213.   if (XTYPE (obj) == Lisp_Cons || NILP (obj))
  214.     return Qnil;
  215.   return Qt;
  216. }
  217.  
  218. DEFUN ("symbolp", Fsymbolp, Ssymbolp, 1, 1, 0, "T if OBJECT is a symbol.")
  219.   (obj)
  220.      Lisp_Object obj;
  221. {
  222.   if (XTYPE (obj) == Lisp_Symbol)
  223.     return Qt;
  224.   return Qnil;
  225. }
  226.  
  227. DEFUN ("vectorp", Fvectorp, Svectorp, 1, 1, 0, "T if OBJECT is a vector.")
  228.   (obj)
  229.      Lisp_Object obj;
  230. {
  231.   if (XTYPE (obj) == Lisp_Vector)
  232.     return Qt;
  233.   return Qnil;
  234. }
  235.  
  236. DEFUN ("stringp", Fstringp, Sstringp, 1, 1, 0, "T if OBJECT is a string.")
  237.   (obj)
  238.      Lisp_Object obj;
  239. {
  240.   if (XTYPE (obj) == Lisp_String)
  241.     return Qt;
  242.   return Qnil;
  243. }
  244.  
  245. DEFUN ("arrayp", Farrayp, Sarrayp, 1, 1, 0, "T if OBJECT is an array (string or vector).")
  246.   (obj)
  247.      Lisp_Object obj;
  248. {
  249.   if (XTYPE (obj) == Lisp_Vector || XTYPE (obj) == Lisp_String)
  250.     return Qt;
  251.   return Qnil;
  252. }
  253.  
  254. DEFUN ("sequencep", Fsequencep, Ssequencep, 1, 1, 0,
  255.   "T if OBJECT is a sequence (list or array).")
  256.   (obj)
  257.      register Lisp_Object obj;
  258. {
  259.   if (CONSP (obj) || NILP (obj) ||
  260.       XTYPE (obj) == Lisp_Vector || XTYPE (obj) == Lisp_String)
  261.     return Qt;
  262.   return Qnil;
  263. }
  264.  
  265. DEFUN ("bufferp", Fbufferp, Sbufferp, 1, 1, 0, "T if OBJECT is an editor buffer.")
  266.   (obj)
  267.      Lisp_Object obj;
  268. {
  269.   if (XTYPE (obj) == Lisp_Buffer)
  270.     return Qt;
  271.   return Qnil;
  272. }
  273.  
  274. DEFUN ("markerp", Fmarkerp, Smarkerp, 1, 1, 0, "T if OBJECT is a marker (editor pointer).")
  275.   (obj)
  276.      Lisp_Object obj;
  277. {
  278.   if (XTYPE (obj) == Lisp_Marker)
  279.     return Qt;
  280.   return Qnil;
  281. }
  282.  
  283. DEFUN ("subrp", Fsubrp, Ssubrp, 1, 1, 0, "T if OBJECT is a built-in function.")
  284.   (obj)
  285.      Lisp_Object obj;
  286. {
  287.   if (XTYPE (obj) == Lisp_Subr)
  288.     return Qt;
  289.   return Qnil;
  290. }
  291.  
  292. DEFUN ("byte-code-function-p", Fbyte_code_function_p, Sbyte_code_function_p,
  293.        1, 1, 0, "T if OBJECT is a byte-compiled function object.")
  294.   (obj)
  295.      Lisp_Object obj;
  296. {
  297.   if (XTYPE (obj) == Lisp_Compiled)
  298.     return Qt;
  299.   return Qnil;
  300. }
  301.  
  302. DEFUN ("char-or-string-p", Fchar_or_string_p, Schar_or_string_p, 1, 1, 0,
  303.   "T if OBJECT is a character (an integer) or a string.")
  304.   (obj)
  305.      register Lisp_Object obj;
  306. {
  307.   if (XTYPE (obj) == Lisp_Int || XTYPE (obj) == Lisp_String)
  308.     return Qt;
  309.   return Qnil;
  310. }
  311.  
  312. DEFUN ("integerp", Fintegerp, Sintegerp, 1, 1, 0, "T if OBJECT is an integer.")
  313.   (obj)
  314.      Lisp_Object obj;
  315. {
  316.   if (XTYPE (obj) == Lisp_Int)
  317.     return Qt;
  318.   return Qnil;
  319. }
  320.  
  321. DEFUN ("integer-or-marker-p", Finteger_or_marker_p, Sinteger_or_marker_p, 1, 1, 0,
  322.   "T if OBJECT is an integer or a marker (editor pointer).")
  323.   (obj)
  324.      register Lisp_Object obj;
  325. {
  326.   if (XTYPE (obj) == Lisp_Marker || XTYPE (obj) == Lisp_Int)
  327.     return Qt;
  328.   return Qnil;
  329. }
  330.  
  331. DEFUN ("natnump", Fnatnump, Snatnump, 1, 1, 0,
  332.   "T if OBJECT is a nonnegative integer.")
  333.   (obj)
  334.      Lisp_Object obj;
  335. {
  336.   if (XTYPE (obj) == Lisp_Int && XINT (obj) >= 0)
  337.     return Qt;
  338.   return Qnil;
  339. }
  340.  
  341. DEFUN ("numberp", Fnumberp, Snumberp, 1, 1, 0,
  342.        "T if OBJECT is a number (floating point or integer).")
  343.   (obj)
  344.      Lisp_Object obj;
  345. {
  346.   if (NUMBERP (obj))
  347.     return Qt;
  348.   else
  349.     return Qnil;
  350. }
  351.  
  352. DEFUN ("number-or-marker-p", Fnumber_or_marker_p,
  353.        Snumber_or_marker_p, 1, 1, 0,
  354.        "T if OBJECT is a number or a marker.")
  355.   (obj)
  356.      Lisp_Object obj;
  357. {
  358.   if (NUMBERP (obj)
  359.       || XTYPE (obj) == Lisp_Marker)
  360.     return Qt;
  361.   return Qnil;
  362. }
  363.  
  364. #ifdef LISP_FLOAT_TYPE
  365. DEFUN ("floatp", Ffloatp, Sfloatp, 1, 1, 0,
  366.        "T if OBJECT is a floating point number.")
  367.   (obj)
  368.      Lisp_Object obj;
  369. {
  370.   if (XTYPE (obj) == Lisp_Float)
  371.     return Qt;
  372.   return Qnil;
  373. }
  374. #endif /* LISP_FLOAT_TYPE */
  375.  
  376. /* Extract and set components of lists */
  377.  
  378. DEFUN ("car", Fcar, Scar, 1, 1, 0,
  379.   "Return the car of CONSCELL.  If arg is nil, return nil.\n\
  380. Error if arg is not nil and not a cons cell.  See also `car-safe'.")
  381.   (list)
  382.      register Lisp_Object list;
  383. {
  384.   while (1)
  385.     {
  386.       if (XTYPE (list) == Lisp_Cons)
  387.     return XCONS (list)->car;
  388.       else if (EQ (list, Qnil))
  389.     return Qnil;
  390.       else
  391.     list = wrong_type_argument (Qlistp, list);
  392.     }
  393. }
  394.  
  395. DEFUN ("car-safe", Fcar_safe, Scar_safe, 1, 1, 0,
  396.   "Return the car of OBJECT if it is a cons cell, or else nil.")
  397.   (object)
  398.      Lisp_Object object;
  399. {
  400.   if (XTYPE (object) == Lisp_Cons)
  401.     return XCONS (object)->car;
  402.   else
  403.     return Qnil;
  404. }
  405.  
  406. DEFUN ("cdr", Fcdr, Scdr, 1, 1, 0,
  407.   "Return the cdr of CONSCELL.  If arg is nil, return nil.\n\
  408. Error if arg is not nil and not a cons cell.  See also `cdr-safe'.")
  409.  
  410.   (list)
  411.      register Lisp_Object list;
  412. {
  413.   while (1)
  414.     {
  415.       if (XTYPE (list) == Lisp_Cons)
  416.     return XCONS (list)->cdr;
  417.       else if (EQ (list, Qnil))
  418.     return Qnil;
  419.       else
  420.     list = wrong_type_argument (Qlistp, list);
  421.     }
  422. }
  423.  
  424. DEFUN ("cdr-safe", Fcdr_safe, Scdr_safe, 1, 1, 0,
  425.   "Return the cdr of OBJECT if it is a cons cell, or else  nil.")
  426.   (object)
  427.      Lisp_Object object;
  428. {
  429.   if (XTYPE (object) == Lisp_Cons)
  430.     return XCONS (object)->cdr;
  431.   else
  432.     return Qnil;
  433. }
  434.  
  435. DEFUN ("setcar", Fsetcar, Ssetcar, 2, 2, 0,
  436.   "Set the car of CONSCELL to be NEWCAR.  Returns NEWCAR.")
  437.   (cell, newcar)
  438.      register Lisp_Object cell, newcar;
  439. {
  440.   if (XTYPE (cell) != Lisp_Cons)
  441.     cell = wrong_type_argument (Qconsp, cell);
  442.  
  443.   CHECK_IMPURE (cell);
  444.   XCONS (cell)->car = newcar;
  445.   return newcar;
  446. }
  447.  
  448. DEFUN ("setcdr", Fsetcdr, Ssetcdr, 2, 2, 0,
  449.   "Set the cdr of CONSCELL to be NEWCDR.  Returns NEWCDR.")
  450.   (cell, newcdr)
  451.      register Lisp_Object cell, newcdr;
  452. {
  453.   if (XTYPE (cell) != Lisp_Cons)
  454.     cell = wrong_type_argument (Qconsp, cell);
  455.  
  456.   CHECK_IMPURE (cell);
  457.   XCONS (cell)->cdr = newcdr;
  458.   return newcdr;
  459. }
  460.  
  461. /* Extract and set components of symbols */
  462.  
  463. DEFUN ("boundp", Fboundp, Sboundp, 1, 1, 0, "T if SYMBOL's value is not void.")
  464.   (sym)
  465.      register Lisp_Object sym;
  466. {
  467.   Lisp_Object valcontents;
  468.   CHECK_SYMBOL (sym, 0);
  469.  
  470.   valcontents = XSYMBOL (sym)->value;
  471.  
  472. #ifdef SWITCH_ENUM_BUG
  473.   switch ((int) XTYPE (valcontents))
  474. #else
  475.   switch (XTYPE (valcontents))
  476. #endif
  477.     {
  478.     case Lisp_Buffer_Local_Value:
  479.     case Lisp_Some_Buffer_Local_Value:
  480.       valcontents = swap_in_symval_forwarding (sym, valcontents);
  481.     }
  482.  
  483.   return (XTYPE (valcontents) == Lisp_Void || EQ (valcontents, Qunbound)
  484.       ? Qnil : Qt);
  485. }
  486.  
  487. DEFUN ("fboundp", Ffboundp, Sfboundp, 1, 1, 0, "T if SYMBOL's function definition is not void.")
  488.   (sym)
  489.      register Lisp_Object sym;
  490. {
  491.   CHECK_SYMBOL (sym, 0);
  492.   return (XTYPE (XSYMBOL (sym)->function) == Lisp_Void
  493.       || EQ (XSYMBOL (sym)->function, Qunbound))
  494.      ? Qnil : Qt;
  495. }
  496.  
  497. DEFUN ("makunbound", Fmakunbound, Smakunbound, 1, 1, 0, "Make SYMBOL's value be void.")
  498.   (sym)
  499.      register Lisp_Object sym;
  500. {
  501.   CHECK_SYMBOL (sym, 0);
  502.   if (NILP (sym) || EQ (sym, Qt))
  503.     return Fsignal (Qsetting_constant, Fcons (sym, Qnil));
  504.   Fset (sym, Qunbound);
  505.   return sym;
  506. }
  507.  
  508. DEFUN ("fmakunbound", Ffmakunbound, Sfmakunbound, 1, 1, 0, "Make SYMBOL's function definition be void.")
  509.   (sym)
  510.      register Lisp_Object sym;
  511. {
  512.   CHECK_SYMBOL (sym, 0);
  513.   if (NILP (sym) || EQ (sym, Qt))
  514.     return Fsignal (Qsetting_constant, Fcons (sym, Qnil));
  515.   XSYMBOL (sym)->function = Qunbound;
  516.   return sym;
  517. }
  518.  
  519. DEFUN ("symbol-function", Fsymbol_function, Ssymbol_function, 1, 1, 0,
  520.   "Return SYMBOL's function definition.  Error if that is void.")
  521.   (symbol)
  522.      register Lisp_Object symbol;
  523. {
  524.   CHECK_SYMBOL (symbol, 0);
  525.   if (EQ (XSYMBOL (symbol)->function, Qunbound))
  526.     return Fsignal (Qvoid_function, Fcons (symbol, Qnil));
  527.   return XSYMBOL (symbol)->function;
  528. }
  529.  
  530. DEFUN ("symbol-plist", Fsymbol_plist, Ssymbol_plist, 1, 1, 0, "Return SYMBOL's property list.")
  531.   (sym)
  532.      register Lisp_Object sym;
  533. {
  534.   CHECK_SYMBOL (sym, 0);
  535.   return XSYMBOL (sym)->plist;
  536. }
  537.  
  538. DEFUN ("symbol-name", Fsymbol_name, Ssymbol_name, 1, 1, 0, "Return SYMBOL's name, a string.")
  539.   (sym)
  540.      register Lisp_Object sym;
  541. {
  542.   register Lisp_Object name;
  543.  
  544.   CHECK_SYMBOL (sym, 0);
  545.   XSET (name, Lisp_String, XSYMBOL (sym)->name);
  546.   return name;
  547. }
  548.  
  549. DEFUN ("fset", Ffset, Sfset, 2, 2, 0,
  550.   "Set SYMBOL's function definition to NEWVAL, and return NEWVAL.")
  551.   (sym, newdef)
  552.      register Lisp_Object sym, newdef;
  553. {
  554.   CHECK_SYMBOL (sym, 0);
  555.   if (NILP (sym) || EQ (sym, Qt))
  556.     return Fsignal (Qsetting_constant, Fcons (sym, Qnil));
  557.   if (!NILP (Vautoload_queue) && !EQ (XSYMBOL (sym)->function, Qunbound))
  558.     Vautoload_queue = Fcons (Fcons (sym, XSYMBOL (sym)->function),
  559.                  Vautoload_queue);
  560.   XSYMBOL (sym)->function = newdef;
  561.   /* Handle automatic advice activation */
  562.   if (CONSP (XSYMBOL (sym)->plist) && !NILP (Fget (sym, Qad_advice_info)))
  563.     {
  564.       call2 (Qad_activate, sym, Qnil);
  565.       newdef = XSYMBOL (sym)->function;
  566.     }
  567.   return newdef;
  568. }
  569.  
  570. /* This name should be removed once it is eliminated from elsewhere.  */
  571.  
  572. DEFUN ("defalias", Fdefalias, Sdefalias, 2, 2, 0,
  573.   "Set SYMBOL's function definition to NEWVAL, and return NEWVAL.\n\
  574. Associates the function with the current load file, if any.")
  575.   (sym, newdef)
  576.      register Lisp_Object sym, newdef;
  577. {
  578.   CHECK_SYMBOL (sym, 0);
  579.   if (!NILP (Vautoload_queue) && !EQ (XSYMBOL (sym)->function, Qunbound))
  580.     Vautoload_queue = Fcons (Fcons (sym, XSYMBOL (sym)->function),
  581.                  Vautoload_queue);
  582.   XSYMBOL (sym)->function = newdef;
  583.   /* Handle automatic advice activation */
  584.   if (CONSP (XSYMBOL (sym)->plist) && !NILP (Fget (sym, Qad_advice_info)))
  585.     {
  586.       call2 (Qad_activate, sym, Qnil);
  587.       newdef = XSYMBOL (sym)->function;
  588.     }
  589.   LOADHIST_ATTACH (sym);
  590.   return newdef;
  591. }
  592.  
  593. DEFUN ("define-function", Fdefine_function, Sdefine_function, 2, 2, 0,
  594.   "Set SYMBOL's function definition to NEWVAL, and return NEWVAL.\n\
  595. Associates the function with the current load file, if any.")
  596.   (sym, newdef)
  597.      register Lisp_Object sym, newdef;
  598. {
  599.   CHECK_SYMBOL (sym, 0);
  600.   if (!NILP (Vautoload_queue) && !EQ (XSYMBOL (sym)->function, Qunbound))
  601.     Vautoload_queue = Fcons (Fcons (sym, XSYMBOL (sym)->function),
  602.                  Vautoload_queue);
  603.   XSYMBOL (sym)->function = newdef;
  604.   /* Handle automatic advice activation */
  605.   if (CONSP (XSYMBOL (sym)->plist) && !NILP (Fget (sym, Qad_advice_info)))
  606.     {
  607.       call2 (Qad_activate, sym, Qnil);
  608.       newdef = XSYMBOL (sym)->function;
  609.     }
  610.   LOADHIST_ATTACH (sym);
  611.   return newdef;
  612. }
  613.  
  614. DEFUN ("setplist", Fsetplist, Ssetplist, 2, 2, 0,
  615.   "Set SYMBOL's property list to NEWVAL, and return NEWVAL.")
  616.   (sym, newplist)
  617.      register Lisp_Object sym, newplist;
  618. {
  619.   CHECK_SYMBOL (sym, 0);
  620.   XSYMBOL (sym)->plist = newplist;
  621.   return newplist;
  622. }
  623.  
  624.  
  625. /* Getting and setting values of symbols */
  626.  
  627. /* Given the raw contents of a symbol value cell,
  628.    return the Lisp value of the symbol.
  629.    This does not handle buffer-local variables; use
  630.    swap_in_symval_forwarding for that.  */
  631.  
  632. Lisp_Object
  633. do_symval_forwarding (valcontents)
  634.      register Lisp_Object valcontents;
  635. {
  636.   register Lisp_Object val;
  637. #ifdef SWITCH_ENUM_BUG
  638.   switch ((int) XTYPE (valcontents))
  639. #else
  640.   switch (XTYPE (valcontents))
  641. #endif
  642.     {
  643.     case Lisp_Intfwd:
  644.       XSET (val, Lisp_Int, *XINTPTR (valcontents));
  645.       return val;
  646.  
  647.     case Lisp_Boolfwd:
  648.       if (*XINTPTR (valcontents))
  649.     return Qt;
  650.       return Qnil;
  651.  
  652.     case Lisp_Objfwd:
  653.       return *XOBJFWD (valcontents);
  654.  
  655.     case Lisp_Buffer_Objfwd:
  656.       return *(Lisp_Object *)(XUINT (valcontents) + (char *)current_buffer);
  657.     }
  658.   return valcontents;
  659. }
  660.  
  661. /* Store NEWVAL into SYM, where VALCONTENTS is found in the value cell
  662.    of SYM.  If SYM is buffer-local, VALCONTENTS should be the
  663.    buffer-independent contents of the value cell: forwarded just one
  664.    step past the buffer-localness.  */
  665.  
  666. void
  667. store_symval_forwarding (sym, valcontents, newval)
  668.      Lisp_Object sym;
  669.      register Lisp_Object valcontents, newval;
  670. {
  671. #ifdef SWITCH_ENUM_BUG
  672.   switch ((int) XTYPE (valcontents))
  673. #else
  674.   switch (XTYPE (valcontents))
  675. #endif
  676.     {
  677.     case Lisp_Intfwd:
  678.       CHECK_NUMBER (newval, 1);
  679.       *XINTPTR (valcontents) = XINT (newval);
  680.       break;
  681.  
  682.     case Lisp_Boolfwd:
  683.       *XINTPTR (valcontents) = NILP(newval) ? 0 : 1;
  684.       break;
  685.  
  686.     case Lisp_Objfwd:
  687.       *XOBJFWD (valcontents) = newval;
  688.       break;
  689.  
  690.     case Lisp_Buffer_Objfwd:
  691.       {
  692.     unsigned int offset = XUINT (valcontents);
  693.     Lisp_Object type;
  694.  
  695.     type = *(Lisp_Object *)(offset + (char *)&buffer_local_types);
  696.     if (! NILP (type) && ! NILP (newval)
  697.         && XTYPE (newval) != XINT (type))
  698.       buffer_slot_type_mismatch (valcontents, newval);
  699.     
  700.     *(Lisp_Object *)(XUINT (valcontents) + (char *)current_buffer)
  701.       = newval;
  702.     break;
  703.       }
  704.  
  705.     default:
  706.       valcontents = XSYMBOL (sym)->value;
  707.       if (XTYPE (valcontents) == Lisp_Buffer_Local_Value
  708.       || XTYPE (valcontents) == Lisp_Some_Buffer_Local_Value)
  709.     XCONS (XSYMBOL (sym)->value)->car = newval;
  710.       else
  711.     XSYMBOL (sym)->value = newval;
  712.     }
  713. }
  714.  
  715. /* Set up the buffer-local symbol SYM for validity in the current
  716.    buffer.  VALCONTENTS is the contents of its value cell.
  717.    Return the value forwarded one step past the buffer-local indicator.  */
  718.  
  719. static Lisp_Object
  720. swap_in_symval_forwarding (sym, valcontents)
  721.      Lisp_Object sym, valcontents;
  722. {
  723.   /* valcontents is a list
  724.      (REALVALUE BUFFER CURRENT-ALIST-ELEMENT . DEFAULT-VALUE)).
  725.      
  726.      CURRENT-ALIST-ELEMENT is a pointer to an element of BUFFER's
  727.      local_var_alist, that being the element whose car is this
  728.      variable.  Or it can be a pointer to the
  729.      (CURRENT-ALIST-ELEMENT . DEFAULT-VALUE), if BUFFER does not have
  730.      an element in its alist for this variable.
  731.  
  732.      If the current buffer is not BUFFER, we store the current
  733.      REALVALUE value into CURRENT-ALIST-ELEMENT, then find the
  734.      appropriate alist element for the buffer now current and set up
  735.      CURRENT-ALIST-ELEMENT.  Then we set REALVALUE out of that
  736.      element, and store into BUFFER.
  737.  
  738.      Note that REALVALUE can be a forwarding pointer. */
  739.  
  740.   register Lisp_Object tem1;
  741.   tem1 = XCONS (XCONS (valcontents)->cdr)->car;
  742.  
  743.   if (NILP (tem1) || current_buffer != XBUFFER (tem1))
  744.     {
  745.       tem1 = XCONS (XCONS (XCONS (valcontents)->cdr)->cdr)->car;
  746.       Fsetcdr (tem1, do_symval_forwarding (XCONS (valcontents)->car));
  747.       tem1 = assq_no_quit (sym, current_buffer->local_var_alist);
  748.       if (NILP (tem1))
  749.     tem1 = XCONS (XCONS (valcontents)->cdr)->cdr;
  750.       XCONS (XCONS (XCONS (valcontents)->cdr)->cdr)->car = tem1;
  751.       XSET (XCONS (XCONS (valcontents)->cdr)->car, Lisp_Buffer, current_buffer);
  752.       store_symval_forwarding (sym, XCONS (valcontents)->car, Fcdr (tem1));
  753.     }
  754.   return XCONS (valcontents)->car;
  755. }
  756.  
  757. /* Find the value of a symbol, returning Qunbound if it's not bound.
  758.    This is helpful for code which just wants to get a variable's value
  759.    if it has one, without signalling an error.
  760.    Note that it must not be possible to quit
  761.    within this function.  Great care is required for this.  */
  762.  
  763. Lisp_Object
  764. find_symbol_value (sym)
  765.      Lisp_Object sym;
  766. {
  767.   register Lisp_Object valcontents, tem1;
  768.   register Lisp_Object val;
  769.   CHECK_SYMBOL (sym, 0);
  770.   valcontents = XSYMBOL (sym)->value;
  771.  
  772.  retry:
  773. #ifdef SWITCH_ENUM_BUG
  774.   switch ((int) XTYPE (valcontents))
  775. #else
  776.   switch (XTYPE (valcontents))
  777. #endif
  778.     {
  779.     case Lisp_Buffer_Local_Value:
  780.     case Lisp_Some_Buffer_Local_Value:
  781.       valcontents = swap_in_symval_forwarding (sym, valcontents);
  782.       goto retry;
  783.  
  784.     case Lisp_Intfwd:
  785.       XSET (val, Lisp_Int, *XINTPTR (valcontents));
  786.       return val;
  787.  
  788.     case Lisp_Boolfwd:
  789.       if (*XINTPTR (valcontents))
  790.     return Qt;
  791.       return Qnil;
  792.  
  793.     case Lisp_Objfwd:
  794.       return *XOBJFWD (valcontents);
  795.  
  796.     case Lisp_Buffer_Objfwd:
  797.       return *(Lisp_Object *)(XUINT (valcontents) + (char *)current_buffer);
  798.  
  799.     case Lisp_Void:
  800.       return Qunbound;
  801.     }
  802.  
  803.   return valcontents;
  804. }
  805.  
  806. DEFUN ("symbol-value", Fsymbol_value, Ssymbol_value, 1, 1, 0,
  807.   "Return SYMBOL's value.  Error if that is void.")
  808.   (sym)
  809.      Lisp_Object sym;
  810. {
  811.   Lisp_Object val;
  812.  
  813.   val = find_symbol_value (sym);
  814.   if (EQ (val, Qunbound))
  815.     return Fsignal (Qvoid_variable, Fcons (sym, Qnil));
  816.   else
  817.     return val;
  818. }
  819.  
  820. DEFUN ("set", Fset, Sset, 2, 2, 0,
  821.   "Set SYMBOL's value to NEWVAL, and return NEWVAL.")
  822.   (sym, newval)
  823.      register Lisp_Object sym, newval;
  824. {
  825.   int voide = (XTYPE (newval) == Lisp_Void || EQ (newval, Qunbound));
  826.  
  827. #ifndef RTPC_REGISTER_BUG
  828.   register Lisp_Object valcontents, tem1, current_alist_element;
  829. #else /* RTPC_REGISTER_BUG */
  830.   register Lisp_Object tem1;
  831.   Lisp_Object valcontents, current_alist_element;
  832. #endif /* RTPC_REGISTER_BUG */
  833.  
  834.   CHECK_SYMBOL (sym, 0);
  835.   if (NILP (sym) || EQ (sym, Qt))
  836.     return Fsignal (Qsetting_constant, Fcons (sym, Qnil));
  837.   valcontents = XSYMBOL (sym)->value;
  838.  
  839.   if (XTYPE (valcontents) == Lisp_Buffer_Objfwd)
  840.     {
  841.       register int idx = XUINT (valcontents);
  842.       register int mask = *(int *)(idx + (char *) &buffer_local_flags);
  843.       if (mask > 0)
  844.     current_buffer->local_var_flags |= mask;
  845.     }
  846.  
  847.   else if (XTYPE (valcontents) == Lisp_Buffer_Local_Value
  848.        || XTYPE (valcontents) == Lisp_Some_Buffer_Local_Value)
  849.     {
  850.       /* valcontents is actually a pointer to a cons heading something like:
  851.      (REALVALUE BUFFER CURRENT-ALIST-ELEMENT . DEFAULT-VALUE).
  852.  
  853.      BUFFER is the last buffer for which this symbol's value was
  854.      made up to date.
  855.  
  856.      CURRENT-ALIST-ELEMENT is a pointer to an element of BUFFER's
  857.      local_var_alist, that being the element whose car is this
  858.      variable.  Or it can be a pointer to the
  859.      (CURRENT-ALIST-ELEMENT . DEFAULT-VALUE), if BUFFER does not
  860.      have an element in its alist for this variable (that is, if
  861.      BUFFER sees the default value of this variable).
  862.  
  863.      If we want to examine or set the value and BUFFER is current,
  864.      we just examine or set REALVALUE. If BUFFER is not current, we
  865.      store the current REALVALUE value into CURRENT-ALIST-ELEMENT,
  866.      then find the appropriate alist element for the buffer now
  867.      current and set up CURRENT-ALIST-ELEMENT.  Then we set
  868.      REALVALUE out of that element, and store into BUFFER.
  869.  
  870.      If we are setting the variable and the current buffer does
  871.      not have an alist entry for this variable, an alist entry is
  872.      created.
  873.  
  874.      Note that REALVALUE can be a forwarding pointer.  Each time
  875.      it is examined or set, forwarding must be done.  */
  876.  
  877.       /* What value are we caching right now?  */
  878.       current_alist_element =
  879.     XCONS (XCONS (XCONS (valcontents)->cdr)->cdr)->car;
  880.  
  881.       /* If the current buffer is not the buffer whose binding is
  882.      currently cached, or if it's a Lisp_Buffer_Local_Value and
  883.      we're looking at the default value, the cache is invalid; we
  884.      need to write it out, and find the new CURRENT-ALIST-ELEMENT.  */
  885.       if ((current_buffer
  886.        != XBUFFER (XCONS (XCONS (valcontents)->cdr)->car))
  887.       || (XTYPE (valcontents) == Lisp_Buffer_Local_Value
  888.           && EQ (XCONS (current_alist_element)->car,
  889.              current_alist_element)))
  890.     {
  891.       /* Write out the cached value for the old buffer; copy it
  892.          back to its alist element.  This works if the current
  893.          buffer only sees the default value, too.  */
  894.           Fsetcdr (current_alist_element,
  895.            do_symval_forwarding (XCONS (valcontents)->car));
  896.  
  897.       /* Find the new value for CURRENT-ALIST-ELEMENT.  */
  898.       tem1 = Fassq (sym, current_buffer->local_var_alist);
  899.       if (NILP (tem1))
  900.         {
  901.           /* This buffer still sees the default value.  */
  902.  
  903.           /* If the variable is a Lisp_Some_Buffer_Local_Value,
  904.          make CURRENT-ALIST-ELEMENT point to itself,
  905.          indicating that we're seeing the default value.  */
  906.           if (XTYPE (valcontents) == Lisp_Some_Buffer_Local_Value)
  907.         tem1 = XCONS (XCONS (valcontents)->cdr)->cdr;
  908.  
  909.           /* If it's a Lisp_Buffer_Local_Value, give this buffer a
  910.          new assoc for a local value and set
  911.          CURRENT-ALIST-ELEMENT to point to that.  */
  912.           else
  913.         {
  914.           tem1 = Fcons (sym, Fcdr (current_alist_element));
  915.           current_buffer->local_var_alist =
  916.             Fcons (tem1, current_buffer->local_var_alist);
  917.         }
  918.         }
  919.       /* Cache the new buffer's assoc in CURRENT-ALIST-ELEMENT.  */
  920.       XCONS (XCONS (XCONS (valcontents)->cdr)->cdr)->car = tem1;
  921.  
  922.       /* Set BUFFER, now that CURRENT-ALIST-ELEMENT is accurate.  */
  923.       XSET (XCONS (XCONS (valcontents)->cdr)->car,
  924.         Lisp_Buffer, current_buffer);
  925.     }
  926.       valcontents = XCONS (valcontents)->car;
  927.     }
  928.  
  929.   /* If storing void (making the symbol void), forward only through
  930.      buffer-local indicator, not through Lisp_Objfwd, etc.  */
  931.   if (voide)
  932.     store_symval_forwarding (sym, Qnil, newval);
  933.   else
  934.     store_symval_forwarding (sym, valcontents, newval);
  935.  
  936.   return newval;
  937. }
  938.  
  939. /* Access or set a buffer-local symbol's default value.  */
  940.  
  941. /* Return the default value of SYM, but don't check for voidness.
  942.    Return Qunbound or a Lisp_Void object if it is void.  */
  943.  
  944. Lisp_Object
  945. default_value (sym)
  946.      Lisp_Object sym;
  947. {
  948.   register Lisp_Object valcontents;
  949.  
  950.   CHECK_SYMBOL (sym, 0);
  951.   valcontents = XSYMBOL (sym)->value;
  952.  
  953.   /* For a built-in buffer-local variable, get the default value
  954.      rather than letting do_symval_forwarding get the current value.  */
  955.   if (XTYPE (valcontents) == Lisp_Buffer_Objfwd)
  956.     {
  957.       register int idx = XUINT (valcontents);
  958.  
  959.       if (*(int *) (idx + (char *) &buffer_local_flags) != 0)
  960.     return *(Lisp_Object *)(idx + (char *) &buffer_defaults);
  961.     }
  962.  
  963.   /* Handle user-created local variables.  */
  964.   if (XTYPE (valcontents) == Lisp_Buffer_Local_Value
  965.       || XTYPE (valcontents) == Lisp_Some_Buffer_Local_Value)
  966.     {
  967.       /* If var is set up for a buffer that lacks a local value for it,
  968.      the current value is nominally the default value.
  969.      But the current value slot may be more up to date, since
  970.      ordinary setq stores just that slot.  So use that.  */
  971.       Lisp_Object current_alist_element, alist_element_car;
  972.       current_alist_element
  973.     = XCONS (XCONS (XCONS (valcontents)->cdr)->cdr)->car;
  974.       alist_element_car = XCONS (current_alist_element)->car;
  975.       if (EQ (alist_element_car, current_alist_element))
  976.     return do_symval_forwarding (XCONS (valcontents)->car);
  977.       else
  978.     return XCONS (XCONS (XCONS (valcontents)->cdr)->cdr)->cdr;
  979.     }
  980.   /* For other variables, get the current value.  */
  981.   return do_symval_forwarding (valcontents);
  982. }
  983.  
  984. DEFUN ("default-boundp", Fdefault_boundp, Sdefault_boundp, 1, 1, 0,
  985.   "Return T if SYMBOL has a non-void default value.\n\
  986. This is the value that is seen in buffers that do not have their own values\n\
  987. for this variable.")
  988.   (sym)
  989.      Lisp_Object sym;
  990. {
  991.   register Lisp_Object value;
  992.  
  993.   value = default_value (sym);
  994.   return (XTYPE (value) == Lisp_Void || EQ (value, Qunbound)
  995.       ? Qnil : Qt);
  996. }
  997.  
  998. DEFUN ("default-value", Fdefault_value, Sdefault_value, 1, 1, 0,
  999.   "Return SYMBOL's default value.\n\
  1000. This is the value that is seen in buffers that do not have their own values\n\
  1001. for this variable.  The default value is meaningful for variables with\n\
  1002. local bindings in certain buffers.")
  1003.   (sym)
  1004.      Lisp_Object sym;
  1005. {
  1006.   register Lisp_Object value;
  1007.  
  1008.   value = default_value (sym);
  1009.   if (XTYPE (value) == Lisp_Void || EQ (value, Qunbound))
  1010.     return Fsignal (Qvoid_variable, Fcons (sym, Qnil));
  1011.   return value;
  1012. }
  1013.  
  1014. DEFUN ("set-default", Fset_default, Sset_default, 2, 2, 0,
  1015.   "Set SYMBOL's default value to VAL.  SYMBOL and VAL are evaluated.\n\
  1016. The default value is seen in buffers that do not have their own values\n\
  1017. for this variable.")
  1018.   (sym, value)
  1019.      Lisp_Object sym, value;
  1020. {
  1021.   register Lisp_Object valcontents, current_alist_element, alist_element_buffer;
  1022.  
  1023.   CHECK_SYMBOL (sym, 0);
  1024.   valcontents = XSYMBOL (sym)->value;
  1025.  
  1026.   /* Handle variables like case-fold-search that have special slots
  1027.      in the buffer.  Make them work apparently like Lisp_Buffer_Local_Value
  1028.      variables.  */
  1029.   if (XTYPE (valcontents) == Lisp_Buffer_Objfwd)
  1030.     {
  1031.       register int idx = XUINT (valcontents);
  1032. #ifndef RTPC_REGISTER_BUG
  1033.       register struct buffer *b;
  1034. #else
  1035.       struct buffer *b;
  1036. #endif
  1037.       register int mask = *(int *) (idx + (char *) &buffer_local_flags);
  1038.  
  1039.       if (mask > 0)
  1040.     {
  1041.       *(Lisp_Object *)(idx + (char *) &buffer_defaults) = value;
  1042.       for (b = all_buffers; b; b = b->next)
  1043.         if (!(b->local_var_flags & mask))
  1044.           *(Lisp_Object *)(idx + (char *) b) = value;
  1045.     }
  1046.       return value;
  1047.     }
  1048.  
  1049.   if (XTYPE (valcontents) != Lisp_Buffer_Local_Value &&
  1050.       XTYPE (valcontents) != Lisp_Some_Buffer_Local_Value)
  1051.     return Fset (sym, value);
  1052.  
  1053.   /* Store new value into the DEFAULT-VALUE slot */
  1054.   XCONS (XCONS (XCONS (valcontents)->cdr)->cdr)->cdr = value;
  1055.  
  1056.   /* If that slot is current, we must set the REALVALUE slot too */
  1057.   current_alist_element = XCONS (XCONS (XCONS (valcontents)->cdr)->cdr)->car;
  1058.   alist_element_buffer = Fcar (current_alist_element);
  1059.   if (EQ (alist_element_buffer, current_alist_element))
  1060.     store_symval_forwarding (sym, XCONS (valcontents)->car, value);
  1061.  
  1062.   return value;
  1063. }
  1064.  
  1065. DEFUN ("setq-default", Fsetq_default, Ssetq_default, 2, UNEVALLED, 0,
  1066.        "Set the default value of variable VAR to VALUE.\n\
  1067. VAR, the variable name, is literal (not evaluated);\n\
  1068. VALUE is an expression and it is evaluated.\n\
  1069. The default value of a variable is seen in buffers\n\
  1070. that do not have their own values for the variable.\n\
  1071. \n\
  1072. More generally, you can use multiple variables and values, as in\n\
  1073.   (setq-default SYM VALUE SYM VALUE...)\n\
  1074. This sets each SYM's default value to the corresponding VALUE.\n\
  1075. The VALUE for the Nth SYM can refer to the new default values\n\
  1076. of previous SYMs.")
  1077.   (args)
  1078.      Lisp_Object args;
  1079. {
  1080.   register Lisp_Object args_left;
  1081.   register Lisp_Object val, sym;
  1082.   struct gcpro gcpro1;
  1083.  
  1084.   if (NILP (args))
  1085.     return Qnil;
  1086.  
  1087.   args_left = args;
  1088.   GCPRO1 (args);
  1089.  
  1090.   do
  1091.     {
  1092.       val = Feval (Fcar (Fcdr (args_left)));
  1093.       sym = Fcar (args_left);
  1094.       Fset_default (sym, val);
  1095.       args_left = Fcdr (Fcdr (args_left));
  1096.     }
  1097.   while (!NILP (args_left));
  1098.  
  1099.   UNGCPRO;
  1100.   return val;
  1101. }
  1102.  
  1103. /* Lisp functions for creating and removing buffer-local variables.  */
  1104.  
  1105. DEFUN ("make-variable-buffer-local", Fmake_variable_buffer_local, Smake_variable_buffer_local,
  1106.   1, 1, "vMake Variable Buffer Local: ",
  1107.   "Make VARIABLE have a separate value for each buffer.\n\
  1108. At any time, the value for the current buffer is in effect.\n\
  1109. There is also a default value which is seen in any buffer which has not yet\n\
  1110. set its own value.\n\
  1111. Using `set' or `setq' to set the variable causes it to have a separate value\n\
  1112. for the current buffer if it was previously using the default value.\n\
  1113. The function `default-value' gets the default value and `set-default' sets it.")
  1114.   (sym)
  1115.      register Lisp_Object sym;
  1116. {
  1117.   register Lisp_Object tem, valcontents;
  1118.  
  1119.   CHECK_SYMBOL (sym, 0);
  1120.  
  1121.   if (EQ (sym, Qnil) || EQ (sym, Qt))
  1122.     error ("Symbol %s may not be buffer-local", XSYMBOL (sym)->name->data);
  1123.  
  1124.   valcontents = XSYMBOL (sym)->value;
  1125.   if ((XTYPE (valcontents) == Lisp_Buffer_Local_Value) ||
  1126.       (XTYPE (valcontents) == Lisp_Buffer_Objfwd))
  1127.     return sym;
  1128.   if (XTYPE (valcontents) == Lisp_Some_Buffer_Local_Value)
  1129.     {
  1130.       XSETTYPE (XSYMBOL (sym)->value, Lisp_Buffer_Local_Value);
  1131.       return sym;
  1132.     }
  1133.   if (EQ (valcontents, Qunbound))
  1134.     XSYMBOL (sym)->value = Qnil;
  1135.   tem = Fcons (Qnil, Fsymbol_value (sym));
  1136.   XCONS (tem)->car = tem;
  1137.   XSYMBOL (sym)->value = Fcons (XSYMBOL (sym)->value, Fcons (Fcurrent_buffer (), tem));
  1138.   XSETTYPE (XSYMBOL (sym)->value, Lisp_Buffer_Local_Value);
  1139.   return sym;
  1140. }
  1141.  
  1142. DEFUN ("make-local-variable", Fmake_local_variable, Smake_local_variable,
  1143.   1, 1, "vMake Local Variable: ",
  1144.   "Make VARIABLE have a separate value in the current buffer.\n\
  1145. Other buffers will continue to share a common default value.\n\
  1146. \(The buffer-local value of VARIABLE starts out as the same value\n\
  1147. VARIABLE previously had.  If VARIABLE was void, it remains void.\)\n\
  1148. See also `make-variable-buffer-local'.\n\n\
  1149. If the variable is already arranged to become local when set,\n\
  1150. this function causes a local value to exist for this buffer,\n\
  1151. just as if the variable were set.")
  1152.   (sym)
  1153.      register Lisp_Object sym;
  1154. {
  1155.   register Lisp_Object tem, valcontents;
  1156.  
  1157.   CHECK_SYMBOL (sym, 0);
  1158.  
  1159.   if (EQ (sym, Qnil) || EQ (sym, Qt))
  1160.     error ("Symbol %s may not be buffer-local", XSYMBOL (sym)->name->data);
  1161.  
  1162.   valcontents = XSYMBOL (sym)->value;
  1163.   if (XTYPE (valcontents) == Lisp_Buffer_Local_Value
  1164.       || XTYPE (valcontents) == Lisp_Buffer_Objfwd)
  1165.     {
  1166.       tem = Fboundp (sym);
  1167.       
  1168.       /* Make sure the symbol has a local value in this particular buffer,
  1169.      by setting it to the same value it already has.  */
  1170.       Fset (sym, (EQ (tem, Qt) ? Fsymbol_value (sym) : Qunbound));
  1171.       return sym;
  1172.     }
  1173.   /* Make sure sym is set up to hold per-buffer values */
  1174.   if (XTYPE (valcontents) != Lisp_Some_Buffer_Local_Value)
  1175.     {
  1176.       tem = Fcons (Qnil, do_symval_forwarding (valcontents));
  1177.       XCONS (tem)->car = tem;
  1178.       XSYMBOL (sym)->value = Fcons (XSYMBOL (sym)->value, Fcons (Qnil, tem));
  1179.       XSETTYPE (XSYMBOL (sym)->value, Lisp_Some_Buffer_Local_Value);
  1180.     }
  1181.   /* Make sure this buffer has its own value of sym */
  1182.   tem = Fassq (sym, current_buffer->local_var_alist);
  1183.   if (NILP (tem))
  1184.     {
  1185.       current_buffer->local_var_alist
  1186.         = Fcons (Fcons (sym, XCONS (XCONS (XCONS (XSYMBOL (sym)->value)->cdr)->cdr)->cdr),
  1187.          current_buffer->local_var_alist);
  1188.  
  1189.       /* Make sure symbol does not think it is set up for this buffer;
  1190.      force it to look once again for this buffer's value */
  1191.       {
  1192.     /* This local variable avoids "expression too complex" on IBM RT.  */
  1193.     Lisp_Object xs;
  1194.     
  1195.     xs = XSYMBOL (sym)->value;
  1196.     if (current_buffer == XBUFFER (XCONS (XCONS (xs)->cdr)->car))
  1197.       XCONS (XCONS (XSYMBOL (sym)->value)->cdr)->car = Qnil; 
  1198.       }
  1199.     }
  1200.  
  1201.   /* If the symbol forwards into a C variable, then swap in the
  1202.      variable for this buffer immediately.  If C code modifies the
  1203.      variable before we swap in, then that new value will clobber the
  1204.      default value the next time we swap.  */
  1205.   valcontents = XCONS (XSYMBOL (sym)->value)->car;
  1206.   if (XTYPE (valcontents) == Lisp_Intfwd
  1207.       || XTYPE (valcontents) == Lisp_Boolfwd
  1208.       || XTYPE (valcontents) == Lisp_Objfwd)
  1209.     swap_in_symval_forwarding (sym, XSYMBOL (sym)->value);
  1210.  
  1211.   return sym;
  1212. }
  1213.  
  1214. DEFUN ("kill-local-variable", Fkill_local_variable, Skill_local_variable,
  1215.   1, 1, "vKill Local Variable: ",
  1216.   "Make VARIABLE no longer have a separate value in the current buffer.\n\
  1217. From now on the default value will apply in this buffer.")
  1218.   (sym)
  1219.      register Lisp_Object sym;
  1220. {
  1221.   register Lisp_Object tem, valcontents;
  1222.  
  1223.   CHECK_SYMBOL (sym, 0);
  1224.  
  1225.   valcontents = XSYMBOL (sym)->value;
  1226.  
  1227.   if (XTYPE (valcontents) == Lisp_Buffer_Objfwd)
  1228.     {
  1229.       register int idx = XUINT (valcontents);
  1230.       register int mask = *(int *) (idx + (char *) &buffer_local_flags);
  1231.  
  1232.       if (mask > 0)
  1233.     {
  1234.       *(Lisp_Object *)(idx + (char *) current_buffer)
  1235.         = *(Lisp_Object *)(idx + (char *) &buffer_defaults);
  1236.       current_buffer->local_var_flags &= ~mask;
  1237.     }
  1238.       return sym;
  1239.     }
  1240.  
  1241.   if (XTYPE (valcontents) != Lisp_Buffer_Local_Value &&
  1242.       XTYPE (valcontents) != Lisp_Some_Buffer_Local_Value)
  1243.     return sym;
  1244.  
  1245.   /* Get rid of this buffer's alist element, if any */
  1246.  
  1247.   tem = Fassq (sym, current_buffer->local_var_alist);
  1248.   if (!NILP (tem))
  1249.     current_buffer->local_var_alist = Fdelq (tem, current_buffer->local_var_alist);
  1250.  
  1251.   /* Make sure symbol does not think it is set up for this buffer;
  1252.      force it to look once again for this buffer's value */
  1253.   {
  1254.     Lisp_Object sv;
  1255.     sv = XSYMBOL (sym)->value;
  1256.     if (current_buffer == XBUFFER (XCONS (XCONS (sv)->cdr)->car))
  1257.       XCONS (XCONS (sv)->cdr)->car = Qnil;
  1258.   }
  1259.  
  1260.   return sym;
  1261. }
  1262.  
  1263. /* Find the function at the end of a chain of symbol function indirections.  */
  1264.  
  1265. /* If OBJECT is a symbol, find the end of its function chain and
  1266.    return the value found there.  If OBJECT is not a symbol, just
  1267.    return it.  If there is a cycle in the function chain, signal a
  1268.    cyclic-function-indirection error.
  1269.  
  1270.    This is like Findirect_function, except that it doesn't signal an
  1271.    error if the chain ends up unbound.  */
  1272. Lisp_Object
  1273. indirect_function (object)
  1274.   register Lisp_Object object;
  1275. {
  1276.   Lisp_Object tortoise, hare;
  1277.  
  1278.   hare = tortoise = object;
  1279.  
  1280.   for (;;)
  1281.     {
  1282.       if (XTYPE (hare) != Lisp_Symbol || EQ (hare, Qunbound))
  1283.     break;
  1284.       hare = XSYMBOL (hare)->function;
  1285.       if (XTYPE (hare) != Lisp_Symbol || EQ (hare, Qunbound))
  1286.     break;
  1287.       hare = XSYMBOL (hare)->function;
  1288.  
  1289.       tortoise = XSYMBOL (tortoise)->function;
  1290.  
  1291.       if (EQ (hare, tortoise))
  1292.     Fsignal (Qcyclic_function_indirection, Fcons (object, Qnil));
  1293.     }
  1294.  
  1295.   return hare;
  1296. }
  1297.  
  1298. DEFUN ("indirect-function", Findirect_function, Sindirect_function, 1, 1, 0,
  1299.   "Return the function at the end of OBJECT's function chain.\n\
  1300. If OBJECT is a symbol, follow all function indirections and return the final\n\
  1301. function binding.\n\
  1302. If OBJECT is not a symbol, just return it.\n\
  1303. Signal a void-function error if the final symbol is unbound.\n\
  1304. Signal a cyclic-function-indirection error if there is a loop in the\n\
  1305. function chain of symbols.")
  1306.   (object)
  1307.     register Lisp_Object object;
  1308. {
  1309.   Lisp_Object result;
  1310.  
  1311.   result = indirect_function (object);
  1312.  
  1313.   if (EQ (result, Qunbound))
  1314.     return Fsignal (Qvoid_function, Fcons (object, Qnil));
  1315.   return result;
  1316. }
  1317.  
  1318. /* Extract and set vector and string elements */
  1319.  
  1320. DEFUN ("aref", Faref, Saref, 2, 2, 0,
  1321.   "Return the element of ARRAY at index INDEX.\n\
  1322. ARRAY may be a vector or a string, or a byte-code object.  INDEX starts at 0.")
  1323.   (array, idx)
  1324.      register Lisp_Object array;
  1325.      Lisp_Object idx;
  1326. {
  1327.   register int idxval;
  1328.  
  1329.   CHECK_NUMBER (idx, 1);
  1330.   idxval = XINT (idx);
  1331.   if (XTYPE (array) != Lisp_Vector && XTYPE (array) != Lisp_String
  1332.       && XTYPE (array) != Lisp_Compiled)
  1333.     array = wrong_type_argument (Qarrayp, array);
  1334.   if (idxval < 0 || idxval >= XVECTOR (array)->size)
  1335.     args_out_of_range (array, idx);
  1336.   if (XTYPE (array) == Lisp_String)
  1337.     {
  1338.       Lisp_Object val;
  1339.       XFASTINT (val) = (unsigned char) XSTRING (array)->data[idxval];
  1340.       return val;
  1341.     }
  1342.   else
  1343.     return XVECTOR (array)->contents[idxval];
  1344. }
  1345.  
  1346. DEFUN ("aset", Faset, Saset, 3, 3, 0,
  1347.   "Store into the element of ARRAY at index IDX the value NEWELT.\n\
  1348. ARRAY may be a vector or a string.  IDX starts at 0.")
  1349.   (array, idx, newelt)
  1350.      register Lisp_Object array;
  1351.      Lisp_Object idx, newelt;
  1352. {
  1353.   register int idxval;
  1354.  
  1355.   CHECK_NUMBER (idx, 1);
  1356.   idxval = XINT (idx);
  1357.   if (XTYPE (array) != Lisp_Vector && XTYPE (array) != Lisp_String)
  1358.     array = wrong_type_argument (Qarrayp, array);
  1359.   if (idxval < 0 || idxval >= XVECTOR (array)->size)
  1360.     args_out_of_range (array, idx);
  1361.   CHECK_IMPURE (array);
  1362.  
  1363.   if (XTYPE (array) == Lisp_Vector)
  1364.     XVECTOR (array)->contents[idxval] = newelt;
  1365.   else
  1366.     {
  1367.       CHECK_NUMBER (newelt, 2);
  1368.       XSTRING (array)->data[idxval] = XINT (newelt);
  1369.     }
  1370.  
  1371.   return newelt;
  1372. }
  1373.  
  1374. Lisp_Object
  1375. Farray_length (array)
  1376.      register Lisp_Object array;
  1377. {
  1378.   register Lisp_Object size;
  1379.   if (XTYPE (array) != Lisp_Vector && XTYPE (array) != Lisp_String
  1380.       && XTYPE (array) != Lisp_Compiled)
  1381.     array = wrong_type_argument (Qarrayp, array);
  1382.   XFASTINT (size) = XVECTOR (array)->size;
  1383.   return size;
  1384. }
  1385.  
  1386. /* Arithmetic functions */
  1387.  
  1388. enum comparison { equal, notequal, less, grtr, less_or_equal, grtr_or_equal };
  1389.  
  1390. Lisp_Object
  1391. arithcompare (num1, num2, comparison)
  1392.      Lisp_Object num1, num2;
  1393.      enum comparison comparison;
  1394. {
  1395.   double f1, f2;
  1396.   int floatp = 0;
  1397.  
  1398. #ifdef LISP_FLOAT_TYPE
  1399.   CHECK_NUMBER_OR_FLOAT_COERCE_MARKER (num1, 0);
  1400.   CHECK_NUMBER_OR_FLOAT_COERCE_MARKER (num2, 0);
  1401.  
  1402.   if (XTYPE (num1) == Lisp_Float || XTYPE (num2) == Lisp_Float)
  1403.     {
  1404.       floatp = 1;
  1405.       f1 = (XTYPE (num1) == Lisp_Float) ? XFLOAT (num1)->data : XINT (num1);
  1406.       f2 = (XTYPE (num2) == Lisp_Float) ? XFLOAT (num2)->data : XINT (num2);
  1407.     }
  1408. #else
  1409.   CHECK_NUMBER_COERCE_MARKER (num1, 0);
  1410.   CHECK_NUMBER_COERCE_MARKER (num2, 0);
  1411. #endif /* LISP_FLOAT_TYPE */
  1412.  
  1413.   switch (comparison)
  1414.     {
  1415.     case equal:
  1416.       if (floatp ? f1 == f2 : XINT (num1) == XINT (num2))
  1417.     return Qt;
  1418.       return Qnil;
  1419.  
  1420.     case notequal:
  1421.       if (floatp ? f1 != f2 : XINT (num1) != XINT (num2))
  1422.     return Qt;
  1423.       return Qnil;
  1424.  
  1425.     case less:
  1426.       if (floatp ? f1 < f2 : XINT (num1) < XINT (num2))
  1427.     return Qt;
  1428.       return Qnil;
  1429.  
  1430.     case less_or_equal:
  1431.       if (floatp ? f1 <= f2 : XINT (num1) <= XINT (num2))
  1432.     return Qt;
  1433.       return Qnil;
  1434.  
  1435.     case grtr:
  1436.       if (floatp ? f1 > f2 : XINT (num1) > XINT (num2))
  1437.     return Qt;
  1438.       return Qnil;
  1439.  
  1440.     case grtr_or_equal:
  1441.       if (floatp ? f1 >= f2 : XINT (num1) >= XINT (num2))
  1442.     return Qt;
  1443.       return Qnil;
  1444.  
  1445.     default:
  1446.       abort ();
  1447.     }
  1448. }
  1449.  
  1450. DEFUN ("=", Feqlsign, Seqlsign, 2, 2, 0,
  1451.   "T if two args, both numbers or markers, are equal.")
  1452.   (num1, num2)
  1453.      register Lisp_Object num1, num2;
  1454. {
  1455.   return arithcompare (num1, num2, equal);
  1456. }
  1457.  
  1458. DEFUN ("<", Flss, Slss, 2, 2, 0,
  1459.   "T if first arg is less than second arg.  Both must be numbers or markers.")
  1460.   (num1, num2)
  1461.      register Lisp_Object num1, num2;
  1462. {
  1463.   return arithcompare (num1, num2, less);
  1464. }
  1465.  
  1466. DEFUN (">", Fgtr, Sgtr, 2, 2, 0,
  1467.   "T if first arg is greater than second arg.  Both must be numbers or markers.")
  1468.   (num1, num2)
  1469.      register Lisp_Object num1, num2;
  1470. {
  1471.   return arithcompare (num1, num2, grtr);
  1472. }
  1473.  
  1474. DEFUN ("<=", Fleq, Sleq, 2, 2, 0,
  1475.   "T if first arg is less than or equal to second arg.\n\
  1476. Both must be numbers or markers.")
  1477.   (num1, num2)
  1478.      register Lisp_Object num1, num2;
  1479. {
  1480.   return arithcompare (num1, num2, less_or_equal);
  1481. }
  1482.  
  1483. DEFUN (">=", Fgeq, Sgeq, 2, 2, 0,
  1484.   "T if first arg is greater than or equal to second arg.\n\
  1485. Both must be numbers or markers.")
  1486.   (num1, num2)
  1487.      register Lisp_Object num1, num2;
  1488. {
  1489.   return arithcompare (num1, num2, grtr_or_equal);
  1490. }
  1491.  
  1492. DEFUN ("/=", Fneq, Sneq, 2, 2, 0,
  1493.   "T if first arg is not equal to second arg.  Both must be numbers or markers.")
  1494.   (num1, num2)
  1495.      register Lisp_Object num1, num2;
  1496. {
  1497.   return arithcompare (num1, num2, notequal);
  1498. }
  1499.  
  1500. DEFUN ("zerop", Fzerop, Szerop, 1, 1, 0, "T if NUMBER is zero.")
  1501.   (num)
  1502.      register Lisp_Object num;
  1503. {
  1504. #ifdef LISP_FLOAT_TYPE
  1505.   CHECK_NUMBER_OR_FLOAT (num, 0);
  1506.  
  1507.   if (XTYPE(num) == Lisp_Float)
  1508.     {
  1509.       if (XFLOAT(num)->data == 0.0)
  1510.     return Qt;
  1511.       return Qnil;
  1512.     }
  1513. #else
  1514.   CHECK_NUMBER (num, 0);
  1515. #endif /* LISP_FLOAT_TYPE */
  1516.  
  1517.   if (!XINT (num))
  1518.     return Qt;
  1519.   return Qnil;
  1520. }
  1521.  
  1522. /* Convert between 32-bit values and pairs of lispy 24-bit values.  */
  1523.  
  1524. Lisp_Object
  1525. long_to_cons (i)
  1526.      unsigned long i;
  1527. {
  1528.   unsigned int top = i >> 16;
  1529.   unsigned int bot = i & 0xFFFF;
  1530.   if (top == 0)
  1531.     return make_number (bot);
  1532.   if (top == 0xFFFF)
  1533.     return Fcons (make_number (-1), make_number (bot));
  1534.   return Fcons (make_number (top), make_number (bot));
  1535. }
  1536.  
  1537. unsigned long
  1538. cons_to_long (c)
  1539.      Lisp_Object c;
  1540. {
  1541.   Lisp_Object top, bot;
  1542.   if (INTEGERP (c))
  1543.     return XINT (c);
  1544.   top = XCONS (c)->car;
  1545.   bot = XCONS (c)->cdr;
  1546.   if (CONSP (bot))
  1547.     bot = XCONS (bot)->car;
  1548.   return ((XINT (top) << 16) | XINT (bot));
  1549. }
  1550.  
  1551. DEFUN ("number-to-string", Fnumber_to_string, Snumber_to_string, 1, 1, 0,
  1552.   "Convert NUM to a string by printing it in decimal.\n\
  1553. Uses a minus sign if negative.\n\
  1554. NUM may be an integer or a floating point number.")
  1555.   (num)
  1556.      Lisp_Object num;
  1557. {
  1558.   char buffer[20];
  1559.  
  1560. #ifndef LISP_FLOAT_TYPE
  1561.   CHECK_NUMBER (num, 0);
  1562. #else
  1563.   CHECK_NUMBER_OR_FLOAT (num, 0);
  1564.  
  1565.   if (XTYPE(num) == Lisp_Float)
  1566.     {
  1567.       char pigbuf[350];    /* see comments in float_to_string */
  1568.  
  1569.       float_to_string (pigbuf, XFLOAT(num)->data);
  1570.       return build_string (pigbuf);      
  1571.     }
  1572. #endif /* LISP_FLOAT_TYPE */
  1573.  
  1574.   sprintf (buffer, "%d", XINT (num));
  1575.   return build_string (buffer);
  1576. }
  1577.  
  1578. DEFUN ("string-to-number", Fstring_to_number, Sstring_to_number, 1, 1, 0,
  1579.   "Convert STRING to a number by parsing it as a decimal number.\n\
  1580. This parses both integers and floating point numbers.\n\
  1581. It ignores leading spaces and tabs.")
  1582.   (str)
  1583.      register Lisp_Object str;
  1584. {
  1585.   unsigned char *p;
  1586.  
  1587.   CHECK_STRING (str, 0);
  1588.  
  1589.   p = XSTRING (str)->data;
  1590.  
  1591.   /* Skip any whitespace at the front of the number.  Some versions of
  1592.      atoi do this anyway, so we might as well make Emacs lisp consistent.  */
  1593.   while (*p == ' ' || *p == '\t')
  1594.     p++;
  1595.  
  1596. #ifdef LISP_FLOAT_TYPE
  1597.   if (isfloat_string (p))
  1598.     return make_float (atof (p));
  1599. #endif /* LISP_FLOAT_TYPE */
  1600.  
  1601.   return make_number (atoi (p));
  1602. }
  1603.   
  1604. enum arithop
  1605.   { Aadd, Asub, Amult, Adiv, Alogand, Alogior, Alogxor, Amax, Amin };
  1606.  
  1607. extern Lisp_Object float_arith_driver ();
  1608.  
  1609. Lisp_Object
  1610. arith_driver (code, nargs, args)
  1611.      enum arithop code;
  1612.      int nargs;
  1613.      register Lisp_Object *args;
  1614. {
  1615.   register Lisp_Object val;
  1616.   register int argnum;
  1617.   register int accum;
  1618.   register int next;
  1619.  
  1620. #ifdef SWITCH_ENUM_BUG
  1621.   switch ((int) code)
  1622. #else
  1623.   switch (code)
  1624. #endif
  1625.     {
  1626.     case Alogior:
  1627.     case Alogxor:
  1628.     case Aadd:
  1629.     case Asub:
  1630.       accum = 0; break;
  1631.     case Amult:
  1632.       accum = 1; break;
  1633.     case Alogand:
  1634.       accum = -1; break;
  1635.     }
  1636.  
  1637.   for (argnum = 0; argnum < nargs; argnum++)
  1638.     {
  1639.       val = args[argnum];    /* using args[argnum] as argument to CHECK_NUMBER_... */
  1640. #ifdef LISP_FLOAT_TYPE
  1641.       CHECK_NUMBER_OR_FLOAT_COERCE_MARKER (val, argnum);
  1642.  
  1643.       if (XTYPE (val) == Lisp_Float) /* time to do serious math */
  1644.     return (float_arith_driver ((double) accum, argnum, code,
  1645.                     nargs, args));
  1646. #else
  1647.       CHECK_NUMBER_COERCE_MARKER (val, argnum);
  1648. #endif /* LISP_FLOAT_TYPE */
  1649.       args[argnum] = val;    /* runs into a compiler bug. */
  1650.       next = XINT (args[argnum]);
  1651. #ifdef SWITCH_ENUM_BUG
  1652.       switch ((int) code)
  1653. #else
  1654.       switch (code)
  1655. #endif
  1656.     {
  1657.     case Aadd: accum += next; break;
  1658.     case Asub:
  1659.       if (!argnum && nargs != 1)
  1660.         next = - next;
  1661.       accum -= next;
  1662.       break;
  1663.     case Amult: accum *= next; break;
  1664.     case Adiv:
  1665.       if (!argnum) accum = next;
  1666.       else
  1667.         {
  1668.           if (next == 0)
  1669.         Fsignal (Qarith_error, Qnil);
  1670.           accum /= next;
  1671.         }
  1672.       break;
  1673.     case Alogand: accum &= next; break;
  1674.     case Alogior: accum |= next; break;
  1675.     case Alogxor: accum ^= next; break;
  1676.     case Amax: if (!argnum || next > accum) accum = next; break;
  1677.     case Amin: if (!argnum || next < accum) accum = next; break;
  1678.     }
  1679.     }
  1680.  
  1681.   XSET (val, Lisp_Int, accum);
  1682.   return val;
  1683. }
  1684.  
  1685. #ifdef LISP_FLOAT_TYPE
  1686.  
  1687. #undef isnan
  1688. #define isnan(x) ((x) != (x))
  1689.  
  1690. Lisp_Object
  1691. float_arith_driver (accum, argnum, code, nargs, args)
  1692.      double accum;
  1693.      register int argnum;
  1694.      enum arithop code;
  1695.      int nargs;
  1696.      register Lisp_Object *args;
  1697. {
  1698.   register Lisp_Object val;
  1699.   double next;
  1700.   
  1701.   for (; argnum < nargs; argnum++)
  1702.     {
  1703.       val = args[argnum];    /* using args[argnum] as argument to CHECK_NUMBER_... */
  1704.       CHECK_NUMBER_OR_FLOAT_COERCE_MARKER (val, argnum);
  1705.  
  1706.       if (XTYPE (val) == Lisp_Float)
  1707.     {
  1708.       next = XFLOAT (val)->data;
  1709.     }
  1710.       else
  1711.     {
  1712.       args[argnum] = val;    /* runs into a compiler bug. */
  1713.       next = XINT (args[argnum]);
  1714.     }
  1715. #ifdef SWITCH_ENUM_BUG
  1716.       switch ((int) code)
  1717. #else
  1718.       switch (code)
  1719. #endif
  1720.     {
  1721.     case Aadd:
  1722.       accum += next;
  1723.       break;
  1724.     case Asub:
  1725.       if (!argnum && nargs != 1)
  1726.         next = - next;
  1727.       accum -= next;
  1728.       break;
  1729.     case Amult:
  1730.       accum *= next;
  1731.       break;
  1732.     case Adiv:
  1733.       if (!argnum)
  1734.         accum = next;
  1735.       else
  1736.         {
  1737.           if (next == 0)
  1738.         Fsignal (Qarith_error, Qnil);
  1739.           accum /= next;
  1740.         }
  1741.       break;
  1742.     case Alogand:
  1743.     case Alogior:
  1744.     case Alogxor:
  1745.       return wrong_type_argument (Qinteger_or_marker_p, val);
  1746.     case Amax:
  1747.       if (!argnum || isnan (next) || next > accum)
  1748.         accum = next;
  1749.       break;
  1750.     case Amin:
  1751.       if (!argnum || isnan (next) || next < accum)
  1752.         accum = next;
  1753.       break;
  1754.     }
  1755.     }
  1756.  
  1757.   return make_float (accum);
  1758. }
  1759. #endif /* LISP_FLOAT_TYPE */
  1760.  
  1761. DEFUN ("+", Fplus, Splus, 0, MANY, 0,
  1762.   "Return sum of any number of arguments, which are numbers or markers.")
  1763.   (nargs, args)
  1764.      int nargs;
  1765.      Lisp_Object *args;
  1766. {
  1767.   return arith_driver (Aadd, nargs, args);
  1768. }
  1769.  
  1770. DEFUN ("-", Fminus, Sminus, 0, MANY, 0,
  1771.   "Negate number or subtract numbers or markers.\n\
  1772. With one arg, negates it.  With more than one arg,\n\
  1773. subtracts all but the first from the first.")
  1774.   (nargs, args)
  1775.      int nargs;
  1776.      Lisp_Object *args;
  1777. {
  1778.   return arith_driver (Asub, nargs, args);
  1779. }
  1780.  
  1781. DEFUN ("*", Ftimes, Stimes, 0, MANY, 0,
  1782.   "Returns product of any number of arguments, which are numbers or markers.")
  1783.   (nargs, args)
  1784.      int nargs;
  1785.      Lisp_Object *args;
  1786. {
  1787.   return arith_driver (Amult, nargs, args);
  1788. }
  1789.  
  1790. DEFUN ("/", Fquo, Squo, 2, MANY, 0,
  1791.   "Returns first argument divided by all the remaining arguments.\n\
  1792. The arguments must be numbers or markers.")
  1793.   (nargs, args)
  1794.      int nargs;
  1795.      Lisp_Object *args;
  1796. {
  1797.   return arith_driver (Adiv, nargs, args);
  1798. }
  1799.  
  1800. DEFUN ("%", Frem, Srem, 2, 2, 0,
  1801.   "Returns remainder of first arg divided by second.\n\
  1802. Both must be integers or markers.")
  1803.   (num1, num2)
  1804.      register Lisp_Object num1, num2;
  1805. {
  1806.   Lisp_Object val;
  1807.  
  1808.   CHECK_NUMBER_COERCE_MARKER (num1, 0);
  1809.   CHECK_NUMBER_COERCE_MARKER (num2, 1);
  1810.  
  1811.   if (XFASTINT (num2) == 0)
  1812.     Fsignal (Qarith_error, Qnil);
  1813.  
  1814.   XSET (val, Lisp_Int, XINT (num1) % XINT (num2));
  1815.   return val;
  1816. }
  1817.  
  1818. #ifndef HAVE_FMOD
  1819. double
  1820. fmod (f1, f2)
  1821.      double f1, f2;
  1822. {
  1823. #ifdef HAVE_DREM  /* Some systems use this non-standard name.  */
  1824.   return (drem (f1, f2));
  1825. #else  /* Other systems don't seem to have it at all.  */
  1826.   return (f1 - f2 * floor (f1/f2));
  1827. #endif
  1828. }
  1829. #endif /* ! HAVE_FMOD */
  1830.  
  1831. DEFUN ("mod", Fmod, Smod, 2, 2, 0,
  1832.   "Returns X modulo Y.\n\
  1833. The result falls between zero (inclusive) and Y (exclusive).\n\
  1834. Both X and Y must be numbers or markers.")
  1835.   (num1, num2)
  1836.      register Lisp_Object num1, num2;
  1837. {
  1838.   Lisp_Object val;
  1839.   int i1, i2;
  1840.  
  1841. #ifdef LISP_FLOAT_TYPE
  1842.   CHECK_NUMBER_OR_FLOAT_COERCE_MARKER (num1, 0);
  1843.   CHECK_NUMBER_OR_FLOAT_COERCE_MARKER (num2, 1);
  1844.  
  1845.   if (XTYPE (num1) == Lisp_Float || XTYPE (num2) == Lisp_Float)
  1846.     {
  1847.       double f1, f2;
  1848.  
  1849.       f1 = XTYPE (num1) == Lisp_Float ? XFLOAT (num1)->data : XINT (num1);
  1850.       f2 = XTYPE (num2) == Lisp_Float ? XFLOAT (num2)->data : XINT (num2);
  1851.       if (f2 == 0)
  1852.     Fsignal (Qarith_error, Qnil);
  1853.  
  1854.       f1 = fmod (f1, f2);
  1855.       /* If the "remainder" comes out with the wrong sign, fix it.  */
  1856.       if ((f1 < 0) != (f2 < 0))
  1857.     f1 += f2;
  1858.       return (make_float (f1));
  1859.     }
  1860. #else /* not LISP_FLOAT_TYPE */
  1861.   CHECK_NUMBER_COERCE_MARKER (num1, 0);
  1862.   CHECK_NUMBER_COERCE_MARKER (num2, 1);
  1863. #endif /* not LISP_FLOAT_TYPE */
  1864.  
  1865.   i1 = XINT (num1);
  1866.   i2 = XINT (num2);
  1867.  
  1868.   if (i2 == 0)
  1869.     Fsignal (Qarith_error, Qnil);
  1870.   
  1871.   i1 %= i2;
  1872.  
  1873.   /* If the "remainder" comes out with the wrong sign, fix it.  */
  1874.   if ((i1 < 0) != (i2 < 0))
  1875.     i1 += i2;
  1876.  
  1877.   XSET (val, Lisp_Int, i1);
  1878.   return val;
  1879. }
  1880.  
  1881. DEFUN ("max", Fmax, Smax, 1, MANY, 0,
  1882.   "Return largest of all the arguments (which must be numbers or markers).\n\
  1883. The value is always a number; markers are converted to numbers.")
  1884.   (nargs, args)
  1885.      int nargs;
  1886.      Lisp_Object *args;
  1887. {
  1888.   return arith_driver (Amax, nargs, args);
  1889. }
  1890.  
  1891. DEFUN ("min", Fmin, Smin, 1, MANY, 0,
  1892.   "Return smallest of all the arguments (which must be numbers or markers).\n\
  1893. The value is always a number; markers are converted to numbers.")
  1894.   (nargs, args)
  1895.      int nargs;
  1896.      Lisp_Object *args;
  1897. {
  1898.   return arith_driver (Amin, nargs, args);
  1899. }
  1900.  
  1901. DEFUN ("logand", Flogand, Slogand, 0, MANY, 0,
  1902.   "Return bitwise-and of all the arguments.\n\
  1903. Arguments may be integers, or markers converted to integers.")
  1904.   (nargs, args)
  1905.      int nargs;
  1906.      Lisp_Object *args;
  1907. {
  1908.   return arith_driver (Alogand, nargs, args);
  1909. }
  1910.  
  1911. DEFUN ("logior", Flogior, Slogior, 0, MANY, 0,
  1912.   "Return bitwise-or of all the arguments.\n\
  1913. Arguments may be integers, or markers converted to integers.")
  1914.   (nargs, args)
  1915.      int nargs;
  1916.      Lisp_Object *args;
  1917. {
  1918.   return arith_driver (Alogior, nargs, args);
  1919. }
  1920.  
  1921. DEFUN ("logxor", Flogxor, Slogxor, 0, MANY, 0,
  1922.   "Return bitwise-exclusive-or of all the arguments.\n\
  1923. Arguments may be integers, or markers converted to integers.")
  1924.   (nargs, args)
  1925.      int nargs;
  1926.      Lisp_Object *args;
  1927. {
  1928.   return arith_driver (Alogxor, nargs, args);
  1929. }
  1930.  
  1931. DEFUN ("ash", Fash, Sash, 2, 2, 0,
  1932.   "Return VALUE with its bits shifted left by COUNT.\n\
  1933. If COUNT is negative, shifting is actually to the right.\n\
  1934. In this case, the sign bit is duplicated.")
  1935.   (num1, num2)
  1936.      register Lisp_Object num1, num2;
  1937. {
  1938.   register Lisp_Object val;
  1939.  
  1940.   CHECK_NUMBER (num1, 0);
  1941.   CHECK_NUMBER (num2, 1);
  1942.  
  1943.   if (XINT (num2) > 0)
  1944.     XSET (val, Lisp_Int, XINT (num1) << XFASTINT (num2));
  1945.   else
  1946.     XSET (val, Lisp_Int, XINT (num1) >> -XINT (num2));
  1947.   return val;
  1948. }
  1949.  
  1950. DEFUN ("lsh", Flsh, Slsh, 2, 2, 0,
  1951.   "Return VALUE with its bits shifted left by COUNT.\n\
  1952. If COUNT is negative, shifting is actually to the right.\n\
  1953. In this case,  zeros are shifted in on the left.")
  1954.   (num1, num2)
  1955.      register Lisp_Object num1, num2;
  1956. {
  1957.   register Lisp_Object val;
  1958.  
  1959.   CHECK_NUMBER (num1, 0);
  1960.   CHECK_NUMBER (num2, 1);
  1961.  
  1962.   if (XINT (num2) > 0)
  1963.     XSET (val, Lisp_Int, (unsigned) XFASTINT (num1) << XFASTINT (num2));
  1964.   else
  1965.     XSET (val, Lisp_Int, (unsigned) XFASTINT (num1) >> -XINT (num2));
  1966.   return val;
  1967. }
  1968.  
  1969. DEFUN ("1+", Fadd1, Sadd1, 1, 1, 0,
  1970.   "Return NUMBER plus one.  NUMBER may be a number or a marker.\n\
  1971. Markers are converted to integers.")
  1972.   (num)
  1973.      register Lisp_Object num;
  1974. {
  1975. #ifdef LISP_FLOAT_TYPE
  1976.   CHECK_NUMBER_OR_FLOAT_COERCE_MARKER (num, 0);
  1977.  
  1978.   if (XTYPE (num) == Lisp_Float)
  1979.     return (make_float (1.0 + XFLOAT (num)->data));
  1980. #else
  1981.   CHECK_NUMBER_COERCE_MARKER (num, 0);
  1982. #endif /* LISP_FLOAT_TYPE */
  1983.  
  1984.   XSETINT (num, XFASTINT (num) + 1);
  1985.   return num;
  1986. }
  1987.  
  1988. DEFUN ("1-", Fsub1, Ssub1, 1, 1, 0,
  1989.   "Return NUMBER minus one.  NUMBER may be a number or a marker.\n\
  1990. Markers are converted to integers.")
  1991.   (num)
  1992.      register Lisp_Object num;
  1993. {
  1994. #ifdef LISP_FLOAT_TYPE
  1995.   CHECK_NUMBER_OR_FLOAT_COERCE_MARKER (num, 0);
  1996.  
  1997.   if (XTYPE (num) == Lisp_Float)
  1998.     return (make_float (-1.0 + XFLOAT (num)->data));
  1999. #else
  2000.   CHECK_NUMBER_COERCE_MARKER (num, 0);
  2001. #endif /* LISP_FLOAT_TYPE */
  2002.  
  2003.   XSETINT (num, XFASTINT (num) - 1);
  2004.   return num;
  2005. }
  2006.  
  2007. DEFUN ("lognot", Flognot, Slognot, 1, 1, 0,
  2008.   "Return the bitwise complement of ARG.  ARG must be an integer.")
  2009.   (num)
  2010.      register Lisp_Object num;
  2011. {
  2012.   CHECK_NUMBER (num, 0);
  2013.   XSETINT (num, ~XFASTINT (num));
  2014.   return num;
  2015. }
  2016.  
  2017. void
  2018. syms_of_data ()
  2019. {
  2020.   Lisp_Object error_tail, arith_tail;
  2021.  
  2022.   Qquote = intern ("quote");
  2023.   Qlambda = intern ("lambda");
  2024.   Qsubr = intern ("subr");
  2025.   Qerror_conditions = intern ("error-conditions");
  2026.   Qerror_message = intern ("error-message");
  2027.   Qtop_level = intern ("top-level");
  2028.  
  2029.   Qerror = intern ("error");
  2030.   Qquit = intern ("quit");
  2031.   Qwrong_type_argument = intern ("wrong-type-argument");
  2032.   Qargs_out_of_range = intern ("args-out-of-range");
  2033.   Qvoid_function = intern ("void-function");
  2034.   Qcyclic_function_indirection = intern ("cyclic-function-indirection");
  2035.   Qvoid_variable = intern ("void-variable");
  2036.   Qsetting_constant = intern ("setting-constant");
  2037.   Qinvalid_read_syntax = intern ("invalid-read-syntax");
  2038.  
  2039.   Qinvalid_function = intern ("invalid-function");
  2040.   Qwrong_number_of_arguments = intern ("wrong-number-of-arguments");
  2041.   Qno_catch = intern ("no-catch");
  2042.   Qend_of_file = intern ("end-of-file");
  2043.   Qarith_error = intern ("arith-error");
  2044.   Qbeginning_of_buffer = intern ("beginning-of-buffer");
  2045.   Qend_of_buffer = intern ("end-of-buffer");
  2046.   Qbuffer_read_only = intern ("buffer-read-only");
  2047.   Qmark_inactive = intern ("mark-inactive");
  2048.  
  2049.   Qlistp = intern ("listp");
  2050.   Qconsp = intern ("consp");
  2051.   Qsymbolp = intern ("symbolp");
  2052.   Qintegerp = intern ("integerp");
  2053.   Qnatnump = intern ("natnump");
  2054.   Qwholenump = intern ("wholenump");
  2055.   Qstringp = intern ("stringp");
  2056.   Qarrayp = intern ("arrayp");
  2057.   Qsequencep = intern ("sequencep");
  2058.   Qbufferp = intern ("bufferp");
  2059.   Qvectorp = intern ("vectorp");
  2060.   Qchar_or_string_p = intern ("char-or-string-p");
  2061.   Qmarkerp = intern ("markerp");
  2062.   Qbuffer_or_string_p = intern ("buffer-or-string-p");
  2063.   Qinteger_or_marker_p = intern ("integer-or-marker-p");
  2064.   Qboundp = intern ("boundp");
  2065.   Qfboundp = intern ("fboundp");
  2066.  
  2067. #ifdef LISP_FLOAT_TYPE
  2068.   Qfloatp = intern ("floatp");
  2069.   Qnumberp = intern ("numberp");
  2070.   Qnumber_or_marker_p = intern ("number-or-marker-p");
  2071. #endif /* LISP_FLOAT_TYPE */
  2072.  
  2073.   Qcdr = intern ("cdr");
  2074.  
  2075.   /* Handle automatic advice activation */
  2076.   Qad_advice_info = intern ("ad-advice-info");
  2077.   Qad_activate = intern ("ad-activate");
  2078.  
  2079.   error_tail = Fcons (Qerror, Qnil);
  2080.  
  2081.   /* ERROR is used as a signaler for random errors for which nothing else is right */
  2082.  
  2083.   Fput (Qerror, Qerror_conditions,
  2084.     error_tail);
  2085.   Fput (Qerror, Qerror_message,
  2086.     build_string ("error"));
  2087.  
  2088.   Fput (Qquit, Qerror_conditions,
  2089.     Fcons (Qquit, Qnil));
  2090.   Fput (Qquit, Qerror_message,
  2091.     build_string ("Quit"));
  2092.  
  2093.   Fput (Qwrong_type_argument, Qerror_conditions,
  2094.     Fcons (Qwrong_type_argument, error_tail));
  2095.   Fput (Qwrong_type_argument, Qerror_message,
  2096.     build_string ("Wrong type argument"));
  2097.  
  2098.   Fput (Qargs_out_of_range, Qerror_conditions,
  2099.     Fcons (Qargs_out_of_range, error_tail));
  2100.   Fput (Qargs_out_of_range, Qerror_message,
  2101.     build_string ("Args out of range"));
  2102.  
  2103.   Fput (Qvoid_function, Qerror_conditions,
  2104.     Fcons (Qvoid_function, error_tail));
  2105.   Fput (Qvoid_function, Qerror_message,
  2106.     build_string ("Symbol's function definition is void"));
  2107.  
  2108.   Fput (Qcyclic_function_indirection, Qerror_conditions,
  2109.     Fcons (Qcyclic_function_indirection, error_tail));
  2110.   Fput (Qcyclic_function_indirection, Qerror_message,
  2111.     build_string ("Symbol's chain of function indirections contains a loop"));
  2112.  
  2113.   Fput (Qvoid_variable, Qerror_conditions,
  2114.     Fcons (Qvoid_variable, error_tail));
  2115.   Fput (Qvoid_variable, Qerror_message,
  2116.     build_string ("Symbol's value as variable is void"));
  2117.  
  2118.   Fput (Qsetting_constant, Qerror_conditions,
  2119.     Fcons (Qsetting_constant, error_tail));
  2120.   Fput (Qsetting_constant, Qerror_message,
  2121.     build_string ("Attempt to set a constant symbol"));
  2122.  
  2123.   Fput (Qinvalid_read_syntax, Qerror_conditions,
  2124.     Fcons (Qinvalid_read_syntax, error_tail));
  2125.   Fput (Qinvalid_read_syntax, Qerror_message,
  2126.     build_string ("Invalid read syntax"));
  2127.  
  2128.   Fput (Qinvalid_function, Qerror_conditions,
  2129.     Fcons (Qinvalid_function, error_tail));
  2130.   Fput (Qinvalid_function, Qerror_message,
  2131.     build_string ("Invalid function"));
  2132.  
  2133.   Fput (Qwrong_number_of_arguments, Qerror_conditions,
  2134.     Fcons (Qwrong_number_of_arguments, error_tail));
  2135.   Fput (Qwrong_number_of_arguments, Qerror_message,
  2136.     build_string ("Wrong number of arguments"));
  2137.  
  2138.   Fput (Qno_catch, Qerror_conditions,
  2139.     Fcons (Qno_catch, error_tail));
  2140.   Fput (Qno_catch, Qerror_message,
  2141.     build_string ("No catch for tag"));
  2142.  
  2143.   Fput (Qend_of_file, Qerror_conditions,
  2144.     Fcons (Qend_of_file, error_tail));
  2145.   Fput (Qend_of_file, Qerror_message,
  2146.     build_string ("End of file during parsing"));
  2147.  
  2148.   arith_tail = Fcons (Qarith_error, error_tail);
  2149.   Fput (Qarith_error, Qerror_conditions,
  2150.     arith_tail);
  2151.   Fput (Qarith_error, Qerror_message,
  2152.     build_string ("Arithmetic error"));
  2153.  
  2154.   Fput (Qbeginning_of_buffer, Qerror_conditions,
  2155.     Fcons (Qbeginning_of_buffer, error_tail));
  2156.   Fput (Qbeginning_of_buffer, Qerror_message,
  2157.     build_string ("Beginning of buffer"));
  2158.  
  2159.   Fput (Qend_of_buffer, Qerror_conditions,
  2160.     Fcons (Qend_of_buffer, error_tail));
  2161.   Fput (Qend_of_buffer, Qerror_message,
  2162.     build_string ("End of buffer"));
  2163.  
  2164.   Fput (Qbuffer_read_only, Qerror_conditions,
  2165.     Fcons (Qbuffer_read_only, error_tail));
  2166.   Fput (Qbuffer_read_only, Qerror_message,
  2167.     build_string ("Buffer is read-only"));
  2168.  
  2169. #ifdef LISP_FLOAT_TYPE
  2170.   Qrange_error = intern ("range-error");
  2171.   Qdomain_error = intern ("domain-error");
  2172.   Qsingularity_error = intern ("singularity-error");
  2173.   Qoverflow_error = intern ("overflow-error");
  2174.   Qunderflow_error = intern ("underflow-error");
  2175.  
  2176.   Fput (Qdomain_error, Qerror_conditions,
  2177.     Fcons (Qdomain_error, arith_tail));
  2178.   Fput (Qdomain_error, Qerror_message,
  2179.     build_string ("Arithmetic domain error"));
  2180.  
  2181.   Fput (Qrange_error, Qerror_conditions,
  2182.     Fcons (Qrange_error, arith_tail));
  2183.   Fput (Qrange_error, Qerror_message,
  2184.     build_string ("Arithmetic range error"));
  2185.  
  2186.   Fput (Qsingularity_error, Qerror_conditions,
  2187.     Fcons (Qsingularity_error, Fcons (Qdomain_error, arith_tail)));
  2188.   Fput (Qsingularity_error, Qerror_message,
  2189.     build_string ("Arithmetic singularity error"));
  2190.  
  2191.   Fput (Qoverflow_error, Qerror_conditions,
  2192.     Fcons (Qoverflow_error, Fcons (Qdomain_error, arith_tail)));
  2193.   Fput (Qoverflow_error, Qerror_message,
  2194.     build_string ("Arithmetic overflow error"));
  2195.  
  2196.   Fput (Qunderflow_error, Qerror_conditions,
  2197.     Fcons (Qunderflow_error, Fcons (Qdomain_error, arith_tail)));
  2198.   Fput (Qunderflow_error, Qerror_message,
  2199.     build_string ("Arithmetic underflow error"));
  2200.  
  2201.   staticpro (&Qrange_error);
  2202.   staticpro (&Qdomain_error);
  2203.   staticpro (&Qsingularity_error);
  2204.   staticpro (&Qoverflow_error);
  2205.   staticpro (&Qunderflow_error);
  2206. #endif /* LISP_FLOAT_TYPE */
  2207.  
  2208.   staticpro (&Qnil);
  2209.   staticpro (&Qt);
  2210.   staticpro (&Qquote);
  2211.   staticpro (&Qlambda);
  2212.   staticpro (&Qsubr);
  2213.   staticpro (&Qunbound);
  2214.   staticpro (&Qerror_conditions);
  2215.   staticpro (&Qerror_message);
  2216.   staticpro (&Qtop_level);
  2217.  
  2218.   staticpro (&Qerror);
  2219.   staticpro (&Qquit);
  2220.   staticpro (&Qwrong_type_argument);
  2221.   staticpro (&Qargs_out_of_range);
  2222.   staticpro (&Qvoid_function);
  2223.   staticpro (&Qcyclic_function_indirection);
  2224.   staticpro (&Qvoid_variable);
  2225.   staticpro (&Qsetting_constant);
  2226.   staticpro (&Qinvalid_read_syntax);
  2227.   staticpro (&Qwrong_number_of_arguments);
  2228.   staticpro (&Qinvalid_function);
  2229.   staticpro (&Qno_catch);
  2230.   staticpro (&Qend_of_file);
  2231.   staticpro (&Qarith_error);
  2232.   staticpro (&Qbeginning_of_buffer);
  2233.   staticpro (&Qend_of_buffer);
  2234.   staticpro (&Qbuffer_read_only);
  2235.   staticpro (&Qmark_inactive);
  2236.  
  2237.   staticpro (&Qlistp);
  2238.   staticpro (&Qconsp);
  2239.   staticpro (&Qsymbolp);
  2240.   staticpro (&Qintegerp);
  2241.   staticpro (&Qnatnump);
  2242.   staticpro (&Qwholenump);
  2243.   staticpro (&Qstringp);
  2244.   staticpro (&Qarrayp);
  2245.   staticpro (&Qsequencep);
  2246.   staticpro (&Qbufferp);
  2247.   staticpro (&Qvectorp);
  2248.   staticpro (&Qchar_or_string_p);
  2249.   staticpro (&Qmarkerp);
  2250.   staticpro (&Qbuffer_or_string_p);
  2251.   staticpro (&Qinteger_or_marker_p);
  2252. #ifdef LISP_FLOAT_TYPE
  2253.   staticpro (&Qfloatp);
  2254.   staticpro (&Qnumberp);
  2255.   staticpro (&Qnumber_or_marker_p);
  2256. #endif /* LISP_FLOAT_TYPE */
  2257.  
  2258.   staticpro (&Qboundp);
  2259.   staticpro (&Qfboundp);
  2260.   staticpro (&Qcdr);
  2261.   staticpro (&Qad_advice_info);
  2262.   staticpro (&Qad_activate);
  2263.  
  2264.   defsubr (&Seq);
  2265.   defsubr (&Snull);
  2266.   defsubr (&Slistp);
  2267.   defsubr (&Snlistp);
  2268.   defsubr (&Sconsp);
  2269.   defsubr (&Satom);
  2270.   defsubr (&Sintegerp);
  2271.   defsubr (&Sinteger_or_marker_p);
  2272.   defsubr (&Snumberp);
  2273.   defsubr (&Snumber_or_marker_p);
  2274. #ifdef LISP_FLOAT_TYPE
  2275.   defsubr (&Sfloatp);
  2276. #endif /* LISP_FLOAT_TYPE */
  2277.   defsubr (&Snatnump);
  2278.   defsubr (&Ssymbolp);
  2279.   defsubr (&Sstringp);
  2280.   defsubr (&Svectorp);
  2281.   defsubr (&Sarrayp);
  2282.   defsubr (&Ssequencep);
  2283.   defsubr (&Sbufferp);
  2284.   defsubr (&Smarkerp);
  2285.   defsubr (&Ssubrp);
  2286.   defsubr (&Sbyte_code_function_p);
  2287.   defsubr (&Schar_or_string_p);
  2288.   defsubr (&Scar);
  2289.   defsubr (&Scdr);
  2290.   defsubr (&Scar_safe);
  2291.   defsubr (&Scdr_safe);
  2292.   defsubr (&Ssetcar);
  2293.   defsubr (&Ssetcdr);
  2294.   defsubr (&Ssymbol_function);
  2295.   defsubr (&Sindirect_function);
  2296.   defsubr (&Ssymbol_plist);
  2297.   defsubr (&Ssymbol_name);
  2298.   defsubr (&Smakunbound);
  2299.   defsubr (&Sfmakunbound);
  2300.   defsubr (&Sboundp);
  2301.   defsubr (&Sfboundp);
  2302.   defsubr (&Sfset);
  2303.   defsubr (&Sdefalias);
  2304.   defsubr (&Sdefine_function);
  2305.   defsubr (&Ssetplist);
  2306.   defsubr (&Ssymbol_value);
  2307.   defsubr (&Sset);
  2308.   defsubr (&Sdefault_boundp);
  2309.   defsubr (&Sdefault_value);
  2310.   defsubr (&Sset_default);
  2311.   defsubr (&Ssetq_default);
  2312.   defsubr (&Smake_variable_buffer_local);
  2313.   defsubr (&Smake_local_variable);
  2314.   defsubr (&Skill_local_variable);
  2315.   defsubr (&Saref);
  2316.   defsubr (&Saset);
  2317.   defsubr (&Snumber_to_string);
  2318.   defsubr (&Sstring_to_number);
  2319.   defsubr (&Seqlsign);
  2320.   defsubr (&Slss);
  2321.   defsubr (&Sgtr);
  2322.   defsubr (&Sleq);
  2323.   defsubr (&Sgeq);
  2324.   defsubr (&Sneq);
  2325.   defsubr (&Szerop);
  2326.   defsubr (&Splus);
  2327.   defsubr (&Sminus);
  2328.   defsubr (&Stimes);
  2329.   defsubr (&Squo);
  2330.   defsubr (&Srem);
  2331.   defsubr (&Smod);
  2332.   defsubr (&Smax);
  2333.   defsubr (&Smin);
  2334.   defsubr (&Slogand);
  2335.   defsubr (&Slogior);
  2336.   defsubr (&Slogxor);
  2337.   defsubr (&Slsh);
  2338.   defsubr (&Sash);
  2339.   defsubr (&Sadd1);
  2340.   defsubr (&Ssub1);
  2341.   defsubr (&Slognot);
  2342.  
  2343.   Fset (Qwholenump, Qnatnump);
  2344. }
  2345.  
  2346. SIGTYPE
  2347. arith_error (signo)
  2348.      int signo;
  2349. {
  2350. #ifdef USG
  2351.   /* USG systems forget handlers when they are used;
  2352.      must reestablish each time */
  2353.   signal (signo, arith_error);
  2354. #endif /* USG */
  2355. #ifdef VMS
  2356.   /* VMS systems are like USG.  */
  2357.   signal (signo, arith_error);
  2358. #endif /* VMS */
  2359. #ifdef BSD4_1
  2360.   sigrelse (SIGFPE);
  2361. #else /* not BSD4_1 */
  2362.   sigsetmask (SIGEMPTYMASK);
  2363. #endif /* not BSD4_1 */
  2364.  
  2365.   Fsignal (Qarith_error, Qnil);
  2366. }
  2367.  
  2368. init_data ()
  2369. {
  2370.   /* Don't do this if just dumping out.
  2371.      We don't want to call `signal' in this case
  2372.      so that we don't have trouble with dumping
  2373.      signal-delivering routines in an inconsistent state.  */
  2374. #ifndef CANNOT_DUMP
  2375.   if (!initialized)
  2376.     return;
  2377. #endif /* CANNOT_DUMP */
  2378.   signal (SIGFPE, arith_error);
  2379.   
  2380. #ifdef uts
  2381.   signal (SIGEMT, arith_error);
  2382. #endif /* uts */
  2383. }
  2384.