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