annotate man/lispref/variables.texi @ 0:376386a54a3c r19-14

Import from CVS: tag r19-14
author cvs
date Mon, 13 Aug 2007 08:45:50 +0200
parents
children 70ad99077275
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 @c -*-texinfo-*-
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2 @c This is part of the XEmacs Lisp Reference Manual.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3 @c Copyright (C) 1990, 1991, 1992, 1993, 1994 Free Software Foundation, Inc.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4 @c See the file lispref.texi for copying conditions.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5 @setfilename ../../info/variables.info
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6 @node Variables, Functions, Control Structures, Top
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
7 @chapter Variables
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
8 @cindex variable
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
9
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
10 A @dfn{variable} is a name used in a program to stand for a value.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
11 Nearly all programming languages have variables of some sort. In the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
12 text of a Lisp program, variables are written using the syntax for
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
13 symbols.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
14
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
15 In Lisp, unlike most programming languages, programs are represented
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
16 primarily as Lisp objects and only secondarily as text. The Lisp
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
17 objects used for variables are symbols: the symbol name is the variable
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
18 name, and the variable's value is stored in the value cell of the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
19 symbol. The use of a symbol as a variable is independent of its use as
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
20 a function name. @xref{Symbol Components}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
21
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
22 The Lisp objects that constitute a Lisp program determine the textual
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
23 form of the program---it is simply the read syntax for those Lisp
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
24 objects. This is why, for example, a variable in a textual Lisp program
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
25 is written using the read syntax for the symbol that represents the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
26 variable.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
27
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
28 @menu
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
29 * Global Variables:: Variable values that exist permanently, everywhere.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
30 * Constant Variables:: Certain "variables" have values that never change.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
31 * Local Variables:: Variable values that exist only temporarily.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
32 * Void Variables:: Symbols that lack values.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
33 * Defining Variables:: A definition says a symbol is used as a variable.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
34 * Accessing Variables:: Examining values of variables whose names
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
35 are known only at run time.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
36 * Setting Variables:: Storing new values in variables.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
37 * Variable Scoping:: How Lisp chooses among local and global values.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
38 * Buffer-Local Variables:: Variable values in effect only in one buffer.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
39 * Variable Aliases:: Making one variable point to another.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
40 @end menu
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
41
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
42 @node Global Variables
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
43 @section Global Variables
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
44 @cindex global variable
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
45
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
46 The simplest way to use a variable is @dfn{globally}. This means that
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
47 the variable has just one value at a time, and this value is in effect
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
48 (at least for the moment) throughout the Lisp system. The value remains
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
49 in effect until you specify a new one. When a new value replaces the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
50 old one, no trace of the old value remains in the variable.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
51
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
52 You specify a value for a symbol with @code{setq}. For example,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
53
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
54 @example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
55 (setq x '(a b))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
56 @end example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
57
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
58 @noindent
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
59 gives the variable @code{x} the value @code{(a b)}. Note that
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
60 @code{setq} does not evaluate its first argument, the name of the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
61 variable, but it does evaluate the second argument, the new value.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
62
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
63 Once the variable has a value, you can refer to it by using the symbol
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
64 by itself as an expression. Thus,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
65
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
66 @example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
67 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
68 x @result{} (a b)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
69 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
70 @end example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
71
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
72 @noindent
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
73 assuming the @code{setq} form shown above has already been executed.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
74
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
75 If you do another @code{setq}, the new value replaces the old one:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
76
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
77 @example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
78 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
79 x
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
80 @result{} (a b)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
81 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
82 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
83 (setq x 4)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
84 @result{} 4
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
85 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
86 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
87 x
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
88 @result{} 4
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
89 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
90 @end example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
91
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
92 @node Constant Variables
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
93 @section Variables That Never Change
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
94 @vindex nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
95 @vindex t
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
96 @kindex setting-constant
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
97
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
98 XEmacs Lisp has two special symbols, @code{nil} and @code{t}, that
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
99 always evaluate to themselves. These symbols cannot be rebound, nor can
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
100 their value cells be changed. An attempt to change the value of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
101 @code{nil} or @code{t} signals a @code{setting-constant} error.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
102
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
103 @example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
104 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
105 nil @equiv{} 'nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
106 @result{} nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
107 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
108 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
109 (setq nil 500)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
110 @error{} Attempt to set constant symbol: nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
111 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
112 @end example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
113
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
114 @node Local Variables
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
115 @section Local Variables
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
116 @cindex binding local variables
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
117 @cindex local variables
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
118 @cindex local binding
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
119 @cindex global binding
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
120
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
121 Global variables have values that last until explicitly superseded
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
122 with new values. Sometimes it is useful to create variable values that
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
123 exist temporarily---only while within a certain part of the program.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
124 These values are called @dfn{local}, and the variables so used are
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
125 called @dfn{local variables}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
126
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
127 For example, when a function is called, its argument variables receive
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
128 new local values that last until the function exits. The @code{let}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
129 special form explicitly establishes new local values for specified
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
130 variables; these last until exit from the @code{let} form.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
131
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
132 @cindex shadowing of variables
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
133 Establishing a local value saves away the previous value (or lack of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
134 one) of the variable. When the life span of the local value is over,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
135 the previous value is restored. In the mean time, we say that the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
136 previous value is @dfn{shadowed} and @dfn{not visible}. Both global and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
137 local values may be shadowed (@pxref{Scope}).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
138
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
139 If you set a variable (such as with @code{setq}) while it is local,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
140 this replaces the local value; it does not alter the global value, or
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
141 previous local values that are shadowed. To model this behavior, we
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
142 speak of a @dfn{local binding} of the variable as well as a local value.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
143
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
144 The local binding is a conceptual place that holds a local value.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
145 Entry to a function, or a special form such as @code{let}, creates the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
146 local binding; exit from the function or from the @code{let} removes the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
147 local binding. As long as the local binding lasts, the variable's value
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
148 is stored within it. Use of @code{setq} or @code{set} while there is a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
149 local binding stores a different value into the local binding; it does
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
150 not create a new binding.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
151
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
152 We also speak of the @dfn{global binding}, which is where
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
153 (conceptually) the global value is kept.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
154
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
155 @cindex current binding
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
156 A variable can have more than one local binding at a time (for
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
157 example, if there are nested @code{let} forms that bind it). In such a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
158 case, the most recently created local binding that still exists is the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
159 @dfn{current binding} of the variable. (This is called @dfn{dynamic
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
160 scoping}; see @ref{Variable Scoping}.) If there are no local bindings,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
161 the variable's global binding is its current binding. We also call the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
162 current binding the @dfn{most-local existing binding}, for emphasis.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
163 Ordinary evaluation of a symbol always returns the value of its current
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
164 binding.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
165
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
166 The special forms @code{let} and @code{let*} exist to create
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
167 local bindings.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
168
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
169 @defspec let (bindings@dots{}) forms@dots{}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
170 This special form binds variables according to @var{bindings} and then
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
171 evaluates all of the @var{forms} in textual order. The @code{let}-form
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
172 returns the value of the last form in @var{forms}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
173
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
174 Each of the @var{bindings} is either @w{(i) a} symbol, in which case
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
175 that symbol is bound to @code{nil}; or @w{(ii) a} list of the form
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
176 @code{(@var{symbol} @var{value-form})}, in which case @var{symbol} is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
177 bound to the result of evaluating @var{value-form}. If @var{value-form}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
178 is omitted, @code{nil} is used.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
179
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
180 All of the @var{value-form}s in @var{bindings} are evaluated in the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
181 order they appear and @emph{before} any of the symbols are bound. Here
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
182 is an example of this: @code{Z} is bound to the old value of @code{Y},
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
183 which is 2, not the new value, 1.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
184
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
185 @example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
186 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
187 (setq Y 2)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
188 @result{} 2
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
189 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
190 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
191 (let ((Y 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
192 (Z Y))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
193 (list Y Z))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
194 @result{} (1 2)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
195 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
196 @end example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
197 @end defspec
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
198
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
199 @defspec let* (bindings@dots{}) forms@dots{}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
200 This special form is like @code{let}, but it binds each variable right
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
201 after computing its local value, before computing the local value for
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
202 the next variable. Therefore, an expression in @var{bindings} can
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
203 reasonably refer to the preceding symbols bound in this @code{let*}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
204 form. Compare the following example with the example above for
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
205 @code{let}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
206
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
207 @example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
208 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
209 (setq Y 2)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
210 @result{} 2
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
211 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
212 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
213 (let* ((Y 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
214 (Z Y)) ; @r{Use the just-established value of @code{Y}.}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
215 (list Y Z))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
216 @result{} (1 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
217 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
218 @end example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
219 @end defspec
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
220
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
221 Here is a complete list of the other facilities that create local
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
222 bindings:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
223
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
224 @itemize @bullet
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
225 @item
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
226 Function calls (@pxref{Functions}).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
227
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
228 @item
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
229 Macro calls (@pxref{Macros}).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
230
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
231 @item
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
232 @code{condition-case} (@pxref{Errors}).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
233 @end itemize
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
234
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
235 Variables can also have buffer-local bindings (@pxref{Buffer-Local
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
236 Variables}). These kinds of bindings work somewhat like ordinary local
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
237 bindings, but they are localized depending on ``where'' you are in
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
238 Emacs, rather than localized in time.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
239
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
240 @defvar max-specpdl-size
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
241 @cindex variable limit error
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
242 @cindex evaluation error
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
243 @cindex infinite recursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
244 This variable defines the limit on the total number of local variable
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
245 bindings and @code{unwind-protect} cleanups (@pxref{Nonlocal Exits})
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
246 that are allowed before signaling an error (with data @code{"Variable
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
247 binding depth exceeds max-specpdl-size"}).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
248
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
249 This limit, with the associated error when it is exceeded, is one way
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
250 that Lisp avoids infinite recursion on an ill-defined function.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
251
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
252 The default value is 600.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
253
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
254 @code{max-lisp-eval-depth} provides another limit on depth of nesting.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
255 @xref{Eval}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
256 @end defvar
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
257
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
258 @node Void Variables
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
259 @section When a Variable is ``Void''
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
260 @kindex void-variable
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
261 @cindex void variable
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
262
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
263 If you have never given a symbol any value as a global variable, we
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
264 say that that symbol's global value is @dfn{void}. In other words, the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
265 symbol's value cell does not have any Lisp object in it. If you try to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
266 evaluate the symbol, you get a @code{void-variable} error rather than
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
267 a value.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
268
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
269 Note that a value of @code{nil} is not the same as void. The symbol
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
270 @code{nil} is a Lisp object and can be the value of a variable just as any
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
271 other object can be; but it is @emph{a value}. A void variable does not
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
272 have any value.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
273
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
274 After you have given a variable a value, you can make it void once more
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
275 using @code{makunbound}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
276
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
277 @defun makunbound symbol
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
278 This function makes the current binding of @var{symbol} void.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
279 Subsequent attempts to use this symbol's value as a variable will signal
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
280 the error @code{void-variable}, unless or until you set it again.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
281
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
282 @code{makunbound} returns @var{symbol}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
283
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
284 @example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
285 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
286 (makunbound 'x) ; @r{Make the global value}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
287 ; @r{of @code{x} void.}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
288 @result{} x
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
289 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
290 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
291 x
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
292 @error{} Symbol's value as variable is void: x
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
293 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
294 @end example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
295
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
296 If @var{symbol} is locally bound, @code{makunbound} affects the most
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
297 local existing binding. This is the only way a symbol can have a void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
298 local binding, since all the constructs that create local bindings
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
299 create them with values. In this case, the voidness lasts at most as
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
300 long as the binding does; when the binding is removed due to exit from
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
301 the construct that made it, the previous or global binding is reexposed
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
302 as usual, and the variable is no longer void unless the newly reexposed
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
303 binding was void all along.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
304
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
305 @smallexample
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
306 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
307 (setq x 1) ; @r{Put a value in the global binding.}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
308 @result{} 1
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
309 (let ((x 2)) ; @r{Locally bind it.}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
310 (makunbound 'x) ; @r{Void the local binding.}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
311 x)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
312 @error{} Symbol's value as variable is void: x
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
313 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
314 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
315 x ; @r{The global binding is unchanged.}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
316 @result{} 1
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
317
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
318 (let ((x 2)) ; @r{Locally bind it.}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
319 (let ((x 3)) ; @r{And again.}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
320 (makunbound 'x) ; @r{Void the innermost-local binding.}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
321 x)) ; @r{And refer: it's void.}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
322 @error{} Symbol's value as variable is void: x
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
323 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
324
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
325 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
326 (let ((x 2))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
327 (let ((x 3))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
328 (makunbound 'x)) ; @r{Void inner binding, then remove it.}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
329 x) ; @r{Now outer @code{let} binding is visible.}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
330 @result{} 2
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
331 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
332 @end smallexample
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
333 @end defun
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
334
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
335 A variable that has been made void with @code{makunbound} is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
336 indistinguishable from one that has never received a value and has
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
337 always been void.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
338
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
339 You can use the function @code{boundp} to test whether a variable is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
340 currently void.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
341
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
342 @defun boundp variable
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
343 @code{boundp} returns @code{t} if @var{variable} (a symbol) is not void;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
344 more precisely, if its current binding is not void. It returns
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
345 @code{nil} otherwise.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
346
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
347 @smallexample
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
348 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
349 (boundp 'abracadabra) ; @r{Starts out void.}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
350 @result{} nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
351 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
352 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
353 (let ((abracadabra 5)) ; @r{Locally bind it.}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
354 (boundp 'abracadabra))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
355 @result{} t
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
356 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
357 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
358 (boundp 'abracadabra) ; @r{Still globally void.}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
359 @result{} nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
360 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
361 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
362 (setq abracadabra 5) ; @r{Make it globally nonvoid.}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
363 @result{} 5
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
364 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
365 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
366 (boundp 'abracadabra)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
367 @result{} t
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
368 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
369 @end smallexample
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
370 @end defun
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
371
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
372 @node Defining Variables
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
373 @section Defining Global Variables
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
374 @cindex variable definition
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
375
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
376 You may announce your intention to use a symbol as a global variable
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
377 with a @dfn{variable definition}: a special form, either @code{defconst}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
378 or @code{defvar}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
379
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
380 In XEmacs Lisp, definitions serve three purposes. First, they inform
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
381 people who read the code that certain symbols are @emph{intended} to be
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
382 used a certain way (as variables). Second, they inform the Lisp system
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
383 of these things, supplying a value and documentation. Third, they
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
384 provide information to utilities such as @code{etags} and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
385 @code{make-docfile}, which create data bases of the functions and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
386 variables in a program.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
387
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
388 The difference between @code{defconst} and @code{defvar} is primarily
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
389 a matter of intent, serving to inform human readers of whether programs
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
390 will change the variable. XEmacs Lisp does not restrict the ways in
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
391 which a variable can be used based on @code{defconst} or @code{defvar}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
392 declarations. However, it does make a difference for initialization:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
393 @code{defconst} unconditionally initializes the variable, while
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
394 @code{defvar} initializes it only if it is void.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
395
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
396 One would expect user option variables to be defined with
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
397 @code{defconst}, since programs do not change them. Unfortunately, this
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
398 has bad results if the definition is in a library that is not preloaded:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
399 @code{defconst} would override any prior value when the library is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
400 loaded. Users would like to be able to set user options in their init
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
401 files, and override the default values given in the definitions. For
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
402 this reason, user options must be defined with @code{defvar}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
403
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
404 @defspec defvar symbol [value [doc-string]]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
405 This special form defines @var{symbol} as a value and initializes it.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
406 The definition informs a person reading your code that @var{symbol} is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
407 used as a variable that programs are likely to set or change. It is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
408 also used for all user option variables except in the preloaded parts of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
409 XEmacs. Note that @var{symbol} is not evaluated; the symbol to be
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
410 defined must appear explicitly in the @code{defvar}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
411
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
412 If @var{symbol} already has a value (i.e., it is not void), @var{value}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
413 is not even evaluated, and @var{symbol}'s value remains unchanged. If
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
414 @var{symbol} is void and @var{value} is specified, @code{defvar}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
415 evaluates it and sets @var{symbol} to the result. (If @var{value} is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
416 omitted, the value of @var{symbol} is not changed in any case.)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
417
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
418 When you evaluate a top-level @code{defvar} form with @kbd{C-M-x} in
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
419 Emacs Lisp mode (@code{eval-defun}), a special feature of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
420 @code{eval-defun} evaluates it as a @code{defconst}. The purpose of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
421 this is to make sure the variable's value is reinitialized, when you ask
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
422 for it specifically.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
423
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
424 If @var{symbol} has a buffer-local binding in the current buffer,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
425 @code{defvar} sets the default value, not the local value.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
426 @xref{Buffer-Local Variables}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
427
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
428 If the @var{doc-string} argument appears, it specifies the documentation
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
429 for the variable. (This opportunity to specify documentation is one of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
430 the main benefits of defining the variable.) The documentation is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
431 stored in the symbol's @code{variable-documentation} property. The
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
432 XEmacs help functions (@pxref{Documentation}) look for this property.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
433
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
434 If the first character of @var{doc-string} is @samp{*}, it means that
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
435 this variable is considered a user option. This lets users set the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
436 variable conventiently using the commands @code{set-variable} and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
437 @code{edit-options}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
438
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
439 For example, this form defines @code{foo} but does not set its value:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
440
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
441 @example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
442 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
443 (defvar foo)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
444 @result{} foo
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
445 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
446 @end example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
447
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
448 The following example sets the value of @code{bar} to @code{23}, and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
449 gives it a documentation string:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
450
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
451 @example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
452 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
453 (defvar bar 23
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
454 "The normal weight of a bar.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
455 @result{} bar
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
456 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
457 @end example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
458
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
459 The following form changes the documentation string for @code{bar},
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
460 making it a user option, but does not change the value, since @code{bar}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
461 already has a value. (The addition @code{(1+ 23)} is not even
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
462 performed.)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
463
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
464 @example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
465 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
466 (defvar bar (1+ 23)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
467 "*The normal weight of a bar.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
468 @result{} bar
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
469 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
470 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
471 bar
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
472 @result{} 23
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
473 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
474 @end example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
475
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
476 Here is an equivalent expression for the @code{defvar} special form:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
477
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
478 @example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
479 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
480 (defvar @var{symbol} @var{value} @var{doc-string})
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
481 @equiv{}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
482 (progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
483 (if (not (boundp '@var{symbol}))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
484 (setq @var{symbol} @var{value}))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
485 (put '@var{symbol} 'variable-documentation '@var{doc-string})
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
486 '@var{symbol})
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
487 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
488 @end example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
489
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
490 The @code{defvar} form returns @var{symbol}, but it is normally used
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
491 at top level in a file where its value does not matter.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
492 @end defspec
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
493
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
494 @defspec defconst symbol [value [doc-string]]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
495 This special form defines @var{symbol} as a value and initializes it.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
496 It informs a person reading your code that @var{symbol} has a global
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
497 value, established here, that will not normally be changed or locally
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
498 bound by the execution of the program. The user, however, may be
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
499 welcome to change it. Note that @var{symbol} is not evaluated; the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
500 symbol to be defined must appear explicitly in the @code{defconst}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
501
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
502 @code{defconst} always evaluates @var{value} and sets the global value
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
503 of @var{symbol} to the result, provided @var{value} is given. If
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
504 @var{symbol} has a buffer-local binding in the current buffer,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
505 @code{defconst} sets the default value, not the local value.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
506
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
507 @strong{Please note:} Don't use @code{defconst} for user option
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
508 variables in libraries that are not standardly preloaded. The user
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
509 should be able to specify a value for such a variable in the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
510 @file{.emacs} file, so that it will be in effect if and when the library
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
511 is loaded later.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
512
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
513 Here, @code{pi} is a constant that presumably ought not to be changed
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
514 by anyone (attempts by the Indiana State Legislature notwithstanding).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
515 As the second form illustrates, however, this is only advisory.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
516
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
517 @example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
518 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
519 (defconst pi 3.1415 "Pi to five places.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
520 @result{} pi
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
521 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
522 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
523 (setq pi 3)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
524 @result{} pi
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
525 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
526 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
527 pi
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
528 @result{} 3
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
529 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
530 @end example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
531 @end defspec
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
532
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
533 @defun user-variable-p variable
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
534 @cindex user option
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
535 This function returns @code{t} if @var{variable} is a user option---a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
536 variable intended to be set by the user for customization---and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
537 @code{nil} otherwise. (Variables other than user options exist for the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
538 internal purposes of Lisp programs, and users need not know about them.)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
539
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
540 User option variables are distinguished from other variables by the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
541 first character of the @code{variable-documentation} property. If the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
542 property exists and is a string, and its first character is @samp{*},
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
543 then the variable is a user option.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
544 @end defun
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
545
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
546 If a user option variable has a @code{variable-interactive} property,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
547 the @code{set-variable} command uses that value to control reading the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
548 new value for the variable. The property's value is used as if it were
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
549 the argument to @code{interactive}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
550
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
551 @strong{Warning:} If the @code{defconst} and @code{defvar} special
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
552 forms are used while the variable has a local binding, they set the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
553 local binding's value; the global binding is not changed. This is not
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
554 what we really want. To prevent it, use these special forms at top
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
555 level in a file, where normally no local binding is in effect, and make
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
556 sure to load the file before making a local binding for the variable.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
557
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
558 @node Accessing Variables
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
559 @section Accessing Variable Values
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
560
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
561 The usual way to reference a variable is to write the symbol which
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
562 names it (@pxref{Symbol Forms}). This requires you to specify the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
563 variable name when you write the program. Usually that is exactly what
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
564 you want to do. Occasionally you need to choose at run time which
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
565 variable to reference; then you can use @code{symbol-value}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
566
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
567 @defun symbol-value symbol
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
568 This function returns the value of @var{symbol}. This is the value in
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
569 the innermost local binding of the symbol, or its global value if it
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
570 has no local bindings.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
571
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
572 @example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
573 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
574 (setq abracadabra 5)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
575 @result{} 5
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
576 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
577 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
578 (setq foo 9)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
579 @result{} 9
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
580 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
581
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
582 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
583 ;; @r{Here the symbol @code{abracadabra}}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
584 ;; @r{is the symbol whose value is examined.}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
585 (let ((abracadabra 'foo))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
586 (symbol-value 'abracadabra))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
587 @result{} foo
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
588 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
589
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
590 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
591 ;; @r{Here the value of @code{abracadabra},}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
592 ;; @r{which is @code{foo},}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
593 ;; @r{is the symbol whose value is examined.}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
594 (let ((abracadabra 'foo))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
595 (symbol-value abracadabra))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
596 @result{} 9
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
597 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
598
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
599 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
600 (symbol-value 'abracadabra)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
601 @result{} 5
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
602 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
603 @end example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
604
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
605 A @code{void-variable} error is signaled if @var{symbol} has neither a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
606 local binding nor a global value.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
607 @end defun
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
608
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
609 @node Setting Variables
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
610 @section How to Alter a Variable Value
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
611
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
612 The usual way to change the value of a variable is with the special
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
613 form @code{setq}. When you need to compute the choice of variable at
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
614 run time, use the function @code{set}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
615
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
616 @defspec setq [symbol form]@dots{}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
617 This special form is the most common method of changing a variable's
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
618 value. Each @var{symbol} is given a new value, which is the result of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
619 evaluating the corresponding @var{form}. The most-local existing
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
620 binding of the symbol is changed.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
621
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
622 @code{setq} does not evaluate @var{symbol}; it sets the symbol that you
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
623 write. We say that this argument is @dfn{automatically quoted}. The
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
624 @samp{q} in @code{setq} stands for ``quoted.''
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
625
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
626 The value of the @code{setq} form is the value of the last @var{form}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
627
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
628 @example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
629 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
630 (setq x (1+ 2))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
631 @result{} 3
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
632 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
633 x ; @r{@code{x} now has a global value.}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
634 @result{} 3
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
635 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
636 (let ((x 5))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
637 (setq x 6) ; @r{The local binding of @code{x} is set.}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
638 x)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
639 @result{} 6
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
640 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
641 x ; @r{The global value is unchanged.}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
642 @result{} 3
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
643 @end example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
644
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
645 Note that the first @var{form} is evaluated, then the first
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
646 @var{symbol} is set, then the second @var{form} is evaluated, then the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
647 second @var{symbol} is set, and so on:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
648
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
649 @example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
650 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
651 (setq x 10 ; @r{Notice that @code{x} is set before}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
652 y (1+ x)) ; @r{the value of @code{y} is computed.}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
653 @result{} 11
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
654 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
655 @end example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
656 @end defspec
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
657
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
658 @defun set symbol value
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
659 This function sets @var{symbol}'s value to @var{value}, then returns
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
660 @var{value}. Since @code{set} is a function, the expression written for
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
661 @var{symbol} is evaluated to obtain the symbol to set.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
662
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
663 The most-local existing binding of the variable is the binding that is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
664 set; shadowed bindings are not affected.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
665
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
666 @example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
667 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
668 (set one 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
669 @error{} Symbol's value as variable is void: one
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
670 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
671 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
672 (set 'one 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
673 @result{} 1
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
674 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
675 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
676 (set 'two 'one)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
677 @result{} one
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
678 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
679 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
680 (set two 2) ; @r{@code{two} evaluates to symbol @code{one}.}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
681 @result{} 2
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
682 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
683 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
684 one ; @r{So it is @code{one} that was set.}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
685 @result{} 2
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
686 (let ((one 1)) ; @r{This binding of @code{one} is set,}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
687 (set 'one 3) ; @r{not the global value.}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
688 one)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
689 @result{} 3
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
690 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
691 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
692 one
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
693 @result{} 2
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
694 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
695 @end example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
696
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
697 If @var{symbol} is not actually a symbol, a @code{wrong-type-argument}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
698 error is signaled.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
699
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
700 @example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
701 (set '(x y) 'z)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
702 @error{} Wrong type argument: symbolp, (x y)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
703 @end example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
704
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
705 Logically speaking, @code{set} is a more fundamental primitive than
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
706 @code{setq}. Any use of @code{setq} can be trivially rewritten to use
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
707 @code{set}; @code{setq} could even be defined as a macro, given the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
708 availability of @code{set}. However, @code{set} itself is rarely used;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
709 beginners hardly need to know about it. It is useful only for choosing
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
710 at run time which variable to set. For example, the command
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
711 @code{set-variable}, which reads a variable name from the user and then
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
712 sets the variable, needs to use @code{set}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
713
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
714 @cindex CL note---@code{set} local
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
715 @quotation
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
716 @b{Common Lisp note:} In Common Lisp, @code{set} always changes the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
717 symbol's special value, ignoring any lexical bindings. In XEmacs Lisp,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
718 all variables and all bindings are (in effect) special, so @code{set}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
719 always affects the most local existing binding.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
720 @end quotation
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
721 @end defun
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
722
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
723 One other function for setting a variable is designed to add
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
724 an element to a list if it is not already present in the list.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
725
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
726 @defun add-to-list symbol element
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
727 This function sets the variable @var{symbol} by consing @var{element}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
728 onto the old value, if @var{element} is not already a member of that
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
729 value. It returns the resulting list, whether updated or not. The
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
730 value of @var{symbol} had better be a list already before the call.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
731
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
732 The argument @var{symbol} is not implicitly quoted; @code{add-to-list}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
733 is an ordinary function, like @code{set} and unlike @code{setq}. Quote
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
734 the argument yourself if that is what you want.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
735
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
736 Here's a scenario showing how to use @code{add-to-list}:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
737
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
738 @example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
739 (setq foo '(a b))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
740 @result{} (a b)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
741
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
742 (add-to-list 'foo 'c) ;; @r{Add @code{c}.}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
743 @result{} (c a b)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
744
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
745 (add-to-list 'foo 'b) ;; @r{No effect.}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
746 @result{} (c a b)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
747
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
748 foo ;; @r{@code{foo} was changed.}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
749 @result{} (c a b)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
750 @end example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
751 @end defun
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
752
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
753 An equivalent expression for @code{(add-to-list '@var{var}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
754 @var{value})} is this:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
755
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
756 @example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
757 (or (member @var{value} @var{var})
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
758 (setq @var{var} (cons @var{value} @var{var})))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
759 @end example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
760
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
761 @node Variable Scoping
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
762 @section Scoping Rules for Variable Bindings
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
763
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
764 A given symbol @code{foo} may have several local variable bindings,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
765 established at different places in the Lisp program, as well as a global
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
766 binding. The most recently established binding takes precedence over
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
767 the others.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
768
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
769 @cindex scope
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
770 @cindex extent
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
771 @cindex dynamic scoping
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
772 Local bindings in XEmacs Lisp have @dfn{indefinite scope} and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
773 @dfn{dynamic extent}. @dfn{Scope} refers to @emph{where} textually in
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
774 the source code the binding can be accessed. Indefinite scope means
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
775 that any part of the program can potentially access the variable
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
776 binding. @dfn{Extent} refers to @emph{when}, as the program is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
777 executing, the binding exists. Dynamic extent means that the binding
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
778 lasts as long as the activation of the construct that established it.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
779
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
780 The combination of dynamic extent and indefinite scope is called
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
781 @dfn{dynamic scoping}. By contrast, most programming languages use
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
782 @dfn{lexical scoping}, in which references to a local variable must be
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
783 located textually within the function or block that binds the variable.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
784
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
785 @cindex CL note---special variables
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
786 @quotation
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
787 @b{Common Lisp note:} Variables declared ``special'' in Common Lisp
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
788 are dynamically scoped, like variables in XEmacs Lisp.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
789 @end quotation
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
790
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
791 @menu
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
792 * Scope:: Scope means where in the program a value is visible.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
793 Comparison with other languages.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
794 * Extent:: Extent means how long in time a value exists.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
795 * Impl of Scope:: Two ways to implement dynamic scoping.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
796 * Using Scoping:: How to use dynamic scoping carefully and avoid problems.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
797 @end menu
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
798
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
799 @node Scope
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
800 @subsection Scope
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
801
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
802 XEmacs Lisp uses @dfn{indefinite scope} for local variable bindings.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
803 This means that any function anywhere in the program text might access a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
804 given binding of a variable. Consider the following function
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
805 definitions:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
806
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
807 @example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
808 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
809 (defun binder (x) ; @r{@code{x} is bound in @code{binder}.}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
810 (foo 5)) ; @r{@code{foo} is some other function.}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
811 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
812
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
813 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
814 (defun user () ; @r{@code{x} is used in @code{user}.}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
815 (list x))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
816 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
817 @end example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
818
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
819 In a lexically scoped language, the binding of @code{x} in
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
820 @code{binder} would never be accessible in @code{user}, because
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
821 @code{user} is not textually contained within the function
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
822 @code{binder}. However, in dynamically scoped XEmacs Lisp, @code{user}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
823 may or may not refer to the binding of @code{x} established in
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
824 @code{binder}, depending on circumstances:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
825
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
826 @itemize @bullet
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
827 @item
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
828 If we call @code{user} directly without calling @code{binder} at all,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
829 then whatever binding of @code{x} is found, it cannot come from
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
830 @code{binder}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
831
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
832 @item
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
833 If we define @code{foo} as follows and call @code{binder}, then the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
834 binding made in @code{binder} will be seen in @code{user}:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
835
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
836 @example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
837 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
838 (defun foo (lose)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
839 (user))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
840 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
841 @end example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
842
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
843 @item
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
844 If we define @code{foo} as follows and call @code{binder}, then the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
845 binding made in @code{binder} @emph{will not} be seen in @code{user}:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
846
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
847 @example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
848 (defun foo (x)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
849 (user))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
850 @end example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
851
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
852 @noindent
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
853 Here, when @code{foo} is called by @code{binder}, it binds @code{x}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
854 (The binding in @code{foo} is said to @dfn{shadow} the one made in
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
855 @code{binder}.) Therefore, @code{user} will access the @code{x} bound
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
856 by @code{foo} instead of the one bound by @code{binder}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
857 @end itemize
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
858
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
859 @node Extent
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
860 @subsection Extent
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
861
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
862 @dfn{Extent} refers to the time during program execution that a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
863 variable name is valid. In XEmacs Lisp, a variable is valid only while
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
864 the form that bound it is executing. This is called @dfn{dynamic
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
865 extent}. ``Local'' or ``automatic'' variables in most languages,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
866 including C and Pascal, have dynamic extent.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
867
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
868 One alternative to dynamic extent is @dfn{indefinite extent}. This
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
869 means that a variable binding can live on past the exit from the form
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
870 that made the binding. Common Lisp and Scheme, for example, support
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
871 this, but XEmacs Lisp does not.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
872
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
873 To illustrate this, the function below, @code{make-add}, returns a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
874 function that purports to add @var{n} to its own argument @var{m}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
875 This would work in Common Lisp, but it does not work as intended in
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
876 XEmacs Lisp, because after the call to @code{make-add} exits, the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
877 variable @code{n} is no longer bound to the actual argument 2.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
878
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
879 @example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
880 (defun make-add (n)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
881 (function (lambda (m) (+ n m)))) ; @r{Return a function.}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
882 @result{} make-add
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
883 (fset 'add2 (make-add 2)) ; @r{Define function @code{add2}}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
884 ; @r{with @code{(make-add 2)}.}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
885 @result{} (lambda (m) (+ n m))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
886 (add2 4) ; @r{Try to add 2 to 4.}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
887 @error{} Symbol's value as variable is void: n
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
888 @end example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
889
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
890 @cindex closures not available
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
891 Some Lisp dialects have ``closures'', objects that are like functions
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
892 but record additional variable bindings. XEmacs Lisp does not have
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
893 closures.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
894
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
895 @node Impl of Scope
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
896 @subsection Implementation of Dynamic Scoping
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
897 @cindex deep binding
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
898
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
899 A simple sample implementation (which is not how XEmacs Lisp actually
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
900 works) may help you understand dynamic binding. This technique is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
901 called @dfn{deep binding} and was used in early Lisp systems.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
902
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
903 Suppose there is a stack of bindings: variable-value pairs. At entry
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
904 to a function or to a @code{let} form, we can push bindings on the stack
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
905 for the arguments or local variables created there. We can pop those
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
906 bindings from the stack at exit from the binding construct.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
907
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
908 We can find the value of a variable by searching the stack from top to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
909 bottom for a binding for that variable; the value from that binding is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
910 the value of the variable. To set the variable, we search for the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
911 current binding, then store the new value into that binding.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
912
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
913 As you can see, a function's bindings remain in effect as long as it
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
914 continues execution, even during its calls to other functions. That is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
915 why we say the extent of the binding is dynamic. And any other function
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
916 can refer to the bindings, if it uses the same variables while the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
917 bindings are in effect. That is why we say the scope is indefinite.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
918
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
919 @cindex shallow binding
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
920 The actual implementation of variable scoping in XEmacs Lisp uses a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
921 technique called @dfn{shallow binding}. Each variable has a standard
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
922 place in which its current value is always found---the value cell of the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
923 symbol.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
924
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
925 In shallow binding, setting the variable works by storing a value in
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
926 the value cell. Creating a new binding works by pushing the old value
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
927 (belonging to a previous binding) on a stack, and storing the local value
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
928 in the value cell. Eliminating a binding works by popping the old value
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
929 off the stack, into the value cell.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
930
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
931 We use shallow binding because it has the same results as deep
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
932 binding, but runs faster, since there is never a need to search for a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
933 binding.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
934
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
935 @node Using Scoping
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
936 @subsection Proper Use of Dynamic Scoping
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
937
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
938 Binding a variable in one function and using it in another is a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
939 powerful technique, but if used without restraint, it can make programs
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
940 hard to understand. There are two clean ways to use this technique:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
941
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
942 @itemize @bullet
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
943 @item
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
944 Use or bind the variable only in a few related functions, written close
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
945 together in one file. Such a variable is used for communication within
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
946 one program.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
947
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
948 You should write comments to inform other programmers that they can see
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
949 all uses of the variable before them, and to advise them not to add uses
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
950 elsewhere.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
951
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
952 @item
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
953 Give the variable a well-defined, documented meaning, and make all
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
954 appropriate functions refer to it (but not bind it or set it) wherever
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
955 that meaning is relevant. For example, the variable
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
956 @code{case-fold-search} is defined as ``non-@code{nil} means ignore case
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
957 when searching''; various search and replace functions refer to it
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
958 directly or through their subroutines, but do not bind or set it.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
959
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
960 Then you can bind the variable in other programs, knowing reliably what
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
961 the effect will be.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
962 @end itemize
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
963
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
964 In either case, you should define the variable with @code{defvar}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
965 This helps other people understand your program by telling them to look
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
966 for inter-function usage. It also avoids a warning from the byte
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
967 compiler. Choose the variable's name to avoid name conflicts---don't
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
968 use short names like @code{x}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
969
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
970 @node Buffer-Local Variables
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
971 @section Buffer-Local Variables
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
972 @cindex variables, buffer-local
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
973 @cindex buffer-local variables
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
974
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
975 Global and local variable bindings are found in most programming
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
976 languages in one form or another. XEmacs also supports another, unusual
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
977 kind of variable binding: @dfn{buffer-local} bindings, which apply only
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
978 to one buffer. XEmacs Lisp is meant for programming editing commands,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
979 and having different values for a variable in different buffers is an
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
980 important customization method.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
981
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
982 @menu
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
983 * Intro to Buffer-Local:: Introduction and concepts.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
984 * Creating Buffer-Local:: Creating and destroying buffer-local bindings.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
985 * Default Value:: The default value is seen in buffers
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
986 that don't have their own local values.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
987 @end menu
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
988
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
989 @node Intro to Buffer-Local
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
990 @subsection Introduction to Buffer-Local Variables
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
991
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
992 A buffer-local variable has a buffer-local binding associated with a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
993 particular buffer. The binding is in effect when that buffer is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
994 current; otherwise, it is not in effect. If you set the variable while
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
995 a buffer-local binding is in effect, the new value goes in that binding,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
996 so the global binding is unchanged; this means that the change is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
997 visible in that buffer alone.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
998
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
999 A variable may have buffer-local bindings in some buffers but not in
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1000 others. The global binding is shared by all the buffers that don't have
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1001 their own bindings. Thus, if you set the variable in a buffer that does
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1002 not have a buffer-local binding for it, the new value is visible in all
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1003 buffers except those with buffer-local bindings. (Here we are assuming
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1004 that there are no @code{let}-style local bindings to complicate the issue.)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1005
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1006 The most common use of buffer-local bindings is for major modes to change
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1007 variables that control the behavior of commands. For example, C mode and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1008 Lisp mode both set the variable @code{paragraph-start} to specify that only
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1009 blank lines separate paragraphs. They do this by making the variable
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1010 buffer-local in the buffer that is being put into C mode or Lisp mode, and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1011 then setting it to the new value for that mode.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1012
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1013 The usual way to make a buffer-local binding is with
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1014 @code{make-local-variable}, which is what major mode commands use. This
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1015 affects just the current buffer; all other buffers (including those yet to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1016 be created) continue to share the global value.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1017
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1018 @cindex automatically buffer-local
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1019 A more powerful operation is to mark the variable as
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1020 @dfn{automatically buffer-local} by calling
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1021 @code{make-variable-buffer-local}. You can think of this as making the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1022 variable local in all buffers, even those yet to be created. More
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1023 precisely, the effect is that setting the variable automatically makes
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1024 the variable local to the current buffer if it is not already so. All
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1025 buffers start out by sharing the global value of the variable as usual,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1026 but any @code{setq} creates a buffer-local binding for the current
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1027 buffer. The new value is stored in the buffer-local binding, leaving
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1028 the (default) global binding untouched. The global value can no longer
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1029 be changed with @code{setq}; you need to use @code{setq-default} to do
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1030 that.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1031
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1032 @ignore
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1033 Section about not changing buffers during let bindings. Mly fixed
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1034 this for XEmacs.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1035 @end ignore
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1036 Local variables in a file you edit are also represented by
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1037 buffer-local bindings for the buffer that holds the file within XEmacs.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1038 @xref{Auto Major Mode}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1039
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1040 @node Creating Buffer-Local
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1041 @subsection Creating and Deleting Buffer-Local Bindings
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1042
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1043 @deffn Command make-local-variable variable
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1044 This function creates a buffer-local binding in the current buffer for
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1045 @var{variable} (a symbol). Other buffers are not affected. The value
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1046 returned is @var{variable}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1047
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1048 @c Emacs 19 feature
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1049 The buffer-local value of @var{variable} starts out as the same value
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1050 @var{variable} previously had. If @var{variable} was void, it remains
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1051 void.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1052
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1053 @example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1054 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1055 ;; @r{In buffer @samp{b1}:}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1056 (setq foo 5) ; @r{Affects all buffers.}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1057 @result{} 5
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1058 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1059 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1060 (make-local-variable 'foo) ; @r{Now it is local in @samp{b1}.}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1061 @result{} foo
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1062 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1063 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1064 foo ; @r{That did not change}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1065 @result{} 5 ; @r{the value.}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1066 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1067 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1068 (setq foo 6) ; @r{Change the value}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1069 @result{} 6 ; @r{in @samp{b1}.}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1070 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1071 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1072 foo
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1073 @result{} 6
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1074 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1075
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1076 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1077 ;; @r{In buffer @samp{b2}, the value hasn't changed.}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1078 (save-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1079 (set-buffer "b2")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1080 foo)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1081 @result{} 5
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1082 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1083 @end example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1084
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1085 Making a variable buffer-local within a @code{let}-binding for that
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1086 variable does not work. This is because @code{let} does not distinguish
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1087 between different kinds of bindings; it knows only which variable the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1088 binding was made for.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1089
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1090 @strong{Note:} do not use @code{make-local-variable} for a hook
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1091 variable. Instead, use @code{make-local-hook}. @xref{Hooks}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1092 @end deffn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1093
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1094 @deffn Command make-variable-buffer-local variable
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1095 This function marks @var{variable} (a symbol) automatically
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1096 buffer-local, so that any subsequent attempt to set it will make it
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1097 local to the current buffer at the time.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1098
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1099 The value returned is @var{variable}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1100 @end deffn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1101
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1102 @defun local-variable-p variable &optional buffer
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1103 This returns @code{t} if @var{variable} is buffer-local in buffer
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1104 @var{buffer} (which defaults to the current buffer); otherwise,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1105 @code{nil}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1106 @end defun
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1107
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1108 @defun buffer-local-variables &optional buffer
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1109 This function returns a list describing the buffer-local variables in
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1110 buffer @var{buffer}. It returns an association list (@pxref{Association
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1111 Lists}) in which each association contains one buffer-local variable and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1112 its value. When a buffer-local variable is void in @var{buffer}, then
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1113 it appears directly in the resulting list. If @var{buffer} is omitted,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1114 the current buffer is used.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1115
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1116 @example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1117 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1118 (make-local-variable 'foobar)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1119 (makunbound 'foobar)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1120 (make-local-variable 'bind-me)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1121 (setq bind-me 69)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1122 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1123 (setq lcl (buffer-local-variables))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1124 ;; @r{First, built-in variables local in all buffers:}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1125 @result{} ((mark-active . nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1126 (buffer-undo-list nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1127 (mode-name . "Fundamental")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1128 @dots{}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1129 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1130 ;; @r{Next, non-built-in local variables.}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1131 ;; @r{This one is local and void:}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1132 foobar
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1133 ;; @r{This one is local and nonvoid:}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1134 (bind-me . 69))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1135 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1136 @end example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1137
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1138 Note that storing new values into the @sc{cdr}s of cons cells in this
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1139 list does @emph{not} change the local values of the variables.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1140 @end defun
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1141
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1142 @deffn Command kill-local-variable variable
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1143 This function deletes the buffer-local binding (if any) for
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1144 @var{variable} (a symbol) in the current buffer. As a result, the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1145 global (default) binding of @var{variable} becomes visible in this
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1146 buffer. Usually this results in a change in the value of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1147 @var{variable}, since the global value is usually different from the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1148 buffer-local value just eliminated.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1149
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1150 If you kill the local binding of a variable that automatically becomes
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1151 local when set, this makes the global value visible in the current
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1152 buffer. However, if you set the variable again, that will once again
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1153 create a local binding for it.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1154
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1155 @code{kill-local-variable} returns @var{variable}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1156
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1157 This function is a command because it is sometimes useful to kill one
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1158 buffer-local variable interactively, just as it is useful to create
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1159 buffer-local variables interactively.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1160 @end deffn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1161
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1162 @defun kill-all-local-variables
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1163 This function eliminates all the buffer-local variable bindings of the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1164 current buffer except for variables marked as ``permanent''. As a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1165 result, the buffer will see the default values of most variables.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1166
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1167 This function also resets certain other information pertaining to the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1168 buffer: it sets the local keymap to @code{nil}, the syntax table to the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1169 value of @code{standard-syntax-table}, and the abbrev table to the value
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1170 of @code{fundamental-mode-abbrev-table}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1171
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1172 Every major mode command begins by calling this function, which has the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1173 effect of switching to Fundamental mode and erasing most of the effects
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1174 of the previous major mode. To ensure that this does its job, the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1175 variables that major modes set should not be marked permanent.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1176
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1177 @code{kill-all-local-variables} returns @code{nil}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1178 @end defun
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1179
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1180 @c Emacs 19 feature
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1181 @cindex permanent local variable
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1182 A local variable is @dfn{permanent} if the variable name (a symbol) has a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1183 @code{permanent-local} property that is non-@code{nil}. Permanent
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1184 locals are appropriate for data pertaining to where the file came from
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1185 or how to save it, rather than with how to edit the contents.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1186
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1187 @node Default Value
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1188 @subsection The Default Value of a Buffer-Local Variable
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1189 @cindex default value
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1190
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1191 The global value of a variable with buffer-local bindings is also
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1192 called the @dfn{default} value, because it is the value that is in
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1193 effect except when specifically overridden.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1194
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1195 The functions @code{default-value} and @code{setq-default} access and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1196 change a variable's default value regardless of whether the current
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1197 buffer has a buffer-local binding. For example, you could use
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1198 @code{setq-default} to change the default setting of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1199 @code{paragraph-start} for most buffers; and this would work even when
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1200 you are in a C or Lisp mode buffer that has a buffer-local value for
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1201 this variable.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1202
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1203 @c Emacs 19 feature
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1204 The special forms @code{defvar} and @code{defconst} also set the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1205 default value (if they set the variable at all), rather than any local
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1206 value.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1207
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1208 @defun default-value symbol
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1209 This function returns @var{symbol}'s default value. This is the value
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1210 that is seen in buffers that do not have their own values for this
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1211 variable. If @var{symbol} is not buffer-local, this is equivalent to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1212 @code{symbol-value} (@pxref{Accessing Variables}).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1213 @end defun
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1214
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1215 @c Emacs 19 feature
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1216 @defun default-boundp symbol
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1217 The function @code{default-boundp} tells you whether @var{symbol}'s
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1218 default value is nonvoid. If @code{(default-boundp 'foo)} returns
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1219 @code{nil}, then @code{(default-value 'foo)} would get an error.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1220
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1221 @code{default-boundp} is to @code{default-value} as @code{boundp} is to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1222 @code{symbol-value}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1223 @end defun
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1224
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1225 @defspec setq-default symbol value
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1226 This sets the default value of @var{symbol} to @var{value}. It does not
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1227 evaluate @var{symbol}, but does evaluate @var{value}. The value of the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1228 @code{setq-default} form is @var{value}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1229
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1230 If a @var{symbol} is not buffer-local for the current buffer, and is not
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1231 marked automatically buffer-local, @code{setq-default} has the same
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1232 effect as @code{setq}. If @var{symbol} is buffer-local for the current
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1233 buffer, then this changes the value that other buffers will see (as long
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1234 as they don't have a buffer-local value), but not the value that the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1235 current buffer sees.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1236
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1237 @example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1238 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1239 ;; @r{In buffer @samp{foo}:}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1240 (make-local-variable 'local)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1241 @result{} local
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1242 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1243 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1244 (setq local 'value-in-foo)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1245 @result{} value-in-foo
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1246 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1247 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1248 (setq-default local 'new-default)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1249 @result{} new-default
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1250 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1251 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1252 local
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1253 @result{} value-in-foo
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1254 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1255 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1256 (default-value 'local)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1257 @result{} new-default
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1258 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1259
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1260 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1261 ;; @r{In (the new) buffer @samp{bar}:}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1262 local
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1263 @result{} new-default
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1264 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1265 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1266 (default-value 'local)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1267 @result{} new-default
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1268 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1269 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1270 (setq local 'another-default)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1271 @result{} another-default
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1272 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1273 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1274 (default-value 'local)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1275 @result{} another-default
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1276 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1277
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1278 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1279 ;; @r{Back in buffer @samp{foo}:}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1280 local
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1281 @result{} value-in-foo
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1282 (default-value 'local)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1283 @result{} another-default
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1284 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1285 @end example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1286 @end defspec
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1287
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1288 @defun set-default symbol value
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1289 This function is like @code{setq-default}, except that @var{symbol} is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1290 evaluated.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1291
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1292 @example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1293 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1294 (set-default (car '(a b c)) 23)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1295 @result{} 23
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1296 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1297 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1298 (default-value 'a)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1299 @result{} 23
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1300 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1301 @end example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1302 @end defun
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1303
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1304 @node Variable Aliases
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1305 @section Variable Aliases
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1306 @cindex variables, indirect
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1307 @cindex indirect variables
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1308 @cindex variable aliases
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1309 @cindex aliases, for variables
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1310
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1311 You can define a variable as an @dfn{alias} for another. Any time
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1312 you reference the former variable, the current value of the latter
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1313 is returned. Any time you change the value of the former variable,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1314 the value of the latter is actually changed. This is useful in
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1315 cases where you want to rename a variable but still make old code
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1316 work (@pxref{Obsoleteness}).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1317
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1318 @defun defvaralias variable alias
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1319 This function defines @var{variable} as an alias for @var{alias}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1320 Thenceforth, any operations performed on @var{variable} will actually be
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1321 performed on @var{alias}. Both @var{variable} and @var{alias} should be
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1322 symbols. If @var{alias} is @code{nil}, remove any aliases for
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1323 @var{variable}. @var{alias} can itself be aliased, and the chain of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1324 variable aliases will be followed appropriately. If @var{variable}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1325 already has a value, this value will be shadowed until the alias is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1326 removed, at which point it will be restored. Currently @var{variable}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1327 cannot be a built-in variable, a variable that has a buffer-local value
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1328 in any buffer, or the symbols @code{nil} or @code{t}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1329 @end defun
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1330
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1331 @defun variable-alias variable
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1332 If @var{variable} is aliased to another variable, this function returns
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1333 that variable. @var{variable} should be a symbol. If @var{variable} is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1334 not aliased, this function returns @code{nil}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1335 @end defun
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1336
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1337 @defun indirect-variable object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1338 This function returns the variable at the end of @var{object}'s
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1339 variable-alias chain. If @var{object} is a symbol, follow all variable
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1340 aliases and return the final (non-aliased) symbol. If @var{object} is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1341 not a symbol, just return it. Signal a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1342 @code{cyclic-variable-indirection} error if there is a loop in the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1343 variable chain of symbols.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1344 @end defun
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1345
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1346