comparison lispref/eval.texi @ 27193:89afca54a135

@ifinto -> @ifnottex.
author Gerd Moellmann <gerd@gnu.org>
date Wed, 05 Jan 2000 15:18:01 +0000
parents 3967db186db6
children 23a1cea22d13
comparison
equal deleted inserted replaced
27192:f70a80cecdd3 27193:89afca54a135
16 on the data type of the object, according to rules described in this 16 on the data type of the object, according to rules described in this
17 chapter. The interpreter runs automatically to evaluate portions of 17 chapter. The interpreter runs automatically to evaluate portions of
18 your program, but can also be called explicitly via the Lisp primitive 18 your program, but can also be called explicitly via the Lisp primitive
19 function @code{eval}. 19 function @code{eval}.
20 20
21 @ifinfo 21 @ifnottex
22 @menu 22 @menu
23 * Intro Eval:: Evaluation in the scheme of things. 23 * Intro Eval:: Evaluation in the scheme of things.
24 * Forms:: How various sorts of objects are evaluated. 24 * Forms:: How various sorts of objects are evaluated.
25 * Quoting:: Avoiding evaluation (to put constants in the program). 25 * Quoting:: Avoiding evaluation (to put constants in the program).
26 * Eval:: How to invoke the Lisp interpreter explicitly. 26 * Eval:: How to invoke the Lisp interpreter explicitly.
35 function by evaluating the expressions in the function body. Thus, 35 function by evaluating the expressions in the function body. Thus,
36 running any Lisp program really means running the Lisp interpreter. 36 running any Lisp program really means running the Lisp interpreter.
37 37
38 How the evaluator handles an object depends primarily on the data 38 How the evaluator handles an object depends primarily on the data
39 type of the object. 39 type of the object.
40 @end ifinfo 40 @end ifnottex
41 41
42 @cindex forms 42 @cindex forms
43 @cindex expression 43 @cindex expression
44 A Lisp object that is intended for evaluation is called an 44 A Lisp object that is intended for evaluation is called an
45 @dfn{expression} or a @dfn{form}. The fact that expressions are data 45 @dfn{expression} or a @dfn{form}. The fact that expressions are data