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