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