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