annotate man/lispref/eval.texi @ 343:8bec6624d99b r21-1-1

Import from CVS: tag r21-1-1
author cvs
date Mon, 13 Aug 2007 10:52:53 +0200
parents 70ad99077275
children 1d62742628b6
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/eval.info
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6 @node Evaluation, Control Structures, Symbols, Top
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
7 @chapter Evaluation
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
8 @cindex evaluation
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
9 @cindex interpreter
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
10 @cindex interpreter
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
11 @cindex value of expression
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
12
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
13 The @dfn{evaluation} of expressions in XEmacs Lisp is performed by the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
14 @dfn{Lisp interpreter}---a program that receives a Lisp object as input
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
15 and computes its @dfn{value as an expression}. How it does this depends
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
16 on the data type of the object, according to rules described in this
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
17 chapter. The interpreter runs automatically to evaluate portions of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
18 your program, but can also be called explicitly via the Lisp primitive
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
19 function @code{eval}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
20
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
21 @ifinfo
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
22 @menu
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
23 * Intro Eval:: Evaluation in the scheme of things.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
24 * Eval:: How to invoke the Lisp interpreter explicitly.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
25 * Forms:: How various sorts of objects are evaluated.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
26 * Quoting:: Avoiding evaluation (to put constants in the program).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
27 @end menu
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
28
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
29 @node Intro Eval
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
30 @section Introduction to Evaluation
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
31
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
32 The Lisp interpreter, or evaluator, is the program that computes
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
33 the value of an expression that is given to it. When a function
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
34 written in Lisp is called, the evaluator computes the value of the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
35 function by evaluating the expressions in the function body. Thus,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
36 running any Lisp program really means running the Lisp interpreter.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
37
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
38 How the evaluator handles an object depends primarily on the data
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
39 type of the object.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
40 @end ifinfo
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
41
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
42 @cindex forms
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
43 @cindex expression
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
44 A Lisp object that is intended for evaluation is called an
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
45 @dfn{expression} or a @dfn{form}. The fact that expressions are data
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
46 objects and not merely text is one of the fundamental differences
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
47 between Lisp-like languages and typical programming languages. Any
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
48 object can be evaluated, but in practice only numbers, symbols, lists
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
49 and strings are evaluated very often.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
50
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
51 It is very common to read a Lisp expression and then evaluate the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
52 expression, but reading and evaluation are separate activities, and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
53 either can be performed alone. Reading per se does not evaluate
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
54 anything; it converts the printed representation of a Lisp object to the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
55 object itself. It is up to the caller of @code{read} whether this
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
56 object is a form to be evaluated, or serves some entirely different
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
57 purpose. @xref{Input Functions}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
58
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
59 Do not confuse evaluation with command key interpretation. The
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
60 editor command loop translates keyboard input into a command (an
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
61 interactively callable function) using the active keymaps, and then
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
62 uses @code{call-interactively} to invoke the command. The execution of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
63 the command itself involves evaluation if the command is written in
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
64 Lisp, but that is not a part of command key interpretation itself.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
65 @xref{Command Loop}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
66
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
67 @cindex recursive evaluation
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
68 Evaluation is a recursive process. That is, evaluation of a form may
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
69 call @code{eval} to evaluate parts of the form. For example, evaluation
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
70 of a function call first evaluates each argument of the function call,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
71 and then evaluates each form in the function body. Consider evaluation
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
72 of the form @code{(car x)}: the subform @code{x} must first be evaluated
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
73 recursively, so that its value can be passed as an argument to the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
74 function @code{car}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
75
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
76 Evaluation of a function call ultimately calls the function specified
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
77 in it. @xref{Functions}. The execution of the function may itself work
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
78 by evaluating the function definition; or the function may be a Lisp
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
79 primitive implemented in C, or it may be a byte-compiled function
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
80 (@pxref{Byte Compilation}).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
81
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
82 @cindex environment
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
83 The evaluation of forms takes place in a context called the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
84 @dfn{environment}, which consists of the current values and bindings of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
85 all Lisp variables.@footnote{This definition of ``environment'' is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
86 specifically not intended to include all the data that can affect the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
87 result of a program.} Whenever the form refers to a variable without
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
88 creating a new binding for it, the value of the binding in the current
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
89 environment is used. @xref{Variables}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
90
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
91 @cindex side effect
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
92 Evaluation of a form may create new environments for recursive
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
93 evaluation by binding variables (@pxref{Local Variables}). These
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
94 environments are temporary and vanish by the time evaluation of the form
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
95 is complete. The form may also make changes that persist; these changes
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
96 are called @dfn{side effects}. An example of a form that produces side
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
97 effects is @code{(setq foo 1)}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
98
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
99 The details of what evaluation means for each kind of form are
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
100 described below (@pxref{Forms}).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
101
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
102 @node Eval
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
103 @section Eval
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
104 @c ??? Perhaps this should be the last section in the chapter.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
105
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
106 Most often, forms are evaluated automatically, by virtue of their
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
107 occurrence in a program being run. On rare occasions, you may need to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
108 write code that evaluates a form that is computed at run time, such as
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
109 after reading a form from text being edited or getting one from a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
110 property list. On these occasions, use the @code{eval} function.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
111
298
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents: 0
diff changeset
112 @strong{Please note:} it is generally cleaner and more flexible to call
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
113 functions that are stored in data structures, rather than to evaluate
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
114 expressions stored in data structures. Using functions provides the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
115 ability to pass information to them as arguments.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
116
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
117 The functions and variables described in this section evaluate forms,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
118 specify limits to the evaluation process, or record recently returned
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
119 values. Loading a file also does evaluation (@pxref{Loading}).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
120
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
121 @defun eval form
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
122 This is the basic function for performing evaluation. It evaluates
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
123 @var{form} in the current environment and returns the result. How the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
124 evaluation proceeds depends on the type of the object (@pxref{Forms}).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
125
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
126 Since @code{eval} is a function, the argument expression that appears
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
127 in a call to @code{eval} is evaluated twice: once as preparation before
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
128 @code{eval} is called, and again by the @code{eval} function itself.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
129 Here is an example:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
130
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
131 @example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
132 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
133 (setq foo 'bar)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
134 @result{} bar
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
135 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
136 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
137 (setq bar 'baz)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
138 @result{} baz
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
139 ;; @r{@code{eval} receives argument @code{bar}, which is the value of @code{foo}}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
140 (eval foo)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
141 @result{} baz
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
142 (eval 'foo)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
143 @result{} bar
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
144 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
145 @end example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
146
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
147 The number of currently active calls to @code{eval} is limited to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
148 @code{max-lisp-eval-depth} (see below).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
149 @end defun
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
150
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
151 @deffn Command eval-region start end &optional stream
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
152 This function evaluates the forms in the current buffer in the region
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
153 defined by the positions @var{start} and @var{end}. It reads forms from
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
154 the region and calls @code{eval} on them until the end of the region is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
155 reached, or until an error is signaled and not handled.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
156
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
157 If @var{stream} is supplied, @code{standard-output} is bound to it
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
158 during the evaluation.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
159
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
160 You can use the variable @code{load-read-function} to specify a function
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
161 for @code{eval-region} to use instead of @code{read} for reading
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
162 expressions. @xref{How Programs Do Loading}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
163
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
164 @code{eval-region} always returns @code{nil}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
165 @end deffn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
166
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
167 @cindex evaluation of buffer contents
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
168 @deffn Command eval-buffer buffer &optional stream
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
169 This is like @code{eval-region} except that it operates on the whole
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
170 contents of @var{buffer}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
171 @end deffn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
172
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
173 @defvar max-lisp-eval-depth
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
174 This variable defines the maximum depth allowed in calls to @code{eval},
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
175 @code{apply}, and @code{funcall} before an error is signaled (with error
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
176 message @code{"Lisp nesting exceeds max-lisp-eval-depth"}). This counts
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
177 internal uses of those functions, such as for calling the functions
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
178 mentioned in Lisp expressions, and recursive evaluation of function call
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
179 arguments and function body forms.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
180
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
181 This limit, with the associated error when it is exceeded, is one way
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
182 that Lisp avoids infinite recursion on an ill-defined function.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
183 @cindex Lisp nesting error
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
184
343
8bec6624d99b Import from CVS: tag r21-1-1
cvs
parents: 298
diff changeset
185 The default value of this variable is 500. If you set it to a value
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
186 less than 100, Lisp will reset it to 100 if the given value is reached.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
187
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
188 @code{max-specpdl-size} provides another limit on nesting.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
189 @xref{Local Variables}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
190 @end defvar
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
191
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
192 @defvar values
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
193 The value of this variable is a list of the values returned by all the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
194 expressions that were read from buffers (including the minibuffer),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
195 evaluated, and printed. The elements are ordered most recent first.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
196
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
197 @example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
198 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
199 (setq x 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
200 @result{} 1
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
201 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
202 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
203 (list 'A (1+ 2) auto-save-default)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
204 @result{} (A 3 t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
205 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
206 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
207 values
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
208 @result{} ((A 3 t) 1 @dots{})
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
209 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
210 @end example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
211
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
212 This variable is useful for referring back to values of forms recently
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
213 evaluated. It is generally a bad idea to print the value of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
214 @code{values} itself, since this may be very long. Instead, examine
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
215 particular elements, like this:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
216
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
217 @example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
218 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
219 ;; @r{Refer to the most recent evaluation result.}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
220 (nth 0 values)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
221 @result{} (A 3 t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
222 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
223 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
224 ;; @r{That put a new element on,}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
225 ;; @r{so all elements move back one.}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
226 (nth 1 values)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
227 @result{} (A 3 t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
228 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
229 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
230 ;; @r{This gets the element that was next-to-most-recent}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
231 ;; @r{before this example.}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
232 (nth 3 values)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
233 @result{} 1
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
234 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
235 @end example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
236 @end defvar
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
237
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
238 @node Forms
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
239 @section Kinds of Forms
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
240
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
241 A Lisp object that is intended to be evaluated is called a @dfn{form}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
242 How XEmacs evaluates a form depends on its data type. XEmacs has three
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
243 different kinds of form that are evaluated differently: symbols, lists,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
244 and ``all other types''. This section describes all three kinds,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
245 starting with ``all other types'' which are self-evaluating forms.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
246
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
247 @menu
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
248 * Self-Evaluating Forms:: Forms that evaluate to themselves.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
249 * Symbol Forms:: Symbols evaluate as variables.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
250 * Classifying Lists:: How to distinguish various sorts of list forms.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
251 * Function Indirection:: When a symbol appears as the car of a list,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
252 we find the real function via the symbol.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
253 * Function Forms:: Forms that call functions.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
254 * Macro Forms:: Forms that call macros.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
255 * Special Forms:: ``Special forms'' are idiosyncratic primitives,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
256 most of them extremely important.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
257 * Autoloading:: Functions set up to load files
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
258 containing their real definitions.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
259 @end menu
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
260
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
261 @node Self-Evaluating Forms
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
262 @subsection Self-Evaluating Forms
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
263 @cindex vector evaluation
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
264 @cindex literal evaluation
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
265 @cindex self-evaluating form
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
266
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
267 A @dfn{self-evaluating form} is any form that is not a list or symbol.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
268 Self-evaluating forms evaluate to themselves: the result of evaluation
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
269 is the same object that was evaluated. Thus, the number 25 evaluates to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
270 25, and the string @code{"foo"} evaluates to the string @code{"foo"}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
271 Likewise, evaluation of a vector does not cause evaluation of the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
272 elements of the vector---it returns the same vector with its contents
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
273 unchanged.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
274
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
275 @example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
276 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
277 '123 ; @r{An object, shown without evaluation.}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
278 @result{} 123
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
279 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
280 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
281 123 ; @r{Evaluated as usual---result is the same.}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
282 @result{} 123
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
283 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
284 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
285 (eval '123) ; @r{Evaluated ``by hand''---result is the same.}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
286 @result{} 123
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
287 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
288 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
289 (eval (eval '123)) ; @r{Evaluating twice changes nothing.}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
290 @result{} 123
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
291 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
292 @end example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
293
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
294 It is common to write numbers, characters, strings, and even vectors
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
295 in Lisp code, taking advantage of the fact that they self-evaluate.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
296 However, it is quite unusual to do this for types that lack a read
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
297 syntax, because there's no way to write them textually. It is possible
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
298 to construct Lisp expressions containing these types by means of a Lisp
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
299 program. Here is an example:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
300
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
301 @example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
302 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
303 ;; @r{Build an expression containing a buffer object.}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
304 (setq buffer (list 'print (current-buffer)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
305 @result{} (print #<buffer eval.texi>)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
306 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
307 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
308 ;; @r{Evaluate it.}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
309 (eval buffer)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
310 @print{} #<buffer eval.texi>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
311 @result{} #<buffer eval.texi>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
312 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
313 @end example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
314
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
315 @node Symbol Forms
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
316 @subsection Symbol Forms
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
317 @cindex symbol evaluation
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
318
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
319 When a symbol is evaluated, it is treated as a variable. The result
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
320 is the variable's value, if it has one. If it has none (if its value
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
321 cell is void), an error is signaled. For more information on the use of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
322 variables, see @ref{Variables}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
323
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
324 In the following example, we set the value of a symbol with
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
325 @code{setq}. Then we evaluate the symbol, and get back the value that
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
326 @code{setq} stored.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
327
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
328 @example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
329 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
330 (setq a 123)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
331 @result{} 123
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
332 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
333 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
334 (eval 'a)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
335 @result{} 123
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
336 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
337 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
338 a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
339 @result{} 123
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
340 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
341 @end example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
342
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
343 The symbols @code{nil} and @code{t} are treated specially, so that the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
344 value of @code{nil} is always @code{nil}, and the value of @code{t} is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
345 always @code{t}; you cannot set or bind them to any other values. Thus,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
346 these two symbols act like self-evaluating forms, even though
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
347 @code{eval} treats them like any other symbol.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
348
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
349 @node Classifying Lists
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
350 @subsection Classification of List Forms
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
351 @cindex list form evaluation
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
352
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
353 A form that is a nonempty list is either a function call, a macro
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
354 call, or a special form, according to its first element. These three
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
355 kinds of forms are evaluated in different ways, described below. The
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
356 remaining list elements constitute the @dfn{arguments} for the function,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
357 macro, or special form.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
358
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
359 The first step in evaluating a nonempty list is to examine its first
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
360 element. This element alone determines what kind of form the list is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
361 and how the rest of the list is to be processed. The first element is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
362 @emph{not} evaluated, as it would be in some Lisp dialects such as
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
363 Scheme.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
364
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
365 @node Function Indirection
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
366 @subsection Symbol Function Indirection
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
367 @cindex symbol function indirection
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
368 @cindex indirection
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
369 @cindex void function
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
370
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
371 If the first element of the list is a symbol then evaluation examines
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
372 the symbol's function cell, and uses its contents instead of the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
373 original symbol. If the contents are another symbol, this process,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
374 called @dfn{symbol function indirection}, is repeated until it obtains a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
375 non-symbol. @xref{Function Names}, for more information about using a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
376 symbol as a name for a function stored in the function cell of the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
377 symbol.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
378
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
379 One possible consequence of this process is an infinite loop, in the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
380 event that a symbol's function cell refers to the same symbol. Or a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
381 symbol may have a void function cell, in which case the subroutine
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
382 @code{symbol-function} signals a @code{void-function} error. But if
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
383 neither of these things happens, we eventually obtain a non-symbol,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
384 which ought to be a function or other suitable object.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
385
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
386 @kindex invalid-function
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
387 @cindex invalid function
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
388 More precisely, we should now have a Lisp function (a lambda
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
389 expression), a byte-code function, a primitive function, a Lisp macro, a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
390 special form, or an autoload object. Each of these types is a case
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
391 described in one of the following sections. If the object is not one of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
392 these types, the error @code{invalid-function} is signaled.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
393
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
394 The following example illustrates the symbol indirection process. We
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
395 use @code{fset} to set the function cell of a symbol and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
396 @code{symbol-function} to get the function cell contents
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
397 (@pxref{Function Cells}). Specifically, we store the symbol @code{car}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
398 into the function cell of @code{first}, and the symbol @code{first} into
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
399 the function cell of @code{erste}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
400
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
401 @smallexample
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
402 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
403 ;; @r{Build this function cell linkage:}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
404 ;; ------------- ----- ------- -------
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
405 ;; | #<subr car> | <-- | car | <-- | first | <-- | erste |
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
406 ;; ------------- ----- ------- -------
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
407 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
408 @end smallexample
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
409
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
410 @smallexample
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
411 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
412 (symbol-function 'car)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
413 @result{} #<subr car>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
414 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
415 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
416 (fset 'first 'car)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
417 @result{} car
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
418 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
419 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
420 (fset 'erste 'first)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
421 @result{} first
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
422 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
423 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
424 (erste '(1 2 3)) ; @r{Call the function referenced by @code{erste}.}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
425 @result{} 1
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
426 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
427 @end smallexample
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
428
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
429 By contrast, the following example calls a function without any symbol
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
430 function indirection, because the first element is an anonymous Lisp
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
431 function, not a symbol.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
432
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
433 @smallexample
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
434 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
435 ((lambda (arg) (erste arg))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
436 '(1 2 3))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
437 @result{} 1
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
438 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
439 @end smallexample
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
440
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
441 @noindent
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
442 Executing the function itself evaluates its body; this does involve
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
443 symbol function indirection when calling @code{erste}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
444
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
445 The built-in function @code{indirect-function} provides an easy way to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
446 perform symbol function indirection explicitly.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
447
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
448 @c Emacs 19 feature
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
449 @defun indirect-function function
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
450 This function returns the meaning of @var{function} as a function. If
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
451 @var{function} is a symbol, then it finds @var{function}'s function
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
452 definition and starts over with that value. If @var{function} is not a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
453 symbol, then it returns @var{function} itself.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
454
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
455 Here is how you could define @code{indirect-function} in Lisp:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
456
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
457 @smallexample
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
458 (defun indirect-function (function)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
459 (if (symbolp function)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
460 (indirect-function (symbol-function function))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
461 function))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
462 @end smallexample
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
463 @end defun
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
464
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
465 @node Function Forms
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
466 @subsection Evaluation of Function Forms
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
467 @cindex function form evaluation
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
468 @cindex function call
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
469
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
470 If the first element of a list being evaluated is a Lisp function
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
471 object, byte-code object or primitive function object, then that list is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
472 a @dfn{function call}. For example, here is a call to the function
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
473 @code{+}:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
474
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
475 @example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
476 (+ 1 x)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
477 @end example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
478
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
479 The first step in evaluating a function call is to evaluate the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
480 remaining elements of the list from left to right. The results are the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
481 actual argument values, one value for each list element. The next step
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
482 is to call the function with this list of arguments, effectively using
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
483 the function @code{apply} (@pxref{Calling Functions}). If the function
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
484 is written in Lisp, the arguments are used to bind the argument
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
485 variables of the function (@pxref{Lambda Expressions}); then the forms
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
486 in the function body are evaluated in order, and the value of the last
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
487 body form becomes the value of the function call.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
488
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
489 @node Macro Forms
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
490 @subsection Lisp Macro Evaluation
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
491 @cindex macro call evaluation
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
492
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
493 If the first element of a list being evaluated is a macro object, then
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
494 the list is a @dfn{macro call}. When a macro call is evaluated, the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
495 elements of the rest of the list are @emph{not} initially evaluated.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
496 Instead, these elements themselves are used as the arguments of the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
497 macro. The macro definition computes a replacement form, called the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
498 @dfn{expansion} of the macro, to be evaluated in place of the original
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
499 form. The expansion may be any sort of form: a self-evaluating
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
500 constant, a symbol, or a list. If the expansion is itself a macro call,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
501 this process of expansion repeats until some other sort of form results.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
502
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
503 Ordinary evaluation of a macro call finishes by evaluating the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
504 expansion. However, the macro expansion is not necessarily evaluated
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
505 right away, or at all, because other programs also expand macro calls,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
506 and they may or may not evaluate the expansions.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
507
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
508 Normally, the argument expressions are not evaluated as part of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
509 computing the macro expansion, but instead appear as part of the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
510 expansion, so they are computed when the expansion is computed.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
511
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
512 For example, given a macro defined as follows:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
513
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
514 @example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
515 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
516 (defmacro cadr (x)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
517 (list 'car (list 'cdr x)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
518 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
519 @end example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
520
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
521 @noindent
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
522 an expression such as @code{(cadr (assq 'handler list))} is a macro
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
523 call, and its expansion is:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
524
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
525 @example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
526 (car (cdr (assq 'handler list)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
527 @end example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
528
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
529 @noindent
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
530 Note that the argument @code{(assq 'handler list)} appears in the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
531 expansion.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
532
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
533 @xref{Macros}, for a complete description of XEmacs Lisp macros.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
534
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
535 @node Special Forms
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
536 @subsection Special Forms
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
537 @cindex special form evaluation
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
538
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
539 A @dfn{special form} is a primitive function specially marked so that
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
540 its arguments are not all evaluated. Most special forms define control
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
541 structures or perform variable bindings---things which functions cannot
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
542 do.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
543
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
544 Each special form has its own rules for which arguments are evaluated
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
545 and which are used without evaluation. Whether a particular argument is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
546 evaluated may depend on the results of evaluating other arguments.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
547
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
548 Here is a list, in alphabetical order, of all of the special forms in
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
549 XEmacs Lisp with a reference to where each is described.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
550
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
551 @table @code
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
552 @item and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
553 @pxref{Combining Conditions}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
554
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
555 @item catch
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
556 @pxref{Catch and Throw}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
557
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
558 @item cond
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
559 @pxref{Conditionals}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
560
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
561 @item condition-case
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
562 @pxref{Handling Errors}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
563
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
564 @item defconst
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
565 @pxref{Defining Variables}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
566
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
567 @item defmacro
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
568 @pxref{Defining Macros}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
569
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
570 @item defun
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
571 @pxref{Defining Functions}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
572
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
573 @item defvar
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
574 @pxref{Defining Variables}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
575
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
576 @item function
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
577 @pxref{Anonymous Functions}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
578
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
579 @item if
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
580 @pxref{Conditionals}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
581
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
582 @item interactive
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
583 @pxref{Interactive Call}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
584
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
585 @item let
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
586 @itemx let*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
587 @pxref{Local Variables}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
588
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
589 @item or
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
590 @pxref{Combining Conditions}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
591
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
592 @item prog1
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
593 @itemx prog2
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
594 @itemx progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
595 @pxref{Sequencing}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
596
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
597 @item quote
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
598 @pxref{Quoting}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
599
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
600 @item save-current-buffer
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
601 @pxref{Excursions}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
602
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
603 @item save-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
604 @pxref{Excursions}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
605
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
606 @item save-restriction
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
607 @pxref{Narrowing}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
608
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
609 @item save-selected-window
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
610 @pxref{Excursions}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
611
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
612 @item save-window-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
613 @pxref{Window Configurations}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
614
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
615 @item setq
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
616 @pxref{Setting Variables}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
617
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
618 @item setq-default
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
619 @pxref{Creating Buffer-Local}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
620
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
621 @item unwind-protect
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
622 @pxref{Nonlocal Exits}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
623
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
624 @item while
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
625 @pxref{Iteration}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
626
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
627 @item with-output-to-temp-buffer
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
628 @pxref{Temporary Displays}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
629 @end table
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
630
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
631 @cindex CL note---special forms compared
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
632 @quotation
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
633 @b{Common Lisp note:} here are some comparisons of special forms in
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
634 XEmacs Lisp and Common Lisp. @code{setq}, @code{if}, and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
635 @code{catch} are special forms in both XEmacs Lisp and Common Lisp.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
636 @code{defun} is a special form in XEmacs Lisp, but a macro in Common
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
637 Lisp. @code{save-excursion} is a special form in XEmacs Lisp, but
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
638 doesn't exist in Common Lisp. @code{throw} is a special form in
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
639 Common Lisp (because it must be able to throw multiple values), but it
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
640 is a function in XEmacs Lisp (which doesn't have multiple
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
641 values).@refill
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
642 @end quotation
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
643
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
644 @node Autoloading
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
645 @subsection Autoloading
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
646
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
647 The @dfn{autoload} feature allows you to call a function or macro
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
648 whose function definition has not yet been loaded into XEmacs. It
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
649 specifies which file contains the definition. When an autoload object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
650 appears as a symbol's function definition, calling that symbol as a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
651 function automatically loads the specified file; then it calls the real
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
652 definition loaded from that file. @xref{Autoload}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
653
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
654 @node Quoting
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
655 @section Quoting
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
656 @cindex quoting
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
657
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
658 The special form @code{quote} returns its single argument, as written,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
659 without evaluating it. This provides a way to include constant symbols
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
660 and lists, which are not self-evaluating objects, in a program. (It is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
661 not necessary to quote self-evaluating objects such as numbers, strings,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
662 and vectors.)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
663
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
664 @defspec quote object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
665 This special form returns @var{object}, without evaluating it.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
666 @end defspec
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
667
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
668 @cindex @samp{'} for quoting
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
669 @cindex quoting using apostrophe
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
670 @cindex apostrophe for quoting
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
671 Because @code{quote} is used so often in programs, Lisp provides a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
672 convenient read syntax for it. An apostrophe character (@samp{'})
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
673 followed by a Lisp object (in read syntax) expands to a list whose first
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
674 element is @code{quote}, and whose second element is the object. Thus,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
675 the read syntax @code{'x} is an abbreviation for @code{(quote x)}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
676
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
677 Here are some examples of expressions that use @code{quote}:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
678
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
679 @example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
680 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
681 (quote (+ 1 2))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
682 @result{} (+ 1 2)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
683 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
684 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
685 (quote foo)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
686 @result{} foo
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
687 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
688 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
689 'foo
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
690 @result{} foo
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
691 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
692 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
693 ''foo
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
694 @result{} (quote foo)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
695 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
696 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
697 '(quote foo)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
698 @result{} (quote foo)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
699 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
700 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
701 ['foo]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
702 @result{} [(quote foo)]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
703 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
704 @end example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
705
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
706 Other quoting constructs include @code{function} (@pxref{Anonymous
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
707 Functions}), which causes an anonymous lambda expression written in Lisp
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
708 to be compiled, and @samp{`} (@pxref{Backquote}), which is used to quote
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
709 only part of a list, while computing and substituting other parts.