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