annotate src/symeval.h @ 398:74fd4e045ea6 r21-2-29

Import from CVS: tag r21-2-29
author cvs
date Mon, 13 Aug 2007 11:13:30 +0200
parents 8626e4521993
children a86b2b5e0111
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 /* Definitions of symbol-value forwarding for XEmacs Lisp interpreter.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2 Copyright (C) 1985, 1986, 1987, 1992, 1993 Free Software Foundation, Inc.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4 This file is part of XEmacs.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6 XEmacs is free software; you can redistribute it and/or modify it
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
7 under the terms of the GNU General Public License as published by the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
8 Free Software Foundation; either version 2, or (at your option) any
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
9 later version.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
10
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
11 XEmacs is distributed in the hope that it will be useful, but WITHOUT
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
12 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
13 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
14 for more details.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
15
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
16 You should have received a copy of the GNU General Public License
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
17 along with XEmacs; see the file COPYING. If not, write to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
18 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
19 Boston, MA 02111-1307, USA. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
20
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
21 /* Synched up with: Not in FSF. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
22
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
23 /* Fsymbol_value checks whether XSYMBOL (sym)->value is one of these,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
24 * and does weird magic stuff if so */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
25
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
26 #ifndef INCLUDED_symeval_h_
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
27 #define INCLUDED_symeval_h_
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
28
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 16
diff changeset
29 enum symbol_value_type
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 16
diff changeset
30 {
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 16
diff changeset
31 /* The following tags use the 'symbol_value_forward' structure
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 16
diff changeset
32 and are strictly for variables DEFVARed on the C level. */
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 16
diff changeset
33 SYMVAL_FIXNUM_FORWARD, /* Forward C "int" */
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 16
diff changeset
34 SYMVAL_CONST_FIXNUM_FORWARD, /* Same, but can't be set */
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 16
diff changeset
35 SYMVAL_BOOLEAN_FORWARD, /* Forward C boolean ("int") */
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 16
diff changeset
36 SYMVAL_CONST_BOOLEAN_FORWARD, /* Same, but can't be set */
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 16
diff changeset
37 SYMVAL_OBJECT_FORWARD, /* Forward C Lisp_Object */
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 16
diff changeset
38 SYMVAL_CONST_OBJECT_FORWARD, /* Same, but can't be set */
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 16
diff changeset
39 SYMVAL_CONST_SPECIFIER_FORWARD, /* Same, can't be set, but gives a
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 16
diff changeset
40 different message when attempting to
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 16
diff changeset
41 set that says "use set-specifier" */
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 16
diff changeset
42 SYMVAL_DEFAULT_BUFFER_FORWARD, /* Forward Lisp_Object into Vbuffer_defaults */
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 16
diff changeset
43 SYMVAL_CURRENT_BUFFER_FORWARD, /* Forward Lisp_Object into current_buffer */
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 16
diff changeset
44 SYMVAL_CONST_CURRENT_BUFFER_FORWARD, /* Forward Lisp_Object into
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 16
diff changeset
45 current_buffer, can't be set */
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 16
diff changeset
46 SYMVAL_DEFAULT_CONSOLE_FORWARD, /* Forward Lisp_Object into
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 16
diff changeset
47 Vconsole_defaults */
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 16
diff changeset
48 SYMVAL_SELECTED_CONSOLE_FORWARD, /* Forward Lisp_Object into
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 16
diff changeset
49 Vselected_console */
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 16
diff changeset
50 SYMVAL_CONST_SELECTED_CONSOLE_FORWARD, /* Forward Lisp_Object into
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 16
diff changeset
51 Vselected_console,
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 16
diff changeset
52 can't be set */
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 16
diff changeset
53 SYMVAL_UNBOUND_MARKER, /* Only Qunbound actually has this tag */
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 16
diff changeset
54
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 16
diff changeset
55 /* The following tags use the 'symbol_value_buffer_local' structure */
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 16
diff changeset
56 SYMVAL_BUFFER_LOCAL, /* make-variable-buffer-local */
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 16
diff changeset
57 SYMVAL_SOME_BUFFER_LOCAL, /* make-local-variable */
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 16
diff changeset
58
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 16
diff changeset
59 /* The following tag uses the 'symbol_value_lisp_magic' structure */
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 16
diff changeset
60 SYMVAL_LISP_MAGIC, /* Forward to lisp callbacks */
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 16
diff changeset
61
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 16
diff changeset
62 /* The following tag uses the 'symbol_value_varalias' structure */
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 16
diff changeset
63 SYMVAL_VARALIAS /* defvaralias */
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 16
diff changeset
64
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 16
diff changeset
65 #if 0
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 16
diff changeset
66 /* NYI */
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 16
diff changeset
67 SYMVAL_CONSTANT_SYMBOL, /* Self-evaluating symbol */
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 16
diff changeset
68 /* NYI */
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 16
diff changeset
69 #endif
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 16
diff changeset
70 };
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 16
diff changeset
71
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
72 struct symbol_value_magic
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
73 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
74 struct lcrecord_header lcheader;
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
75 void *value;
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 16
diff changeset
76 enum symbol_value_type type;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
77 };
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
78 #define SYMBOL_VALUE_MAGIC_P(x) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
79 (LRECORDP (x) \
211
78478c60bfcd Import from CVS: tag r20-4b4
cvs
parents: 185
diff changeset
80 && (XRECORD_LHEADER_IMPLEMENTATION (x)->printer \
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
81 == print_symbol_value_magic))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
82 #define XSYMBOL_VALUE_MAGIC_TYPE(v) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
83 (((struct symbol_value_magic *) XPNTR (v))->type)
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 16
diff changeset
84 #define XSETSYMBOL_VALUE_MAGIC(s, p) XSETOBJ (s, Lisp_Type_Record, p)
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 211
diff changeset
85 void print_symbol_value_magic (Lisp_Object, Lisp_Object, int);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
86
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
87 /********** The various different symbol-value-magic types ***********/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
88
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
89 /* 1. symbol-value-forward */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
90
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
91 /* This type of symbol-value-magic is used for variables declared
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
92 DEFVAR_LISP, DEFVAR_INT, DEFVAR_BOOL, DEFVAR_BUFFER_LOCAL,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
93 DEFVAR_BUFFER_DEFAULTS, DEFVAR_SPECIFIER, and for Qunbound.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
94
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
95 Note that some of these types of variables can be made buffer-local.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
96 Then, the symbol's value field contains a symbol-value-buffer-local,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
97 whose CURRENT-VALUE field then contains a symbol-value-forward.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
98 */
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 16
diff changeset
99
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
100 struct symbol_value_forward
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
101 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
102 struct symbol_value_magic magic;
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
103
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
104 /* `magicfun' is a function controlling the magic behavior of this
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
105 forward variable.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
106
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
107 SYM is the symbol being operated on (read, set, etc.);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
108
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
109 VAL is either the value to set or the value to be returned.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
110
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
111 IN_OBJECT is the buffer or console that the value is read in
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
112 or set in. A value of Qnil means that the current buffer
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
113 and possibly other buffers are being set. (This value will
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
114 never be passed for built-in buffer-local or console-local
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
115 variables such as `truncate-lines'.) (Currently, a value of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
116 Qnil is always passed for DEFVAR_INT, DEFVAR_LISP, and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
117 DEFVAR_BOOL variables; the code isn't smart enough to figure
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
118 out what buffers besides the current buffer are being
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
119 affected. Because the magic function is called
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
120 before the value is changed, it's not that easy
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
121 to determine which buffers are getting changed.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
122 #### If this information is important, let me know
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
123 and I will look into providing it.) (Remember also
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
124 that the only console-local variables currently existing
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
125 are built-in ones, because others can't be created.)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
126
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
127 FLAGS gives more information about the operation being performed.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
128
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
129 The return value indicates what the magic function actually did.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
130
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
131 Currently FLAGS and the return value are not used. This
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
132 function is only called when the value of a forward variable
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
133 is about to be changed. Note that this can occur explicitly
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
134 through a call to `set', `setq', `set-default', or `setq-default',
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
135 or implicitly by the current buffer being changed. */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
136 int (*magicfun) (Lisp_Object sym, Lisp_Object *val, Lisp_Object in_object,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
137 int flags);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
138 };
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 211
diff changeset
139 DECLARE_LRECORD (symbol_value_forward, struct symbol_value_forward);
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 211
diff changeset
140 #define XSYMBOL_VALUE_FORWARD(x) \
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 211
diff changeset
141 XRECORD (x, symbol_value_forward, struct symbol_value_forward)
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
142 #define symbol_value_forward_forward(m) ((void *)((m)->magic.value))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
143 #define symbol_value_forward_magicfun(m) ((m)->magicfun)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
144
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
145 /* 2. symbol-value-buffer-local */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
146
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
147 struct symbol_value_buffer_local
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
148 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
149 struct symbol_value_magic magic;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
150 /* Used in a symbol value cell when the symbol's value is per-buffer.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
151
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
152 The type of the symbol-value-magic will be either
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
153 SYMVAL_BUFFER_LOCAL (i.e. `make-variable-buffer-local' was called)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
154 or SYMVAL_SOME_BUFFER_LOCAL (i.e. `make-local-variable' was called).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
155 The only difference between the two is that when setting the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
156 former kind of variable, an implicit `make-local-variable' is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
157 called.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
158
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
159 A buffer-local variable logically has
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
160
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
161 -- a default value
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
162 -- local values in some buffers
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
163
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
164 The primary place where the local values are stored is in each
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
165 buffer's local_var_alist slot.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
166
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
167 In the simplest implementation, all that this structure needs to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
168 keep track of is the default value; to retrieve the value in
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
169 a buffer, look in that buffer's local_var_alist, and use the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
170 default value if there is no local value. To implement
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
171 `make-local-variable' in a buffer, look in the buffer's
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
172 local_var_alist, and if no element exists for this symbol,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
173 add one, copying the value from the default value. When setting
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
174 the value in a buffer, look in the buffer's local_var_alist, and set
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
175 the value in that list if an element exists for this symbol;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
176 otherwise, set the default. (Remember that SYMVAL_BUFFER_LOCAL
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
177 variables implicitly call `make-local-variable' first, so when
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
178 setting a value, there will always be an entry in the buffer's
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
179 local_var_alist to set.)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
180
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 211
diff changeset
181 However, this operation is potentially slow. To speed it up,
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
182 we cache the value in one buffer in this structure.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
183
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
184 NOTE: This is *not* a write-through cache. I.e. when setting
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
185 the value in the buffer that is cached, we *only* change the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
186 cache and don't write the value through to either the buffer's
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
187 local_var_alist or the default value. Therefore, when retrieving
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
188 a value in a buffer, you must *always* look in the cache to see if
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
189 it refers to that buffer.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
190
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
191 The cache consists of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
192
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
193 -- a buffer, or nil if the cache has not been set up
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
194 -- the value in that buffer
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
195 -- the element (a cons) from the buffer's local_var_alist, or
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
196 nil if there is no local value in the buffer
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
197
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
198 These slots are called CURRENT-BUFFER, CURRENT-VALUE, and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
199 CURRENT-ALIST-ELEMENT, respectively.
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 16
diff changeset
200
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
201 If we want to examine or set the value in BUFFER and CURRENT-BUFFER
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
202 equals BUFFER, we just examine or set CURRENT-VALUE. Otherwise,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
203 we store CURRENT-VALUE value into CURRENT-ALIST-ELEMENT (or maybe
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
204 into DEFAULT-VALUE), then find the appropriate alist element for
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
205 BUFFER and set up CURRENT-ALIST-ELEMENT. Then we set CURRENT-VALUE
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
206 out of that element (or maybe out of DEFAULT-VALUE), and store
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
207 BUFFER into CURRENT-BUFFER.
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 16
diff changeset
208
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
209 If we are setting the variable and the current buffer does not have
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
210 an alist entry for this variable, an alist entry is created.
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 16
diff changeset
211
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
212 Note that CURRENT-BUFFER's local_var_alist value for this variable
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
213 might be out-of-date (the correct value is stored in CURRENT-VALUE).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
214 Similarly, if CURRENT-BUFFER sees the default value, then
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
215 DEFAULT-VALUE might be out-of-date.
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 16
diff changeset
216
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
217 Note that CURRENT-VALUE (but not DEFAULT-VALUE) can be a
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 16
diff changeset
218 forwarding pointer. Each time it is examined or set,
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
219 forwarding must be done.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
220 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
221 Lisp_Object default_value;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
222 Lisp_Object current_value;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
223 Lisp_Object current_buffer;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
224 Lisp_Object current_alist_element;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
225 };
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 211
diff changeset
226 DECLARE_LRECORD (symbol_value_buffer_local, struct symbol_value_buffer_local);
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 211
diff changeset
227 #define XSYMBOL_VALUE_BUFFER_LOCAL(x) \
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 211
diff changeset
228 XRECORD (x, symbol_value_buffer_local, struct symbol_value_buffer_local)
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 211
diff changeset
229 #define SYMBOL_VALUE_BUFFER_LOCAL_P(x) RECORDP (x, symbol_value_buffer_local)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
230
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
231 /* 3. symbol-value-lisp-magic */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
232
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
233 enum lisp_magic_handler
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
234 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
235 MAGIC_HANDLER_GET_VALUE,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
236 MAGIC_HANDLER_SET_VALUE,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
237 MAGIC_HANDLER_BOUND_PREDICATE,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
238 MAGIC_HANDLER_MAKE_UNBOUND,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
239 MAGIC_HANDLER_LOCAL_PREDICATE,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
240 MAGIC_HANDLER_MAKE_LOCAL,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
241 MAGIC_HANDLER_MAX
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
242 };
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
243
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
244 struct symbol_value_lisp_magic
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
245 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
246 struct symbol_value_magic magic;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
247 Lisp_Object handler[MAGIC_HANDLER_MAX];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
248 Lisp_Object harg[MAGIC_HANDLER_MAX];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
249 Lisp_Object shadowed;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
250 };
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 211
diff changeset
251 DECLARE_LRECORD (symbol_value_lisp_magic, struct symbol_value_lisp_magic);
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 211
diff changeset
252 #define XSYMBOL_VALUE_LISP_MAGIC(x) \
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 211
diff changeset
253 XRECORD (x, symbol_value_lisp_magic, struct symbol_value_lisp_magic)
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 211
diff changeset
254 #define SYMBOL_VALUE_LISP_MAGIC_P(x) RECORDP (x, symbol_value_lisp_magic)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
255
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
256 /* 4. symbol-value-varalias */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
257
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
258 struct symbol_value_varalias
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
259 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
260 struct symbol_value_magic magic;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
261 Lisp_Object aliasee;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
262 Lisp_Object shadowed;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
263 };
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 211
diff changeset
264 DECLARE_LRECORD (symbol_value_varalias, struct symbol_value_varalias);
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 211
diff changeset
265 #define XSYMBOL_VALUE_VARALIAS(x) \
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 211
diff changeset
266 XRECORD (x, symbol_value_varalias, struct symbol_value_varalias)
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 211
diff changeset
267 #define SYMBOL_VALUE_VARALIAS_P(x) RECORDP (x, symbol_value_varalias)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
268 #define symbol_value_varalias_aliasee(m) ((m)->aliasee)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
269 #define symbol_value_varalias_shadowed(m) ((m)->shadowed)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
270
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
271 /* To define a Lisp primitive function using a C function `Fname', do this:
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
272 DEFUN ("name, Fname, ...); // at top level in foo.c
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
273 DEFSUBR (Fname); // in syms_of_foo();
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
274 */
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
275 void defsubr (Lisp_Subr *);
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 0
diff changeset
276 #define DEFSUBR(Fname) defsubr (&S##Fname)
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
277
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
278 /* To define a Lisp primitive macro using a C function `Fname', do this:
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
279 DEFUN ("name, Fname, ...); // at top level in foo.c
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
280 DEFSUBR_MACRO (Fname); // in syms_of_foo();
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
281 */
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
282 void defsubr_macro (Lisp_Subr *);
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
283 #define DEFSUBR_MACRO(Fname) defsubr_macro (&S##Fname)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
284
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
285 void defsymbol (Lisp_Object *location, const char *name);
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
286 void defsymbol_nodump (Lisp_Object *location, const char *name);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
287
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
288 void defkeyword (Lisp_Object *location, const char *name);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
289
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
290 void deferror (Lisp_Object *symbol, const char *name,
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
291 const char *message, Lisp_Object inherits_from);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
292
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
293 /* Macros we use to define forwarded Lisp variables.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
294 These are used in the syms_of_FILENAME functions. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
295
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
296 void defvar_magic (const char *symbol_name, const struct symbol_value_forward *magic);
211
78478c60bfcd Import from CVS: tag r20-4b4
cvs
parents: 185
diff changeset
297
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
298 #define DEFVAR_SYMVAL_FWD(lname, c_location, forward_type, magicfun) do { \
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
299 static CONST_IF_NOT_DEBUG struct symbol_value_forward I_hate_C = \
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
300 { /* struct symbol_value_forward */ \
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
301 { /* struct symbol_value_magic */ \
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
302 { /* struct lcrecord_header */ \
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
303 { /* struct lrecord_header */ \
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
304 1, /* type - index into lrecord_implementations_table */ \
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
305 0, /* mark bit */ \
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
306 0, /* c_readonly bit */ \
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
307 0 /* lisp_readonly bit */ \
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
308 }, \
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
309 0, /* next */ \
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
310 0, /* uid */ \
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
311 0 /* free */ \
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
312 }, \
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
313 c_location, \
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
314 forward_type \
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
315 }, \
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
316 magicfun \
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
317 }; \
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
318 defvar_magic ((lname), &I_hate_C); \
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 16
diff changeset
319 } while (0)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
320
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
321 #define DEFVAR_SYMVAL_FWD_INT(lname, c_location, forward_type, magicfun) do{ \
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
322 DEFVAR_SYMVAL_FWD (lname, c_location, forward_type, magicfun); \
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
323 dumpopaque (c_location, sizeof(int)); \
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
324 } while (0)
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
325
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
326 #define DEFVAR_SYMVAL_FWD_OBJECT(lname, c_location, forward_type, magicfun) do{ \
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
327 DEFVAR_SYMVAL_FWD (lname, c_location, forward_type, magicfun); \
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
328 staticpro (c_location); \
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
329 if (EQ (*c_location, Qnull_pointer)) *c_location = Qnil; \
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 16
diff changeset
330 } while (0)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
331
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
332 #define DEFVAR_LISP(lname, c_location) \
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
333 DEFVAR_SYMVAL_FWD_OBJECT (lname, c_location, SYMVAL_OBJECT_FORWARD, 0)
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 16
diff changeset
334 #define DEFVAR_CONST_LISP(lname, c_location) \
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
335 DEFVAR_SYMVAL_FWD_OBJECT (lname, c_location, SYMVAL_CONST_OBJECT_FORWARD, 0)
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 16
diff changeset
336 #define DEFVAR_SPECIFIER(lname, c_location) \
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
337 DEFVAR_SYMVAL_FWD_OBJECT (lname, c_location, SYMVAL_CONST_SPECIFIER_FORWARD, 0)
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 16
diff changeset
338 #define DEFVAR_INT(lname, c_location) \
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
339 DEFVAR_SYMVAL_FWD_INT (lname, c_location, SYMVAL_FIXNUM_FORWARD, 0)
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 16
diff changeset
340 #define DEFVAR_CONST_INT(lname, c_location) \
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
341 DEFVAR_SYMVAL_FWD_INT (lname, c_location, SYMVAL_CONST_FIXNUM_FORWARD, 0)
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 16
diff changeset
342 #define DEFVAR_BOOL(lname, c_location) \
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
343 DEFVAR_SYMVAL_FWD_INT (lname, c_location, SYMVAL_BOOLEAN_FORWARD, 0)
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 16
diff changeset
344 #define DEFVAR_CONST_BOOL(lname, c_location) \
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
345 DEFVAR_SYMVAL_FWD_INT (lname, c_location, SYMVAL_CONST_BOOLEAN_FORWARD, 0)
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
346 #define DEFVAR_LISP_MAGIC(lname, c_location, magicfun) \
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
347 DEFVAR_SYMVAL_FWD_OBJECT (lname, c_location, SYMVAL_OBJECT_FORWARD, magicfun)
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 16
diff changeset
348 #define DEFVAR_INT_MAGIC(lname, c_location, magicfun) \
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
349 DEFVAR_SYMVAL_FWD_INT (lname, c_location, SYMVAL_FIXNUM_FORWARD, magicfun)
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 16
diff changeset
350 #define DEFVAR_BOOL_MAGIC(lname, c_location, magicfun) \
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
351 DEFVAR_SYMVAL_FWD_INT (lname, c_location, SYMVAL_BOOLEAN_FORWARD, magicfun)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
352
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
353 #endif /* INCLUDED_symeval_h_ */