annotate src/symbols.c @ 363:972bbb6d6ca2 r21-1-11

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