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