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