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