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