In doc, use standard American English style for e.g., etc., i.e.
[bpt/emacs.git] / doc / lispref / eval.texi
CommitLineData
b8d4c8d0
GM
1@c -*-texinfo-*-
2@c This is part of the GNU Emacs Lisp Reference Manual.
ab422c4d
PE
3@c Copyright (C) 1990-1994, 1998, 2001-2013 Free Software Foundation,
4@c Inc.
b8d4c8d0 5@c See the file elisp.texi for copying conditions.
ecc6530d 6@node Evaluation
b8d4c8d0
GM
7@chapter Evaluation
8@cindex evaluation
9@cindex interpreter
10@cindex interpreter
11@cindex value of expression
12
13 The @dfn{evaluation} of expressions in Emacs Lisp is performed by the
14@dfn{Lisp interpreter}---a program that receives a Lisp object as input
15and computes its @dfn{value as an expression}. How it does this depends
16on the data type of the object, according to rules described in this
17chapter. The interpreter runs automatically to evaluate portions of
18your program, but can also be called explicitly via the Lisp primitive
19function @code{eval}.
20
21@ifnottex
22@menu
23* Intro Eval:: Evaluation in the scheme of things.
24* Forms:: How various sorts of objects are evaluated.
25* Quoting:: Avoiding evaluation (to put constants in the program).
03988c98 26* Backquote:: Easier construction of list structure.
b8d4c8d0
GM
27* Eval:: How to invoke the Lisp interpreter explicitly.
28@end menu
29
30@node Intro Eval
31@section Introduction to Evaluation
32
a5b99fab
CY
33 The Lisp interpreter, or evaluator, is the part of Emacs that
34computes the value of an expression that is given to it. When a
35function written in Lisp is called, the evaluator computes the value
36of the function by evaluating the expressions in the function body.
37Thus, running any Lisp program really means running the Lisp
38interpreter.
b8d4c8d0
GM
39@end ifnottex
40
a5b99fab 41@cindex form
b8d4c8d0 42@cindex expression
a037c171 43@cindex S-expression
0a6bdaa1 44@cindex sexp
a037c171
CY
45 A Lisp object that is intended for evaluation is called a @dfn{form}
46or @dfn{expression}@footnote{It is sometimes also referred to as an
47@dfn{S-expression} or @dfn{sexp}, but we generally do not use this
48terminology in this manual.}. The fact that forms are data objects
49and not merely text is one of the fundamental differences between
50Lisp-like languages and typical programming languages. Any object can
51be evaluated, but in practice only numbers, symbols, lists and strings
52are evaluated very often.
b8d4c8d0 53
a5b99fab
CY
54 In subsequent sections, we will describe the details of what
55evaluation means for each kind of form.
56
57 It is very common to read a Lisp form and then evaluate the form,
58but reading and evaluation are separate activities, and either can be
59performed alone. Reading per se does not evaluate anything; it
60converts the printed representation of a Lisp object to the object
61itself. It is up to the caller of @code{read} to specify whether this
b8d4c8d0
GM
62object is a form to be evaluated, or serves some entirely different
63purpose. @xref{Input Functions}.
64
b8d4c8d0 65@cindex recursive evaluation
a5b99fab
CY
66 Evaluation is a recursive process, and evaluating a form often
67involves evaluating parts within that form. For instance, when you
68evaluate a @dfn{function call} form such as @code{(car x)}, Emacs
69first evaluates the argument (the subform @code{x}). After evaluating
70the argument, Emacs @dfn{executes} the function (@code{car}), and if
71the function is written in Lisp, execution works by evaluating the
31cbea1d
CY
72@dfn{body} of the function (in this example, however, @code{car} is
73not a Lisp function; it is a primitive function implemented in C).
a5b99fab
CY
74@xref{Functions}, for more information about functions and function
75calls.
b8d4c8d0
GM
76
77@cindex environment
a5b99fab
CY
78 Evaluation takes place in a context called the @dfn{environment},
79which consists of the current values and bindings of all Lisp
80variables (@pxref{Variables}).@footnote{This definition of
81``environment'' is specifically not intended to include all the data
82that can affect the result of a program.} Whenever a form refers to a
83variable without creating a new binding for it, the variable evaluates
84to the value given by the current environment. Evaluating a form may
31cbea1d
CY
85also temporarily alter the environment by binding variables
86(@pxref{Local Variables}).
b8d4c8d0
GM
87
88@cindex side effect
a5b99fab
CY
89 Evaluating a form may also make changes that persist; these changes
90are called @dfn{side effects}. An example of a form that produces a
91side effect is @code{(setq foo 1)}.
b8d4c8d0 92
a5b99fab
CY
93 Do not confuse evaluation with command key interpretation. The
94editor command loop translates keyboard input into a command (an
95interactively callable function) using the active keymaps, and then
96uses @code{call-interactively} to execute that command. Executing the
97command usually involves evaluation, if the command is written in
98Lisp; however, this step is not considered a part of command key
99interpretation. @xref{Command Loop}.
b8d4c8d0
GM
100
101@node Forms
102@section Kinds of Forms
103
a037c171
CY
104 A Lisp object that is intended to be evaluated is called a
105@dfn{form} (or an @dfn{expression}). How Emacs evaluates a form
106depends on its data type. Emacs has three different kinds of form
107that are evaluated differently: symbols, lists, and ``all other
16152b76 108types''. This section describes all three kinds, one by one, starting
a037c171 109with the ``all other types'' which are self-evaluating forms.
b8d4c8d0
GM
110
111@menu
112* Self-Evaluating Forms:: Forms that evaluate to themselves.
113* Symbol Forms:: Symbols evaluate as variables.
114* Classifying Lists:: How to distinguish various sorts of list forms.
115* Function Indirection:: When a symbol appears as the car of a list,
d24880de 116 we find the real function via the symbol.
b8d4c8d0
GM
117* Function Forms:: Forms that call functions.
118* Macro Forms:: Forms that call macros.
119* Special Forms:: "Special forms" are idiosyncratic primitives,
120 most of them extremely important.
121* Autoloading:: Functions set up to load files
122 containing their real definitions.
123@end menu
124
125@node Self-Evaluating Forms
126@subsection Self-Evaluating Forms
127@cindex vector evaluation
128@cindex literal evaluation
129@cindex self-evaluating form
130
a5b99fab
CY
131 A @dfn{self-evaluating form} is any form that is not a list or
132symbol. Self-evaluating forms evaluate to themselves: the result of
133evaluation is the same object that was evaluated. Thus, the number 25
134evaluates to 25, and the string @code{"foo"} evaluates to the string
135@code{"foo"}. Likewise, evaluating a vector does not cause evaluation
136of the elements of the vector---it returns the same vector with its
137contents unchanged.
b8d4c8d0
GM
138
139@example
140@group
141'123 ; @r{A number, shown without evaluation.}
142 @result{} 123
143@end group
144@group
145123 ; @r{Evaluated as usual---result is the same.}
146 @result{} 123
147@end group
148@group
149(eval '123) ; @r{Evaluated ``by hand''---result is the same.}
150 @result{} 123
151@end group
152@group
153(eval (eval '123)) ; @r{Evaluating twice changes nothing.}
154 @result{} 123
155@end group
156@end example
157
158 It is common to write numbers, characters, strings, and even vectors
159in Lisp code, taking advantage of the fact that they self-evaluate.
160However, it is quite unusual to do this for types that lack a read
161syntax, because there's no way to write them textually. It is possible
162to construct Lisp expressions containing these types by means of a Lisp
163program. Here is an example:
164
165@example
166@group
167;; @r{Build an expression containing a buffer object.}
168(setq print-exp (list 'print (current-buffer)))
169 @result{} (print #<buffer eval.texi>)
170@end group
171@group
172;; @r{Evaluate it.}
173(eval print-exp)
174 @print{} #<buffer eval.texi>
175 @result{} #<buffer eval.texi>
176@end group
177@end example
178
179@node Symbol Forms
180@subsection Symbol Forms
181@cindex symbol evaluation
182
183 When a symbol is evaluated, it is treated as a variable. The result
31cbea1d
CY
184is the variable's value, if it has one. If the symbol has no value as
185a variable, the Lisp interpreter signals an error. For more
186information on the use of variables, see @ref{Variables}.
b8d4c8d0
GM
187
188 In the following example, we set the value of a symbol with
189@code{setq}. Then we evaluate the symbol, and get back the value that
190@code{setq} stored.
191
192@example
193@group
194(setq a 123)
195 @result{} 123
196@end group
197@group
198(eval 'a)
199 @result{} 123
200@end group
201@group
202a
203 @result{} 123
204@end group
205@end example
206
207 The symbols @code{nil} and @code{t} are treated specially, so that the
208value of @code{nil} is always @code{nil}, and the value of @code{t} is
209always @code{t}; you cannot set or bind them to any other values. Thus,
210these two symbols act like self-evaluating forms, even though
211@code{eval} treats them like any other symbol. A symbol whose name
212starts with @samp{:} also self-evaluates in the same way; likewise,
213its value ordinarily cannot be changed. @xref{Constant Variables}.
214
215@node Classifying Lists
216@subsection Classification of List Forms
217@cindex list form evaluation
218
219 A form that is a nonempty list is either a function call, a macro
220call, or a special form, according to its first element. These three
221kinds of forms are evaluated in different ways, described below. The
222remaining list elements constitute the @dfn{arguments} for the function,
223macro, or special form.
224
225 The first step in evaluating a nonempty list is to examine its first
226element. This element alone determines what kind of form the list is
227and how the rest of the list is to be processed. The first element is
228@emph{not} evaluated, as it would be in some Lisp dialects such as
229Scheme.
230
231@node Function Indirection
232@subsection Symbol Function Indirection
233@cindex symbol function indirection
234@cindex indirection for functions
235@cindex void function
236
a5b99fab
CY
237 If the first element of the list is a symbol then evaluation
238examines the symbol's function cell, and uses its contents instead of
239the original symbol. If the contents are another symbol, this
240process, called @dfn{symbol function indirection}, is repeated until
241it obtains a non-symbol. @xref{Function Names}, for more information
242about symbol function indirection.
b8d4c8d0
GM
243
244 One possible consequence of this process is an infinite loop, in the
245event that a symbol's function cell refers to the same symbol. Or a
246symbol may have a void function cell, in which case the subroutine
247@code{symbol-function} signals a @code{void-function} error. But if
248neither of these things happens, we eventually obtain a non-symbol,
249which ought to be a function or other suitable object.
250
251@kindex invalid-function
252 More precisely, we should now have a Lisp function (a lambda
a5b99fab
CY
253expression), a byte-code function, a primitive function, a Lisp macro,
254a special form, or an autoload object. Each of these types is a case
255described in one of the following sections. If the object is not one
256of these types, Emacs signals an @code{invalid-function} error.
b8d4c8d0
GM
257
258 The following example illustrates the symbol indirection process. We
259use @code{fset} to set the function cell of a symbol and
260@code{symbol-function} to get the function cell contents
261(@pxref{Function Cells}). Specifically, we store the symbol @code{car}
262into the function cell of @code{first}, and the symbol @code{first} into
263the function cell of @code{erste}.
264
ddff3351 265@example
b8d4c8d0
GM
266@group
267;; @r{Build this function cell linkage:}
268;; ------------- ----- ------- -------
269;; | #<subr car> | <-- | car | <-- | first | <-- | erste |
270;; ------------- ----- ------- -------
271@end group
b8d4c8d0
GM
272@group
273(symbol-function 'car)
274 @result{} #<subr car>
275@end group
276@group
277(fset 'first 'car)
278 @result{} car
279@end group
280@group
281(fset 'erste 'first)
282 @result{} first
283@end group
284@group
285(erste '(1 2 3)) ; @r{Call the function referenced by @code{erste}.}
286 @result{} 1
287@end group
ddff3351 288@end example
b8d4c8d0
GM
289
290 By contrast, the following example calls a function without any symbol
291function indirection, because the first element is an anonymous Lisp
292function, not a symbol.
293
ddff3351 294@example
b8d4c8d0
GM
295@group
296((lambda (arg) (erste arg))
297 '(1 2 3))
298 @result{} 1
299@end group
ddff3351 300@end example
b8d4c8d0
GM
301
302@noindent
303Executing the function itself evaluates its body; this does involve
304symbol function indirection when calling @code{erste}.
305
88ed9e87
SM
306 This form is rarely used and is now deprecated. Instead, you should write it
307as:
308
ddff3351 309@example
88ed9e87
SM
310@group
311(funcall (lambda (arg) (erste arg))
312 '(1 2 3))
313@end group
ddff3351 314@end example
88ed9e87 315or just
ddff3351 316@example
88ed9e87
SM
317@group
318(let ((arg '(1 2 3))) (erste arg))
319@end group
ddff3351 320@end example
88ed9e87 321
b8d4c8d0
GM
322 The built-in function @code{indirect-function} provides an easy way to
323perform symbol function indirection explicitly.
324
325@c Emacs 19 feature
326@defun indirect-function function &optional noerror
327@anchor{Definition of indirect-function}
328This function returns the meaning of @var{function} as a function. If
329@var{function} is a symbol, then it finds @var{function}'s function
330definition and starts over with that value. If @var{function} is not a
331symbol, then it returns @var{function} itself.
332
333This function signals a @code{void-function} error if the final symbol
334is unbound and optional argument @var{noerror} is @code{nil} or
335omitted. Otherwise, if @var{noerror} is non-@code{nil}, it returns
336@code{nil} if the final symbol is unbound.
337
338It signals a @code{cyclic-function-indirection} error if there is a
339loop in the chain of symbols.
340
341Here is how you could define @code{indirect-function} in Lisp:
342
ddff3351 343@example
b8d4c8d0
GM
344(defun indirect-function (function)
345 (if (symbolp function)
346 (indirect-function (symbol-function function))
347 function))
ddff3351 348@end example
b8d4c8d0
GM
349@end defun
350
351@node Function Forms
352@subsection Evaluation of Function Forms
353@cindex function form evaluation
354@cindex function call
355
356 If the first element of a list being evaluated is a Lisp function
357object, byte-code object or primitive function object, then that list is
358a @dfn{function call}. For example, here is a call to the function
359@code{+}:
360
361@example
362(+ 1 x)
363@end example
364
365 The first step in evaluating a function call is to evaluate the
366remaining elements of the list from left to right. The results are the
367actual argument values, one value for each list element. The next step
368is to call the function with this list of arguments, effectively using
369the function @code{apply} (@pxref{Calling Functions}). If the function
370is written in Lisp, the arguments are used to bind the argument
371variables of the function (@pxref{Lambda Expressions}); then the forms
372in the function body are evaluated in order, and the value of the last
373body form becomes the value of the function call.
374
375@node Macro Forms
376@subsection Lisp Macro Evaluation
377@cindex macro call evaluation
378
379 If the first element of a list being evaluated is a macro object, then
380the list is a @dfn{macro call}. When a macro call is evaluated, the
381elements of the rest of the list are @emph{not} initially evaluated.
382Instead, these elements themselves are used as the arguments of the
383macro. The macro definition computes a replacement form, called the
384@dfn{expansion} of the macro, to be evaluated in place of the original
385form. The expansion may be any sort of form: a self-evaluating
386constant, a symbol, or a list. If the expansion is itself a macro call,
387this process of expansion repeats until some other sort of form results.
388
389 Ordinary evaluation of a macro call finishes by evaluating the
390expansion. However, the macro expansion is not necessarily evaluated
391right away, or at all, because other programs also expand macro calls,
392and they may or may not evaluate the expansions.
393
394 Normally, the argument expressions are not evaluated as part of
395computing the macro expansion, but instead appear as part of the
396expansion, so they are computed when the expansion is evaluated.
397
398 For example, given a macro defined as follows:
399
400@example
401@group
402(defmacro cadr (x)
403 (list 'car (list 'cdr x)))
404@end group
405@end example
406
407@noindent
408an expression such as @code{(cadr (assq 'handler list))} is a macro
409call, and its expansion is:
410
411@example
412(car (cdr (assq 'handler list)))
413@end example
414
415@noindent
416Note that the argument @code{(assq 'handler list)} appears in the
417expansion.
418
419@xref{Macros}, for a complete description of Emacs Lisp macros.
420
421@node Special Forms
422@subsection Special Forms
45e46036
EZ
423@cindex special forms
424@cindex evaluation of special forms
b8d4c8d0
GM
425
426 A @dfn{special form} is a primitive function specially marked so that
427its arguments are not all evaluated. Most special forms define control
428structures or perform variable bindings---things which functions cannot
429do.
430
431 Each special form has its own rules for which arguments are evaluated
432and which are used without evaluation. Whether a particular argument is
433evaluated may depend on the results of evaluating other arguments.
434
435 Here is a list, in alphabetical order, of all of the special forms in
436Emacs Lisp with a reference to where each is described.
437
438@table @code
439@item and
440@pxref{Combining Conditions}
441
442@item catch
443@pxref{Catch and Throw}
444
445@item cond
446@pxref{Conditionals}
447
448@item condition-case
449@pxref{Handling Errors}
450
451@item defconst
452@pxref{Defining Variables}
453
b8d4c8d0
GM
454@item defvar
455@pxref{Defining Variables}
456
457@item function
458@pxref{Anonymous Functions}
459
460@item if
461@pxref{Conditionals}
462
463@item interactive
464@pxref{Interactive Call}
465
466@item let
467@itemx let*
468@pxref{Local Variables}
469
470@item or
471@pxref{Combining Conditions}
472
473@item prog1
474@itemx prog2
475@itemx progn
476@pxref{Sequencing}
477
478@item quote
479@pxref{Quoting}
480
481@item save-current-buffer
482@pxref{Current Buffer}
483
484@item save-excursion
485@pxref{Excursions}
486
487@item save-restriction
488@pxref{Narrowing}
489
b8d4c8d0
GM
490@item setq
491@pxref{Setting Variables}
492
493@item setq-default
494@pxref{Creating Buffer-Local}
495
496@item track-mouse
497@pxref{Mouse Tracking}
498
499@item unwind-protect
500@pxref{Nonlocal Exits}
501
502@item while
503@pxref{Iteration}
b8d4c8d0
GM
504@end table
505
506@cindex CL note---special forms compared
507@quotation
508@b{Common Lisp note:} Here are some comparisons of special forms in
509GNU Emacs Lisp and Common Lisp. @code{setq}, @code{if}, and
510@code{catch} are special forms in both Emacs Lisp and Common Lisp.
89b2c8a1 511@code{save-excursion} is a special form in Emacs Lisp, but
b8d4c8d0
GM
512doesn't exist in Common Lisp. @code{throw} is a special form in
513Common Lisp (because it must be able to throw multiple values), but it
514is a function in Emacs Lisp (which doesn't have multiple
515values).@refill
516@end quotation
517
518@node Autoloading
519@subsection Autoloading
520
521 The @dfn{autoload} feature allows you to call a function or macro
522whose function definition has not yet been loaded into Emacs. It
523specifies which file contains the definition. When an autoload object
524appears as a symbol's function definition, calling that symbol as a
310a820f
EZ
525function automatically loads the specified file; then it calls the
526real definition loaded from that file. The way to arrange for an
527autoload object to appear as a symbol's function definition is
528described in @ref{Autoload}.
b8d4c8d0
GM
529
530@node Quoting
531@section Quoting
532
533 The special form @code{quote} returns its single argument, as written,
534without evaluating it. This provides a way to include constant symbols
535and lists, which are not self-evaluating objects, in a program. (It is
536not necessary to quote self-evaluating objects such as numbers, strings,
537and vectors.)
538
539@defspec quote object
540This special form returns @var{object}, without evaluating it.
541@end defspec
542
543@cindex @samp{'} for quoting
544@cindex quoting using apostrophe
545@cindex apostrophe for quoting
546Because @code{quote} is used so often in programs, Lisp provides a
547convenient read syntax for it. An apostrophe character (@samp{'})
548followed by a Lisp object (in read syntax) expands to a list whose first
549element is @code{quote}, and whose second element is the object. Thus,
550the read syntax @code{'x} is an abbreviation for @code{(quote x)}.
551
552Here are some examples of expressions that use @code{quote}:
553
554@example
555@group
556(quote (+ 1 2))
557 @result{} (+ 1 2)
558@end group
559@group
560(quote foo)
561 @result{} foo
562@end group
563@group
564'foo
565 @result{} foo
566@end group
567@group
568''foo
569 @result{} (quote foo)
570@end group
571@group
572'(quote foo)
573 @result{} (quote foo)
574@end group
575@group
576['foo]
577 @result{} [(quote foo)]
578@end group
579@end example
580
581 Other quoting constructs include @code{function} (@pxref{Anonymous
582Functions}), which causes an anonymous lambda expression written in Lisp
583to be compiled, and @samp{`} (@pxref{Backquote}), which is used to quote
584only part of a list, while computing and substituting other parts.
585
03988c98
CY
586@node Backquote
587@section Backquote
588@cindex backquote (list substitution)
589@cindex ` (list substitution)
590@findex `
591
592 @dfn{Backquote constructs} allow you to quote a list, but
593selectively evaluate elements of that list. In the simplest case, it
594is identical to the special form @code{quote}
595@iftex
596@end iftex
597@ifnottex
598(described in the previous section; @pxref{Quoting}).
599@end ifnottex
600For example, these two forms yield identical results:
601
602@example
603@group
604`(a list of (+ 2 3) elements)
605 @result{} (a list of (+ 2 3) elements)
606@end group
607@group
608'(a list of (+ 2 3) elements)
609 @result{} (a list of (+ 2 3) elements)
610@end group
611@end example
612
613@findex , @r{(with backquote)}
614 The special marker @samp{,} inside of the argument to backquote
615indicates a value that isn't constant. The Emacs Lisp evaluator
616evaluates the argument of @samp{,}, and puts the value in the list
617structure:
618
619@example
620@group
621`(a list of ,(+ 2 3) elements)
622 @result{} (a list of 5 elements)
623@end group
624@end example
625
626@noindent
627Substitution with @samp{,} is allowed at deeper levels of the list
628structure also. For example:
629
630@example
631@group
632`(1 2 (3 ,(+ 4 5)))
633 @result{} (1 2 (3 9))
634@end group
635@end example
636
637@findex ,@@ @r{(with backquote)}
638@cindex splicing (with backquote)
639 You can also @dfn{splice} an evaluated value into the resulting list,
640using the special marker @samp{,@@}. The elements of the spliced list
641become elements at the same level as the other elements of the resulting
642list. The equivalent code without using @samp{`} is often unreadable.
643Here are some examples:
644
645@example
646@group
647(setq some-list '(2 3))
648 @result{} (2 3)
649@end group
650@group
651(cons 1 (append some-list '(4) some-list))
652 @result{} (1 2 3 4 2 3)
653@end group
654@group
655`(1 ,@@some-list 4 ,@@some-list)
656 @result{} (1 2 3 4 2 3)
657@end group
658
659@group
660(setq list '(hack foo bar))
661 @result{} (hack foo bar)
662@end group
663@group
664(cons 'use
665 (cons 'the
666 (cons 'words (append (cdr list) '(as elements)))))
667 @result{} (use the words foo bar as elements)
668@end group
669@group
670`(use the words ,@@(cdr list) as elements)
671 @result{} (use the words foo bar as elements)
672@end group
673@end example
674
675
b8d4c8d0
GM
676@node Eval
677@section Eval
678
679 Most often, forms are evaluated automatically, by virtue of their
680occurrence in a program being run. On rare occasions, you may need to
681write code that evaluates a form that is computed at run time, such as
682after reading a form from text being edited or getting one from a
683property list. On these occasions, use the @code{eval} function.
d032d5e7
SM
684Often @code{eval} is not needed and something else should be used instead.
685For example, to get the value of a variable, while @code{eval} works,
686@code{symbol-value} is preferable; or rather than store expressions
687in a property list that then need to go through @code{eval}, it is better to
688store functions instead that are then passed to @code{funcall}.
b8d4c8d0
GM
689
690 The functions and variables described in this section evaluate forms,
691specify limits to the evaluation process, or record recently returned
692values. Loading a file also does evaluation (@pxref{Loading}).
693
694 It is generally cleaner and more flexible to store a function in a
695data structure, and call it with @code{funcall} or @code{apply}, than
696to store an expression in the data structure and evaluate it. Using
697functions provides the ability to pass information to them as
698arguments.
699
d032d5e7 700@defun eval form &optional lexical
31cbea1d 701This is the basic function for evaluating an expression. It evaluates
b8d4c8d0
GM
702@var{form} in the current environment and returns the result. How the
703evaluation proceeds depends on the type of the object (@pxref{Forms}).
31cbea1d
CY
704
705The argument @var{lexical}, if non-@code{nil}, means to evaluate
706@var{form} using lexical scoping rules for variables, instead of the
707default dynamic scoping rules. @xref{Lexical Binding}.
b8d4c8d0
GM
708
709Since @code{eval} is a function, the argument expression that appears
710in a call to @code{eval} is evaluated twice: once as preparation before
711@code{eval} is called, and again by the @code{eval} function itself.
712Here is an example:
713
714@example
715@group
716(setq foo 'bar)
717 @result{} bar
718@end group
719@group
720(setq bar 'baz)
721 @result{} baz
722;; @r{Here @code{eval} receives argument @code{foo}}
723(eval 'foo)
724 @result{} bar
725;; @r{Here @code{eval} receives argument @code{bar}, which is the value of @code{foo}}
726(eval foo)
727 @result{} baz
728@end group
729@end example
730
731The number of currently active calls to @code{eval} is limited to
732@code{max-lisp-eval-depth} (see below).
733@end defun
734
735@deffn Command eval-region start end &optional stream read-function
736@anchor{Definition of eval-region}
737This function evaluates the forms in the current buffer in the region
738defined by the positions @var{start} and @var{end}. It reads forms from
739the region and calls @code{eval} on them until the end of the region is
740reached, or until an error is signaled and not handled.
741
742By default, @code{eval-region} does not produce any output. However,
743if @var{stream} is non-@code{nil}, any output produced by output
744functions (@pxref{Output Functions}), as well as the values that
745result from evaluating the expressions in the region are printed using
746@var{stream}. @xref{Output Streams}.
747
748If @var{read-function} is non-@code{nil}, it should be a function,
749which is used instead of @code{read} to read expressions one by one.
750This function is called with one argument, the stream for reading
751input. You can also use the variable @code{load-read-function}
752(@pxref{Definition of load-read-function,, How Programs Do Loading})
753to specify this function, but it is more robust to use the
754@var{read-function} argument.
755
756@code{eval-region} does not move point. It always returns @code{nil}.
757@end deffn
758
759@cindex evaluation of buffer contents
760@deffn Command eval-buffer &optional buffer-or-name stream filename unibyte print
761This is similar to @code{eval-region}, but the arguments provide
762different optional features. @code{eval-buffer} operates on the
763entire accessible portion of buffer @var{buffer-or-name}.
764@var{buffer-or-name} can be a buffer, a buffer name (a string), or
765@code{nil} (or omitted), which means to use the current buffer.
766@var{stream} is used as in @code{eval-region}, unless @var{stream} is
767@code{nil} and @var{print} non-@code{nil}. In that case, values that
768result from evaluating the expressions are still discarded, but the
769output of the output functions is printed in the echo area.
770@var{filename} is the file name to use for @code{load-history}
771(@pxref{Unloading}), and defaults to @code{buffer-file-name}
772(@pxref{Buffer File Name}). If @var{unibyte} is non-@code{nil},
773@code{read} converts strings to unibyte whenever possible.
774
775@findex eval-current-buffer
776@code{eval-current-buffer} is an alias for this command.
777@end deffn
778
01f17ae2 779@defopt max-lisp-eval-depth
b8d4c8d0
GM
780@anchor{Definition of max-lisp-eval-depth}
781This variable defines the maximum depth allowed in calls to @code{eval},
782@code{apply}, and @code{funcall} before an error is signaled (with error
783message @code{"Lisp nesting exceeds max-lisp-eval-depth"}).
784
785This limit, with the associated error when it is exceeded, is one way
786Emacs Lisp avoids infinite recursion on an ill-defined function. If
787you increase the value of @code{max-lisp-eval-depth} too much, such
788code can cause stack overflow instead.
789@cindex Lisp nesting error
790
791The depth limit counts internal uses of @code{eval}, @code{apply}, and
792@code{funcall}, such as for calling the functions mentioned in Lisp
793expressions, and recursive evaluation of function call arguments and
794function body forms, as well as explicit calls in Lisp code.
795
a5b99fab
CY
796The default value of this variable is 400. If you set it to a value
797less than 100, Lisp will reset it to 100 if the given value is
798reached. Entry to the Lisp debugger increases the value, if there is
799little room left, to make sure the debugger itself has room to
800execute.
b8d4c8d0
GM
801
802@code{max-specpdl-size} provides another limit on nesting.
803@xref{Definition of max-specpdl-size,, Local Variables}.
01f17ae2 804@end defopt
b8d4c8d0
GM
805
806@defvar values
807The value of this variable is a list of the values returned by all the
808expressions that were read, evaluated, and printed from buffers
809(including the minibuffer) by the standard Emacs commands which do
810this. (Note that this does @emph{not} include evaluation in
2bb0eca1 811@file{*ielm*} buffers, nor evaluation using @kbd{C-j} in
b8d4c8d0
GM
812@code{lisp-interaction-mode}.) The elements are ordered most recent
813first.
814
815@example
816@group
817(setq x 1)
818 @result{} 1
819@end group
820@group
821(list 'A (1+ 2) auto-save-default)
822 @result{} (A 3 t)
823@end group
824@group
825values
826 @result{} ((A 3 t) 1 @dots{})
827@end group
828@end example
829
830This variable is useful for referring back to values of forms recently
831evaluated. It is generally a bad idea to print the value of
832@code{values} itself, since this may be very long. Instead, examine
833particular elements, like this:
834
835@example
836@group
837;; @r{Refer to the most recent evaluation result.}
838(nth 0 values)
839 @result{} (A 3 t)
840@end group
841@group
842;; @r{That put a new element on,}
843;; @r{so all elements move back one.}
844(nth 1 values)
845 @result{} (A 3 t)
846@end group
847@group
848;; @r{This gets the element that was next-to-most-recent}
849;; @r{before this example.}
850(nth 3 values)
851 @result{} 1
852@end group
853@end example
854@end defvar