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