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