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