Mercurial > hg > xemacs-beta
annotate src/symbols.c @ 4924:ba353d7b0ce8
temporarily back out part of patch to avoid compile probs
-------------------- ChangeLog entries follow: --------------------
src/ChangeLog addition:
2010-02-03 Ben Wing <ben@xemacs.org>
* symbols.c (defsymbol_massage_name_1):
* symbols.c (defsymbol_nodump):
* symbols.c (defsymbol):
* symbols.c (defkeyword):
* symeval.h (DEFVAR_SYMVAL_FWD_OBJECT):
Temporarily back out staticpro-related changes in symbols.c and
symeval.h to fix compile problems, will put back when `latest-fix'
workspace gets merged in.
author | Ben Wing <ben@xemacs.org> |
---|---|
date | Wed, 03 Feb 2010 09:30:49 -0600 |
parents | 17362f371cc2 |
children | cbe181529c34 |
rev | line source |
---|---|
428 | 1 /* "intern" and friends -- moved here from lread.c and data.c |
2 Copyright (C) 1985-1989, 1992-1994 Free Software Foundation, Inc. | |
793 | 3 Copyright (C) 1995, 2000, 2001, 2002 Ben Wing. |
428 | 4 |
5 This file is part of XEmacs. | |
6 | |
7 XEmacs is free software; you can redistribute it and/or modify it | |
8 under the terms of the GNU General Public License as published by the | |
9 Free Software Foundation; either version 2, or (at your option) any | |
10 later version. | |
11 | |
12 XEmacs is distributed in the hope that it will be useful, but WITHOUT | |
13 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | |
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License | |
15 for more details. | |
16 | |
17 You should have received a copy of the GNU General Public License | |
18 along with XEmacs; see the file COPYING. If not, write to | |
19 the Free Software Foundation, Inc., 59 Temple Place - Suite 330, | |
20 Boston, MA 02111-1307, USA. */ | |
21 | |
22 /* Synched up with: FSF 19.30. */ | |
23 | |
24 /* This file has been Mule-ized. */ | |
25 | |
26 /* NOTE: | |
27 | |
28 The value cell of a symbol can contain a simple value or one of | |
29 various symbol-value-magic objects. Some of these objects can | |
30 chain into other kinds of objects. Here is a table of possibilities: | |
31 | |
32 1a) simple value | |
33 1b) Qunbound | |
34 1c) symbol-value-forward, excluding Qunbound | |
35 2) symbol-value-buffer-local -> 1a or 1b or 1c | |
36 3) symbol-value-lisp-magic -> 1a or 1b or 1c | |
37 4) symbol-value-lisp-magic -> symbol-value-buffer-local -> 1a or 1b or 1c | |
38 5) symbol-value-varalias | |
39 6) symbol-value-lisp-magic -> symbol-value-varalias | |
40 | |
41 The "chain" of a symbol-value-buffer-local is its current_value slot. | |
42 | |
43 The "chain" of a symbol-value-lisp-magic is its shadowed slot, which | |
44 applies for handler types without associated handlers. | |
45 | |
46 All other fields in all the structures (including the "shadowed" slot | |
47 in a symbol-value-varalias) can *only* contain a simple value or Qunbound. | |
48 | |
49 */ | |
50 | |
51 /* #### Ugh, though, this file does awful things with symbol-value-magic | |
52 objects. This ought to be cleaned up. */ | |
53 | |
54 #include <config.h> | |
55 #include "lisp.h" | |
56 | |
4921
17362f371cc2
add more byte-code assertions and better failure output
Ben Wing <ben@xemacs.org>
parents:
4905
diff
changeset
|
57 #include "bytecode.h" /* for COMPILED_FUNCTION_ANNOTATION_HACK, |
17362f371cc2
add more byte-code assertions and better failure output
Ben Wing <ben@xemacs.org>
parents:
4905
diff
changeset
|
58 defined in bytecode.h and used here. */ |
428 | 59 #include "buffer.h" /* for Vbuffer_defaults */ |
872 | 60 #include "console-impl.h" |
428 | 61 #include "elhash.h" |
62 | |
63 Lisp_Object Qad_advice_info, Qad_activate; | |
64 | |
65 Lisp_Object Qget_value, Qset_value, Qbound_predicate, Qmake_unbound; | |
66 Lisp_Object Qlocal_predicate, Qmake_local; | |
67 | |
68 Lisp_Object Qboundp, Qglobally_boundp, Qmakunbound; | |
69 Lisp_Object Qsymbol_value, Qset, Qdefault_boundp, Qdefault_value; | |
70 Lisp_Object Qset_default, Qsetq_default; | |
71 Lisp_Object Qmake_variable_buffer_local, Qmake_local_variable; | |
72 Lisp_Object Qkill_local_variable, Qkill_console_local_variable; | |
73 Lisp_Object Qsymbol_value_in_buffer, Qsymbol_value_in_console; | |
74 Lisp_Object Qlocal_variable_p; | |
75 | |
76 Lisp_Object Qconst_integer, Qconst_boolean, Qconst_object; | |
77 Lisp_Object Qconst_specifier; | |
78 Lisp_Object Qdefault_buffer, Qcurrent_buffer, Qconst_current_buffer; | |
79 Lisp_Object Qdefault_console, Qselected_console, Qconst_selected_console; | |
80 | |
81 static Lisp_Object maybe_call_magic_handler (Lisp_Object sym, | |
82 Lisp_Object funsym, | |
83 int nargs, ...); | |
84 static Lisp_Object fetch_value_maybe_past_magic (Lisp_Object sym, | |
85 Lisp_Object follow_past_lisp_magic); | |
86 static Lisp_Object *value_slot_past_magic (Lisp_Object sym); | |
87 static Lisp_Object follow_varalias_pointers (Lisp_Object symbol, | |
88 Lisp_Object follow_past_lisp_magic); | |
4502
8748a3f7ceb4
Handle varalias chains, custom variables in #'user-variable-p.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4355
diff
changeset
|
89 static Lisp_Object map_varalias_chain (Lisp_Object symbol, |
8748a3f7ceb4
Handle varalias chains, custom variables in #'user-variable-p.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4355
diff
changeset
|
90 Lisp_Object follow_past_lisp_magic, |
8748a3f7ceb4
Handle varalias chains, custom variables in #'user-variable-p.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4355
diff
changeset
|
91 Lisp_Object (*fn) (Lisp_Object arg)); |
428 | 92 |
93 | |
94 static Lisp_Object | |
95 mark_symbol (Lisp_Object obj) | |
96 { | |
440 | 97 Lisp_Symbol *sym = XSYMBOL (obj); |
428 | 98 |
99 mark_object (sym->value); | |
100 mark_object (sym->function); | |
793 | 101 mark_object (sym->name); |
428 | 102 if (!symbol_next (sym)) |
103 return sym->plist; | |
104 else | |
105 { | |
106 mark_object (sym->plist); | |
107 /* Mark the rest of the symbols in the obarray hash-chain */ | |
108 sym = symbol_next (sym); | |
793 | 109 return wrap_symbol (sym); |
428 | 110 } |
111 } | |
112 | |
1204 | 113 static const struct memory_description symbol_description[] = { |
440 | 114 { XD_LISP_OBJECT, offsetof (Lisp_Symbol, next) }, |
115 { XD_LISP_OBJECT, offsetof (Lisp_Symbol, name) }, | |
116 { XD_LISP_OBJECT, offsetof (Lisp_Symbol, value) }, | |
117 { XD_LISP_OBJECT, offsetof (Lisp_Symbol, function) }, | |
118 { XD_LISP_OBJECT, offsetof (Lisp_Symbol, plist) }, | |
428 | 119 { XD_END } |
120 }; | |
121 | |
442 | 122 /* Symbol plists are directly accessible, so we need to protect against |
123 invalid property list structure */ | |
124 | |
125 static Lisp_Object | |
126 symbol_getprop (Lisp_Object symbol, Lisp_Object property) | |
127 { | |
128 return external_plist_get (&XSYMBOL (symbol)->plist, property, 0, ERROR_ME); | |
129 } | |
130 | |
131 static int | |
132 symbol_putprop (Lisp_Object symbol, Lisp_Object property, Lisp_Object value) | |
133 { | |
134 external_plist_put (&XSYMBOL (symbol)->plist, property, value, 0, ERROR_ME); | |
135 return 1; | |
136 } | |
137 | |
138 static int | |
139 symbol_remprop (Lisp_Object symbol, Lisp_Object property) | |
140 { | |
141 return external_remprop (&XSYMBOL (symbol)->plist, property, 0, ERROR_ME); | |
142 } | |
143 | |
934 | 144 DEFINE_BASIC_LRECORD_IMPLEMENTATION_WITH_PROPS ("symbol", symbol, |
145 1, /*dumpable-flag*/ | |
146 mark_symbol, print_symbol, | |
147 0, 0, 0, symbol_description, | |
148 symbol_getprop, | |
149 symbol_putprop, | |
150 symbol_remprop, | |
151 Fsymbol_plist, | |
152 Lisp_Symbol); | |
428 | 153 |
154 /**********************************************************************/ | |
155 /* Intern */ | |
156 /**********************************************************************/ | |
157 | |
158 /* #### using a vector here is way bogus. Use a hash table instead. */ | |
159 | |
160 Lisp_Object Vobarray; | |
161 | |
162 static Lisp_Object initial_obarray; | |
163 | |
164 /* oblookup stores the bucket number here, for the sake of Funintern. */ | |
165 | |
166 static int oblookup_last_bucket_number; | |
167 | |
168 static Lisp_Object | |
169 check_obarray (Lisp_Object obarray) | |
170 { | |
171 while (!VECTORP (obarray) || XVECTOR_LENGTH (obarray) == 0) | |
172 { | |
173 /* If Vobarray is now invalid, force it to be valid. */ | |
174 if (EQ (Vobarray, obarray)) Vobarray = initial_obarray; | |
175 | |
176 obarray = wrong_type_argument (Qvectorp, obarray); | |
177 } | |
178 return obarray; | |
179 } | |
180 | |
181 Lisp_Object | |
867 | 182 intern_int (const Ibyte *str) |
428 | 183 { |
771 | 184 Bytecount len = qxestrlen (str); |
428 | 185 Lisp_Object obarray = Vobarray; |
186 | |
187 if (!VECTORP (obarray) || XVECTOR_LENGTH (obarray) == 0) | |
188 obarray = check_obarray (obarray); | |
189 | |
190 { | |
771 | 191 Lisp_Object tem = oblookup (obarray, str, len); |
428 | 192 if (SYMBOLP (tem)) |
193 return tem; | |
194 } | |
195 | |
771 | 196 return Fintern (make_string (str, len), obarray); |
197 } | |
198 | |
199 Lisp_Object | |
867 | 200 intern (const CIbyte *str) |
771 | 201 { |
867 | 202 return intern_int ((Ibyte *) str); |
428 | 203 } |
204 | |
814 | 205 Lisp_Object |
867 | 206 intern_converting_underscores_to_dashes (const CIbyte *str) |
814 | 207 { |
208 Bytecount len = strlen (str); | |
867 | 209 CIbyte *tmp = alloca_extbytes (len + 1); |
814 | 210 Bytecount i; |
211 strcpy (tmp, str); | |
212 for (i = 0; i < len; i++) | |
213 if (tmp[i] == '_') | |
214 tmp[i] = '-'; | |
867 | 215 return intern_int ((Ibyte *) tmp); |
814 | 216 } |
217 | |
428 | 218 DEFUN ("intern", Fintern, 1, 2, 0, /* |
219 Return the canonical symbol whose name is STRING. | |
220 If there is none, one is created by this function and returned. | |
444 | 221 Optional second argument OBARRAY specifies the obarray to use; |
222 it defaults to the value of the variable `obarray'. | |
428 | 223 */ |
224 (string, obarray)) | |
225 { | |
226 Lisp_Object object, *ptr; | |
793 | 227 Lisp_Object symbol; |
428 | 228 Bytecount len; |
229 | |
230 if (NILP (obarray)) obarray = Vobarray; | |
231 obarray = check_obarray (obarray); | |
232 | |
233 CHECK_STRING (string); | |
234 | |
235 len = XSTRING_LENGTH (string); | |
236 object = oblookup (obarray, XSTRING_DATA (string), len); | |
237 if (!INTP (object)) | |
238 /* Found it */ | |
239 return object; | |
240 | |
241 ptr = &XVECTOR_DATA (obarray)[XINT (object)]; | |
242 | |
243 object = Fmake_symbol (string); | |
793 | 244 symbol = object; |
428 | 245 |
246 if (SYMBOLP (*ptr)) | |
793 | 247 XSYMBOL_NEXT (symbol) = XSYMBOL (*ptr); |
428 | 248 else |
793 | 249 XSYMBOL_NEXT (symbol) = 0; |
428 | 250 *ptr = object; |
251 | |
826 | 252 if (string_byte (XSYMBOL_NAME (symbol), 0) == ':' && EQ (obarray, Vobarray)) |
428 | 253 { |
254 /* The LISP way is to put keywords in their own package, but we | |
255 don't have packages, so we do something simpler. Someday, | |
256 maybe we'll have packages and then this will be reworked. | |
257 --Stig. */ | |
793 | 258 XSYMBOL_VALUE (symbol) = object; |
428 | 259 } |
260 | |
261 return object; | |
262 } | |
263 | |
4355
a2af1ff1761f
Provide a DEFAULT argument in #'intern-soft.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4337
diff
changeset
|
264 DEFUN ("intern-soft", Fintern_soft, 1, 3, 0, /* |
428 | 265 Return the canonical symbol named NAME, or nil if none exists. |
266 NAME may be a string or a symbol. If it is a symbol, that exact | |
267 symbol is searched for. | |
444 | 268 Optional second argument OBARRAY specifies the obarray to use; |
269 it defaults to the value of the variable `obarray'. | |
4355
a2af1ff1761f
Provide a DEFAULT argument in #'intern-soft.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4337
diff
changeset
|
270 Optional third argument DEFAULT says what Lisp object to return if there is |
a2af1ff1761f
Provide a DEFAULT argument in #'intern-soft.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4337
diff
changeset
|
271 no canonical symbol named NAME, and defaults to nil. |
428 | 272 */ |
4355
a2af1ff1761f
Provide a DEFAULT argument in #'intern-soft.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4337
diff
changeset
|
273 (name, obarray, default_)) |
428 | 274 { |
275 Lisp_Object tem; | |
793 | 276 Lisp_Object string; |
428 | 277 |
278 if (NILP (obarray)) obarray = Vobarray; | |
279 obarray = check_obarray (obarray); | |
280 | |
281 if (!SYMBOLP (name)) | |
282 { | |
283 CHECK_STRING (name); | |
793 | 284 string = name; |
428 | 285 } |
286 else | |
287 string = symbol_name (XSYMBOL (name)); | |
288 | |
793 | 289 tem = oblookup (obarray, XSTRING_DATA (string), XSTRING_LENGTH (string)); |
428 | 290 if (INTP (tem) || (SYMBOLP (name) && !EQ (name, tem))) |
4355
a2af1ff1761f
Provide a DEFAULT argument in #'intern-soft.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4337
diff
changeset
|
291 return default_; |
428 | 292 else |
293 return tem; | |
294 } | |
295 | |
296 DEFUN ("unintern", Funintern, 1, 2, 0, /* | |
297 Delete the symbol named NAME, if any, from OBARRAY. | |
298 The value is t if a symbol was found and deleted, nil otherwise. | |
299 NAME may be a string or a symbol. If it is a symbol, that symbol | |
300 is deleted, if it belongs to OBARRAY--no other symbol is deleted. | |
444 | 301 OBARRAY defaults to the value of the variable `obarray'. |
428 | 302 */ |
303 (name, obarray)) | |
304 { | |
305 Lisp_Object tem; | |
793 | 306 Lisp_Object string; |
428 | 307 int hash; |
308 | |
309 if (NILP (obarray)) obarray = Vobarray; | |
310 obarray = check_obarray (obarray); | |
311 | |
312 if (SYMBOLP (name)) | |
313 string = symbol_name (XSYMBOL (name)); | |
314 else | |
315 { | |
316 CHECK_STRING (name); | |
793 | 317 string = name; |
428 | 318 } |
319 | |
793 | 320 tem = oblookup (obarray, XSTRING_DATA (string), XSTRING_LENGTH (string)); |
428 | 321 if (INTP (tem)) |
322 return Qnil; | |
323 /* If arg was a symbol, don't delete anything but that symbol itself. */ | |
324 if (SYMBOLP (name) && !EQ (name, tem)) | |
325 return Qnil; | |
326 | |
327 hash = oblookup_last_bucket_number; | |
328 | |
329 if (EQ (XVECTOR_DATA (obarray)[hash], tem)) | |
330 { | |
331 if (XSYMBOL (tem)->next) | |
793 | 332 XVECTOR_DATA (obarray)[hash] = wrap_symbol (XSYMBOL (tem)->next); |
428 | 333 else |
334 XVECTOR_DATA (obarray)[hash] = Qzero; | |
335 } | |
336 else | |
337 { | |
338 Lisp_Object tail, following; | |
339 | |
340 for (tail = XVECTOR_DATA (obarray)[hash]; | |
341 XSYMBOL (tail)->next; | |
342 tail = following) | |
343 { | |
793 | 344 following = wrap_symbol (XSYMBOL (tail)->next); |
428 | 345 if (EQ (following, tem)) |
346 { | |
347 XSYMBOL (tail)->next = XSYMBOL (following)->next; | |
348 break; | |
349 } | |
350 } | |
351 } | |
352 return Qt; | |
353 } | |
354 | |
355 /* Return the symbol in OBARRAY whose names matches the string | |
356 of SIZE characters at PTR. If there is no such symbol in OBARRAY, | |
357 return the index into OBARRAY that the string hashes to. | |
358 | |
359 Also store the bucket number in oblookup_last_bucket_number. */ | |
360 | |
361 Lisp_Object | |
867 | 362 oblookup (Lisp_Object obarray, const Ibyte *ptr, Bytecount size) |
428 | 363 { |
490 | 364 unsigned int hash, obsize; |
440 | 365 Lisp_Symbol *tail; |
428 | 366 Lisp_Object bucket; |
367 | |
368 if (!VECTORP (obarray) || | |
369 (obsize = XVECTOR_LENGTH (obarray)) == 0) | |
370 { | |
371 obarray = check_obarray (obarray); | |
372 obsize = XVECTOR_LENGTH (obarray); | |
373 } | |
374 hash = hash_string (ptr, size) % obsize; | |
375 oblookup_last_bucket_number = hash; | |
376 bucket = XVECTOR_DATA (obarray)[hash]; | |
377 if (ZEROP (bucket)) | |
378 ; | |
379 else if (!SYMBOLP (bucket)) | |
563 | 380 signal_error (Qinvalid_state, "Bad data in guts of obarray", Qunbound); /* Like CADR error message */ |
428 | 381 else |
382 for (tail = XSYMBOL (bucket); ;) | |
383 { | |
793 | 384 if (XSTRING_LENGTH (tail->name) == size && |
385 !memcmp (XSTRING_DATA (tail->name), ptr, size)) | |
428 | 386 { |
793 | 387 return wrap_symbol (tail); |
428 | 388 } |
389 tail = symbol_next (tail); | |
390 if (!tail) | |
391 break; | |
392 } | |
393 return make_int (hash); | |
394 } | |
395 | |
490 | 396 /* An excellent string hashing function. |
397 Adapted from glib's g_str_hash(). | |
398 Investigation by Karl Nelson <kenelson@ece.ucdavis.edu>. | |
399 Do a web search for "g_str_hash X31_HASH" if you want to know more. */ | |
400 unsigned int | |
867 | 401 hash_string (const Ibyte *ptr, Bytecount len) |
428 | 402 { |
490 | 403 unsigned int hash; |
404 | |
405 for (hash = 0; len; len--, ptr++) | |
406 /* (31 * hash) will probably be optimized to ((hash << 5) - hash). */ | |
407 hash = 31 * hash + *ptr; | |
408 | |
409 return hash; | |
428 | 410 } |
411 | |
412 /* Map FN over OBARRAY. The mapping is stopped when FN returns a | |
413 non-zero value. */ | |
414 void | |
415 map_obarray (Lisp_Object obarray, | |
416 int (*fn) (Lisp_Object, void *), void *arg) | |
417 { | |
418 REGISTER int i; | |
419 | |
420 CHECK_VECTOR (obarray); | |
421 for (i = XVECTOR_LENGTH (obarray) - 1; i >= 0; i--) | |
422 { | |
423 Lisp_Object tail = XVECTOR_DATA (obarray)[i]; | |
424 if (SYMBOLP (tail)) | |
425 while (1) | |
426 { | |
440 | 427 Lisp_Symbol *next; |
428 | 428 if ((*fn) (tail, arg)) |
429 return; | |
430 next = symbol_next (XSYMBOL (tail)); | |
431 if (!next) | |
432 break; | |
793 | 433 tail = wrap_symbol (next); |
428 | 434 } |
435 } | |
436 } | |
437 | |
438 static int | |
439 mapatoms_1 (Lisp_Object sym, void *arg) | |
440 { | |
441 call1 (*(Lisp_Object *)arg, sym); | |
442 return 0; | |
443 } | |
444 | |
445 DEFUN ("mapatoms", Fmapatoms, 1, 2, 0, /* | |
446 Call FUNCTION on every symbol in OBARRAY. | |
447 OBARRAY defaults to the value of `obarray'. | |
448 */ | |
449 (function, obarray)) | |
450 { | |
442 | 451 struct gcpro gcpro1; |
452 | |
428 | 453 if (NILP (obarray)) |
454 obarray = Vobarray; | |
455 obarray = check_obarray (obarray); | |
456 | |
442 | 457 GCPRO1 (obarray); |
428 | 458 map_obarray (obarray, mapatoms_1, &function); |
442 | 459 UNGCPRO; |
428 | 460 return Qnil; |
461 } | |
462 | |
463 | |
464 /**********************************************************************/ | |
465 /* Apropos */ | |
466 /**********************************************************************/ | |
467 | |
468 struct appropos_mapper_closure | |
469 { | |
470 Lisp_Object regexp; | |
471 Lisp_Object predicate; | |
472 Lisp_Object accumulation; | |
473 }; | |
474 | |
475 static int | |
476 apropos_mapper (Lisp_Object symbol, void *arg) | |
477 { | |
478 struct appropos_mapper_closure *closure = | |
479 (struct appropos_mapper_closure *) arg; | |
480 Bytecount match = fast_lisp_string_match (closure->regexp, | |
481 Fsymbol_name (symbol)); | |
482 | |
483 if (match >= 0 && | |
484 (NILP (closure->predicate) || | |
485 !NILP (call1 (closure->predicate, symbol)))) | |
486 closure->accumulation = Fcons (symbol, closure->accumulation); | |
487 | |
488 return 0; | |
489 } | |
490 | |
491 DEFUN ("apropos-internal", Fapropos_internal, 1, 2, 0, /* | |
444 | 492 Return a list of all symbols whose names contain match for REGEXP. |
493 If optional 2nd arg PREDICATE is non-nil, only symbols for which | |
494 \(funcall PREDICATE SYMBOL) returns non-nil are returned. | |
428 | 495 */ |
496 (regexp, predicate)) | |
497 { | |
498 struct appropos_mapper_closure closure; | |
442 | 499 struct gcpro gcpro1; |
428 | 500 |
501 CHECK_STRING (regexp); | |
502 | |
503 closure.regexp = regexp; | |
504 closure.predicate = predicate; | |
505 closure.accumulation = Qnil; | |
442 | 506 GCPRO1 (closure.accumulation); |
428 | 507 map_obarray (Vobarray, apropos_mapper, &closure); |
508 closure.accumulation = Fsort (closure.accumulation, Qstring_lessp); | |
442 | 509 UNGCPRO; |
428 | 510 return closure.accumulation; |
511 } | |
512 | |
513 | |
514 /* Extract and set components of symbols */ | |
515 | |
516 static void set_up_buffer_local_cache (Lisp_Object sym, | |
517 struct symbol_value_buffer_local *bfwd, | |
518 struct buffer *buf, | |
519 Lisp_Object new_alist_el, | |
520 int set_it_p); | |
521 | |
522 DEFUN ("boundp", Fboundp, 1, 1, 0, /* | |
523 Return t if SYMBOL's value is not void. | |
524 */ | |
525 (symbol)) | |
526 { | |
527 CHECK_SYMBOL (symbol); | |
528 return UNBOUNDP (find_symbol_value (symbol)) ? Qnil : Qt; | |
529 } | |
530 | |
531 DEFUN ("globally-boundp", Fglobally_boundp, 1, 1, 0, /* | |
532 Return t if SYMBOL has a global (non-bound) value. | |
533 This is for the byte-compiler; you really shouldn't be using this. | |
534 */ | |
535 (symbol)) | |
536 { | |
537 CHECK_SYMBOL (symbol); | |
538 return UNBOUNDP (top_level_value (symbol)) ? Qnil : Qt; | |
539 } | |
540 | |
541 DEFUN ("fboundp", Ffboundp, 1, 1, 0, /* | |
542 Return t if SYMBOL's function definition is not void. | |
543 */ | |
544 (symbol)) | |
545 { | |
546 CHECK_SYMBOL (symbol); | |
547 return UNBOUNDP (XSYMBOL (symbol)->function) ? Qnil : Qt; | |
548 } | |
549 | |
550 /* Return non-zero if SYM's value or function (the current contents of | |
551 which should be passed in as VAL) is constant, i.e. unsettable. */ | |
552 | |
553 static int | |
554 symbol_is_constant (Lisp_Object sym, Lisp_Object val) | |
555 { | |
556 /* #### - I wonder if it would be better to just have a new magic value | |
557 type and make nil, t, and all keywords have that same magic | |
558 constant_symbol value. This test is awfully specific about what is | |
559 constant and what isn't. --Stig */ | |
560 if (EQ (sym, Qnil) || | |
561 EQ (sym, Qt)) | |
562 return 1; | |
563 | |
564 if (SYMBOL_VALUE_MAGIC_P (val)) | |
565 switch (XSYMBOL_VALUE_MAGIC_TYPE (val)) | |
566 { | |
567 case SYMVAL_CONST_OBJECT_FORWARD: | |
568 case SYMVAL_CONST_SPECIFIER_FORWARD: | |
569 case SYMVAL_CONST_FIXNUM_FORWARD: | |
570 case SYMVAL_CONST_BOOLEAN_FORWARD: | |
571 case SYMVAL_CONST_CURRENT_BUFFER_FORWARD: | |
572 case SYMVAL_CONST_SELECTED_CONSOLE_FORWARD: | |
573 return 1; | |
574 default: break; /* Warning suppression */ | |
575 } | |
576 | |
577 /* We don't return true for keywords here because they are handled | |
578 specially by reject_constant_symbols(). */ | |
579 return 0; | |
580 } | |
581 | |
582 /* We are setting SYM's value slot (or function slot, if FUNCTION_P is | |
583 non-zero) to NEWVAL. Make sure this is allowed. | |
584 FOLLOW_PAST_LISP_MAGIC specifies whether we delve past | |
585 symbol-value-lisp-magic objects. */ | |
586 | |
587 void | |
588 reject_constant_symbols (Lisp_Object sym, Lisp_Object newval, int function_p, | |
589 Lisp_Object follow_past_lisp_magic) | |
590 { | |
591 Lisp_Object val = | |
592 (function_p ? XSYMBOL (sym)->function | |
593 : fetch_value_maybe_past_magic (sym, follow_past_lisp_magic)); | |
594 | |
595 if (SYMBOL_VALUE_MAGIC_P (val) && | |
596 XSYMBOL_VALUE_MAGIC_TYPE (val) == SYMVAL_CONST_SPECIFIER_FORWARD) | |
563 | 597 invalid_change ("Use `set-specifier' to change a specifier's value", |
598 sym); | |
428 | 599 |
996 | 600 if ( |
601 #ifdef HAVE_SHLIB | |
602 !(unloading_module && UNBOUNDP(newval)) && | |
603 #endif | |
604 (symbol_is_constant (sym, val) | |
4793
8b50bee3c88c
Remove attempted support for 1996-era emacs without self-quoting keywords.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4677
diff
changeset
|
605 #ifndef NO_NEED_TO_HANDLE_21_4_CODE |
8b50bee3c88c
Remove attempted support for 1996-era emacs without self-quoting keywords.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4677
diff
changeset
|
606 || (SYMBOL_IS_KEYWORD (sym) && !EQ (newval, sym)) |
8b50bee3c88c
Remove attempted support for 1996-era emacs without self-quoting keywords.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4677
diff
changeset
|
607 #endif |
8b50bee3c88c
Remove attempted support for 1996-era emacs without self-quoting keywords.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4677
diff
changeset
|
608 )) |
563 | 609 signal_error_1 (Qsetting_constant, |
610 UNBOUNDP (newval) ? list1 (sym) : list2 (sym, newval)); | |
428 | 611 } |
612 | |
613 /* Verify that it's ok to make SYM buffer-local. This rejects | |
614 constants and default-buffer-local variables. FOLLOW_PAST_LISP_MAGIC | |
615 specifies whether we delve into symbol-value-lisp-magic objects. | |
616 (Should be a symbol indicating what action is being taken; that way, | |
617 we don't delve if there's a handler for that action, but do otherwise.) */ | |
618 | |
619 static void | |
620 verify_ok_for_buffer_local (Lisp_Object sym, | |
621 Lisp_Object follow_past_lisp_magic) | |
622 { | |
623 Lisp_Object val = fetch_value_maybe_past_magic (sym, follow_past_lisp_magic); | |
624 | |
625 if (symbol_is_constant (sym, val)) | |
626 goto not_ok; | |
627 if (SYMBOL_VALUE_MAGIC_P (val)) | |
628 switch (XSYMBOL_VALUE_MAGIC_TYPE (val)) | |
629 { | |
630 case SYMVAL_DEFAULT_BUFFER_FORWARD: | |
631 case SYMVAL_DEFAULT_CONSOLE_FORWARD: | |
632 /* #### It's theoretically possible for it to be reasonable | |
633 to have both console-local and buffer-local variables, | |
634 but I don't want to consider that right now. */ | |
635 case SYMVAL_SELECTED_CONSOLE_FORWARD: | |
636 goto not_ok; | |
637 default: break; /* Warning suppression */ | |
638 } | |
639 | |
640 return; | |
641 | |
642 not_ok: | |
563 | 643 invalid_change ("Symbol may not be buffer-local", sym); |
428 | 644 } |
645 | |
646 DEFUN ("makunbound", Fmakunbound, 1, 1, 0, /* | |
647 Make SYMBOL's value be void. | |
648 */ | |
649 (symbol)) | |
650 { | |
651 Fset (symbol, Qunbound); | |
652 return symbol; | |
653 } | |
654 | |
655 DEFUN ("fmakunbound", Ffmakunbound, 1, 1, 0, /* | |
656 Make SYMBOL's function definition be void. | |
657 */ | |
658 (symbol)) | |
659 { | |
660 CHECK_SYMBOL (symbol); | |
661 reject_constant_symbols (symbol, Qunbound, 1, Qt); | |
662 XSYMBOL (symbol)->function = Qunbound; | |
663 return symbol; | |
664 } | |
665 | |
666 DEFUN ("symbol-function", Fsymbol_function, 1, 1, 0, /* | |
667 Return SYMBOL's function definition. Error if that is void. | |
668 */ | |
669 (symbol)) | |
670 { | |
671 CHECK_SYMBOL (symbol); | |
672 if (UNBOUNDP (XSYMBOL (symbol)->function)) | |
673 signal_void_function_error (symbol); | |
674 return XSYMBOL (symbol)->function; | |
675 } | |
676 | |
677 DEFUN ("symbol-plist", Fsymbol_plist, 1, 1, 0, /* | |
678 Return SYMBOL's property list. | |
679 */ | |
680 (symbol)) | |
681 { | |
682 CHECK_SYMBOL (symbol); | |
683 return XSYMBOL (symbol)->plist; | |
684 } | |
685 | |
686 DEFUN ("symbol-name", Fsymbol_name, 1, 1, 0, /* | |
687 Return SYMBOL's name, a string. | |
688 */ | |
689 (symbol)) | |
690 { | |
691 CHECK_SYMBOL (symbol); | |
793 | 692 return XSYMBOL (symbol)->name; |
428 | 693 } |
694 | |
695 DEFUN ("fset", Ffset, 2, 2, 0, /* | |
696 Set SYMBOL's function definition to NEWDEF, and return NEWDEF. | |
697 */ | |
698 (symbol, newdef)) | |
699 { | |
700 /* This function can GC */ | |
701 CHECK_SYMBOL (symbol); | |
702 reject_constant_symbols (symbol, newdef, 1, Qt); | |
703 if (!NILP (Vautoload_queue) && !UNBOUNDP (XSYMBOL (symbol)->function)) | |
704 Vautoload_queue = Fcons (Fcons (symbol, XSYMBOL (symbol)->function), | |
705 Vautoload_queue); | |
706 XSYMBOL (symbol)->function = newdef; | |
707 /* Handle automatic advice activation */ | |
708 if (CONSP (XSYMBOL (symbol)->plist) && | |
709 !NILP (Fget (symbol, Qad_advice_info, Qnil))) | |
710 { | |
711 call2 (Qad_activate, symbol, Qnil); | |
712 newdef = XSYMBOL (symbol)->function; | |
713 } | |
714 return newdef; | |
715 } | |
716 | |
717 /* FSFmacs */ | |
718 DEFUN ("define-function", Fdefine_function, 2, 2, 0, /* | |
719 Set SYMBOL's function definition to NEWDEF, and return NEWDEF. | |
720 Associates the function with the current load file, if any. | |
4921
17362f371cc2
add more byte-code assertions and better failure output
Ben Wing <ben@xemacs.org>
parents:
4905
diff
changeset
|
721 If NEWDEF is a compiled-function object, stores the function name in |
17362f371cc2
add more byte-code assertions and better failure output
Ben Wing <ben@xemacs.org>
parents:
4905
diff
changeset
|
722 the `annotated' slot of the compiled-function (retrievable using |
17362f371cc2
add more byte-code assertions and better failure output
Ben Wing <ben@xemacs.org>
parents:
4905
diff
changeset
|
723 `compiled-function-annotation'). |
428 | 724 */ |
725 (symbol, newdef)) | |
726 { | |
727 /* This function can GC */ | |
728 Ffset (symbol, newdef); | |
4535
69a1eda3da06
Distinguish vars and functions in #'symbol-file, #'describe-{function,variable}
Aidan Kehoe <kehoea@parhasard.net>
parents:
4503
diff
changeset
|
729 LOADHIST_ATTACH (Fcons (Qdefun, symbol)); |
4921
17362f371cc2
add more byte-code assertions and better failure output
Ben Wing <ben@xemacs.org>
parents:
4905
diff
changeset
|
730 #ifdef COMPILED_FUNCTION_ANNOTATION_HACK |
17362f371cc2
add more byte-code assertions and better failure output
Ben Wing <ben@xemacs.org>
parents:
4905
diff
changeset
|
731 if (COMPILED_FUNCTIONP (newdef)) |
17362f371cc2
add more byte-code assertions and better failure output
Ben Wing <ben@xemacs.org>
parents:
4905
diff
changeset
|
732 XCOMPILED_FUNCTION (newdef)->annotated = symbol; |
17362f371cc2
add more byte-code assertions and better failure output
Ben Wing <ben@xemacs.org>
parents:
4905
diff
changeset
|
733 #endif /* COMPILED_FUNCTION_ANNOTATION_HACK */ |
428 | 734 return newdef; |
735 } | |
736 | |
3368 | 737 DEFUN ("subr-name", Fsubr_name, 1, 1, 0, /* |
738 Return name of function SUBR. | |
739 SUBR must be a built-in function. | |
740 */ | |
741 (subr)) | |
742 { | |
743 const char *name; | |
3497 | 744 CHECK_SUBR (subr); |
745 | |
3368 | 746 name = XSUBR (subr)->name; |
3379 | 747 return make_string ((const Ibyte *)name, strlen (name)); |
3368 | 748 } |
428 | 749 |
4905
755ae5b97edb
Change "special form" to "special operator" in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4793
diff
changeset
|
750 DEFUN ("special-operator-p", Fspecial_operator_p, 1, 1, 0, /* |
755ae5b97edb
Change "special form" to "special operator" in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4793
diff
changeset
|
751 Return whether SUBR is a special operator. |
755ae5b97edb
Change "special form" to "special operator" in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4793
diff
changeset
|
752 |
755ae5b97edb
Change "special form" to "special operator" in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4793
diff
changeset
|
753 A special operator is a built-in function (a subr, that is a function |
4337
c32e4dca0296
#'special-form-p; don't error (thank you Jerry James); flesh out docstring.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4336
diff
changeset
|
754 implemented in C, not Lisp) which does not necessarily evaluate all its |
c32e4dca0296
#'special-form-p; don't error (thank you Jerry James); flesh out docstring.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4336
diff
changeset
|
755 arguments. Much of the basic XEmacs Lisp syntax is implemented by means of |
4905
755ae5b97edb
Change "special form" to "special operator" in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4793
diff
changeset
|
756 special operators; examples are `let', `condition-case', `setq', and so |
4337
c32e4dca0296
#'special-form-p; don't error (thank you Jerry James); flesh out docstring.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4336
diff
changeset
|
757 on. |
c32e4dca0296
#'special-form-p; don't error (thank you Jerry James); flesh out docstring.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4336
diff
changeset
|
758 |
c32e4dca0296
#'special-form-p; don't error (thank you Jerry James); flesh out docstring.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4336
diff
changeset
|
759 If you intend to write a Lisp function that does not necessarily evaluate |
c32e4dca0296
#'special-form-p; don't error (thank you Jerry James); flesh out docstring.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4336
diff
changeset
|
760 all its arguments, the portable (across emacs variants, and across Lisp |
c32e4dca0296
#'special-form-p; don't error (thank you Jerry James); flesh out docstring.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4336
diff
changeset
|
761 implementations) way to go about it is to write a macro instead. See |
c32e4dca0296
#'special-form-p; don't error (thank you Jerry James); flesh out docstring.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4336
diff
changeset
|
762 `defmacro' and `backquote'. |
4336
cdc2f70d4319
Provide #'special-form-p, for the use of advice.el, perhaps other files.
Aidan Kehoe <kehoea@parhasard.net>
parents:
3497
diff
changeset
|
763 */ |
cdc2f70d4319
Provide #'special-form-p, for the use of advice.el, perhaps other files.
Aidan Kehoe <kehoea@parhasard.net>
parents:
3497
diff
changeset
|
764 (subr)) |
cdc2f70d4319
Provide #'special-form-p, for the use of advice.el, perhaps other files.
Aidan Kehoe <kehoea@parhasard.net>
parents:
3497
diff
changeset
|
765 { |
4337
c32e4dca0296
#'special-form-p; don't error (thank you Jerry James); flesh out docstring.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4336
diff
changeset
|
766 subr = indirect_function (subr, 0); |
c32e4dca0296
#'special-form-p; don't error (thank you Jerry James); flesh out docstring.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4336
diff
changeset
|
767 return (SUBRP (subr) && XSUBR (subr)->max_args == UNEVALLED) ? Qt : Qnil; |
4336
cdc2f70d4319
Provide #'special-form-p, for the use of advice.el, perhaps other files.
Aidan Kehoe <kehoea@parhasard.net>
parents:
3497
diff
changeset
|
768 } |
cdc2f70d4319
Provide #'special-form-p, for the use of advice.el, perhaps other files.
Aidan Kehoe <kehoea@parhasard.net>
parents:
3497
diff
changeset
|
769 |
428 | 770 DEFUN ("setplist", Fsetplist, 2, 2, 0, /* |
771 Set SYMBOL's property list to NEWPLIST, and return NEWPLIST. | |
772 */ | |
773 (symbol, newplist)) | |
774 { | |
775 CHECK_SYMBOL (symbol); | |
776 | |
777 XSYMBOL (symbol)->plist = newplist; | |
778 return newplist; | |
779 } | |
780 | |
781 | |
782 /**********************************************************************/ | |
783 /* symbol-value */ | |
784 /**********************************************************************/ | |
785 | |
786 /* If the contents of the value cell of a symbol is one of the following | |
787 three types of objects, then the symbol is "magic" in that setting | |
788 and retrieving its value doesn't just set or retrieve the raw | |
789 contents of the value cell. None of these objects can escape to | |
790 the user level, so there is no loss of generality. | |
791 | |
792 If a symbol is "unbound", then the contents of its value cell is | |
793 Qunbound. Despite appearances, this is *not* a symbol, but is a | |
794 symbol-value-forward object. This is so that printing it results | |
795 in "INTERNAL OBJECT (XEmacs bug?)", in case it leaks to Lisp, somehow. | |
796 | |
797 Logically all of the following objects are "symbol-value-magic" | |
798 objects, and there are some games played w.r.t. this (#### this | |
799 should be cleaned up). SYMBOL_VALUE_MAGIC_P is true for all of | |
800 the object types. XSYMBOL_VALUE_MAGIC_TYPE returns the type of | |
801 symbol-value-magic object. There are more than three types | |
802 returned by this macro: in particular, symbol-value-forward | |
803 has eight subtypes, and symbol-value-buffer-local has two. See | |
804 symeval.h. | |
805 | |
806 1. symbol-value-forward | |
807 | |
808 symbol-value-forward is used for variables whose actual contents | |
809 are stored in a C variable of some sort, and for Qunbound. The | |
810 lcheader.next field (which is only used to chain together free | |
811 lcrecords) holds a pointer to the actual C variable. Included | |
812 in this type are "buffer-local" variables that are actually | |
813 stored in the buffer object itself; in this case, the "pointer" | |
814 is an offset into the struct buffer structure. | |
815 | |
816 The subtypes are as follows: | |
817 | |
818 SYMVAL_OBJECT_FORWARD: | |
819 (declare with DEFVAR_LISP) | |
820 The value of this variable is stored in a C variable of type | |
821 "Lisp_Object". Setting this variable sets the C variable. | |
822 Accessing this variable retrieves a value from the C variable. | |
823 These variables can be buffer-local -- in this case, the | |
824 raw symbol-value field gets converted into a | |
825 symbol-value-buffer-local, whose "current_value" slot contains | |
826 the symbol-value-forward. (See below.) | |
827 | |
828 SYMVAL_FIXNUM_FORWARD: | |
458 | 829 (declare with DEFVAR_INT) |
830 Similar to SYMVAL_OBJECT_FORWARD except that the C variable | |
831 is of type "Fixnum", a typedef for "EMACS_INT", and the corresponding | |
832 lisp variable is always the corresponding integer. | |
833 | |
428 | 834 SYMVAL_BOOLEAN_FORWARD: |
458 | 835 (declare with DEFVAR_BOOL) |
428 | 836 Similar to SYMVAL_OBJECT_FORWARD except that the C variable |
458 | 837 is of type "int" and is a boolean. |
428 | 838 |
839 SYMVAL_CONST_OBJECT_FORWARD: | |
840 SYMVAL_CONST_FIXNUM_FORWARD: | |
841 SYMVAL_CONST_BOOLEAN_FORWARD: | |
842 (declare with DEFVAR_CONST_LISP, DEFVAR_CONST_INT, or | |
843 DEFVAR_CONST_BOOL) | |
844 Similar to SYMVAL_OBJECT_FORWARD, SYMVAL_FIXNUM_FORWARD, or | |
845 SYMVAL_BOOLEAN_FORWARD, respectively, except that the value cannot | |
846 be changed. | |
847 | |
848 SYMVAL_CONST_SPECIFIER_FORWARD: | |
849 (declare with DEFVAR_SPECIFIER) | |
440 | 850 Exactly like SYMVAL_CONST_OBJECT_FORWARD except that the error |
851 message you get when attempting to set the value says to use | |
428 | 852 `set-specifier' instead. |
853 | |
854 SYMVAL_CURRENT_BUFFER_FORWARD: | |
855 (declare with DEFVAR_BUFFER_LOCAL) | |
856 This is used for built-in buffer-local variables -- i.e. | |
857 Lisp variables whose value is stored in the "struct buffer". | |
858 Variables of this sort always forward into C "Lisp_Object" | |
859 fields (although there's no reason in principle that other | |
860 types for ints and booleans couldn't be added). Note that | |
861 some of these variables are automatically local in each | |
862 buffer, while some are only local when they become set | |
863 (similar to `make-variable-buffer-local'). In these latter | |
864 cases, of course, the default value shows through in all | |
865 buffers in which the variable doesn't have a local value. | |
866 This is implemented by making sure the "struct buffer" field | |
867 always contains the correct value (whether it's local or | |
868 a default) and maintaining a mask in the "struct buffer" | |
869 indicating which fields are local. When `set-default' is | |
870 called on a variable that's not always local to all buffers, | |
871 it loops through each buffer and sets the corresponding | |
872 field in each buffer without a local value for the field, | |
873 according to the mask. | |
874 | |
875 Calling `make-local-variable' on a variable of this sort | |
876 only has the effect of maybe changing the current buffer's mask. | |
877 Calling `make-variable-buffer-local' on a variable of this | |
878 sort has no effect at all. | |
879 | |
880 SYMVAL_CONST_CURRENT_BUFFER_FORWARD: | |
881 (declare with DEFVAR_CONST_BUFFER_LOCAL) | |
882 Same as SYMVAL_CURRENT_BUFFER_FORWARD except that the | |
883 value cannot be set. | |
884 | |
885 SYMVAL_DEFAULT_BUFFER_FORWARD: | |
886 (declare with DEFVAR_BUFFER_DEFAULTS) | |
887 This is used for the Lisp variables that contain the | |
888 default values of built-in buffer-local variables. Setting | |
889 or referencing one of these variables forwards into a slot | |
890 in the special struct buffer Vbuffer_defaults. | |
891 | |
892 SYMVAL_UNBOUND_MARKER: | |
893 This is used for only one object, Qunbound. | |
894 | |
895 SYMVAL_SELECTED_CONSOLE_FORWARD: | |
896 (declare with DEFVAR_CONSOLE_LOCAL) | |
897 This is used for built-in console-local variables -- i.e. | |
898 Lisp variables whose value is stored in the "struct console". | |
899 These work just like built-in buffer-local variables. | |
900 However, calling `make-local-variable' or | |
901 `make-variable-buffer-local' on one of these variables | |
902 is currently disallowed because that would entail having | |
903 both console-local and buffer-local variables, which is | |
904 trickier to implement. | |
905 | |
906 SYMVAL_CONST_SELECTED_CONSOLE_FORWARD: | |
907 (declare with DEFVAR_CONST_CONSOLE_LOCAL) | |
908 Same as SYMVAL_SELECTED_CONSOLE_FORWARD except that the | |
909 value cannot be set. | |
910 | |
911 SYMVAL_DEFAULT_CONSOLE_FORWARD: | |
912 (declare with DEFVAR_CONSOLE_DEFAULTS) | |
913 This is used for the Lisp variables that contain the | |
914 default values of built-in console-local variables. Setting | |
915 or referencing one of these variables forwards into a slot | |
916 in the special struct console Vconsole_defaults. | |
917 | |
918 | |
919 2. symbol-value-buffer-local | |
920 | |
921 symbol-value-buffer-local is used for variables that have had | |
922 `make-local-variable' or `make-variable-buffer-local' applied | |
923 to them. This object contains an alist mapping buffers to | |
924 values. In addition, the object contains a "current value", | |
925 which is the value in some buffer. Whenever you access the | |
926 variable with `symbol-value' or set it with `set' or `setq', | |
927 things are switched around so that the "current value" | |
928 refers to the current buffer, if it wasn't already. This | |
929 way, repeated references to a variable in the same buffer | |
930 are almost as efficient as if the variable weren't buffer | |
931 local. Note that the alist may not be up-to-date w.r.t. | |
932 the buffer whose value is current, as the "current value" | |
933 cache is normally only flushed into the alist when the | |
934 buffer it refers to changes. | |
935 | |
936 Note also that it is possible for `make-local-variable' | |
937 or `make-variable-buffer-local' to be called on a variable | |
938 that forwards into a C variable (i.e. a variable whose | |
939 value cell is a symbol-value-forward). In this case, | |
940 the value cell becomes a symbol-value-buffer-local (as | |
941 always), and the symbol-value-forward moves into | |
942 the "current value" cell in this object. Also, in | |
943 this case the "current value" *always* refers to the | |
944 current buffer, so that the values of the C variable | |
945 always is the correct value for the current buffer. | |
946 set_buffer_internal() automatically updates the current-value | |
947 cells of all buffer-local variables that forward into C | |
948 variables. (There is a list of all buffer-local variables | |
949 that is maintained for this and other purposes.) | |
950 | |
951 Note that only certain types of `symbol-value-forward' objects | |
952 can find their way into the "current value" cell of a | |
953 `symbol-value-buffer-local' object: SYMVAL_OBJECT_FORWARD, | |
954 SYMVAL_FIXNUM_FORWARD, SYMVAL_BOOLEAN_FORWARD, and | |
955 SYMVAL_UNBOUND_MARKER. The SYMVAL_CONST_*_FORWARD cannot | |
956 be buffer-local because they are unsettable; | |
957 SYMVAL_DEFAULT_*_FORWARD cannot be buffer-local because that | |
958 makes no sense; making SYMVAL_CURRENT_BUFFER_FORWARD buffer-local | |
959 does not have much of an effect (it's already buffer-local); and | |
960 SYMVAL_SELECTED_CONSOLE_FORWARD cannot be buffer-local because | |
961 that's not currently implemented. | |
962 | |
963 | |
964 3. symbol-value-varalias | |
965 | |
966 A symbol-value-varalias object is used for variables that | |
967 are aliases for other variables. This object contains | |
968 the symbol that this variable is aliased to. | |
969 symbol-value-varalias objects cannot occur anywhere within | |
970 a symbol-value-buffer-local object, and most of the | |
971 low-level functions below do not accept them; you need | |
972 to call follow_varalias_pointers to get the actual | |
973 symbol to operate on. */ | |
974 | |
1204 | 975 static const struct memory_description symbol_value_buffer_local_description[] = { |
976 { XD_LISP_OBJECT, offsetof (struct symbol_value_buffer_local, default_value) }, | |
977 { XD_LISP_OBJECT, offsetof (struct symbol_value_buffer_local, current_value) }, | |
978 { XD_LISP_OBJECT, offsetof (struct symbol_value_buffer_local, current_buffer) }, | |
979 { XD_LISP_OBJECT, offsetof (struct symbol_value_buffer_local, current_alist_element) }, | |
980 { XD_END } | |
981 }; | |
982 | |
428 | 983 static Lisp_Object |
984 mark_symbol_value_buffer_local (Lisp_Object obj) | |
985 { | |
986 struct symbol_value_buffer_local *bfwd; | |
987 | |
800 | 988 #ifdef ERROR_CHECK_TYPES |
428 | 989 assert (XSYMBOL_VALUE_MAGIC_TYPE (obj) == SYMVAL_BUFFER_LOCAL || |
990 XSYMBOL_VALUE_MAGIC_TYPE (obj) == SYMVAL_SOME_BUFFER_LOCAL); | |
991 #endif | |
992 | |
993 bfwd = XSYMBOL_VALUE_BUFFER_LOCAL (obj); | |
994 mark_object (bfwd->default_value); | |
995 mark_object (bfwd->current_value); | |
996 mark_object (bfwd->current_buffer); | |
997 return bfwd->current_alist_element; | |
998 } | |
999 | |
1204 | 1000 |
1001 static const struct memory_description symbol_value_lisp_magic_description[] = { | |
1002 { XD_LISP_OBJECT_ARRAY, offsetof (struct symbol_value_lisp_magic, handler), MAGIC_HANDLER_MAX }, | |
1003 { XD_LISP_OBJECT_ARRAY, offsetof (struct symbol_value_lisp_magic, harg), MAGIC_HANDLER_MAX }, | |
1004 { XD_LISP_OBJECT, offsetof (struct symbol_value_lisp_magic, shadowed) }, | |
1005 { XD_END } | |
1006 }; | |
1007 | |
428 | 1008 static Lisp_Object |
1009 mark_symbol_value_lisp_magic (Lisp_Object obj) | |
1010 { | |
1011 struct symbol_value_lisp_magic *bfwd; | |
1012 int i; | |
1013 | |
1014 assert (XSYMBOL_VALUE_MAGIC_TYPE (obj) == SYMVAL_LISP_MAGIC); | |
1015 | |
1016 bfwd = XSYMBOL_VALUE_LISP_MAGIC (obj); | |
1017 for (i = 0; i < MAGIC_HANDLER_MAX; i++) | |
1018 { | |
1019 mark_object (bfwd->handler[i]); | |
1020 mark_object (bfwd->harg[i]); | |
1021 } | |
1022 return bfwd->shadowed; | |
1023 } | |
1024 | |
1204 | 1025 static const struct memory_description symbol_value_varalias_description[] = { |
1026 { XD_LISP_OBJECT, offsetof (struct symbol_value_varalias, aliasee) }, | |
1027 { XD_LISP_OBJECT, offsetof (struct symbol_value_varalias, shadowed) }, | |
1028 { XD_END } | |
1029 }; | |
1030 | |
428 | 1031 static Lisp_Object |
1032 mark_symbol_value_varalias (Lisp_Object obj) | |
1033 { | |
1034 struct symbol_value_varalias *bfwd; | |
1035 | |
1036 assert (XSYMBOL_VALUE_MAGIC_TYPE (obj) == SYMVAL_VARALIAS); | |
1037 | |
1038 bfwd = XSYMBOL_VALUE_VARALIAS (obj); | |
1039 mark_object (bfwd->shadowed); | |
1040 return bfwd->aliasee; | |
1041 } | |
1042 | |
1043 /* Should never, ever be called. (except by an external debugger) */ | |
1044 void | |
2286 | 1045 print_symbol_value_magic (Lisp_Object obj, Lisp_Object printcharfun, |
1046 int UNUSED (escapeflag)) | |
428 | 1047 { |
800 | 1048 write_fmt_string (printcharfun, |
1049 "#<INTERNAL OBJECT (XEmacs bug?) (%s type %d) 0x%lx>", | |
1050 XRECORD_LHEADER_IMPLEMENTATION (obj)->name, | |
1051 XSYMBOL_VALUE_MAGIC_TYPE (obj), | |
1052 (long) XPNTR (obj)); | |
428 | 1053 } |
1054 | |
1204 | 1055 static const struct memory_description symbol_value_forward_description[] = { |
428 | 1056 { XD_END } |
1057 }; | |
1058 | |
934 | 1059 DEFINE_LRECORD_IMPLEMENTATION ("symbol-value-forward", |
1060 symbol_value_forward, | |
1061 1, /*dumpable-flag*/ | |
1062 0, | |
1063 print_symbol_value_magic, 0, 0, 0, | |
1064 symbol_value_forward_description, | |
1065 struct symbol_value_forward); | |
1066 | |
1067 DEFINE_LRECORD_IMPLEMENTATION ("symbol-value-buffer-local", | |
1068 symbol_value_buffer_local, | |
1069 1, /*dumpable-flag*/ | |
1070 mark_symbol_value_buffer_local, | |
1071 print_symbol_value_magic, 0, 0, 0, | |
1072 symbol_value_buffer_local_description, | |
1073 struct symbol_value_buffer_local); | |
1074 | |
1075 DEFINE_LRECORD_IMPLEMENTATION ("symbol-value-lisp-magic", | |
1076 symbol_value_lisp_magic, | |
1077 1, /*dumpable-flag*/ | |
1078 mark_symbol_value_lisp_magic, | |
1079 print_symbol_value_magic, 0, 0, 0, | |
1080 symbol_value_lisp_magic_description, | |
1081 struct symbol_value_lisp_magic); | |
1082 | |
1083 DEFINE_LRECORD_IMPLEMENTATION ("symbol-value-varalias", | |
1084 symbol_value_varalias, | |
1085 1, /*dumpable-flag*/ | |
1086 mark_symbol_value_varalias, | |
1087 print_symbol_value_magic, 0, 0, 0, | |
1088 symbol_value_varalias_description, | |
1089 struct symbol_value_varalias); | |
1090 | |
428 | 1091 |
1092 /* Getting and setting values of symbols */ | |
1093 | |
1094 /* Given the raw contents of a symbol value cell, return the Lisp value of | |
1095 the symbol. However, VALCONTENTS cannot be a symbol-value-buffer-local, | |
1096 symbol-value-lisp-magic, or symbol-value-varalias. | |
1097 | |
1098 BUFFER specifies a buffer, and is used for built-in buffer-local | |
1099 variables, which are of type SYMVAL_CURRENT_BUFFER_FORWARD. | |
1100 Note that such variables are never encapsulated in a | |
1101 symbol-value-buffer-local structure. | |
1102 | |
1103 CONSOLE specifies a console, and is used for built-in console-local | |
1104 variables, which are of type SYMVAL_SELECTED_CONSOLE_FORWARD. | |
1105 Note that such variables are (currently) never encapsulated in a | |
1106 symbol-value-buffer-local structure. | |
1107 */ | |
1108 | |
1109 static Lisp_Object | |
1110 do_symval_forwarding (Lisp_Object valcontents, struct buffer *buffer, | |
1111 struct console *console) | |
1112 { | |
442 | 1113 const struct symbol_value_forward *fwd; |
428 | 1114 |
1115 if (!SYMBOL_VALUE_MAGIC_P (valcontents)) | |
1116 return valcontents; | |
1117 | |
1118 fwd = XSYMBOL_VALUE_FORWARD (valcontents); | |
1119 switch (fwd->magic.type) | |
1120 { | |
1121 case SYMVAL_FIXNUM_FORWARD: | |
1122 case SYMVAL_CONST_FIXNUM_FORWARD: | |
458 | 1123 return make_int (*((Fixnum *)symbol_value_forward_forward (fwd))); |
428 | 1124 |
1125 case SYMVAL_BOOLEAN_FORWARD: | |
1126 case SYMVAL_CONST_BOOLEAN_FORWARD: | |
1127 return *((int *)symbol_value_forward_forward (fwd)) ? Qt : Qnil; | |
1128 | |
1129 case SYMVAL_OBJECT_FORWARD: | |
1130 case SYMVAL_CONST_OBJECT_FORWARD: | |
1131 case SYMVAL_CONST_SPECIFIER_FORWARD: | |
1132 return *((Lisp_Object *)symbol_value_forward_forward (fwd)); | |
1133 | |
1134 case SYMVAL_DEFAULT_BUFFER_FORWARD: | |
1135 return (*((Lisp_Object *)((char *) XBUFFER (Vbuffer_defaults) | |
1136 + ((char *)symbol_value_forward_forward (fwd) | |
1137 - (char *)&buffer_local_flags)))); | |
1138 | |
1139 | |
1140 case SYMVAL_CURRENT_BUFFER_FORWARD: | |
1141 case SYMVAL_CONST_CURRENT_BUFFER_FORWARD: | |
1142 assert (buffer); | |
1143 return (*((Lisp_Object *)((char *)buffer | |
1144 + ((char *)symbol_value_forward_forward (fwd) | |
1145 - (char *)&buffer_local_flags)))); | |
1146 | |
1147 case SYMVAL_DEFAULT_CONSOLE_FORWARD: | |
1148 return (*((Lisp_Object *)((char *) XCONSOLE (Vconsole_defaults) | |
1149 + ((char *)symbol_value_forward_forward (fwd) | |
1150 - (char *)&console_local_flags)))); | |
1151 | |
1152 case SYMVAL_SELECTED_CONSOLE_FORWARD: | |
1153 case SYMVAL_CONST_SELECTED_CONSOLE_FORWARD: | |
1154 assert (console); | |
1155 return (*((Lisp_Object *)((char *)console | |
1156 + ((char *)symbol_value_forward_forward (fwd) | |
1157 - (char *)&console_local_flags)))); | |
1158 | |
1159 case SYMVAL_UNBOUND_MARKER: | |
1160 return valcontents; | |
1161 | |
1162 default: | |
2500 | 1163 ABORT (); |
428 | 1164 } |
1165 return Qnil; /* suppress compiler warning */ | |
1166 } | |
1167 | |
1168 /* Set the value of default-buffer-local variable SYM to VALUE. */ | |
1169 | |
1170 static void | |
1171 set_default_buffer_slot_variable (Lisp_Object sym, | |
1172 Lisp_Object value) | |
1173 { | |
1174 /* Handle variables like case-fold-search that have special slots in | |
1175 the buffer. Make them work apparently like buffer_local variables. | |
1176 */ | |
1177 /* At this point, the value cell may not contain a symbol-value-varalias | |
1178 or symbol-value-buffer-local, and if there's a handler, we should | |
1179 have already called it. */ | |
1180 Lisp_Object valcontents = fetch_value_maybe_past_magic (sym, Qt); | |
442 | 1181 const struct symbol_value_forward *fwd |
428 | 1182 = XSYMBOL_VALUE_FORWARD (valcontents); |
1183 int offset = ((char *) symbol_value_forward_forward (fwd) | |
1184 - (char *) &buffer_local_flags); | |
1185 int mask = XINT (*((Lisp_Object *) symbol_value_forward_forward (fwd))); | |
1186 int (*magicfun) (Lisp_Object simm, Lisp_Object *val, Lisp_Object in_object, | |
1187 int flags) = symbol_value_forward_magicfun (fwd); | |
1188 | |
1189 *((Lisp_Object *) (offset + (char *) XBUFFER (Vbuffer_defaults))) | |
1190 = value; | |
1191 | |
1192 if (mask > 0) /* Not always per-buffer */ | |
1193 { | |
1194 /* Set value in each buffer which hasn't shadowed the default */ | |
1195 LIST_LOOP_2 (elt, Vbuffer_alist) | |
1196 { | |
1197 struct buffer *b = XBUFFER (XCDR (elt)); | |
1198 if (!(b->local_var_flags & mask)) | |
1199 { | |
1200 if (magicfun) | |
771 | 1201 magicfun (sym, &value, wrap_buffer (b), 0); |
428 | 1202 *((Lisp_Object *) (offset + (char *) b)) = value; |
1203 } | |
1204 } | |
1205 } | |
1206 } | |
1207 | |
1208 /* Set the value of default-console-local variable SYM to VALUE. */ | |
1209 | |
1210 static void | |
1211 set_default_console_slot_variable (Lisp_Object sym, | |
1212 Lisp_Object value) | |
1213 { | |
1214 /* Handle variables like case-fold-search that have special slots in | |
1215 the console. Make them work apparently like console_local variables. | |
1216 */ | |
1217 /* At this point, the value cell may not contain a symbol-value-varalias | |
1218 or symbol-value-buffer-local, and if there's a handler, we should | |
1219 have already called it. */ | |
1220 Lisp_Object valcontents = fetch_value_maybe_past_magic (sym, Qt); | |
442 | 1221 const struct symbol_value_forward *fwd |
428 | 1222 = XSYMBOL_VALUE_FORWARD (valcontents); |
1223 int offset = ((char *) symbol_value_forward_forward (fwd) | |
1224 - (char *) &console_local_flags); | |
1225 int mask = XINT (*((Lisp_Object *) symbol_value_forward_forward (fwd))); | |
1226 int (*magicfun) (Lisp_Object simm, Lisp_Object *val, Lisp_Object in_object, | |
1227 int flags) = symbol_value_forward_magicfun (fwd); | |
1228 | |
1229 *((Lisp_Object *) (offset + (char *) XCONSOLE (Vconsole_defaults))) | |
1230 = value; | |
1231 | |
1232 if (mask > 0) /* Not always per-console */ | |
1233 { | |
1234 /* Set value in each console which hasn't shadowed the default */ | |
1235 LIST_LOOP_2 (console, Vconsole_list) | |
1236 { | |
1237 struct console *d = XCONSOLE (console); | |
1238 if (!(d->local_var_flags & mask)) | |
1239 { | |
1240 if (magicfun) | |
1241 magicfun (sym, &value, console, 0); | |
1242 *((Lisp_Object *) (offset + (char *) d)) = value; | |
1243 } | |
1244 } | |
1245 } | |
1246 } | |
1247 | |
1248 /* Store NEWVAL into SYM. | |
1249 | |
1250 SYM's value slot may *not* be types (5) or (6) above, | |
1251 i.e. no symbol-value-varalias objects. (You should have | |
1252 forwarded past all of these.) | |
1253 | |
1254 SYM should not be an unsettable symbol or a symbol with | |
1255 a magic `set-value' handler (unless you want to explicitly | |
1256 ignore this handler). | |
1257 | |
1258 OVALUE is the current value of SYM, but forwarded past any | |
1259 symbol-value-buffer-local and symbol-value-lisp-magic objects. | |
1260 (i.e. if SYM is a symbol-value-buffer-local, OVALUE should be | |
1261 the contents of its current-value cell.) NEWVAL may only be | |
1262 a simple value or Qunbound. If SYM is a symbol-value-buffer-local, | |
1263 this function will only modify its current-value cell, which should | |
1264 already be set up to point to the current buffer. | |
1265 */ | |
1266 | |
1267 static void | |
1268 store_symval_forwarding (Lisp_Object sym, Lisp_Object ovalue, | |
1269 Lisp_Object newval) | |
1270 { | |
1271 if (!SYMBOL_VALUE_MAGIC_P (ovalue) || UNBOUNDP (ovalue)) | |
1272 { | |
1273 Lisp_Object *store_pointer = value_slot_past_magic (sym); | |
1274 | |
1275 if (SYMBOL_VALUE_BUFFER_LOCAL_P (*store_pointer)) | |
1276 store_pointer = | |
1277 &XSYMBOL_VALUE_BUFFER_LOCAL (*store_pointer)->current_value; | |
1278 | |
1279 assert (UNBOUNDP (*store_pointer) | |
1280 || !SYMBOL_VALUE_MAGIC_P (*store_pointer)); | |
1281 *store_pointer = newval; | |
1282 } | |
1283 else | |
1284 { | |
442 | 1285 const struct symbol_value_forward *fwd = XSYMBOL_VALUE_FORWARD (ovalue); |
428 | 1286 int (*magicfun) (Lisp_Object simm, Lisp_Object *val, |
1287 Lisp_Object in_object, int flags) | |
1288 = symbol_value_forward_magicfun (fwd); | |
1289 | |
1290 switch (XSYMBOL_VALUE_MAGIC_TYPE (ovalue)) | |
1291 { | |
1292 case SYMVAL_FIXNUM_FORWARD: | |
1293 CHECK_INT (newval); | |
1294 if (magicfun) | |
1295 magicfun (sym, &newval, Qnil, 0); | |
458 | 1296 *((Fixnum *) symbol_value_forward_forward (fwd)) = XINT (newval); |
428 | 1297 return; |
1298 | |
1299 case SYMVAL_BOOLEAN_FORWARD: | |
1300 if (magicfun) | |
1301 magicfun (sym, &newval, Qnil, 0); | |
1302 *((int *) symbol_value_forward_forward (fwd)) | |
1303 = !NILP (newval); | |
1304 return; | |
1305 | |
1306 case SYMVAL_OBJECT_FORWARD: | |
1307 if (magicfun) | |
1308 magicfun (sym, &newval, Qnil, 0); | |
1309 *((Lisp_Object *) symbol_value_forward_forward (fwd)) = newval; | |
1310 return; | |
1311 | |
1312 case SYMVAL_DEFAULT_BUFFER_FORWARD: | |
1313 set_default_buffer_slot_variable (sym, newval); | |
1314 return; | |
1315 | |
1316 case SYMVAL_CURRENT_BUFFER_FORWARD: | |
1317 if (magicfun) | |
771 | 1318 magicfun (sym, &newval, wrap_buffer (current_buffer), 0); |
428 | 1319 *((Lisp_Object *) ((char *) current_buffer |
1320 + ((char *) symbol_value_forward_forward (fwd) | |
1321 - (char *) &buffer_local_flags))) | |
1322 = newval; | |
1323 return; | |
1324 | |
1325 case SYMVAL_DEFAULT_CONSOLE_FORWARD: | |
1326 set_default_console_slot_variable (sym, newval); | |
1327 return; | |
1328 | |
1329 case SYMVAL_SELECTED_CONSOLE_FORWARD: | |
1330 if (magicfun) | |
1331 magicfun (sym, &newval, Vselected_console, 0); | |
1332 *((Lisp_Object *) ((char *) XCONSOLE (Vselected_console) | |
1333 + ((char *) symbol_value_forward_forward (fwd) | |
1334 - (char *) &console_local_flags))) | |
1335 = newval; | |
1336 return; | |
1337 | |
1338 default: | |
2500 | 1339 ABORT (); |
428 | 1340 } |
1341 } | |
1342 } | |
1343 | |
1344 /* Given a per-buffer variable SYMBOL and its raw value-cell contents | |
1345 BFWD, locate and return a pointer to the element in BUFFER's | |
1346 local_var_alist for SYMBOL. The return value will be Qnil if | |
1347 BUFFER does not have its own value for SYMBOL (i.e. the default | |
1348 value is seen in that buffer). | |
1349 */ | |
1350 | |
1351 static Lisp_Object | |
1352 buffer_local_alist_element (struct buffer *buffer, Lisp_Object symbol, | |
1353 struct symbol_value_buffer_local *bfwd) | |
1354 { | |
1355 if (!NILP (bfwd->current_buffer) && | |
1356 XBUFFER (bfwd->current_buffer) == buffer) | |
1357 /* This is just an optimization of the below. */ | |
1358 return bfwd->current_alist_element; | |
1359 else | |
1360 return assq_no_quit (symbol, buffer->local_var_alist); | |
1361 } | |
1362 | |
1363 /* [Remember that the slot that mirrors CURRENT-VALUE in the | |
1364 symbol-value-buffer-local of a per-buffer variable -- i.e. the | |
1365 slot in CURRENT-BUFFER's local_var_alist, or the DEFAULT-VALUE | |
1366 slot -- may be out of date.] | |
1367 | |
1368 Write out any cached value in buffer-local variable SYMBOL's | |
1369 buffer-local structure, which is passed in as BFWD. | |
1370 */ | |
1371 | |
1372 static void | |
2286 | 1373 write_out_buffer_local_cache (Lisp_Object UNUSED (symbol), |
428 | 1374 struct symbol_value_buffer_local *bfwd) |
1375 { | |
1376 if (!NILP (bfwd->current_buffer)) | |
1377 { | |
1378 /* We pass 0 for BUFFER because only SYMVAL_CURRENT_BUFFER_FORWARD | |
1379 uses it, and that type cannot be inside a symbol-value-buffer-local */ | |
1380 Lisp_Object cval = do_symval_forwarding (bfwd->current_value, 0, 0); | |
1381 if (NILP (bfwd->current_alist_element)) | |
1382 /* current_value may be updated more recently than default_value */ | |
1383 bfwd->default_value = cval; | |
1384 else | |
1385 Fsetcdr (bfwd->current_alist_element, cval); | |
1386 } | |
1387 } | |
1388 | |
1389 /* SYM is a buffer-local variable, and BFWD is its buffer-local structure. | |
1390 Set up BFWD's cache for validity in buffer BUF. This assumes that | |
1391 the cache is currently in a consistent state (this can include | |
1392 not having any value cached, if BFWD->CURRENT_BUFFER is nil). | |
1393 | |
1394 If the cache is already set up for BUF, this function does nothing | |
1395 at all. | |
1396 | |
1397 Otherwise, if SYM forwards out to a C variable, this also forwards | |
1398 SYM's value in BUF out to the variable. Therefore, you generally | |
1399 only want to call this when BUF is, or is about to become, the | |
1400 current buffer. | |
1401 | |
1402 (Otherwise, you can just retrieve the value without changing the | |
1403 cache, at the expense of slower retrieval.) | |
1404 */ | |
1405 | |
1406 static void | |
1407 set_up_buffer_local_cache (Lisp_Object sym, | |
1408 struct symbol_value_buffer_local *bfwd, | |
1409 struct buffer *buf, | |
1410 Lisp_Object new_alist_el, | |
1411 int set_it_p) | |
1412 { | |
1413 Lisp_Object new_val; | |
1414 | |
1415 if (!NILP (bfwd->current_buffer) | |
1416 && buf == XBUFFER (bfwd->current_buffer)) | |
1417 /* Cache is already set up. */ | |
1418 return; | |
1419 | |
1420 /* Flush out the old cache. */ | |
1421 write_out_buffer_local_cache (sym, bfwd); | |
1422 | |
1423 /* Retrieve the new alist element and new value. */ | |
1424 if (NILP (new_alist_el) | |
1425 && set_it_p) | |
1426 new_alist_el = buffer_local_alist_element (buf, sym, bfwd); | |
1427 | |
1428 if (NILP (new_alist_el)) | |
1429 new_val = bfwd->default_value; | |
1430 else | |
1431 new_val = Fcdr (new_alist_el); | |
1432 | |
1433 bfwd->current_alist_element = new_alist_el; | |
793 | 1434 bfwd->current_buffer = wrap_buffer (buf); |
428 | 1435 |
1436 /* Now store the value into the current-value slot. | |
1437 We don't simply write it there, because the current-value | |
1438 slot might be a forwarding pointer, in which case we need | |
1439 to instead write the value into the C variable. | |
1440 | |
1441 We might also want to call a magic function. | |
1442 | |
1443 So instead, we call this function. */ | |
1444 store_symval_forwarding (sym, bfwd->current_value, new_val); | |
1445 } | |
1446 | |
446 | 1447 |
1448 /* SYM is a buffer-local variable, and BFWD is its buffer-local structure. | |
1449 Flush the cache. BFWD->CURRENT_BUFFER will be nil after this operation. | |
1450 */ | |
1451 | |
1452 static void | |
1453 flush_buffer_local_cache (Lisp_Object sym, | |
1454 struct symbol_value_buffer_local *bfwd) | |
1455 { | |
1456 if (NILP (bfwd->current_buffer)) | |
1457 /* Cache is already flushed. */ | |
1458 return; | |
1459 | |
1460 /* Flush out the old cache. */ | |
1461 write_out_buffer_local_cache (sym, bfwd); | |
1462 | |
1463 bfwd->current_alist_element = Qnil; | |
1464 bfwd->current_buffer = Qnil; | |
1465 | |
1466 /* Now store default the value into the current-value slot. | |
1467 We don't simply write it there, because the current-value | |
1468 slot might be a forwarding pointer, in which case we need | |
1469 to instead write the value into the C variable. | |
1470 | |
1471 We might also want to call a magic function. | |
1472 | |
1473 So instead, we call this function. */ | |
1474 store_symval_forwarding (sym, bfwd->current_value, bfwd->default_value); | |
1475 } | |
1476 | |
1477 /* Flush all the buffer-local variable caches. Whoever has a | |
1478 non-interned buffer-local variable will be spanked. Whoever has a | |
1479 magic variable that interns or uninterns symbols... I don't even | |
1480 want to think about it. | |
1481 */ | |
1482 | |
1483 void | |
1484 flush_all_buffer_local_cache (void) | |
1485 { | |
1486 Lisp_Object *syms = XVECTOR_DATA (Vobarray); | |
1487 long count = XVECTOR_LENGTH (Vobarray); | |
1488 long i; | |
1489 | |
1490 for (i=0; i<count; i++) | |
1491 { | |
1492 Lisp_Object sym = syms[i]; | |
1493 Lisp_Object value; | |
1494 | |
1495 if (!ZEROP (sym)) | |
1496 for(;;) | |
1497 { | |
1498 Lisp_Symbol *next; | |
1499 assert (SYMBOLP (sym)); | |
1500 value = fetch_value_maybe_past_magic (sym, Qt); | |
1501 if (SYMBOL_VALUE_BUFFER_LOCAL_P (value)) | |
1502 flush_buffer_local_cache (sym, XSYMBOL_VALUE_BUFFER_LOCAL (value)); | |
1503 | |
1504 next = symbol_next (XSYMBOL (sym)); | |
1505 if (!next) | |
1506 break; | |
793 | 1507 sym = wrap_symbol (next); |
446 | 1508 } |
1509 } | |
1510 } | |
1511 | |
428 | 1512 |
1513 void | |
1514 kill_buffer_local_variables (struct buffer *buf) | |
1515 { | |
1516 Lisp_Object prev = Qnil; | |
1517 Lisp_Object alist; | |
1518 | |
1519 /* Any which are supposed to be permanent, | |
1520 make local again, with the same values they had. */ | |
1521 | |
1522 for (alist = buf->local_var_alist; !NILP (alist); alist = XCDR (alist)) | |
1523 { | |
1524 Lisp_Object sym = XCAR (XCAR (alist)); | |
1525 struct symbol_value_buffer_local *bfwd; | |
1526 /* Variables with a symbol-value-varalias should not be here | |
1527 (we should have forwarded past them) and there must be a | |
1528 symbol-value-buffer-local. If there's a symbol-value-lisp-magic, | |
1529 just forward past it; if the variable has a handler, it was | |
1530 already called. */ | |
1531 Lisp_Object value = fetch_value_maybe_past_magic (sym, Qt); | |
1532 | |
1533 assert (SYMBOL_VALUE_BUFFER_LOCAL_P (value)); | |
1534 bfwd = XSYMBOL_VALUE_BUFFER_LOCAL (value); | |
1535 | |
1536 if (!NILP (Fget (sym, Qpermanent_local, Qnil))) | |
1537 /* prev points to the last alist element that is still | |
1538 staying around, so *only* update it now. This didn't | |
1539 used to be the case; this bug has been around since | |
1540 mly's rewrite two years ago! */ | |
1541 prev = alist; | |
1542 else | |
1543 { | |
1544 /* Really truly kill it. */ | |
1545 if (!NILP (prev)) | |
1546 XCDR (prev) = XCDR (alist); | |
1547 else | |
1548 buf->local_var_alist = XCDR (alist); | |
1549 | |
1550 /* We just effectively changed the value for this variable | |
1551 in BUF. So: */ | |
1552 | |
1553 /* (1) If the cache is caching BUF, invalidate the cache. */ | |
1554 if (!NILP (bfwd->current_buffer) && | |
1555 buf == XBUFFER (bfwd->current_buffer)) | |
1556 bfwd->current_buffer = Qnil; | |
1557 | |
1558 /* (2) If we changed the value in current_buffer and this | |
1559 variable forwards to a C variable, we need to change the | |
1560 value of the C variable. set_up_buffer_local_cache() | |
1561 will do this. It doesn't hurt to do it whenever | |
1562 BUF == current_buffer, so just go ahead and do that. */ | |
1563 if (buf == current_buffer) | |
1564 set_up_buffer_local_cache (sym, bfwd, buf, Qnil, 0); | |
1565 } | |
1566 } | |
1567 } | |
1568 | |
1569 static Lisp_Object | |
1570 find_symbol_value_1 (Lisp_Object sym, struct buffer *buf, | |
1571 struct console *con, int swap_it_in, | |
1572 Lisp_Object symcons, int set_it_p) | |
1573 { | |
1574 Lisp_Object valcontents; | |
1575 | |
1576 retry: | |
1577 valcontents = XSYMBOL (sym)->value; | |
1578 | |
1579 retry_2: | |
1580 if (!SYMBOL_VALUE_MAGIC_P (valcontents)) | |
1581 return valcontents; | |
1582 | |
1583 switch (XSYMBOL_VALUE_MAGIC_TYPE (valcontents)) | |
1584 { | |
1585 case SYMVAL_LISP_MAGIC: | |
1586 /* #### kludge */ | |
1587 valcontents = XSYMBOL_VALUE_LISP_MAGIC (valcontents)->shadowed; | |
1588 /* semi-change-o */ | |
1589 goto retry_2; | |
1590 | |
1591 case SYMVAL_VARALIAS: | |
1592 sym = follow_varalias_pointers (sym, Qt /* #### kludge */); | |
1593 symcons = Qnil; | |
1594 /* presto change-o! */ | |
1595 goto retry; | |
1596 | |
1597 case SYMVAL_BUFFER_LOCAL: | |
1598 case SYMVAL_SOME_BUFFER_LOCAL: | |
1599 { | |
1600 struct symbol_value_buffer_local *bfwd | |
1601 = XSYMBOL_VALUE_BUFFER_LOCAL (valcontents); | |
1602 | |
1603 if (swap_it_in) | |
1604 { | |
1605 set_up_buffer_local_cache (sym, bfwd, buf, symcons, set_it_p); | |
1606 valcontents = bfwd->current_value; | |
1607 } | |
1608 else | |
1609 { | |
1610 if (!NILP (bfwd->current_buffer) && | |
1611 buf == XBUFFER (bfwd->current_buffer)) | |
1612 valcontents = bfwd->current_value; | |
1613 else if (NILP (symcons)) | |
1614 { | |
1615 if (set_it_p) | |
1616 valcontents = assq_no_quit (sym, buf->local_var_alist); | |
1617 if (NILP (valcontents)) | |
1618 valcontents = bfwd->default_value; | |
1619 else | |
1620 valcontents = XCDR (valcontents); | |
1621 } | |
1622 else | |
1623 valcontents = XCDR (symcons); | |
1624 } | |
1625 break; | |
1626 } | |
1627 | |
1628 default: | |
1629 break; | |
1630 } | |
1631 return do_symval_forwarding (valcontents, buf, con); | |
1632 } | |
1633 | |
1634 | |
1635 /* Find the value of a symbol in BUFFER, returning Qunbound if it's not | |
1636 bound. Note that it must not be possible to QUIT within this | |
1637 function. */ | |
1638 | |
1639 Lisp_Object | |
1640 symbol_value_in_buffer (Lisp_Object sym, Lisp_Object buffer) | |
1641 { | |
1642 struct buffer *buf; | |
1643 | |
1644 CHECK_SYMBOL (sym); | |
1645 | |
1646 if (NILP (buffer)) | |
1647 buf = current_buffer; | |
1648 else | |
1649 { | |
1650 CHECK_BUFFER (buffer); | |
1651 buf = XBUFFER (buffer); | |
1652 } | |
1653 | |
1654 return find_symbol_value_1 (sym, buf, | |
1655 /* If it bombs out at startup due to a | |
1656 Lisp error, this may be nil. */ | |
1657 CONSOLEP (Vselected_console) | |
1658 ? XCONSOLE (Vselected_console) : 0, 0, Qnil, 1); | |
1659 } | |
1660 | |
1661 static Lisp_Object | |
1662 symbol_value_in_console (Lisp_Object sym, Lisp_Object console) | |
1663 { | |
1664 CHECK_SYMBOL (sym); | |
1665 | |
1666 if (NILP (console)) | |
1667 console = Vselected_console; | |
1668 else | |
1669 CHECK_CONSOLE (console); | |
1670 | |
1671 return find_symbol_value_1 (sym, current_buffer, XCONSOLE (console), 0, | |
1672 Qnil, 1); | |
1673 } | |
1674 | |
1675 /* Return the current value of SYM. The difference between this function | |
1676 and calling symbol_value_in_buffer with a BUFFER of Qnil is that | |
1677 this updates the CURRENT_VALUE slot of buffer-local variables to | |
1678 point to the current buffer, while symbol_value_in_buffer doesn't. */ | |
1679 | |
1680 Lisp_Object | |
1681 find_symbol_value (Lisp_Object sym) | |
1682 { | |
1683 /* WARNING: This function can be called when current_buffer is 0 | |
1684 and Vselected_console is Qnil, early in initialization. */ | |
1685 struct console *con; | |
1686 Lisp_Object valcontents; | |
1687 | |
1688 CHECK_SYMBOL (sym); | |
1689 | |
1690 valcontents = XSYMBOL (sym)->value; | |
1691 if (!SYMBOL_VALUE_MAGIC_P (valcontents)) | |
1692 return valcontents; | |
1693 | |
1694 if (CONSOLEP (Vselected_console)) | |
1695 con = XCONSOLE (Vselected_console); | |
1696 else | |
1697 { | |
1698 /* This can also get called while we're preparing to shutdown. | |
1699 #### What should really happen in that case? Should we | |
1700 actually fix things so we can't get here in that case? */ | |
1701 #ifndef PDUMP | |
1702 assert (!initialized || preparing_for_armageddon); | |
1703 #endif | |
1704 con = 0; | |
1705 } | |
1706 | |
1707 return find_symbol_value_1 (sym, current_buffer, con, 1, Qnil, 1); | |
1708 } | |
1709 | |
1710 /* This is an optimized function for quick lookup of buffer local symbols | |
1711 by avoiding O(n) search. This will work when either: | |
1712 a) We have already found the symbol e.g. by traversing local_var_alist. | |
1713 or | |
1714 b) We know that the symbol will not be found in the current buffer's | |
1715 list of local variables. | |
1716 In the former case, find_it_p is 1 and symbol_cons is the element from | |
1717 local_var_alist. In the latter case, find_it_p is 0 and symbol_cons | |
1718 is the symbol. | |
1719 | |
1720 This function is called from set_buffer_internal which does both of these | |
1721 things. */ | |
1722 | |
1723 Lisp_Object | |
1724 find_symbol_value_quickly (Lisp_Object symbol_cons, int find_it_p) | |
1725 { | |
1726 /* WARNING: This function can be called when current_buffer is 0 | |
1727 and Vselected_console is Qnil, early in initialization. */ | |
1728 struct console *con; | |
1729 Lisp_Object sym = find_it_p ? XCAR (symbol_cons) : symbol_cons; | |
1730 | |
1731 CHECK_SYMBOL (sym); | |
1732 if (CONSOLEP (Vselected_console)) | |
1733 con = XCONSOLE (Vselected_console); | |
1734 else | |
1735 { | |
1736 /* This can also get called while we're preparing to shutdown. | |
1737 #### What should really happen in that case? Should we | |
1738 actually fix things so we can't get here in that case? */ | |
1739 #ifndef PDUMP | |
1740 assert (!initialized || preparing_for_armageddon); | |
1741 #endif | |
1742 con = 0; | |
1743 } | |
1744 | |
1745 return find_symbol_value_1 (sym, current_buffer, con, 1, | |
1746 find_it_p ? symbol_cons : Qnil, | |
1747 find_it_p); | |
1748 } | |
1749 | |
1750 DEFUN ("symbol-value", Fsymbol_value, 1, 1, 0, /* | |
1751 Return SYMBOL's value. Error if that is void. | |
1752 */ | |
1753 (symbol)) | |
1754 { | |
1755 Lisp_Object val = find_symbol_value (symbol); | |
1756 | |
1757 if (UNBOUNDP (val)) | |
1758 return Fsignal (Qvoid_variable, list1 (symbol)); | |
1759 else | |
1760 return val; | |
1761 } | |
1762 | |
1763 DEFUN ("set", Fset, 2, 2, 0, /* | |
1764 Set SYMBOL's value to NEWVAL, and return NEWVAL. | |
1765 */ | |
1766 (symbol, newval)) | |
1767 { | |
1768 REGISTER Lisp_Object valcontents; | |
440 | 1769 Lisp_Symbol *sym; |
428 | 1770 /* remember, we're called by Fmakunbound() as well */ |
1771 | |
1772 CHECK_SYMBOL (symbol); | |
1773 | |
1774 retry: | |
1775 sym = XSYMBOL (symbol); | |
1776 valcontents = sym->value; | |
1777 | |
1778 if (EQ (symbol, Qnil) || | |
1779 EQ (symbol, Qt) || | |
1780 SYMBOL_IS_KEYWORD (symbol)) | |
1781 reject_constant_symbols (symbol, newval, 0, | |
1782 UNBOUNDP (newval) ? Qmakunbound : Qset); | |
1783 | |
1784 if (!SYMBOL_VALUE_MAGIC_P (valcontents) || UNBOUNDP (valcontents)) | |
1785 { | |
1786 sym->value = newval; | |
1787 return newval; | |
1788 } | |
1789 | |
1790 reject_constant_symbols (symbol, newval, 0, | |
1791 UNBOUNDP (newval) ? Qmakunbound : Qset); | |
1792 | |
1793 switch (XSYMBOL_VALUE_MAGIC_TYPE (valcontents)) | |
1794 { | |
1795 case SYMVAL_LISP_MAGIC: | |
1796 { | |
1797 if (UNBOUNDP (newval)) | |
440 | 1798 { |
1799 maybe_call_magic_handler (symbol, Qmakunbound, 0); | |
1800 return XSYMBOL_VALUE_LISP_MAGIC (valcontents)->shadowed = Qunbound; | |
1801 } | |
428 | 1802 else |
440 | 1803 { |
1804 maybe_call_magic_handler (symbol, Qset, 1, newval); | |
1805 return XSYMBOL_VALUE_LISP_MAGIC (valcontents)->shadowed = newval; | |
1806 } | |
428 | 1807 } |
1808 | |
1809 case SYMVAL_VARALIAS: | |
1810 symbol = follow_varalias_pointers (symbol, | |
1811 UNBOUNDP (newval) | |
1812 ? Qmakunbound : Qset); | |
1813 /* presto change-o! */ | |
1814 goto retry; | |
1815 | |
1816 case SYMVAL_FIXNUM_FORWARD: | |
996 | 1817 case SYMVAL_CONST_FIXNUM_FORWARD: |
428 | 1818 case SYMVAL_BOOLEAN_FORWARD: |
996 | 1819 case SYMVAL_CONST_BOOLEAN_FORWARD: |
428 | 1820 case SYMVAL_DEFAULT_BUFFER_FORWARD: |
1821 case SYMVAL_DEFAULT_CONSOLE_FORWARD: | |
1822 if (UNBOUNDP (newval)) | |
996 | 1823 { |
1824 #ifdef HAVE_SHLIB | |
1825 if (unloading_module) | |
1826 { | |
1827 sym->value = newval; | |
1828 return newval; | |
1829 } | |
1830 else | |
1831 #endif | |
1832 invalid_change ("Cannot makunbound", symbol); | |
1833 } | |
1834 break; | |
1835 | |
1836 case SYMVAL_OBJECT_FORWARD: | |
1837 case SYMVAL_CONST_OBJECT_FORWARD: | |
1838 if (UNBOUNDP (newval)) | |
1839 { | |
1840 #ifdef HAVE_SHLIB | |
1841 if (unloading_module) | |
1842 { | |
1111 | 1843 unstaticpro_nodump ((Lisp_Object *) |
1844 symbol_value_forward_forward | |
996 | 1845 (XSYMBOL_VALUE_FORWARD (valcontents))); |
1846 sym->value = newval; | |
1847 return newval; | |
1848 } | |
1849 else | |
1850 #endif | |
1851 invalid_change ("Cannot makunbound", symbol); | |
1852 } | |
428 | 1853 break; |
1854 | |
1855 /* case SYMVAL_UNBOUND_MARKER: break; */ | |
1856 | |
1857 case SYMVAL_CURRENT_BUFFER_FORWARD: | |
1858 { | |
442 | 1859 const struct symbol_value_forward *fwd |
428 | 1860 = XSYMBOL_VALUE_FORWARD (valcontents); |
1861 int mask = XINT (*((Lisp_Object *) | |
1862 symbol_value_forward_forward (fwd))); | |
1863 if (mask > 0) | |
1864 /* Setting this variable makes it buffer-local */ | |
1865 current_buffer->local_var_flags |= mask; | |
1866 break; | |
1867 } | |
1868 | |
1869 case SYMVAL_SELECTED_CONSOLE_FORWARD: | |
1870 { | |
442 | 1871 const struct symbol_value_forward *fwd |
428 | 1872 = XSYMBOL_VALUE_FORWARD (valcontents); |
1873 int mask = XINT (*((Lisp_Object *) | |
1874 symbol_value_forward_forward (fwd))); | |
1875 if (mask > 0) | |
1876 /* Setting this variable makes it console-local */ | |
1877 XCONSOLE (Vselected_console)->local_var_flags |= mask; | |
1878 break; | |
1879 } | |
1880 | |
1881 case SYMVAL_BUFFER_LOCAL: | |
1882 case SYMVAL_SOME_BUFFER_LOCAL: | |
1883 { | |
1884 /* If we want to examine or set the value and | |
1885 CURRENT-BUFFER is current, we just examine or set | |
1886 CURRENT-VALUE. If CURRENT-BUFFER is not current, we | |
1887 store the current CURRENT-VALUE value into | |
1888 CURRENT-ALIST- ELEMENT, then find the appropriate alist | |
1889 element for the buffer now current and set up | |
1890 CURRENT-ALIST-ELEMENT. Then we set CURRENT-VALUE out | |
1891 of that element, and store into CURRENT-BUFFER. | |
1892 | |
1893 If we are setting the variable and the current buffer does | |
1894 not have an alist entry for this variable, an alist entry is | |
1895 created. | |
1896 | |
1897 Note that CURRENT-VALUE can be a forwarding pointer. | |
1898 Each time it is examined or set, forwarding must be | |
1899 done. */ | |
1900 struct symbol_value_buffer_local *bfwd | |
1901 = XSYMBOL_VALUE_BUFFER_LOCAL (valcontents); | |
1902 int some_buffer_local_p = | |
1903 (bfwd->magic.type == SYMVAL_SOME_BUFFER_LOCAL); | |
1904 /* What value are we caching right now? */ | |
1905 Lisp_Object aelt = bfwd->current_alist_element; | |
1906 | |
1907 if (!NILP (bfwd->current_buffer) && | |
1908 current_buffer == XBUFFER (bfwd->current_buffer) | |
1909 && ((some_buffer_local_p) | |
1910 ? 1 /* doesn't automatically become local */ | |
1911 : !NILP (aelt) /* already local */ | |
1912 )) | |
1913 { | |
1914 /* Cache is valid */ | |
1915 valcontents = bfwd->current_value; | |
1916 } | |
1917 else | |
1918 { | |
1919 /* If the current buffer is not the buffer whose binding is | |
1920 currently cached, or if it's a SYMVAL_BUFFER_LOCAL and | |
1921 we're looking at the default value, the cache is invalid; we | |
1922 need to write it out, and find the new CURRENT-ALIST-ELEMENT | |
1923 */ | |
1924 | |
1925 /* Write out the cached value for the old buffer; copy it | |
1926 back to its alist element. This works if the current | |
1927 buffer only sees the default value, too. */ | |
1928 write_out_buffer_local_cache (symbol, bfwd); | |
1929 | |
1930 /* Find the new value for CURRENT-ALIST-ELEMENT. */ | |
1931 aelt = buffer_local_alist_element (current_buffer, symbol, bfwd); | |
1932 if (NILP (aelt)) | |
1933 { | |
1934 /* This buffer is still seeing the default value. */ | |
1935 if (!some_buffer_local_p) | |
1936 { | |
1937 /* If it's a SYMVAL_BUFFER_LOCAL, give this buffer a | |
1938 new assoc for a local value and set | |
1939 CURRENT-ALIST-ELEMENT to point to that. */ | |
1940 aelt = | |
1941 do_symval_forwarding (bfwd->current_value, | |
1942 current_buffer, | |
1943 XCONSOLE (Vselected_console)); | |
1944 aelt = Fcons (symbol, aelt); | |
1945 current_buffer->local_var_alist | |
1946 = Fcons (aelt, current_buffer->local_var_alist); | |
1947 } | |
1948 else | |
1949 { | |
1950 /* If the variable is a SYMVAL_SOME_BUFFER_LOCAL, | |
1951 we're currently seeing the default value. */ | |
1952 ; | |
1953 } | |
1954 } | |
1955 /* Cache the new buffer's assoc in CURRENT-ALIST-ELEMENT. */ | |
1956 bfwd->current_alist_element = aelt; | |
1957 /* Set BUFFER, now that CURRENT-ALIST-ELEMENT is accurate. */ | |
793 | 1958 bfwd->current_buffer = wrap_buffer (current_buffer); |
428 | 1959 valcontents = bfwd->current_value; |
1960 } | |
1961 break; | |
1962 } | |
1963 default: | |
2500 | 1964 ABORT (); |
428 | 1965 } |
1966 store_symval_forwarding (symbol, valcontents, newval); | |
1967 | |
1968 return newval; | |
1969 } | |
1970 | |
1971 | |
1972 /* Access or set a buffer-local symbol's default value. */ | |
1973 | |
1974 /* Return the default value of SYM, but don't check for voidness. | |
1975 Return Qunbound if it is void. */ | |
1976 | |
1977 static Lisp_Object | |
1978 default_value (Lisp_Object sym) | |
1979 { | |
1980 Lisp_Object valcontents; | |
1981 | |
1982 CHECK_SYMBOL (sym); | |
1983 | |
1984 retry: | |
1985 valcontents = XSYMBOL (sym)->value; | |
1986 | |
1987 retry_2: | |
1988 if (!SYMBOL_VALUE_MAGIC_P (valcontents)) | |
1989 return valcontents; | |
1990 | |
1991 switch (XSYMBOL_VALUE_MAGIC_TYPE (valcontents)) | |
1992 { | |
1993 case SYMVAL_LISP_MAGIC: | |
1994 /* #### kludge */ | |
1995 valcontents = XSYMBOL_VALUE_LISP_MAGIC (valcontents)->shadowed; | |
1996 /* semi-change-o */ | |
1997 goto retry_2; | |
1998 | |
1999 case SYMVAL_VARALIAS: | |
2000 sym = follow_varalias_pointers (sym, Qt /* #### kludge */); | |
2001 /* presto change-o! */ | |
2002 goto retry; | |
2003 | |
2004 case SYMVAL_UNBOUND_MARKER: | |
2005 return valcontents; | |
2006 | |
2007 case SYMVAL_CURRENT_BUFFER_FORWARD: | |
2008 { | |
442 | 2009 const struct symbol_value_forward *fwd |
428 | 2010 = XSYMBOL_VALUE_FORWARD (valcontents); |
2011 return (*((Lisp_Object *)((char *) XBUFFER (Vbuffer_defaults) | |
2012 + ((char *)symbol_value_forward_forward (fwd) | |
2013 - (char *)&buffer_local_flags)))); | |
2014 } | |
2015 | |
2016 case SYMVAL_SELECTED_CONSOLE_FORWARD: | |
2017 { | |
442 | 2018 const struct symbol_value_forward *fwd |
428 | 2019 = XSYMBOL_VALUE_FORWARD (valcontents); |
2020 return (*((Lisp_Object *)((char *) XCONSOLE (Vconsole_defaults) | |
2021 + ((char *)symbol_value_forward_forward (fwd) | |
2022 - (char *)&console_local_flags)))); | |
2023 } | |
2024 | |
2025 case SYMVAL_BUFFER_LOCAL: | |
2026 case SYMVAL_SOME_BUFFER_LOCAL: | |
2027 { | |
2028 struct symbol_value_buffer_local *bfwd = | |
2029 XSYMBOL_VALUE_BUFFER_LOCAL (valcontents); | |
2030 | |
2031 /* Handle user-created local variables. */ | |
2032 /* If var is set up for a buffer that lacks a local value for it, | |
2033 the current value is nominally the default value. | |
2034 But the current value slot may be more up to date, since | |
2035 ordinary setq stores just that slot. So use that. */ | |
2036 if (NILP (bfwd->current_alist_element)) | |
2037 return do_symval_forwarding (bfwd->current_value, current_buffer, | |
2038 XCONSOLE (Vselected_console)); | |
2039 else | |
2040 return bfwd->default_value; | |
2041 } | |
2042 default: | |
2043 /* For other variables, get the current value. */ | |
2044 return do_symval_forwarding (valcontents, current_buffer, | |
2045 XCONSOLE (Vselected_console)); | |
2046 } | |
2047 | |
1204 | 2048 RETURN_NOT_REACHED (Qnil); /* suppress compiler warning */ |
428 | 2049 } |
2050 | |
2051 DEFUN ("default-boundp", Fdefault_boundp, 1, 1, 0, /* | |
2052 Return t if SYMBOL has a non-void default value. | |
2053 This is the value that is seen in buffers that do not have their own values | |
2054 for this variable. | |
2055 */ | |
2056 (symbol)) | |
2057 { | |
2058 return UNBOUNDP (default_value (symbol)) ? Qnil : Qt; | |
2059 } | |
2060 | |
2061 DEFUN ("default-value", Fdefault_value, 1, 1, 0, /* | |
2062 Return SYMBOL's default value. | |
2063 This is the value that is seen in buffers that do not have their own values | |
2064 for this variable. The default value is meaningful for variables with | |
2065 local bindings in certain buffers. | |
2066 */ | |
2067 (symbol)) | |
2068 { | |
2069 Lisp_Object value = default_value (symbol); | |
2070 | |
2071 return UNBOUNDP (value) ? Fsignal (Qvoid_variable, list1 (symbol)) : value; | |
2072 } | |
2073 | |
2074 DEFUN ("set-default", Fset_default, 2, 2, 0, /* | |
444 | 2075 Set SYMBOL's default value to VALUE. SYMBOL and VALUE are evaluated. |
428 | 2076 The default value is seen in buffers that do not have their own values |
2077 for this variable. | |
2078 */ | |
2079 (symbol, value)) | |
2080 { | |
2081 Lisp_Object valcontents; | |
2082 | |
2083 CHECK_SYMBOL (symbol); | |
2084 | |
2085 retry: | |
2086 valcontents = XSYMBOL (symbol)->value; | |
2087 | |
2088 retry_2: | |
2089 if (!SYMBOL_VALUE_MAGIC_P (valcontents)) | |
2090 return Fset (symbol, value); | |
2091 | |
2092 switch (XSYMBOL_VALUE_MAGIC_TYPE (valcontents)) | |
2093 { | |
2094 case SYMVAL_LISP_MAGIC: | |
2095 RETURN_IF_NOT_UNBOUND (maybe_call_magic_handler (symbol, Qset_default, 1, | |
2096 value)); | |
2097 valcontents = XSYMBOL_VALUE_LISP_MAGIC (valcontents)->shadowed; | |
2098 /* semi-change-o */ | |
2099 goto retry_2; | |
2100 | |
2101 case SYMVAL_VARALIAS: | |
2102 symbol = follow_varalias_pointers (symbol, Qset_default); | |
2103 /* presto change-o! */ | |
2104 goto retry; | |
2105 | |
2106 case SYMVAL_CURRENT_BUFFER_FORWARD: | |
2107 set_default_buffer_slot_variable (symbol, value); | |
2108 return value; | |
2109 | |
2110 case SYMVAL_SELECTED_CONSOLE_FORWARD: | |
2111 set_default_console_slot_variable (symbol, value); | |
2112 return value; | |
2113 | |
2114 case SYMVAL_BUFFER_LOCAL: | |
2115 case SYMVAL_SOME_BUFFER_LOCAL: | |
2116 { | |
2117 /* Store new value into the DEFAULT-VALUE slot */ | |
2118 struct symbol_value_buffer_local *bfwd | |
2119 = XSYMBOL_VALUE_BUFFER_LOCAL (valcontents); | |
2120 | |
2121 bfwd->default_value = value; | |
2122 /* If current-buffer doesn't shadow default_value, | |
2123 * we must set the CURRENT-VALUE slot too */ | |
2124 if (NILP (bfwd->current_alist_element)) | |
2125 store_symval_forwarding (symbol, bfwd->current_value, value); | |
2126 return value; | |
2127 } | |
2128 | |
2129 default: | |
2130 return Fset (symbol, value); | |
2131 } | |
2132 } | |
2133 | |
2134 DEFUN ("setq-default", Fsetq_default, 0, UNEVALLED, 0, /* | |
2135 Set the default value of variable SYMBOL to VALUE. | |
2136 SYMBOL, the variable name, is literal (not evaluated); | |
2137 VALUE is an expression and it is evaluated. | |
2138 The default value of a variable is seen in buffers | |
2139 that do not have their own values for the variable. | |
2140 | |
2141 More generally, you can use multiple variables and values, as in | |
2142 (setq-default SYMBOL VALUE SYMBOL VALUE...) | |
2143 This sets each SYMBOL's default value to the corresponding VALUE. | |
2144 The VALUE for the Nth SYMBOL can refer to the new default values | |
2145 of previous SYMBOLs. | |
2146 */ | |
2147 (args)) | |
2148 { | |
2149 /* This function can GC */ | |
2150 int nargs; | |
2421 | 2151 Lisp_Object retval = Qnil; |
428 | 2152 |
2153 GET_LIST_LENGTH (args, nargs); | |
2154 | |
2155 if (nargs & 1) /* Odd number of arguments? */ | |
2156 Fsignal (Qwrong_number_of_arguments, | |
2157 list2 (Qsetq_default, make_int (nargs))); | |
2158 | |
2421 | 2159 GC_PROPERTY_LIST_LOOP_3 (symbol, val, args) |
428 | 2160 { |
4677
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4642
diff
changeset
|
2161 val = IGNORE_MULTIPLE_VALUES (Feval (val)); |
428 | 2162 Fset_default (symbol, val); |
2421 | 2163 retval = val; |
428 | 2164 } |
2165 | |
2421 | 2166 END_GC_PROPERTY_LIST_LOOP (symbol); |
2167 return retval; | |
428 | 2168 } |
2169 | |
2170 /* Lisp functions for creating and removing buffer-local variables. */ | |
2171 | |
2172 DEFUN ("make-variable-buffer-local", Fmake_variable_buffer_local, 1, 1, | |
2173 "vMake Variable Buffer Local: ", /* | |
2174 Make VARIABLE have a separate value for each buffer. | |
2175 At any time, the value for the current buffer is in effect. | |
2176 There is also a default value which is seen in any buffer which has not yet | |
2177 set its own value. | |
2178 Using `set' or `setq' to set the variable causes it to have a separate value | |
2179 for the current buffer if it was previously using the default value. | |
2180 The function `default-value' gets the default value and `set-default' | |
2181 sets it. | |
2182 */ | |
2183 (variable)) | |
2184 { | |
2185 Lisp_Object valcontents; | |
2186 | |
2187 CHECK_SYMBOL (variable); | |
2188 | |
2189 retry: | |
2190 verify_ok_for_buffer_local (variable, Qmake_variable_buffer_local); | |
2191 | |
2192 valcontents = XSYMBOL (variable)->value; | |
2193 | |
2194 retry_2: | |
2195 if (SYMBOL_VALUE_MAGIC_P (valcontents)) | |
2196 { | |
2197 switch (XSYMBOL_VALUE_MAGIC_TYPE (valcontents)) | |
2198 { | |
2199 case SYMVAL_LISP_MAGIC: | |
2200 if (!UNBOUNDP (maybe_call_magic_handler | |
2201 (variable, Qmake_variable_buffer_local, 0))) | |
2202 return variable; | |
2203 valcontents = XSYMBOL_VALUE_LISP_MAGIC (valcontents)->shadowed; | |
2204 /* semi-change-o */ | |
2205 goto retry_2; | |
2206 | |
2207 case SYMVAL_VARALIAS: | |
2208 variable = follow_varalias_pointers (variable, | |
2209 Qmake_variable_buffer_local); | |
2210 /* presto change-o! */ | |
2211 goto retry; | |
2212 | |
2213 case SYMVAL_FIXNUM_FORWARD: | |
2214 case SYMVAL_BOOLEAN_FORWARD: | |
2215 case SYMVAL_OBJECT_FORWARD: | |
2216 case SYMVAL_UNBOUND_MARKER: | |
2217 break; | |
2218 | |
2219 case SYMVAL_CURRENT_BUFFER_FORWARD: | |
2220 case SYMVAL_BUFFER_LOCAL: | |
2221 /* Already per-each-buffer */ | |
2222 return variable; | |
2223 | |
2224 case SYMVAL_SOME_BUFFER_LOCAL: | |
2225 /* Transmogrify */ | |
2226 XSYMBOL_VALUE_BUFFER_LOCAL (valcontents)->magic.type = | |
2227 SYMVAL_BUFFER_LOCAL; | |
2228 return variable; | |
2229 | |
2230 default: | |
2500 | 2231 ABORT (); |
428 | 2232 } |
2233 } | |
2234 | |
2235 { | |
2236 struct symbol_value_buffer_local *bfwd | |
3017 | 2237 = ALLOC_LCRECORD_TYPE (struct symbol_value_buffer_local, |
428 | 2238 &lrecord_symbol_value_buffer_local); |
2239 Lisp_Object foo; | |
2240 bfwd->magic.type = SYMVAL_BUFFER_LOCAL; | |
2241 | |
2242 bfwd->default_value = find_symbol_value (variable); | |
2243 bfwd->current_value = valcontents; | |
2244 bfwd->current_alist_element = Qnil; | |
2245 bfwd->current_buffer = Fcurrent_buffer (); | |
793 | 2246 foo = wrap_symbol_value_magic (bfwd); |
428 | 2247 *value_slot_past_magic (variable) = foo; |
2248 #if 1 /* #### Yuck! FSFmacs bug-compatibility*/ | |
2249 /* This sets the default-value of any make-variable-buffer-local to nil. | |
2250 That just sucks. User can just use setq-default to effect that, | |
2251 but there's no way to do makunbound-default to undo this lossage. */ | |
2252 if (UNBOUNDP (valcontents)) | |
2253 bfwd->default_value = Qnil; | |
2254 #endif | |
2255 #if 0 /* #### Yuck! */ | |
2256 /* This sets the value to nil in this buffer. | |
2257 User could use (setq variable nil) to do this. | |
2258 It isn't as egregious to do this automatically | |
2259 as it is to do so to the default-value, but it's | |
2260 still really dubious. */ | |
2261 if (UNBOUNDP (valcontents)) | |
2262 Fset (variable, Qnil); | |
2263 #endif | |
2264 return variable; | |
2265 } | |
2266 } | |
2267 | |
2268 DEFUN ("make-local-variable", Fmake_local_variable, 1, 1, | |
2269 "vMake Local Variable: ", /* | |
2270 Make VARIABLE have a separate value in the current buffer. | |
2271 Other buffers will continue to share a common default value. | |
2272 \(The buffer-local value of VARIABLE starts out as the same value | |
2273 VARIABLE previously had. If VARIABLE was void, it remains void.) | |
2274 See also `make-variable-buffer-local'. | |
2275 | |
2276 If the variable is already arranged to become local when set, | |
2277 this function causes a local value to exist for this buffer, | |
2278 just as setting the variable would do. | |
2279 | |
2280 Do not use `make-local-variable' to make a hook variable buffer-local. | |
2281 Use `make-local-hook' instead. | |
2282 */ | |
2283 (variable)) | |
2284 { | |
2285 Lisp_Object valcontents; | |
2286 struct symbol_value_buffer_local *bfwd; | |
2287 | |
2288 CHECK_SYMBOL (variable); | |
2289 | |
2290 retry: | |
2291 verify_ok_for_buffer_local (variable, Qmake_local_variable); | |
2292 | |
2293 valcontents = XSYMBOL (variable)->value; | |
2294 | |
2295 retry_2: | |
2296 if (SYMBOL_VALUE_MAGIC_P (valcontents)) | |
2297 { | |
2298 switch (XSYMBOL_VALUE_MAGIC_TYPE (valcontents)) | |
2299 { | |
2300 case SYMVAL_LISP_MAGIC: | |
2301 if (!UNBOUNDP (maybe_call_magic_handler | |
2302 (variable, Qmake_local_variable, 0))) | |
2303 return variable; | |
2304 valcontents = XSYMBOL_VALUE_LISP_MAGIC (valcontents)->shadowed; | |
2305 /* semi-change-o */ | |
2306 goto retry_2; | |
2307 | |
2308 case SYMVAL_VARALIAS: | |
2309 variable = follow_varalias_pointers (variable, Qmake_local_variable); | |
2310 /* presto change-o! */ | |
2311 goto retry; | |
2312 | |
2313 case SYMVAL_FIXNUM_FORWARD: | |
2314 case SYMVAL_BOOLEAN_FORWARD: | |
2315 case SYMVAL_OBJECT_FORWARD: | |
2316 case SYMVAL_UNBOUND_MARKER: | |
2317 break; | |
2318 | |
2319 case SYMVAL_BUFFER_LOCAL: | |
2320 case SYMVAL_CURRENT_BUFFER_FORWARD: | |
2321 { | |
2322 /* Make sure the symbol has a local value in this particular | |
2323 buffer, by setting it to the same value it already has. */ | |
2324 Fset (variable, find_symbol_value (variable)); | |
2325 return variable; | |
2326 } | |
2327 | |
2328 case SYMVAL_SOME_BUFFER_LOCAL: | |
2329 { | |
2330 if (!NILP (buffer_local_alist_element (current_buffer, | |
2331 variable, | |
2332 (XSYMBOL_VALUE_BUFFER_LOCAL | |
2333 (valcontents))))) | |
2334 goto already_local_to_current_buffer; | |
2335 else | |
2336 goto already_local_to_some_other_buffer; | |
2337 } | |
2338 | |
2339 default: | |
2500 | 2340 ABORT (); |
428 | 2341 } |
2342 } | |
2343 | |
2344 /* Make sure variable is set up to hold per-buffer values */ | |
3017 | 2345 bfwd = ALLOC_LCRECORD_TYPE (struct symbol_value_buffer_local, |
428 | 2346 &lrecord_symbol_value_buffer_local); |
2347 bfwd->magic.type = SYMVAL_SOME_BUFFER_LOCAL; | |
2348 | |
2349 bfwd->current_buffer = Qnil; | |
2350 bfwd->current_alist_element = Qnil; | |
2351 bfwd->current_value = valcontents; | |
2352 /* passing 0 is OK because this should never be a | |
2353 SYMVAL_CURRENT_BUFFER_FORWARD or SYMVAL_SELECTED_CONSOLE_FORWARD | |
2354 variable. */ | |
2355 bfwd->default_value = do_symval_forwarding (valcontents, 0, 0); | |
2356 | |
2357 #if 0 | |
2358 if (UNBOUNDP (bfwd->default_value)) | |
2359 bfwd->default_value = Qnil; /* Yuck! */ | |
2360 #endif | |
2361 | |
793 | 2362 valcontents = wrap_symbol_value_magic (bfwd); |
428 | 2363 *value_slot_past_magic (variable) = valcontents; |
2364 | |
2365 already_local_to_some_other_buffer: | |
2366 | |
2367 /* Make sure this buffer has its own value of variable */ | |
2368 bfwd = XSYMBOL_VALUE_BUFFER_LOCAL (valcontents); | |
2369 | |
2370 if (UNBOUNDP (bfwd->default_value)) | |
2371 { | |
2372 /* If default value is unbound, set local value to nil. */ | |
793 | 2373 bfwd->current_buffer = wrap_buffer (current_buffer); |
428 | 2374 bfwd->current_alist_element = Fcons (variable, Qnil); |
2375 current_buffer->local_var_alist = | |
2376 Fcons (bfwd->current_alist_element, current_buffer->local_var_alist); | |
2377 store_symval_forwarding (variable, bfwd->current_value, Qnil); | |
2378 return variable; | |
2379 } | |
2380 | |
2381 current_buffer->local_var_alist | |
2382 = Fcons (Fcons (variable, bfwd->default_value), | |
2383 current_buffer->local_var_alist); | |
2384 | |
2385 /* Make sure symbol does not think it is set up for this buffer; | |
2386 force it to look once again for this buffer's value */ | |
2387 if (!NILP (bfwd->current_buffer) && | |
2388 current_buffer == XBUFFER (bfwd->current_buffer)) | |
2389 bfwd->current_buffer = Qnil; | |
2390 | |
2391 already_local_to_current_buffer: | |
2392 | |
2393 /* If the symbol forwards into a C variable, then swap in the | |
2394 variable for this buffer immediately. If C code modifies the | |
2395 variable before we swap in, then that new value will clobber the | |
2396 default value the next time we swap. */ | |
2397 bfwd = XSYMBOL_VALUE_BUFFER_LOCAL (valcontents); | |
2398 if (SYMBOL_VALUE_MAGIC_P (bfwd->current_value)) | |
2399 { | |
2400 switch (XSYMBOL_VALUE_MAGIC_TYPE (bfwd->current_value)) | |
2401 { | |
2402 case SYMVAL_FIXNUM_FORWARD: | |
2403 case SYMVAL_BOOLEAN_FORWARD: | |
2404 case SYMVAL_OBJECT_FORWARD: | |
2405 case SYMVAL_DEFAULT_BUFFER_FORWARD: | |
2406 set_up_buffer_local_cache (variable, bfwd, current_buffer, Qnil, 1); | |
2407 break; | |
2408 | |
2409 case SYMVAL_UNBOUND_MARKER: | |
2410 case SYMVAL_CURRENT_BUFFER_FORWARD: | |
2411 break; | |
2412 | |
2413 default: | |
2500 | 2414 ABORT (); |
428 | 2415 } |
2416 } | |
2417 | |
2418 return variable; | |
2419 } | |
2420 | |
2421 DEFUN ("kill-local-variable", Fkill_local_variable, 1, 1, | |
2422 "vKill Local Variable: ", /* | |
2423 Make VARIABLE no longer have a separate value in the current buffer. | |
2424 From now on the default value will apply in this buffer. | |
2425 */ | |
2426 (variable)) | |
2427 { | |
2428 Lisp_Object valcontents; | |
2429 | |
2430 CHECK_SYMBOL (variable); | |
2431 | |
2432 retry: | |
2433 valcontents = XSYMBOL (variable)->value; | |
2434 | |
2435 retry_2: | |
2436 if (!SYMBOL_VALUE_MAGIC_P (valcontents)) | |
2437 return variable; | |
2438 | |
2439 switch (XSYMBOL_VALUE_MAGIC_TYPE (valcontents)) | |
2440 { | |
2441 case SYMVAL_LISP_MAGIC: | |
2442 if (!UNBOUNDP (maybe_call_magic_handler | |
2443 (variable, Qkill_local_variable, 0))) | |
2444 return variable; | |
2445 valcontents = XSYMBOL_VALUE_LISP_MAGIC (valcontents)->shadowed; | |
2446 /* semi-change-o */ | |
2447 goto retry_2; | |
2448 | |
2449 case SYMVAL_VARALIAS: | |
2450 variable = follow_varalias_pointers (variable, Qkill_local_variable); | |
2451 /* presto change-o! */ | |
2452 goto retry; | |
2453 | |
2454 case SYMVAL_CURRENT_BUFFER_FORWARD: | |
2455 { | |
442 | 2456 const struct symbol_value_forward *fwd |
428 | 2457 = XSYMBOL_VALUE_FORWARD (valcontents); |
2458 int offset = ((char *) symbol_value_forward_forward (fwd) | |
2459 - (char *) &buffer_local_flags); | |
2460 int mask = | |
2461 XINT (*((Lisp_Object *) symbol_value_forward_forward (fwd))); | |
2462 | |
2463 if (mask > 0) | |
2464 { | |
2465 int (*magicfun) (Lisp_Object sym, Lisp_Object *val, | |
2466 Lisp_Object in_object, int flags) = | |
2467 symbol_value_forward_magicfun (fwd); | |
2468 Lisp_Object oldval = * (Lisp_Object *) | |
2469 (offset + (char *) XBUFFER (Vbuffer_defaults)); | |
2470 if (magicfun) | |
771 | 2471 (magicfun) (variable, &oldval, wrap_buffer (current_buffer), 0); |
428 | 2472 *(Lisp_Object *) (offset + (char *) current_buffer) |
2473 = oldval; | |
2474 current_buffer->local_var_flags &= ~mask; | |
2475 } | |
2476 return variable; | |
2477 } | |
2478 | |
2479 case SYMVAL_BUFFER_LOCAL: | |
2480 case SYMVAL_SOME_BUFFER_LOCAL: | |
2481 { | |
2482 /* Get rid of this buffer's alist element, if any */ | |
2483 struct symbol_value_buffer_local *bfwd | |
2484 = XSYMBOL_VALUE_BUFFER_LOCAL (valcontents); | |
2485 Lisp_Object alist = current_buffer->local_var_alist; | |
2486 Lisp_Object alist_element | |
2487 = buffer_local_alist_element (current_buffer, variable, bfwd); | |
2488 | |
2489 if (!NILP (alist_element)) | |
2490 current_buffer->local_var_alist = Fdelq (alist_element, alist); | |
2491 | |
2492 /* Make sure symbol does not think it is set up for this buffer; | |
2493 force it to look once again for this buffer's value */ | |
2494 if (!NILP (bfwd->current_buffer) && | |
2495 current_buffer == XBUFFER (bfwd->current_buffer)) | |
2496 bfwd->current_buffer = Qnil; | |
2497 | |
2498 /* We just changed the value in the current_buffer. If this | |
2499 variable forwards to a C variable, we need to change the | |
2500 value of the C variable. set_up_buffer_local_cache() | |
2501 will do this. It doesn't hurt to do it always, | |
2502 so just go ahead and do that. */ | |
2503 set_up_buffer_local_cache (variable, bfwd, current_buffer, Qnil, 1); | |
2504 } | |
2505 return variable; | |
2506 | |
2507 default: | |
2508 return variable; | |
2509 } | |
1204 | 2510 RETURN_NOT_REACHED(Qnil); /* suppress compiler warning */ |
428 | 2511 } |
2512 | |
2513 | |
2514 DEFUN ("kill-console-local-variable", Fkill_console_local_variable, 1, 1, | |
2515 "vKill Console Local Variable: ", /* | |
2516 Make VARIABLE no longer have a separate value in the selected console. | |
2517 From now on the default value will apply in this console. | |
2518 */ | |
2519 (variable)) | |
2520 { | |
2521 Lisp_Object valcontents; | |
2522 | |
2523 CHECK_SYMBOL (variable); | |
2524 | |
2525 retry: | |
2526 valcontents = XSYMBOL (variable)->value; | |
2527 | |
2528 retry_2: | |
2529 if (!SYMBOL_VALUE_MAGIC_P (valcontents)) | |
2530 return variable; | |
2531 | |
2532 switch (XSYMBOL_VALUE_MAGIC_TYPE (valcontents)) | |
2533 { | |
2534 case SYMVAL_LISP_MAGIC: | |
2535 if (!UNBOUNDP (maybe_call_magic_handler | |
2536 (variable, Qkill_console_local_variable, 0))) | |
2537 return variable; | |
2538 valcontents = XSYMBOL_VALUE_LISP_MAGIC (valcontents)->shadowed; | |
2539 /* semi-change-o */ | |
2540 goto retry_2; | |
2541 | |
2542 case SYMVAL_VARALIAS: | |
2543 variable = follow_varalias_pointers (variable, | |
2544 Qkill_console_local_variable); | |
2545 /* presto change-o! */ | |
2546 goto retry; | |
2547 | |
2548 case SYMVAL_SELECTED_CONSOLE_FORWARD: | |
2549 { | |
442 | 2550 const struct symbol_value_forward *fwd |
428 | 2551 = XSYMBOL_VALUE_FORWARD (valcontents); |
2552 int offset = ((char *) symbol_value_forward_forward (fwd) | |
2553 - (char *) &console_local_flags); | |
2554 int mask = | |
2555 XINT (*((Lisp_Object *) symbol_value_forward_forward (fwd))); | |
2556 | |
2557 if (mask > 0) | |
2558 { | |
2559 int (*magicfun) (Lisp_Object sym, Lisp_Object *val, | |
2560 Lisp_Object in_object, int flags) = | |
2561 symbol_value_forward_magicfun (fwd); | |
2562 Lisp_Object oldval = * (Lisp_Object *) | |
2563 (offset + (char *) XCONSOLE (Vconsole_defaults)); | |
2564 if (magicfun) | |
2565 magicfun (variable, &oldval, Vselected_console, 0); | |
2566 *(Lisp_Object *) (offset + (char *) XCONSOLE (Vselected_console)) | |
2567 = oldval; | |
2568 XCONSOLE (Vselected_console)->local_var_flags &= ~mask; | |
2569 } | |
2570 return variable; | |
2571 } | |
2572 | |
2573 default: | |
2574 return variable; | |
2575 } | |
2576 } | |
2577 | |
2578 /* Used by specbind to determine what effects it might have. Returns: | |
2579 * 0 if symbol isn't buffer-local, and wouldn't be after it is set | |
2580 * <0 if symbol isn't presently buffer-local, but set would make it so | |
2581 * >0 if symbol is presently buffer-local | |
2582 */ | |
2583 int | |
2584 symbol_value_buffer_local_info (Lisp_Object symbol, struct buffer *buffer) | |
2585 { | |
2586 Lisp_Object valcontents; | |
2587 | |
2588 retry: | |
2589 valcontents = XSYMBOL (symbol)->value; | |
2590 | |
2591 retry_2: | |
2592 if (SYMBOL_VALUE_MAGIC_P (valcontents)) | |
2593 { | |
2594 switch (XSYMBOL_VALUE_MAGIC_TYPE (valcontents)) | |
2595 { | |
2596 case SYMVAL_LISP_MAGIC: | |
2597 /* #### kludge */ | |
2598 valcontents = XSYMBOL_VALUE_LISP_MAGIC (valcontents)->shadowed; | |
2599 /* semi-change-o */ | |
2600 goto retry_2; | |
2601 | |
2602 case SYMVAL_VARALIAS: | |
2603 symbol = follow_varalias_pointers (symbol, Qt /* #### kludge */); | |
2604 /* presto change-o! */ | |
2605 goto retry; | |
2606 | |
2607 case SYMVAL_CURRENT_BUFFER_FORWARD: | |
2608 { | |
442 | 2609 const struct symbol_value_forward *fwd |
428 | 2610 = XSYMBOL_VALUE_FORWARD (valcontents); |
2611 int mask = XINT (*((Lisp_Object *) | |
2612 symbol_value_forward_forward (fwd))); | |
2613 if ((mask <= 0) || (buffer && (buffer->local_var_flags & mask))) | |
2614 /* Already buffer-local */ | |
2615 return 1; | |
2616 else | |
2617 /* Would be buffer-local after set */ | |
2618 return -1; | |
2619 } | |
2620 case SYMVAL_BUFFER_LOCAL: | |
2621 case SYMVAL_SOME_BUFFER_LOCAL: | |
2622 { | |
2623 struct symbol_value_buffer_local *bfwd | |
2624 = XSYMBOL_VALUE_BUFFER_LOCAL (valcontents); | |
2625 if (buffer | |
2626 && !NILP (buffer_local_alist_element (buffer, symbol, bfwd))) | |
2627 return 1; | |
2628 else | |
2629 /* Automatically becomes local when set */ | |
2630 return bfwd->magic.type == SYMVAL_BUFFER_LOCAL ? -1 : 0; | |
2631 } | |
2632 default: | |
2633 return 0; | |
2634 } | |
2635 } | |
2636 return 0; | |
2637 } | |
2638 | |
2639 | |
2640 DEFUN ("symbol-value-in-buffer", Fsymbol_value_in_buffer, 2, 3, 0, /* | |
2641 Return the value of SYMBOL in BUFFER, or UNBOUND-VALUE if it is unbound. | |
2642 */ | |
2643 (symbol, buffer, unbound_value)) | |
2644 { | |
2645 Lisp_Object value; | |
2646 CHECK_SYMBOL (symbol); | |
2647 CHECK_BUFFER (buffer); | |
2648 value = symbol_value_in_buffer (symbol, buffer); | |
2649 return UNBOUNDP (value) ? unbound_value : value; | |
2650 } | |
2651 | |
2652 DEFUN ("symbol-value-in-console", Fsymbol_value_in_console, 2, 3, 0, /* | |
2653 Return the value of SYMBOL in CONSOLE, or UNBOUND-VALUE if it is unbound. | |
2654 */ | |
2655 (symbol, console, unbound_value)) | |
2656 { | |
2657 Lisp_Object value; | |
2658 CHECK_SYMBOL (symbol); | |
2659 CHECK_CONSOLE (console); | |
2660 value = symbol_value_in_console (symbol, console); | |
2661 return UNBOUNDP (value) ? unbound_value : value; | |
2662 } | |
2663 | |
2664 DEFUN ("built-in-variable-type", Fbuilt_in_variable_type, 1, 1, 0, /* | |
2665 If SYMBOL is a built-in variable, return info about this; else return nil. | |
2666 The returned info will be a symbol, one of | |
2667 | |
2668 `object' A simple built-in variable. | |
2669 `const-object' Same, but cannot be set. | |
2670 `integer' A built-in integer variable. | |
2671 `const-integer' Same, but cannot be set. | |
2672 `boolean' A built-in boolean variable. | |
2673 `const-boolean' Same, but cannot be set. | |
2674 `const-specifier' Always contains a specifier; e.g. `has-modeline-p'. | |
2675 `current-buffer' A built-in buffer-local variable. | |
2676 `const-current-buffer' Same, but cannot be set. | |
2677 `default-buffer' Forwards to the default value of a built-in | |
2678 buffer-local variable. | |
2679 `selected-console' A built-in console-local variable. | |
2680 `const-selected-console' Same, but cannot be set. | |
2681 `default-console' Forwards to the default value of a built-in | |
2682 console-local variable. | |
2683 */ | |
2684 (symbol)) | |
2685 { | |
2686 REGISTER Lisp_Object valcontents; | |
2687 | |
2688 CHECK_SYMBOL (symbol); | |
2689 | |
2690 retry: | |
2691 valcontents = XSYMBOL (symbol)->value; | |
2692 | |
2693 retry_2: | |
2694 if (!SYMBOL_VALUE_MAGIC_P (valcontents)) | |
2695 return Qnil; | |
2696 | |
2697 switch (XSYMBOL_VALUE_MAGIC_TYPE (valcontents)) | |
2698 { | |
2699 case SYMVAL_LISP_MAGIC: | |
2700 valcontents = XSYMBOL_VALUE_LISP_MAGIC (valcontents)->shadowed; | |
2701 /* semi-change-o */ | |
2702 goto retry_2; | |
2703 | |
2704 case SYMVAL_VARALIAS: | |
2705 symbol = follow_varalias_pointers (symbol, Qt); | |
2706 /* presto change-o! */ | |
2707 goto retry; | |
2708 | |
2709 case SYMVAL_BUFFER_LOCAL: | |
2710 case SYMVAL_SOME_BUFFER_LOCAL: | |
2711 valcontents = | |
2712 XSYMBOL_VALUE_BUFFER_LOCAL (valcontents)->current_value; | |
2713 /* semi-change-o */ | |
2714 goto retry_2; | |
2715 | |
2716 case SYMVAL_FIXNUM_FORWARD: return Qinteger; | |
2717 case SYMVAL_CONST_FIXNUM_FORWARD: return Qconst_integer; | |
2718 case SYMVAL_BOOLEAN_FORWARD: return Qboolean; | |
2719 case SYMVAL_CONST_BOOLEAN_FORWARD: return Qconst_boolean; | |
2720 case SYMVAL_OBJECT_FORWARD: return Qobject; | |
2721 case SYMVAL_CONST_OBJECT_FORWARD: return Qconst_object; | |
2722 case SYMVAL_CONST_SPECIFIER_FORWARD: return Qconst_specifier; | |
2723 case SYMVAL_DEFAULT_BUFFER_FORWARD: return Qdefault_buffer; | |
2724 case SYMVAL_CURRENT_BUFFER_FORWARD: return Qcurrent_buffer; | |
2725 case SYMVAL_CONST_CURRENT_BUFFER_FORWARD: return Qconst_current_buffer; | |
2726 case SYMVAL_DEFAULT_CONSOLE_FORWARD: return Qdefault_console; | |
2727 case SYMVAL_SELECTED_CONSOLE_FORWARD: return Qselected_console; | |
2728 case SYMVAL_CONST_SELECTED_CONSOLE_FORWARD: return Qconst_selected_console; | |
2729 case SYMVAL_UNBOUND_MARKER: return Qnil; | |
2730 | |
2731 default: | |
2500 | 2732 ABORT (); return Qnil; |
428 | 2733 } |
2734 } | |
2735 | |
2736 | |
2737 DEFUN ("local-variable-p", Flocal_variable_p, 2, 3, 0, /* | |
2738 Return t if SYMBOL's value is local to BUFFER. | |
444 | 2739 If optional third arg AFTER-SET is non-nil, return t if SYMBOL would be |
428 | 2740 buffer-local after it is set, regardless of whether it is so presently. |
2741 A nil value for BUFFER is *not* the same as (current-buffer), but means | |
2742 "no buffer". Specifically: | |
2743 | |
2744 -- If BUFFER is nil and AFTER-SET is nil, a return value of t indicates that | |
2745 the variable is one of the special built-in variables that is always | |
2746 buffer-local. (This includes `buffer-file-name', `buffer-read-only', | |
2747 `buffer-undo-list', and others.) | |
2748 | |
2749 -- If BUFFER is nil and AFTER-SET is t, a return value of t indicates that | |
2750 the variable has had `make-variable-buffer-local' applied to it. | |
2751 */ | |
2752 (symbol, buffer, after_set)) | |
2753 { | |
2754 int local_info; | |
2755 | |
2756 CHECK_SYMBOL (symbol); | |
2757 if (!NILP (buffer)) | |
2758 { | |
2759 buffer = get_buffer (buffer, 1); | |
2760 local_info = symbol_value_buffer_local_info (symbol, XBUFFER (buffer)); | |
2761 } | |
2762 else | |
2763 { | |
2764 local_info = symbol_value_buffer_local_info (symbol, 0); | |
2765 } | |
2766 | |
2767 if (NILP (after_set)) | |
2768 return local_info > 0 ? Qt : Qnil; | |
2769 else | |
2770 return local_info != 0 ? Qt : Qnil; | |
2771 } | |
4502
8748a3f7ceb4
Handle varalias chains, custom variables in #'user-variable-p.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4355
diff
changeset
|
2772 |
8748a3f7ceb4
Handle varalias chains, custom variables in #'user-variable-p.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4355
diff
changeset
|
2773 DEFUN ("custom-variable-p", Fcustom_variable_p, 1, 1, 0, /* |
8748a3f7ceb4
Handle varalias chains, custom variables in #'user-variable-p.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4355
diff
changeset
|
2774 Return non-nil if SYMBOL names a custom variable. |
8748a3f7ceb4
Handle varalias chains, custom variables in #'user-variable-p.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4355
diff
changeset
|
2775 Does not follow the variable alias chain. |
8748a3f7ceb4
Handle varalias chains, custom variables in #'user-variable-p.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4355
diff
changeset
|
2776 */ |
8748a3f7ceb4
Handle varalias chains, custom variables in #'user-variable-p.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4355
diff
changeset
|
2777 (symbol)) |
8748a3f7ceb4
Handle varalias chains, custom variables in #'user-variable-p.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4355
diff
changeset
|
2778 { |
8748a3f7ceb4
Handle varalias chains, custom variables in #'user-variable-p.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4355
diff
changeset
|
2779 return (!(NILP (Fget(symbol, intern ("standard-value"), Qnil))) |
8748a3f7ceb4
Handle varalias chains, custom variables in #'user-variable-p.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4355
diff
changeset
|
2780 || !(NILP (Fget(symbol, intern ("custom-autoload"), Qnil)))) ? |
8748a3f7ceb4
Handle varalias chains, custom variables in #'user-variable-p.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4355
diff
changeset
|
2781 Qt: Qnil; |
8748a3f7ceb4
Handle varalias chains, custom variables in #'user-variable-p.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4355
diff
changeset
|
2782 } |
8748a3f7ceb4
Handle varalias chains, custom variables in #'user-variable-p.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4355
diff
changeset
|
2783 |
8748a3f7ceb4
Handle varalias chains, custom variables in #'user-variable-p.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4355
diff
changeset
|
2784 static Lisp_Object |
8748a3f7ceb4
Handle varalias chains, custom variables in #'user-variable-p.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4355
diff
changeset
|
2785 user_variable_alias_check_fun (Lisp_Object symbol) |
8748a3f7ceb4
Handle varalias chains, custom variables in #'user-variable-p.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4355
diff
changeset
|
2786 { |
8748a3f7ceb4
Handle varalias chains, custom variables in #'user-variable-p.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4355
diff
changeset
|
2787 Lisp_Object documentation = Fget (symbol, Qvariable_documentation, Qnil); |
8748a3f7ceb4
Handle varalias chains, custom variables in #'user-variable-p.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4355
diff
changeset
|
2788 |
8748a3f7ceb4
Handle varalias chains, custom variables in #'user-variable-p.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4355
diff
changeset
|
2789 if ((INTP (documentation) && XINT (documentation) < 0) || |
8748a3f7ceb4
Handle varalias chains, custom variables in #'user-variable-p.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4355
diff
changeset
|
2790 (STRINGP (documentation) && |
8748a3f7ceb4
Handle varalias chains, custom variables in #'user-variable-p.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4355
diff
changeset
|
2791 (string_byte (documentation, 0) == '*')) || |
8748a3f7ceb4
Handle varalias chains, custom variables in #'user-variable-p.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4355
diff
changeset
|
2792 /* If (STRING . INTEGER), a negative integer means a user variable. */ |
8748a3f7ceb4
Handle varalias chains, custom variables in #'user-variable-p.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4355
diff
changeset
|
2793 (CONSP (documentation) |
8748a3f7ceb4
Handle varalias chains, custom variables in #'user-variable-p.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4355
diff
changeset
|
2794 && STRINGP (XCAR (documentation)) |
8748a3f7ceb4
Handle varalias chains, custom variables in #'user-variable-p.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4355
diff
changeset
|
2795 && INTP (XCDR (documentation)) |
8748a3f7ceb4
Handle varalias chains, custom variables in #'user-variable-p.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4355
diff
changeset
|
2796 && XINT (XCDR (documentation)) < 0) || |
8748a3f7ceb4
Handle varalias chains, custom variables in #'user-variable-p.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4355
diff
changeset
|
2797 !NILP (Fcustom_variable_p (symbol))) |
8748a3f7ceb4
Handle varalias chains, custom variables in #'user-variable-p.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4355
diff
changeset
|
2798 { |
8748a3f7ceb4
Handle varalias chains, custom variables in #'user-variable-p.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4355
diff
changeset
|
2799 return make_int(1); |
8748a3f7ceb4
Handle varalias chains, custom variables in #'user-variable-p.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4355
diff
changeset
|
2800 } |
8748a3f7ceb4
Handle varalias chains, custom variables in #'user-variable-p.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4355
diff
changeset
|
2801 |
8748a3f7ceb4
Handle varalias chains, custom variables in #'user-variable-p.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4355
diff
changeset
|
2802 return Qzero; |
8748a3f7ceb4
Handle varalias chains, custom variables in #'user-variable-p.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4355
diff
changeset
|
2803 } |
8748a3f7ceb4
Handle varalias chains, custom variables in #'user-variable-p.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4355
diff
changeset
|
2804 |
8748a3f7ceb4
Handle varalias chains, custom variables in #'user-variable-p.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4355
diff
changeset
|
2805 DEFUN ("user-variable-p", Fuser_variable_p, 1, 1, 0, /* |
8748a3f7ceb4
Handle varalias chains, custom variables in #'user-variable-p.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4355
diff
changeset
|
2806 Return t if SYMBOL names a variable intended to be set and modified by users. |
8748a3f7ceb4
Handle varalias chains, custom variables in #'user-variable-p.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4355
diff
changeset
|
2807 \(The alternative is a variable used internally in a Lisp program.) |
8748a3f7ceb4
Handle varalias chains, custom variables in #'user-variable-p.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4355
diff
changeset
|
2808 A symbol names a user variable if |
8748a3f7ceb4
Handle varalias chains, custom variables in #'user-variable-p.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4355
diff
changeset
|
2809 \(1) the first character of its documentation is `*', or |
8748a3f7ceb4
Handle varalias chains, custom variables in #'user-variable-p.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4355
diff
changeset
|
2810 \(2) it is customizable (`custom-variable-p' gives t), or |
8748a3f7ceb4
Handle varalias chains, custom variables in #'user-variable-p.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4355
diff
changeset
|
2811 \(3) it names a variable alias that eventually resolves to another user variable. |
8748a3f7ceb4
Handle varalias chains, custom variables in #'user-variable-p.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4355
diff
changeset
|
2812 |
8748a3f7ceb4
Handle varalias chains, custom variables in #'user-variable-p.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4355
diff
changeset
|
2813 The GNU Emacs implementation of `user-variable-p' returns nil if there is a |
8748a3f7ceb4
Handle varalias chains, custom variables in #'user-variable-p.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4355
diff
changeset
|
2814 loop in the chain of symbols. Since this is indistinguishable from the case |
8748a3f7ceb4
Handle varalias chains, custom variables in #'user-variable-p.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4355
diff
changeset
|
2815 where a symbol names a non-user variable, XEmacs signals a |
8748a3f7ceb4
Handle varalias chains, custom variables in #'user-variable-p.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4355
diff
changeset
|
2816 `cyclic-variable-indirection' error instead; use `condition-case' to catch |
8748a3f7ceb4
Handle varalias chains, custom variables in #'user-variable-p.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4355
diff
changeset
|
2817 this error if you really want to avoid this. |
8748a3f7ceb4
Handle varalias chains, custom variables in #'user-variable-p.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4355
diff
changeset
|
2818 */ |
8748a3f7ceb4
Handle varalias chains, custom variables in #'user-variable-p.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4355
diff
changeset
|
2819 (symbol)) |
8748a3f7ceb4
Handle varalias chains, custom variables in #'user-variable-p.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4355
diff
changeset
|
2820 { |
8748a3f7ceb4
Handle varalias chains, custom variables in #'user-variable-p.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4355
diff
changeset
|
2821 Lisp_Object mapped; |
8748a3f7ceb4
Handle varalias chains, custom variables in #'user-variable-p.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4355
diff
changeset
|
2822 |
8748a3f7ceb4
Handle varalias chains, custom variables in #'user-variable-p.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4355
diff
changeset
|
2823 if (!SYMBOLP (symbol)) |
8748a3f7ceb4
Handle varalias chains, custom variables in #'user-variable-p.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4355
diff
changeset
|
2824 { |
8748a3f7ceb4
Handle varalias chains, custom variables in #'user-variable-p.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4355
diff
changeset
|
2825 return Qnil; |
8748a3f7ceb4
Handle varalias chains, custom variables in #'user-variable-p.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4355
diff
changeset
|
2826 } |
8748a3f7ceb4
Handle varalias chains, custom variables in #'user-variable-p.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4355
diff
changeset
|
2827 |
8748a3f7ceb4
Handle varalias chains, custom variables in #'user-variable-p.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4355
diff
changeset
|
2828 /* Called for its side-effects, we want it to signal if there's a loop. */ |
8748a3f7ceb4
Handle varalias chains, custom variables in #'user-variable-p.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4355
diff
changeset
|
2829 follow_varalias_pointers (symbol, Qt); |
8748a3f7ceb4
Handle varalias chains, custom variables in #'user-variable-p.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4355
diff
changeset
|
2830 |
8748a3f7ceb4
Handle varalias chains, custom variables in #'user-variable-p.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4355
diff
changeset
|
2831 /* Look through the various aliases. */ |
8748a3f7ceb4
Handle varalias chains, custom variables in #'user-variable-p.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4355
diff
changeset
|
2832 mapped = map_varalias_chain (symbol, Qt, user_variable_alias_check_fun); |
8748a3f7ceb4
Handle varalias chains, custom variables in #'user-variable-p.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4355
diff
changeset
|
2833 if (EQ (Qzero, mapped)) |
8748a3f7ceb4
Handle varalias chains, custom variables in #'user-variable-p.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4355
diff
changeset
|
2834 { |
8748a3f7ceb4
Handle varalias chains, custom variables in #'user-variable-p.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4355
diff
changeset
|
2835 return Qnil; |
8748a3f7ceb4
Handle varalias chains, custom variables in #'user-variable-p.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4355
diff
changeset
|
2836 } |
8748a3f7ceb4
Handle varalias chains, custom variables in #'user-variable-p.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4355
diff
changeset
|
2837 |
4503
af95657e0bfd
Use EQ() and !EQ() in symbols.c, thank you Robert Delius Royar.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4502
diff
changeset
|
2838 assert (EQ (make_int (1), mapped)); |
4502
8748a3f7ceb4
Handle varalias chains, custom variables in #'user-variable-p.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4355
diff
changeset
|
2839 |
8748a3f7ceb4
Handle varalias chains, custom variables in #'user-variable-p.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4355
diff
changeset
|
2840 return Qt; |
8748a3f7ceb4
Handle varalias chains, custom variables in #'user-variable-p.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4355
diff
changeset
|
2841 } |
8748a3f7ceb4
Handle varalias chains, custom variables in #'user-variable-p.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4355
diff
changeset
|
2842 |
8748a3f7ceb4
Handle varalias chains, custom variables in #'user-variable-p.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4355
diff
changeset
|
2843 |
428 | 2844 |
2845 | |
2846 /* | |
2847 I've gone ahead and partially implemented this because it's | |
2848 super-useful for dealing with the compatibility problems in supporting | |
2849 the old pointer-shape variables, and preventing people from `setq'ing | |
2850 the new variables. Any other way of handling this problem is way | |
2851 ugly, likely to be slow, and generally not something I want to waste | |
2852 my time worrying about. | |
2853 | |
2854 The interface and/or function name is sure to change before this | |
2855 gets into its final form. I currently like the way everything is | |
2856 set up and it has all the features I want it to have, except for | |
2857 one: I really want to be able to have multiple nested handlers, | |
2858 to implement an `advice'-like capability. This would allow, | |
2859 for example, a clean way of implementing `debug-if-set' or | |
2860 `debug-if-referenced' and such. | |
2861 | |
2862 NOTE NOTE NOTE NOTE NOTE NOTE NOTE: | |
2863 ************************************************************ | |
2864 **Only** the `set-value', `make-unbound', and `make-local' | |
2865 handler types are currently implemented. Implementing the | |
2866 get-value and bound-predicate handlers is somewhat tricky | |
2867 because there are lots of subfunctions (e.g. find_symbol_value()). | |
2868 find_symbol_value(), in fact, is called from outside of | |
2869 this module. You'd have to have it do this: | |
2870 | |
2871 -- check for a `bound-predicate' handler, call that if so; | |
2872 if it returns nil, return Qunbound | |
2873 -- check for a `get-value' handler and call it and return | |
2874 that value | |
2875 | |
2876 It gets even trickier when you have to deal with | |
2877 sub-subfunctions like find_symbol_value_1(), and esp. | |
2878 when you have to properly handle variable aliases, which | |
2879 can lead to lots of tricky situations. So I've just | |
2880 punted on this, since the interface isn't officially | |
2881 exported and we can get by with just a `set-value' | |
2882 handler. | |
2883 | |
2884 Actions in unimplemented handler types will correctly | |
2885 ignore any handlers, and will not fuck anything up or | |
2886 go awry. | |
2887 | |
2888 WARNING WARNING: If you do go and implement another | |
2889 type of handler, make *sure* to change | |
2890 would_be_magic_handled() so it knows about this, | |
2891 or dire things could result. | |
2892 ************************************************************ | |
2893 NOTE NOTE NOTE NOTE NOTE NOTE NOTE | |
2894 | |
2895 Real documentation is as follows. | |
2896 | |
2897 Set a magic handler for VARIABLE. | |
2898 This allows you to specify arbitrary behavior that results from | |
2899 accessing or setting a variable. For example, retrieving the | |
2900 variable's value might actually retrieve the first element off of | |
2901 a list stored in another variable, and setting the variable's value | |
2902 might add an element to the front of that list. (This is how the | |
2903 obsolete variable `unread-command-event' is implemented.) | |
2904 | |
2905 In general it is NOT good programming practice to use magic variables | |
2906 in a new package that you are designing. If you feel the need to | |
2907 do this, it's almost certainly a sign that you should be using a | |
2908 function instead of a variable. This facility is provided to allow | |
2909 a package to support obsolete variables and provide compatibility | |
2910 with similar packages with different variable names and semantics. | |
2911 By using magic handlers, you can cleanly provide obsoleteness and | |
2912 compatibility support and separate this support from the core | |
2913 routines in a package. | |
2914 | |
2915 VARIABLE should be a symbol naming the variable for which the | |
2916 magic behavior is provided. HANDLER-TYPE is a symbol specifying | |
2917 which behavior is being controlled, and HANDLER is the function | |
2918 that will be called to control this behavior. HARG is a | |
2919 value that will be passed to HANDLER but is otherwise | |
2920 uninterpreted. KEEP-EXISTING specifies what to do with existing | |
2921 handlers of the same type; nil means "erase them all", t means | |
2922 "keep them but insert at the beginning", the list (t) means | |
2923 "keep them but insert at the end", a function means "keep | |
2924 them but insert before the specified function", a list containing | |
2925 a function means "keep them but insert after the specified | |
2926 function". | |
2927 | |
2928 You can specify magic behavior for any type of variable at all, | |
2929 and for any handler types that are unspecified, the standard | |
2930 behavior applies. This allows you, for example, to use | |
2931 `defvaralias' in conjunction with this function. (For that | |
2932 matter, `defvaralias' could be implemented using this function.) | |
2933 | |
2934 The behaviors that can be specified in HANDLER-TYPE are | |
2935 | |
2936 get-value (SYM ARGS FUN HARG HANDLERS) | |
2937 This means that one of the functions `symbol-value', | |
2938 `default-value', `symbol-value-in-buffer', or | |
2939 `symbol-value-in-console' was called on SYM. | |
2940 | |
2941 set-value (SYM ARGS FUN HARG HANDLERS) | |
2942 This means that one of the functions `set' or `set-default' | |
2943 was called on SYM. | |
2944 | |
2945 bound-predicate (SYM ARGS FUN HARG HANDLERS) | |
2946 This means that one of the functions `boundp', `globally-boundp', | |
2947 or `default-boundp' was called on SYM. | |
2948 | |
2949 make-unbound (SYM ARGS FUN HARG HANDLERS) | |
2950 This means that the function `makunbound' was called on SYM. | |
2951 | |
2952 local-predicate (SYM ARGS FUN HARG HANDLERS) | |
2953 This means that the function `local-variable-p' was called | |
2954 on SYM. | |
2955 | |
2956 make-local (SYM ARGS FUN HARG HANDLERS) | |
2957 This means that one of the functions `make-local-variable', | |
2958 `make-variable-buffer-local', `kill-local-variable', | |
2959 or `kill-console-local-variable' was called on SYM. | |
2960 | |
2961 The meanings of the arguments are as follows: | |
2962 | |
2963 SYM is the symbol on which the function was called, and is always | |
2964 the first argument to the function. | |
2965 | |
2966 ARGS are the remaining arguments in the original call (i.e. all | |
2967 but the first). In the case of `set-value' in particular, | |
2968 the first element of ARGS is the value to which the variable | |
2969 is being set. In some cases, ARGS is sanitized from what was | |
2970 actually given. For example, whenever `nil' is passed to an | |
2971 argument and it means `current-buffer', the current buffer is | |
2972 substituted instead. | |
2973 | |
2974 FUN is a symbol indicating which function is being called. | |
2975 For many of the functions, you can determine the corresponding | |
2976 function of a different class using | |
2977 `symbol-function-corresponding-function'. | |
2978 | |
2979 HARG is the argument that was given in the call | |
2980 to `set-symbol-value-handler' for SYM and HANDLER-TYPE. | |
2981 | |
2982 HANDLERS is a structure containing the remaining handlers | |
2983 for the variable; to call one of them, use | |
2984 `chain-to-symbol-value-handler'. | |
2985 | |
2986 NOTE: You may *not* modify the list in ARGS, and if you want to | |
2987 keep it around after the handler function exits, you must make | |
2988 a copy using `copy-sequence'. (Same caveats for HANDLERS also.) | |
2989 */ | |
2990 | |
2991 static enum lisp_magic_handler | |
2992 decode_magic_handler_type (Lisp_Object symbol) | |
2993 { | |
2994 if (EQ (symbol, Qget_value)) return MAGIC_HANDLER_GET_VALUE; | |
2995 if (EQ (symbol, Qset_value)) return MAGIC_HANDLER_SET_VALUE; | |
2996 if (EQ (symbol, Qbound_predicate)) return MAGIC_HANDLER_BOUND_PREDICATE; | |
2997 if (EQ (symbol, Qmake_unbound)) return MAGIC_HANDLER_MAKE_UNBOUND; | |
2998 if (EQ (symbol, Qlocal_predicate)) return MAGIC_HANDLER_LOCAL_PREDICATE; | |
2999 if (EQ (symbol, Qmake_local)) return MAGIC_HANDLER_MAKE_LOCAL; | |
3000 | |
563 | 3001 invalid_constant ("Unrecognized symbol value handler type", symbol); |
1204 | 3002 RETURN_NOT_REACHED (MAGIC_HANDLER_MAX); |
428 | 3003 } |
3004 | |
3005 static enum lisp_magic_handler | |
3006 handler_type_from_function_symbol (Lisp_Object funsym, int abort_if_not_found) | |
3007 { | |
3008 if (EQ (funsym, Qsymbol_value) | |
3009 || EQ (funsym, Qdefault_value) | |
3010 || EQ (funsym, Qsymbol_value_in_buffer) | |
3011 || EQ (funsym, Qsymbol_value_in_console)) | |
3012 return MAGIC_HANDLER_GET_VALUE; | |
3013 | |
3014 if (EQ (funsym, Qset) | |
3015 || EQ (funsym, Qset_default)) | |
3016 return MAGIC_HANDLER_SET_VALUE; | |
3017 | |
3018 if (EQ (funsym, Qboundp) | |
3019 || EQ (funsym, Qglobally_boundp) | |
3020 || EQ (funsym, Qdefault_boundp)) | |
3021 return MAGIC_HANDLER_BOUND_PREDICATE; | |
3022 | |
3023 if (EQ (funsym, Qmakunbound)) | |
3024 return MAGIC_HANDLER_MAKE_UNBOUND; | |
3025 | |
3026 if (EQ (funsym, Qlocal_variable_p)) | |
3027 return MAGIC_HANDLER_LOCAL_PREDICATE; | |
3028 | |
3029 if (EQ (funsym, Qmake_variable_buffer_local) | |
3030 || EQ (funsym, Qmake_local_variable)) | |
3031 return MAGIC_HANDLER_MAKE_LOCAL; | |
3032 | |
3033 if (abort_if_not_found) | |
2500 | 3034 ABORT (); |
563 | 3035 invalid_argument ("Unrecognized symbol-value function", funsym); |
1204 | 3036 RETURN_NOT_REACHED (MAGIC_HANDLER_MAX); |
428 | 3037 } |
3038 | |
3039 static int | |
3040 would_be_magic_handled (Lisp_Object sym, Lisp_Object funsym) | |
3041 { | |
3042 /* does not take into account variable aliasing. */ | |
3043 Lisp_Object valcontents = XSYMBOL (sym)->value; | |
3044 enum lisp_magic_handler slot; | |
3045 | |
3046 if (!SYMBOL_VALUE_LISP_MAGIC_P (valcontents)) | |
3047 return 0; | |
3048 slot = handler_type_from_function_symbol (funsym, 1); | |
3049 if (slot != MAGIC_HANDLER_SET_VALUE && slot != MAGIC_HANDLER_MAKE_UNBOUND | |
3050 && slot != MAGIC_HANDLER_MAKE_LOCAL) | |
3051 /* #### temporary kludge because we haven't implemented | |
3052 lisp-magic variables completely */ | |
3053 return 0; | |
3054 return !NILP (XSYMBOL_VALUE_LISP_MAGIC (valcontents)->handler[slot]); | |
3055 } | |
3056 | |
3057 static Lisp_Object | |
3058 fetch_value_maybe_past_magic (Lisp_Object sym, | |
3059 Lisp_Object follow_past_lisp_magic) | |
3060 { | |
3061 Lisp_Object value = XSYMBOL (sym)->value; | |
3062 if (SYMBOL_VALUE_LISP_MAGIC_P (value) | |
3063 && (EQ (follow_past_lisp_magic, Qt) | |
3064 || (!NILP (follow_past_lisp_magic) | |
3065 && !would_be_magic_handled (sym, follow_past_lisp_magic)))) | |
3066 value = XSYMBOL_VALUE_LISP_MAGIC (value)->shadowed; | |
3067 return value; | |
3068 } | |
3069 | |
3070 static Lisp_Object * | |
3071 value_slot_past_magic (Lisp_Object sym) | |
3072 { | |
3073 Lisp_Object *store_pointer = &XSYMBOL (sym)->value; | |
3074 | |
3075 if (SYMBOL_VALUE_LISP_MAGIC_P (*store_pointer)) | |
3076 store_pointer = &XSYMBOL_VALUE_LISP_MAGIC (sym)->shadowed; | |
3077 return store_pointer; | |
3078 } | |
3079 | |
3080 static Lisp_Object | |
3081 maybe_call_magic_handler (Lisp_Object sym, Lisp_Object funsym, int nargs, ...) | |
3082 { | |
3083 va_list vargs; | |
3084 Lisp_Object args[20]; /* should be enough ... */ | |
3085 int i; | |
3086 enum lisp_magic_handler htype; | |
3087 Lisp_Object legerdemain; | |
3088 struct symbol_value_lisp_magic *bfwd; | |
3089 | |
440 | 3090 assert (nargs >= 0 && nargs < countof (args)); |
428 | 3091 legerdemain = XSYMBOL (sym)->value; |
3092 assert (SYMBOL_VALUE_LISP_MAGIC_P (legerdemain)); | |
3093 bfwd = XSYMBOL_VALUE_LISP_MAGIC (legerdemain); | |
3094 | |
3095 va_start (vargs, nargs); | |
3096 for (i = 0; i < nargs; i++) | |
3097 args[i] = va_arg (vargs, Lisp_Object); | |
3098 va_end (vargs); | |
3099 | |
3100 htype = handler_type_from_function_symbol (funsym, 1); | |
3101 if (NILP (bfwd->handler[htype])) | |
3102 return Qunbound; | |
3103 /* #### should be reusing the arglist, not always consing anew. | |
3104 Repeated handler invocations should not cause repeated consing. | |
3105 Doesn't matter for now, because this is just a quick implementation | |
3106 for obsolescence support. */ | |
3107 return call5 (bfwd->handler[htype], sym, Flist (nargs, args), funsym, | |
3108 bfwd->harg[htype], Qnil); | |
3109 } | |
3110 | |
3111 DEFUN ("dontusethis-set-symbol-value-handler", Fdontusethis_set_symbol_value_handler, | |
3112 3, 5, 0, /* | |
3113 Don't you dare use this. | |
3114 If you do, suffer the wrath of Ben, who is likely to rename | |
3115 this function (or change the semantics of its arguments) without | |
3116 pity, thereby invalidating your code. | |
3117 */ | |
2286 | 3118 (variable, handler_type, handler, harg, |
4642
48b45a606961
Support #'function-arglist with built-in special forms.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4535
diff
changeset
|
3119 UNUSED (keep_existing ))) |
428 | 3120 { |
3121 Lisp_Object valcontents; | |
3122 struct symbol_value_lisp_magic *bfwd; | |
3123 enum lisp_magic_handler htype; | |
3124 int i; | |
3125 | |
3126 /* #### WARNING, only some handler types are implemented. See above. | |
3127 Actions of other types will ignore a handler if it's there. | |
3128 | |
3129 #### Also, `chain-to-symbol-value-handler' and | |
3130 `symbol-function-corresponding-function' are not implemented. */ | |
3131 CHECK_SYMBOL (variable); | |
3132 CHECK_SYMBOL (handler_type); | |
3133 htype = decode_magic_handler_type (handler_type); | |
3134 valcontents = XSYMBOL (variable)->value; | |
3135 if (!SYMBOL_VALUE_LISP_MAGIC_P (valcontents)) | |
3136 { | |
3017 | 3137 bfwd = ALLOC_LCRECORD_TYPE (struct symbol_value_lisp_magic, |
428 | 3138 &lrecord_symbol_value_lisp_magic); |
3139 bfwd->magic.type = SYMVAL_LISP_MAGIC; | |
3140 for (i = 0; i < MAGIC_HANDLER_MAX; i++) | |
3141 { | |
3142 bfwd->handler[i] = Qnil; | |
3143 bfwd->harg[i] = Qnil; | |
3144 } | |
3145 bfwd->shadowed = valcontents; | |
793 | 3146 XSYMBOL (variable)->value = wrap_symbol_value_magic (bfwd); |
428 | 3147 } |
3148 else | |
3149 bfwd = XSYMBOL_VALUE_LISP_MAGIC (valcontents); | |
3150 bfwd->handler[htype] = handler; | |
3151 bfwd->harg[htype] = harg; | |
3152 | |
3153 for (i = 0; i < MAGIC_HANDLER_MAX; i++) | |
3154 if (!NILP (bfwd->handler[i])) | |
3155 break; | |
3156 | |
3157 if (i == MAGIC_HANDLER_MAX) | |
3158 /* there are no remaining handlers, so remove the structure. */ | |
3159 XSYMBOL (variable)->value = bfwd->shadowed; | |
3160 | |
3161 return Qnil; | |
3162 } | |
3163 | |
3164 | |
3165 /* functions for working with variable aliases. */ | |
3166 | |
3167 /* Follow the chain of variable aliases for SYMBOL. Return the | |
3168 resulting symbol, whose value cell is guaranteed not to be a | |
3169 symbol-value-varalias. | |
3170 | |
3171 Also maybe follow past symbol-value-lisp-magic -> symbol-value-varalias. | |
3172 If FUNSYM is t, always follow in such a case. If FUNSYM is nil, | |
3173 never follow; stop right there. Otherwise FUNSYM should be a | |
3174 recognized symbol-value function symbol; this means, follow | |
3175 unless there is a special handler for the named function. | |
3176 | |
3177 OK, there is at least one reason why it's necessary for | |
3178 FOLLOW-PAST-LISP-MAGIC to be specified correctly: So that we | |
3179 can always be sure to catch cyclic variable aliasing. If we never | |
3180 follow past Lisp magic, then if the following is done: | |
3181 | |
3182 (defvaralias 'a 'b) | |
3183 add some magic behavior to a, but not a "get-value" handler | |
3184 (defvaralias 'b 'a) | |
3185 | |
3186 then an attempt to retrieve a's or b's value would cause infinite | |
3187 looping in `symbol-value'. | |
3188 | |
3189 We (of course) can't always follow past Lisp magic, because then | |
3190 we make any variable that is lisp-magic -> varalias behave as if | |
3191 the lisp-magic is not present at all. | |
3192 */ | |
3193 | |
3194 static Lisp_Object | |
3195 follow_varalias_pointers (Lisp_Object symbol, | |
3196 Lisp_Object follow_past_lisp_magic) | |
3197 { | |
3198 #define VARALIAS_INDIRECTION_SUSPICION_LENGTH 16 | |
3199 Lisp_Object tortoise, hare, val; | |
3200 int count; | |
3201 | |
3202 /* quick out just in case */ | |
3203 if (!SYMBOL_VALUE_MAGIC_P (XSYMBOL (symbol)->value)) | |
3204 return symbol; | |
3205 | |
3206 /* Compare implementation of indirect_function(). */ | |
3207 for (hare = tortoise = symbol, count = 0; | |
3208 val = fetch_value_maybe_past_magic (hare, follow_past_lisp_magic), | |
3209 SYMBOL_VALUE_VARALIAS_P (val); | |
3210 hare = symbol_value_varalias_aliasee (XSYMBOL_VALUE_VARALIAS (val)), | |
3211 count++) | |
3212 { | |
3213 if (count < VARALIAS_INDIRECTION_SUSPICION_LENGTH) continue; | |
3214 | |
3215 if (count & 1) | |
3216 tortoise = symbol_value_varalias_aliasee | |
3217 (XSYMBOL_VALUE_VARALIAS (fetch_value_maybe_past_magic | |
3218 (tortoise, follow_past_lisp_magic))); | |
3219 if (EQ (hare, tortoise)) | |
3220 return Fsignal (Qcyclic_variable_indirection, list1 (symbol)); | |
3221 } | |
3222 | |
3223 return hare; | |
3224 } | |
3225 | |
4502
8748a3f7ceb4
Handle varalias chains, custom variables in #'user-variable-p.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4355
diff
changeset
|
3226 /* Map FN over the chain of variable aliases for SYMBOL. If FN returns |
8748a3f7ceb4
Handle varalias chains, custom variables in #'user-variable-p.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4355
diff
changeset
|
3227 something other than Qzero for some link in the chain, return that |
8748a3f7ceb4
Handle varalias chains, custom variables in #'user-variable-p.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4355
diff
changeset
|
3228 immediately. Otherwise return Qzero (which is not a symbol). |
8748a3f7ceb4
Handle varalias chains, custom variables in #'user-variable-p.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4355
diff
changeset
|
3229 |
8748a3f7ceb4
Handle varalias chains, custom variables in #'user-variable-p.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4355
diff
changeset
|
3230 FN may be called twice on the same symbol if the varalias chain is |
8748a3f7ceb4
Handle varalias chains, custom variables in #'user-variable-p.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4355
diff
changeset
|
3231 cyclic. Prevent this by calling follow_varalias_pointers first for its |
8748a3f7ceb4
Handle varalias chains, custom variables in #'user-variable-p.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4355
diff
changeset
|
3232 side-effects. |
8748a3f7ceb4
Handle varalias chains, custom variables in #'user-variable-p.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4355
diff
changeset
|
3233 |
8748a3f7ceb4
Handle varalias chains, custom variables in #'user-variable-p.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4355
diff
changeset
|
3234 Signals a cyclic-variable-indirection error if a cyclic structure is |
8748a3f7ceb4
Handle varalias chains, custom variables in #'user-variable-p.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4355
diff
changeset
|
3235 detected. */ |
8748a3f7ceb4
Handle varalias chains, custom variables in #'user-variable-p.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4355
diff
changeset
|
3236 |
8748a3f7ceb4
Handle varalias chains, custom variables in #'user-variable-p.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4355
diff
changeset
|
3237 static Lisp_Object |
8748a3f7ceb4
Handle varalias chains, custom variables in #'user-variable-p.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4355
diff
changeset
|
3238 map_varalias_chain (Lisp_Object symbol, |
8748a3f7ceb4
Handle varalias chains, custom variables in #'user-variable-p.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4355
diff
changeset
|
3239 Lisp_Object follow_past_lisp_magic, |
8748a3f7ceb4
Handle varalias chains, custom variables in #'user-variable-p.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4355
diff
changeset
|
3240 Lisp_Object (*fn) (Lisp_Object arg)) |
8748a3f7ceb4
Handle varalias chains, custom variables in #'user-variable-p.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4355
diff
changeset
|
3241 { |
8748a3f7ceb4
Handle varalias chains, custom variables in #'user-variable-p.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4355
diff
changeset
|
3242 #define VARALIAS_INDIRECTION_SUSPICION_LENGTH 16 |
8748a3f7ceb4
Handle varalias chains, custom variables in #'user-variable-p.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4355
diff
changeset
|
3243 Lisp_Object tortoise, hare, val, res; |
8748a3f7ceb4
Handle varalias chains, custom variables in #'user-variable-p.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4355
diff
changeset
|
3244 int count; |
8748a3f7ceb4
Handle varalias chains, custom variables in #'user-variable-p.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4355
diff
changeset
|
3245 |
8748a3f7ceb4
Handle varalias chains, custom variables in #'user-variable-p.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4355
diff
changeset
|
3246 assert (fn); |
8748a3f7ceb4
Handle varalias chains, custom variables in #'user-variable-p.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4355
diff
changeset
|
3247 |
8748a3f7ceb4
Handle varalias chains, custom variables in #'user-variable-p.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4355
diff
changeset
|
3248 /* quick out just in case */ |
8748a3f7ceb4
Handle varalias chains, custom variables in #'user-variable-p.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4355
diff
changeset
|
3249 if (!SYMBOL_VALUE_MAGIC_P (XSYMBOL (symbol)->value)) |
8748a3f7ceb4
Handle varalias chains, custom variables in #'user-variable-p.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4355
diff
changeset
|
3250 { |
8748a3f7ceb4
Handle varalias chains, custom variables in #'user-variable-p.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4355
diff
changeset
|
3251 return (fn)(symbol); |
8748a3f7ceb4
Handle varalias chains, custom variables in #'user-variable-p.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4355
diff
changeset
|
3252 } |
8748a3f7ceb4
Handle varalias chains, custom variables in #'user-variable-p.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4355
diff
changeset
|
3253 |
8748a3f7ceb4
Handle varalias chains, custom variables in #'user-variable-p.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4355
diff
changeset
|
3254 /* Compare implementation of indirect_function(). */ |
8748a3f7ceb4
Handle varalias chains, custom variables in #'user-variable-p.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4355
diff
changeset
|
3255 for (hare = tortoise = symbol, count = 0; |
8748a3f7ceb4
Handle varalias chains, custom variables in #'user-variable-p.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4355
diff
changeset
|
3256 val = fetch_value_maybe_past_magic (hare, follow_past_lisp_magic), |
8748a3f7ceb4
Handle varalias chains, custom variables in #'user-variable-p.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4355
diff
changeset
|
3257 SYMBOL_VALUE_VARALIAS_P (val); |
8748a3f7ceb4
Handle varalias chains, custom variables in #'user-variable-p.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4355
diff
changeset
|
3258 hare = symbol_value_varalias_aliasee (XSYMBOL_VALUE_VARALIAS (val)), |
8748a3f7ceb4
Handle varalias chains, custom variables in #'user-variable-p.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4355
diff
changeset
|
3259 count++) |
8748a3f7ceb4
Handle varalias chains, custom variables in #'user-variable-p.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4355
diff
changeset
|
3260 { |
8748a3f7ceb4
Handle varalias chains, custom variables in #'user-variable-p.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4355
diff
changeset
|
3261 res = (fn) (hare); |
4503
af95657e0bfd
Use EQ() and !EQ() in symbols.c, thank you Robert Delius Royar.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4502
diff
changeset
|
3262 if (!EQ (Qzero, res)) |
4502
8748a3f7ceb4
Handle varalias chains, custom variables in #'user-variable-p.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4355
diff
changeset
|
3263 { |
8748a3f7ceb4
Handle varalias chains, custom variables in #'user-variable-p.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4355
diff
changeset
|
3264 return res; |
8748a3f7ceb4
Handle varalias chains, custom variables in #'user-variable-p.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4355
diff
changeset
|
3265 } |
8748a3f7ceb4
Handle varalias chains, custom variables in #'user-variable-p.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4355
diff
changeset
|
3266 |
8748a3f7ceb4
Handle varalias chains, custom variables in #'user-variable-p.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4355
diff
changeset
|
3267 if (count < VARALIAS_INDIRECTION_SUSPICION_LENGTH) continue; |
8748a3f7ceb4
Handle varalias chains, custom variables in #'user-variable-p.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4355
diff
changeset
|
3268 |
8748a3f7ceb4
Handle varalias chains, custom variables in #'user-variable-p.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4355
diff
changeset
|
3269 if (count & 1) |
8748a3f7ceb4
Handle varalias chains, custom variables in #'user-variable-p.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4355
diff
changeset
|
3270 tortoise = symbol_value_varalias_aliasee |
8748a3f7ceb4
Handle varalias chains, custom variables in #'user-variable-p.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4355
diff
changeset
|
3271 (XSYMBOL_VALUE_VARALIAS (fetch_value_maybe_past_magic |
8748a3f7ceb4
Handle varalias chains, custom variables in #'user-variable-p.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4355
diff
changeset
|
3272 (tortoise, follow_past_lisp_magic))); |
8748a3f7ceb4
Handle varalias chains, custom variables in #'user-variable-p.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4355
diff
changeset
|
3273 if (EQ (hare, tortoise)) |
8748a3f7ceb4
Handle varalias chains, custom variables in #'user-variable-p.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4355
diff
changeset
|
3274 return Fsignal (Qcyclic_variable_indirection, list1 (symbol)); |
8748a3f7ceb4
Handle varalias chains, custom variables in #'user-variable-p.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4355
diff
changeset
|
3275 } |
8748a3f7ceb4
Handle varalias chains, custom variables in #'user-variable-p.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4355
diff
changeset
|
3276 |
8748a3f7ceb4
Handle varalias chains, custom variables in #'user-variable-p.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4355
diff
changeset
|
3277 return (fn) (hare); |
8748a3f7ceb4
Handle varalias chains, custom variables in #'user-variable-p.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4355
diff
changeset
|
3278 } |
8748a3f7ceb4
Handle varalias chains, custom variables in #'user-variable-p.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4355
diff
changeset
|
3279 |
8748a3f7ceb4
Handle varalias chains, custom variables in #'user-variable-p.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4355
diff
changeset
|
3280 /* |
8748a3f7ceb4
Handle varalias chains, custom variables in #'user-variable-p.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4355
diff
changeset
|
3281 |
8748a3f7ceb4
Handle varalias chains, custom variables in #'user-variable-p.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4355
diff
changeset
|
3282 OED entry, 2nd edition, IPA transliterated using Kirshenbaum: |
8748a3f7ceb4
Handle varalias chains, custom variables in #'user-variable-p.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4355
diff
changeset
|
3283 |
8748a3f7ceb4
Handle varalias chains, custom variables in #'user-variable-p.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4355
diff
changeset
|
3284 alias ('eIlI@s, '&lI@s), adv. and n. |
8748a3f7ceb4
Handle varalias chains, custom variables in #'user-variable-p.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4355
diff
changeset
|
3285 [...] |
8748a3f7ceb4
Handle varalias chains, custom variables in #'user-variable-p.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4355
diff
changeset
|
3286 B. n. (with pl. aliases.) |
8748a3f7ceb4
Handle varalias chains, custom variables in #'user-variable-p.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4355
diff
changeset
|
3287 1. Another name, an assumed name. |
8748a3f7ceb4
Handle varalias chains, custom variables in #'user-variable-p.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4355
diff
changeset
|
3288 1605 Camden Rem. (1614) 147 An Alias or double name cannot preiudice the honest. |
8748a3f7ceb4
Handle varalias chains, custom variables in #'user-variable-p.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4355
diff
changeset
|
3289 1831 Edin. Rev. LIII. 364 He has been assuming various aliases. |
8748a3f7ceb4
Handle varalias chains, custom variables in #'user-variable-p.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4355
diff
changeset
|
3290 1861 Macaulay Hist. Eng. V. 92 The monk who was sometimes called Harrison |
8748a3f7ceb4
Handle varalias chains, custom variables in #'user-variable-p.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4355
diff
changeset
|
3291 and sometimes went by the alias of Johnson. |
8748a3f7ceb4
Handle varalias chains, custom variables in #'user-variable-p.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4355
diff
changeset
|
3292 |
8748a3f7ceb4
Handle varalias chains, custom variables in #'user-variable-p.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4355
diff
changeset
|
3293 The alias is the fake name. Let's try to follow that usage in our |
8748a3f7ceb4
Handle varalias chains, custom variables in #'user-variable-p.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4355
diff
changeset
|
3294 documentation. |
8748a3f7ceb4
Handle varalias chains, custom variables in #'user-variable-p.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4355
diff
changeset
|
3295 |
8748a3f7ceb4
Handle varalias chains, custom variables in #'user-variable-p.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4355
diff
changeset
|
3296 */ |
8748a3f7ceb4
Handle varalias chains, custom variables in #'user-variable-p.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4355
diff
changeset
|
3297 |
8748a3f7ceb4
Handle varalias chains, custom variables in #'user-variable-p.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4355
diff
changeset
|
3298 DEFUN ("defvaralias", Fdefvaralias, 2, 3, 0, /* |
428 | 3299 Define a variable as an alias for another variable. |
3300 Thenceforth, any operations performed on VARIABLE will actually be | |
4502
8748a3f7ceb4
Handle varalias chains, custom variables in #'user-variable-p.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4355
diff
changeset
|
3301 performed on ALIASED. Both VARIABLE and ALIASED should be symbols. |
8748a3f7ceb4
Handle varalias chains, custom variables in #'user-variable-p.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4355
diff
changeset
|
3302 If ALIASED is nil and VARIABLE is an existing alias, remove that alias. |
8748a3f7ceb4
Handle varalias chains, custom variables in #'user-variable-p.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4355
diff
changeset
|
3303 ALIASED can itself be an alias, and the chain of variable aliases |
428 | 3304 will be followed appropriately. |
3305 If VARIABLE already has a value, this value will be shadowed | |
3306 until the alias is removed, at which point it will be restored. | |
3307 Currently VARIABLE cannot be a built-in variable, a variable that | |
3308 has a buffer-local value in any buffer, or the symbols nil or t. | |
4502
8748a3f7ceb4
Handle varalias chains, custom variables in #'user-variable-p.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4355
diff
changeset
|
3309 \(ALIASED, however, can be any type of variable.) |
8748a3f7ceb4
Handle varalias chains, custom variables in #'user-variable-p.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4355
diff
changeset
|
3310 |
8748a3f7ceb4
Handle varalias chains, custom variables in #'user-variable-p.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4355
diff
changeset
|
3311 Optional argument DOCSTRING is documentation for VARIABLE in its use as an |
8748a3f7ceb4
Handle varalias chains, custom variables in #'user-variable-p.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4355
diff
changeset
|
3312 alias for ALIASED. The XEmacs help code ignores this documentation, using |
8748a3f7ceb4
Handle varalias chains, custom variables in #'user-variable-p.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4355
diff
changeset
|
3313 the documentation of ALIASED instead, and the docstring, if specified, is |
8748a3f7ceb4
Handle varalias chains, custom variables in #'user-variable-p.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4355
diff
changeset
|
3314 not shadowed in the same way that the value is. Only use it if you know |
8748a3f7ceb4
Handle varalias chains, custom variables in #'user-variable-p.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4355
diff
changeset
|
3315 what you're doing. |
428 | 3316 */ |
4502
8748a3f7ceb4
Handle varalias chains, custom variables in #'user-variable-p.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4355
diff
changeset
|
3317 (variable, aliased, docstring)) |
428 | 3318 { |
3319 struct symbol_value_varalias *bfwd; | |
3320 Lisp_Object valcontents; | |
3321 | |
3322 CHECK_SYMBOL (variable); | |
3323 reject_constant_symbols (variable, Qunbound, 0, Qt); | |
3324 | |
3325 valcontents = XSYMBOL (variable)->value; | |
3326 | |
4502
8748a3f7ceb4
Handle varalias chains, custom variables in #'user-variable-p.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4355
diff
changeset
|
3327 if (NILP (aliased)) |
428 | 3328 { |
3329 if (SYMBOL_VALUE_VARALIAS_P (valcontents)) | |
3330 { | |
3331 XSYMBOL (variable)->value = | |
3332 symbol_value_varalias_shadowed | |
3333 (XSYMBOL_VALUE_VARALIAS (valcontents)); | |
3334 } | |
3335 return Qnil; | |
3336 } | |
3337 | |
4502
8748a3f7ceb4
Handle varalias chains, custom variables in #'user-variable-p.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4355
diff
changeset
|
3338 CHECK_SYMBOL (aliased); |
8748a3f7ceb4
Handle varalias chains, custom variables in #'user-variable-p.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4355
diff
changeset
|
3339 |
8748a3f7ceb4
Handle varalias chains, custom variables in #'user-variable-p.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4355
diff
changeset
|
3340 if (!NILP (docstring)) |
8748a3f7ceb4
Handle varalias chains, custom variables in #'user-variable-p.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4355
diff
changeset
|
3341 Fput (variable, Qvariable_documentation, docstring); |
8748a3f7ceb4
Handle varalias chains, custom variables in #'user-variable-p.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4355
diff
changeset
|
3342 |
428 | 3343 if (SYMBOL_VALUE_VARALIAS_P (valcontents)) |
3344 { | |
3345 /* transmogrify */ | |
4502
8748a3f7ceb4
Handle varalias chains, custom variables in #'user-variable-p.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4355
diff
changeset
|
3346 XSYMBOL_VALUE_VARALIAS (valcontents)->aliasee = aliased; |
428 | 3347 return Qnil; |
3348 } | |
3349 | |
3350 if (SYMBOL_VALUE_MAGIC_P (valcontents) | |
3351 && !UNBOUNDP (valcontents)) | |
563 | 3352 invalid_change ("Variable is magic and cannot be aliased", variable); |
428 | 3353 reject_constant_symbols (variable, Qunbound, 0, Qt); |
3354 | |
3017 | 3355 bfwd = ALLOC_LCRECORD_TYPE (struct symbol_value_varalias, |
428 | 3356 &lrecord_symbol_value_varalias); |
3357 bfwd->magic.type = SYMVAL_VARALIAS; | |
4502
8748a3f7ceb4
Handle varalias chains, custom variables in #'user-variable-p.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4355
diff
changeset
|
3358 bfwd->aliasee = aliased; |
428 | 3359 bfwd->shadowed = valcontents; |
3360 | |
793 | 3361 valcontents = wrap_symbol_value_magic (bfwd); |
428 | 3362 XSYMBOL (variable)->value = valcontents; |
3363 return Qnil; | |
3364 } | |
3365 | |
3366 DEFUN ("variable-alias", Fvariable_alias, 1, 2, 0, /* | |
4502
8748a3f7ceb4
Handle varalias chains, custom variables in #'user-variable-p.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4355
diff
changeset
|
3367 If VARIABLE is an alias of another variable, return that variable. |
8748a3f7ceb4
Handle varalias chains, custom variables in #'user-variable-p.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4355
diff
changeset
|
3368 VARIABLE should be a symbol. If VARIABLE is not an alias, return nil. |
428 | 3369 Variable aliases are created with `defvaralias'. See also |
3370 `indirect-variable'. | |
3371 */ | |
3372 (variable, follow_past_lisp_magic)) | |
3373 { | |
3374 Lisp_Object valcontents; | |
3375 | |
3376 CHECK_SYMBOL (variable); | |
3377 if (!NILP (follow_past_lisp_magic) && !EQ (follow_past_lisp_magic, Qt)) | |
3378 { | |
3379 CHECK_SYMBOL (follow_past_lisp_magic); | |
3380 handler_type_from_function_symbol (follow_past_lisp_magic, 0); | |
3381 } | |
3382 | |
3383 valcontents = fetch_value_maybe_past_magic (variable, | |
3384 follow_past_lisp_magic); | |
3385 | |
3386 if (SYMBOL_VALUE_VARALIAS_P (valcontents)) | |
3387 return symbol_value_varalias_aliasee | |
3388 (XSYMBOL_VALUE_VARALIAS (valcontents)); | |
3389 else | |
3390 return Qnil; | |
3391 } | |
3392 | |
3393 DEFUN ("indirect-variable", Findirect_variable, 1, 2, 0, /* | |
3394 Return the variable at the end of OBJECT's variable-alias chain. | |
3395 If OBJECT is a symbol, follow all variable aliases and return | |
3396 the final (non-aliased) symbol. Variable aliases are created with | |
3397 the function `defvaralias'. | |
3398 If OBJECT is not a symbol, just return it. | |
3399 Signal a cyclic-variable-indirection error if there is a loop in the | |
3400 variable chain of symbols. | |
3401 */ | |
3402 (object, follow_past_lisp_magic)) | |
3403 { | |
3404 if (!SYMBOLP (object)) | |
3405 return object; | |
3406 if (!NILP (follow_past_lisp_magic) && !EQ (follow_past_lisp_magic, Qt)) | |
3407 { | |
3408 CHECK_SYMBOL (follow_past_lisp_magic); | |
3409 handler_type_from_function_symbol (follow_past_lisp_magic, 0); | |
3410 } | |
3411 return follow_varalias_pointers (object, follow_past_lisp_magic); | |
3412 } | |
3413 | |
1674 | 3414 DEFUN ("variable-binding-locus", Fvariable_binding_locus, 1, 1, 0, /* |
3415 Return a value indicating where VARIABLE's current binding comes from. | |
3416 If the current binding is buffer-local, the value is the current buffer. | |
3417 If the current binding is global (the default), the value is nil. | |
3418 */ | |
3419 (variable)) | |
3420 { | |
3421 Lisp_Object valcontents; | |
3422 | |
3423 CHECK_SYMBOL (variable); | |
3424 variable = Findirect_variable (variable, Qnil); | |
3425 | |
3426 /* Make sure the current binding is actually swapped in. */ | |
3427 find_symbol_value (variable); | |
3428 | |
3429 valcontents = XSYMBOL (variable)->value; | |
3430 | |
3431 if (SYMBOL_VALUE_MAGIC_P (valcontents) | |
3432 && ((XSYMBOL_VALUE_MAGIC_TYPE (valcontents) == SYMVAL_BUFFER_LOCAL) | |
3433 || (XSYMBOL_VALUE_MAGIC_TYPE (valcontents) == SYMVAL_SOME_BUFFER_LOCAL)) | |
3434 && (!NILP (Flocal_variable_p (variable, Fcurrent_buffer (), Qnil)))) | |
3435 return Fcurrent_buffer (); | |
3436 else | |
3437 return Qnil; | |
3438 } | |
428 | 3439 |
3440 /************************************************************************/ | |
3441 /* initialization */ | |
3442 /************************************************************************/ | |
3443 | |
3444 /* A dumped XEmacs image has a lot more than 1511 symbols. Last | |
3445 estimate was that there were actually around 6300. So let's try | |
3446 making this bigger and see if we get better hashing behavior. */ | |
3447 #define OBARRAY_SIZE 16411 | |
3448 | |
3449 #ifndef Qzero | |
3450 Lisp_Object Qzero; | |
3451 #endif | |
3452 #ifndef Qnull_pointer | |
3453 Lisp_Object Qnull_pointer; | |
3454 #endif | |
3455 | |
3263 | 3456 #ifndef NEW_GC |
428 | 3457 /* some losing systems can't have static vars at function scope... */ |
442 | 3458 static const struct symbol_value_magic guts_of_unbound_marker = |
3459 { /* struct symbol_value_magic */ | |
3024 | 3460 { /* struct old_lcrecord_header */ |
442 | 3461 { /* struct lrecord_header */ |
3462 lrecord_type_symbol_value_forward, /* lrecord_type_index */ | |
3463 1, /* mark bit */ | |
3464 1, /* c_readonly bit */ | |
3465 1, /* lisp_readonly bit */ | |
3466 }, | |
3467 0, /* next */ | |
3468 0, /* uid */ | |
3469 0, /* free */ | |
3470 }, | |
3471 0, /* value */ | |
3472 SYMVAL_UNBOUND_MARKER | |
3473 }; | |
3263 | 3474 #endif /* not NEW_GC */ |
428 | 3475 |
3476 void | |
3477 init_symbols_once_early (void) | |
3478 { | |
442 | 3479 INIT_LRECORD_IMPLEMENTATION (symbol); |
3480 INIT_LRECORD_IMPLEMENTATION (symbol_value_forward); | |
3481 INIT_LRECORD_IMPLEMENTATION (symbol_value_buffer_local); | |
3482 INIT_LRECORD_IMPLEMENTATION (symbol_value_lisp_magic); | |
3483 INIT_LRECORD_IMPLEMENTATION (symbol_value_varalias); | |
3484 | |
1204 | 3485 reinit_symbols_early (); |
428 | 3486 |
3487 /* Bootstrapping problem: Qnil isn't set when make_string_nocopy is | |
3488 called the first time. */ | |
867 | 3489 Qnil = Fmake_symbol (make_string_nocopy ((const Ibyte *) "nil", 3)); |
793 | 3490 XSTRING_PLIST (XSYMBOL (Qnil)->name) = Qnil; |
428 | 3491 XSYMBOL (Qnil)->value = Qnil; /* Nihil ex nihil */ |
3492 XSYMBOL (Qnil)->plist = Qnil; | |
3493 | |
3494 Vobarray = make_vector (OBARRAY_SIZE, Qzero); | |
3495 initial_obarray = Vobarray; | |
3496 staticpro (&initial_obarray); | |
3497 /* Intern nil in the obarray */ | |
3498 { | |
793 | 3499 unsigned int hash = hash_string (XSTRING_DATA (XSYMBOL (Qnil)->name), 3); |
428 | 3500 XVECTOR_DATA (Vobarray)[hash % OBARRAY_SIZE] = Qnil; |
3501 } | |
3502 | |
3503 { | |
3504 /* Required to get around a GCC syntax error on certain | |
3505 architectures */ | |
3263 | 3506 #ifdef NEW_GC |
2720 | 3507 struct symbol_value_magic *tem = (struct symbol_value_magic *) |
3508 mc_alloc (sizeof (struct symbol_value_magic)); | |
3509 MARK_LRECORD_AS_LISP_READONLY (tem); | |
3510 MARK_LRECORD_AS_NOT_FREE (tem); | |
3511 tem->header.type = lrecord_type_symbol_value_forward; | |
3512 mcpro (wrap_pointer_1 (tem)); | |
3513 tem->value = 0; | |
3514 tem->type = SYMVAL_UNBOUND_MARKER; | |
2994 | 3515 #ifdef ALLOC_TYPE_STATS |
2775 | 3516 inc_lrecord_stats (sizeof (struct symbol_value_magic), |
3517 (const struct lrecord_header *) tem); | |
2994 | 3518 #endif /* ALLOC_TYPE_STATS */ |
3263 | 3519 #else /* not NEW_GC */ |
442 | 3520 const struct symbol_value_magic *tem = &guts_of_unbound_marker; |
3263 | 3521 #endif /* not NEW_GC */ |
428 | 3522 |
793 | 3523 Qunbound = wrap_symbol_value_magic (tem); |
428 | 3524 } |
3525 | |
3526 XSYMBOL (Qnil)->function = Qunbound; | |
3527 | |
563 | 3528 DEFSYMBOL (Qt); |
444 | 3529 XSYMBOL (Qt)->value = Qt; /* Veritas aeterna */ |
428 | 3530 Vquit_flag = Qnil; |
3531 | |
1204 | 3532 dump_add_root_lisp_object (&Qnil); |
3533 dump_add_root_lisp_object (&Qunbound); | |
3534 dump_add_root_lisp_object (&Vquit_flag); | |
428 | 3535 } |
3536 | |
3537 void | |
1204 | 3538 reinit_symbols_early (void) |
440 | 3539 { |
3540 } | |
3541 | |
442 | 3542 static void |
3543 defsymbol_massage_name_1 (Lisp_Object *location, const char *name, int dump_p, | |
3544 int multiword_predicate_p) | |
3545 { | |
3546 char temp[500]; | |
3547 int len = strlen (name) - 1; | |
3548 int i; | |
3549 | |
3550 if (multiword_predicate_p) | |
647 | 3551 assert (len + 1 < (int) sizeof (temp)); |
442 | 3552 else |
647 | 3553 assert (len < (int) sizeof (temp)); |
442 | 3554 strcpy (temp, name + 1); /* Remove initial Q */ |
3555 if (multiword_predicate_p) | |
3556 { | |
3557 strcpy (temp + len - 1, "_p"); | |
3558 len++; | |
3559 } | |
3560 for (i = 0; i < len; i++) | |
3561 if (temp[i] == '_') | |
3562 temp[i] = '-'; | |
867 | 3563 *location = Fintern (make_string ((const Ibyte *) temp, len), Qnil); |
442 | 3564 if (dump_p) |
4924
ba353d7b0ce8
temporarily back out part of patch to avoid compile probs
Ben Wing <ben@xemacs.org>
parents:
4921
diff
changeset
|
3565 staticpro (location); |
442 | 3566 else |
4924
ba353d7b0ce8
temporarily back out part of patch to avoid compile probs
Ben Wing <ben@xemacs.org>
parents:
4921
diff
changeset
|
3567 staticpro_nodump (location); |
442 | 3568 } |
3569 | |
440 | 3570 void |
442 | 3571 defsymbol_massage_name_nodump (Lisp_Object *location, const char *name) |
3572 { | |
3573 defsymbol_massage_name_1 (location, name, 0, 0); | |
3574 } | |
3575 | |
3576 void | |
3577 defsymbol_massage_name (Lisp_Object *location, const char *name) | |
428 | 3578 { |
442 | 3579 defsymbol_massage_name_1 (location, name, 1, 0); |
3580 } | |
3581 | |
3582 void | |
3583 defsymbol_massage_multiword_predicate_nodump (Lisp_Object *location, | |
3584 const char *name) | |
3585 { | |
3586 defsymbol_massage_name_1 (location, name, 0, 1); | |
3587 } | |
3588 | |
3589 void | |
3590 defsymbol_massage_multiword_predicate (Lisp_Object *location, const char *name) | |
3591 { | |
3592 defsymbol_massage_name_1 (location, name, 1, 1); | |
3593 } | |
3594 | |
3595 void | |
3596 defsymbol_nodump (Lisp_Object *location, const char *name) | |
3597 { | |
867 | 3598 *location = Fintern (make_string_nocopy ((const Ibyte *) name, |
428 | 3599 strlen (name)), |
3600 Qnil); | |
4924
ba353d7b0ce8
temporarily back out part of patch to avoid compile probs
Ben Wing <ben@xemacs.org>
parents:
4921
diff
changeset
|
3601 staticpro_nodump (location); |
428 | 3602 } |
3603 | |
3604 void | |
442 | 3605 defsymbol (Lisp_Object *location, const char *name) |
428 | 3606 { |
867 | 3607 *location = Fintern (make_string_nocopy ((const Ibyte *) name, |
428 | 3608 strlen (name)), |
3609 Qnil); | |
4924
ba353d7b0ce8
temporarily back out part of patch to avoid compile probs
Ben Wing <ben@xemacs.org>
parents:
4921
diff
changeset
|
3610 staticpro (location); |
428 | 3611 } |
3612 | |
3613 void | |
442 | 3614 defkeyword (Lisp_Object *location, const char *name) |
428 | 3615 { |
3616 defsymbol (location, name); | |
3617 Fset (*location, *location); | |
3618 } | |
3619 | |
442 | 3620 void |
3621 defkeyword_massage_name (Lisp_Object *location, const char *name) | |
3622 { | |
3623 char temp[500]; | |
3624 int len = strlen (name); | |
3625 | |
647 | 3626 assert (len < (int) sizeof (temp)); |
442 | 3627 strcpy (temp, name); |
3628 temp[1] = ':'; /* it's an underscore in the C variable */ | |
3629 | |
3630 defsymbol_massage_name (location, temp); | |
3631 Fset (*location, *location); | |
3632 } | |
3633 | |
428 | 3634 #ifdef DEBUG_XEMACS |
930 | 3635 /* Check that nobody spazzed writing a builtin (non-module) DEFUN. */ |
428 | 3636 static void |
3637 check_sane_subr (Lisp_Subr *subr, Lisp_Object sym) | |
3638 { | |
930 | 3639 if (!initialized) { |
3640 assert (subr->min_args >= 0); | |
3641 assert (subr->min_args <= SUBR_MAX_ARGS); | |
3642 | |
3643 if (subr->max_args != MANY && | |
3644 subr->max_args != UNEVALLED) | |
3645 { | |
3646 /* Need to fix lisp.h and eval.c if SUBR_MAX_ARGS too small */ | |
3647 assert (subr->max_args <= SUBR_MAX_ARGS); | |
3648 assert (subr->min_args <= subr->max_args); | |
3649 } | |
3650 assert (UNBOUNDP (XSYMBOL (sym)->function)); | |
3651 } | |
428 | 3652 } |
3653 #else | |
3654 #define check_sane_subr(subr, sym) /* nothing */ | |
3655 #endif | |
3656 | |
3657 #ifdef HAVE_SHLIB | |
3263 | 3658 #ifndef NEW_GC |
428 | 3659 /* |
3660 * If we are not in a pure undumped Emacs, we need to make a duplicate of | |
3661 * the subr. This is because the only time this function will be called | |
3662 * in a running Emacs is when a dynamically loaded module is adding a | |
3663 * subr, and we need to make sure that the subr is in allocated, Lisp- | |
3664 * accessible memory. The address assigned to the static subr struct | |
3665 * in the shared object will be a trampoline address, so we need to create | |
3666 * a copy here to ensure that a real address is used. | |
3667 * | |
3668 * Once we have copied everything across, we re-use the original static | |
3669 * structure to store a pointer to the newly allocated one. This will be | |
3670 * used in emodules.c by emodules_doc_subr() to find a pointer to the | |
442 | 3671 * allocated object so that we can set its doc string properly. |
428 | 3672 * |
442 | 3673 * NOTE: We don't actually use the DOC pointer here any more, but we did |
428 | 3674 * in an earlier implementation of module support. There is no harm in |
3675 * setting it here in case we ever need it in future implementations. | |
3676 * subr->doc will point to the new subr structure that was allocated. | |
442 | 3677 * Code can then get this value from the static subr structure and use |
428 | 3678 * it if required. |
3679 * | |
442 | 3680 * FIXME: Should newsubr be staticpro()'ed? I don't think so but I need |
428 | 3681 * a guru to check. |
3682 */ | |
930 | 3683 #define check_module_subr(subr) \ |
3684 do { \ | |
3685 if (initialized) { \ | |
3686 Lisp_Subr *newsubr; \ | |
3687 Lisp_Object f; \ | |
3688 \ | |
3689 if (subr->min_args < 0) \ | |
3690 signal_ferror (Qdll_error, "%s min_args (%hd) too small", \ | |
3691 subr_name (subr), subr->min_args); \ | |
3692 if (subr->min_args > SUBR_MAX_ARGS) \ | |
3693 signal_ferror (Qdll_error, "%s min_args (%hd) too big (max = %d)", \ | |
3694 subr_name (subr), subr->min_args, SUBR_MAX_ARGS); \ | |
3695 \ | |
3696 if (subr->max_args != MANY && \ | |
3697 subr->max_args != UNEVALLED) \ | |
3698 { \ | |
3699 /* Need to fix lisp.h and eval.c if SUBR_MAX_ARGS too small */ \ | |
3700 if (subr->max_args > SUBR_MAX_ARGS) \ | |
3701 signal_ferror (Qdll_error, "%s max_args (%hd) too big (max = %d)", \ | |
3702 subr_name (subr), subr->max_args, SUBR_MAX_ARGS); \ | |
3703 if (subr->min_args > subr->max_args) \ | |
3704 signal_ferror (Qdll_error, "%s min_args (%hd) > max_args (%hd)", \ | |
3705 subr_name (subr), subr->min_args, subr->max_args); \ | |
3706 } \ | |
3707 \ | |
3708 f = XSYMBOL (sym)->function; \ | |
3709 if (!UNBOUNDP (f) && (!CONSP (f) || !EQ (XCAR (f), Qautoload))) \ | |
3710 signal_ferror (Qdll_error, "Attempt to redefine %s", subr_name (subr)); \ | |
3711 \ | |
2367 | 3712 newsubr = xnew (Lisp_Subr); \ |
930 | 3713 memcpy (newsubr, subr, sizeof (Lisp_Subr)); \ |
3714 subr->doc = (const char *)newsubr; \ | |
3715 subr = newsubr; \ | |
3716 } \ | |
428 | 3717 } while (0) |
3263 | 3718 #else /* NEW_GC */ |
2963 | 3719 /* |
3720 * If we have the new allocator enabled, we do not need to make a | |
3721 * duplicate of the subr. The new allocator already does allocate all | |
3722 * subrs in Lisp-accessible memory rather than have it in the static | |
3723 * subr struct. | |
3724 * | |
3725 * NOTE: The DOC pointer is not set here as described above. | |
3726 */ | |
3727 #define check_module_subr(subr) \ | |
3728 do { \ | |
3729 if (initialized) { \ | |
3730 Lisp_Object f; \ | |
3731 \ | |
3732 if (subr->min_args < 0) \ | |
3733 signal_ferror (Qdll_error, "%s min_args (%hd) too small", \ | |
3734 subr_name (subr), subr->min_args); \ | |
3735 if (subr->min_args > SUBR_MAX_ARGS) \ | |
3736 signal_ferror (Qdll_error, "%s min_args (%hd) too big (max = %d)", \ | |
3737 subr_name (subr), subr->min_args, SUBR_MAX_ARGS); \ | |
3738 \ | |
3739 if (subr->max_args != MANY && \ | |
3740 subr->max_args != UNEVALLED) \ | |
3741 { \ | |
3742 /* Need to fix lisp.h and eval.c if SUBR_MAX_ARGS too small */ \ | |
3743 if (subr->max_args > SUBR_MAX_ARGS) \ | |
3744 signal_ferror (Qdll_error, "%s max_args (%hd) too big (max = %d)", \ | |
3745 subr_name (subr), subr->max_args, SUBR_MAX_ARGS); \ | |
3746 if (subr->min_args > subr->max_args) \ | |
3747 signal_ferror (Qdll_error, "%s min_args (%hd) > max_args (%hd)", \ | |
3748 subr_name (subr), subr->min_args, subr->max_args); \ | |
3749 } \ | |
3750 \ | |
3751 f = XSYMBOL (sym)->function; \ | |
3752 if (!UNBOUNDP (f) && (!CONSP (f) || !EQ (XCAR (f), Qautoload))) \ | |
3753 signal_ferror (Qdll_error, "Attempt to redefine %s", subr_name (subr)); \ | |
3754 } \ | |
3755 } while (0) | |
3263 | 3756 #endif /* NEW_GC */ |
428 | 3757 #else /* ! HAVE_SHLIB */ |
930 | 3758 #define check_module_subr(subr) |
428 | 3759 #endif |
3760 | |
3761 void | |
3762 defsubr (Lisp_Subr *subr) | |
3763 { | |
3764 Lisp_Object sym = intern (subr_name (subr)); | |
3765 Lisp_Object fun; | |
3766 | |
3767 check_sane_subr (subr, sym); | |
930 | 3768 check_module_subr (subr); |
428 | 3769 |
793 | 3770 fun = wrap_subr (subr); |
428 | 3771 XSYMBOL (sym)->function = fun; |
996 | 3772 |
3773 #ifdef HAVE_SHLIB | |
3774 /* If it is declared in a module, update the load history */ | |
3775 if (initialized) | |
3776 LOADHIST_ATTACH (sym); | |
3777 #endif | |
428 | 3778 } |
3779 | |
3780 /* Define a lisp macro using a Lisp_Subr. */ | |
3781 void | |
3782 defsubr_macro (Lisp_Subr *subr) | |
3783 { | |
3784 Lisp_Object sym = intern (subr_name (subr)); | |
3785 Lisp_Object fun; | |
3786 | |
3787 check_sane_subr (subr, sym); | |
930 | 3788 check_module_subr (subr); |
428 | 3789 |
793 | 3790 fun = wrap_subr (subr); |
428 | 3791 XSYMBOL (sym)->function = Fcons (Qmacro, fun); |
996 | 3792 |
3793 #ifdef HAVE_SHLIB | |
3794 /* If it is declared in a module, update the load history */ | |
3795 if (initialized) | |
3796 LOADHIST_ATTACH (sym); | |
3797 #endif | |
428 | 3798 } |
3799 | |
442 | 3800 static void |
3801 deferror_1 (Lisp_Object *symbol, const char *name, const char *messuhhj, | |
3802 Lisp_Object inherits_from, int massage_p) | |
428 | 3803 { |
3804 Lisp_Object conds; | |
442 | 3805 if (massage_p) |
3806 defsymbol_massage_name (symbol, name); | |
3807 else | |
3808 defsymbol (symbol, name); | |
428 | 3809 |
3810 assert (SYMBOLP (inherits_from)); | |
3811 conds = Fget (inherits_from, Qerror_conditions, Qnil); | |
3812 Fput (*symbol, Qerror_conditions, Fcons (*symbol, conds)); | |
771 | 3813 /* NOT build_msg_string (). This function is called at load time |
428 | 3814 and the string needs to get translated at run time. (This happens |
3815 in the function (display-error) in cmdloop.el.) */ | |
771 | 3816 Fput (*symbol, Qerror_message, build_msg_string (messuhhj)); |
428 | 3817 } |
3818 | |
3819 void | |
442 | 3820 deferror (Lisp_Object *symbol, const char *name, const char *messuhhj, |
3821 Lisp_Object inherits_from) | |
3822 { | |
3823 deferror_1 (symbol, name, messuhhj, inherits_from, 0); | |
3824 } | |
3825 | |
3826 void | |
3827 deferror_massage_name (Lisp_Object *symbol, const char *name, | |
3828 const char *messuhhj, Lisp_Object inherits_from) | |
3829 { | |
3830 deferror_1 (symbol, name, messuhhj, inherits_from, 1); | |
3831 } | |
3832 | |
3833 void | |
3834 deferror_massage_name_and_message (Lisp_Object *symbol, const char *name, | |
3835 Lisp_Object inherits_from) | |
3836 { | |
3837 char temp[500]; | |
3838 int i; | |
3839 int len = strlen (name) - 1; | |
3840 | |
647 | 3841 assert (len < (int) sizeof (temp)); |
442 | 3842 strcpy (temp, name + 1); /* Remove initial Q */ |
3843 temp[0] = toupper (temp[0]); | |
3844 for (i = 0; i < len; i++) | |
3845 if (temp[i] == '_') | |
3846 temp[i] = ' '; | |
3847 | |
3848 deferror_1 (symbol, name, temp, inherits_from, 1); | |
3849 } | |
3850 | |
3851 void | |
428 | 3852 syms_of_symbols (void) |
3853 { | |
442 | 3854 DEFSYMBOL (Qvariable_documentation); |
3855 DEFSYMBOL (Qvariable_domain); /* I18N3 */ | |
3856 DEFSYMBOL (Qad_advice_info); | |
3857 DEFSYMBOL (Qad_activate); | |
3858 | |
3859 DEFSYMBOL (Qget_value); | |
3860 DEFSYMBOL (Qset_value); | |
3861 DEFSYMBOL (Qbound_predicate); | |
3862 DEFSYMBOL (Qmake_unbound); | |
3863 DEFSYMBOL (Qlocal_predicate); | |
3864 DEFSYMBOL (Qmake_local); | |
3865 | |
3866 DEFSYMBOL (Qboundp); | |
3867 DEFSYMBOL (Qglobally_boundp); | |
3868 DEFSYMBOL (Qmakunbound); | |
3869 DEFSYMBOL (Qsymbol_value); | |
3870 DEFSYMBOL (Qset); | |
3871 DEFSYMBOL (Qsetq_default); | |
3872 DEFSYMBOL (Qdefault_boundp); | |
3873 DEFSYMBOL (Qdefault_value); | |
3874 DEFSYMBOL (Qset_default); | |
3875 DEFSYMBOL (Qmake_variable_buffer_local); | |
3876 DEFSYMBOL (Qmake_local_variable); | |
3877 DEFSYMBOL (Qkill_local_variable); | |
3878 DEFSYMBOL (Qkill_console_local_variable); | |
3879 DEFSYMBOL (Qsymbol_value_in_buffer); | |
3880 DEFSYMBOL (Qsymbol_value_in_console); | |
3881 DEFSYMBOL (Qlocal_variable_p); | |
3882 DEFSYMBOL (Qconst_integer); | |
3883 DEFSYMBOL (Qconst_boolean); | |
3884 DEFSYMBOL (Qconst_object); | |
3885 DEFSYMBOL (Qconst_specifier); | |
3886 DEFSYMBOL (Qdefault_buffer); | |
3887 DEFSYMBOL (Qcurrent_buffer); | |
3888 DEFSYMBOL (Qconst_current_buffer); | |
3889 DEFSYMBOL (Qdefault_console); | |
3890 DEFSYMBOL (Qselected_console); | |
3891 DEFSYMBOL (Qconst_selected_console); | |
428 | 3892 |
3893 DEFSUBR (Fintern); | |
3894 DEFSUBR (Fintern_soft); | |
3895 DEFSUBR (Funintern); | |
3896 DEFSUBR (Fmapatoms); | |
3897 DEFSUBR (Fapropos_internal); | |
3898 | |
3899 DEFSUBR (Fsymbol_function); | |
3900 DEFSUBR (Fsymbol_plist); | |
3901 DEFSUBR (Fsymbol_name); | |
3902 DEFSUBR (Fmakunbound); | |
3903 DEFSUBR (Ffmakunbound); | |
3904 DEFSUBR (Fboundp); | |
3905 DEFSUBR (Fglobally_boundp); | |
3906 DEFSUBR (Ffboundp); | |
3907 DEFSUBR (Ffset); | |
3908 DEFSUBR (Fdefine_function); | |
3909 Ffset (intern ("defalias"), intern ("define-function")); | |
3368 | 3910 DEFSUBR (Fsubr_name); |
4905
755ae5b97edb
Change "special form" to "special operator" in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4793
diff
changeset
|
3911 DEFSUBR (Fspecial_operator_p); |
428 | 3912 DEFSUBR (Fsetplist); |
3913 DEFSUBR (Fsymbol_value_in_buffer); | |
3914 DEFSUBR (Fsymbol_value_in_console); | |
3915 DEFSUBR (Fbuilt_in_variable_type); | |
3916 DEFSUBR (Fsymbol_value); | |
3917 DEFSUBR (Fset); | |
3918 DEFSUBR (Fdefault_boundp); | |
3919 DEFSUBR (Fdefault_value); | |
3920 DEFSUBR (Fset_default); | |
3921 DEFSUBR (Fsetq_default); | |
3922 DEFSUBR (Fmake_variable_buffer_local); | |
3923 DEFSUBR (Fmake_local_variable); | |
3924 DEFSUBR (Fkill_local_variable); | |
3925 DEFSUBR (Fkill_console_local_variable); | |
3926 DEFSUBR (Flocal_variable_p); | |
4502
8748a3f7ceb4
Handle varalias chains, custom variables in #'user-variable-p.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4355
diff
changeset
|
3927 DEFSUBR (Fcustom_variable_p); |
8748a3f7ceb4
Handle varalias chains, custom variables in #'user-variable-p.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4355
diff
changeset
|
3928 DEFSUBR (Fuser_variable_p); |
428 | 3929 DEFSUBR (Fdefvaralias); |
3930 DEFSUBR (Fvariable_alias); | |
3931 DEFSUBR (Findirect_variable); | |
1674 | 3932 DEFSUBR (Fvariable_binding_locus); |
428 | 3933 DEFSUBR (Fdontusethis_set_symbol_value_handler); |
3934 } | |
3935 | |
3936 /* Create and initialize a Lisp variable whose value is forwarded to C data */ | |
3937 void | |
442 | 3938 defvar_magic (const char *symbol_name, const struct symbol_value_forward *magic) |
428 | 3939 { |
442 | 3940 Lisp_Object sym; |
428 | 3941 |
996 | 3942 #ifdef HAVE_SHLIB |
428 | 3943 /* |
3944 * As with defsubr(), this will only be called in a dumped Emacs when | |
3945 * we are adding variables from a dynamically loaded module. That means | |
3946 * we can't use purespace. Take that into account. | |
3947 */ | |
3948 if (initialized) | |
996 | 3949 { |
3950 sym = Fintern (build_string (symbol_name), Qnil); | |
3951 LOADHIST_ATTACH (sym); | |
3952 } | |
428 | 3953 else |
3954 #endif | |
867 | 3955 sym = Fintern (make_string_nocopy ((const Ibyte *) symbol_name, |
428 | 3956 strlen (symbol_name)), Qnil); |
3957 | |
793 | 3958 XSYMBOL (sym)->value = wrap_pointer_1 (magic); |
428 | 3959 } |
3960 | |
3961 void | |
3962 vars_of_symbols (void) | |
3963 { | |
3964 DEFVAR_LISP ("obarray", &Vobarray /* | |
3965 Symbol table for use by `intern' and `read'. | |
3966 It is a vector whose length ought to be prime for best results. | |
3967 The vector's contents don't make sense if examined from Lisp programs; | |
3968 to find all the symbols in an obarray, use `mapatoms'. | |
3969 */ ); | |
3970 /* obarray has been initialized long before */ | |
3971 } |