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