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