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