comparison man/lispref/eval.texi @ 2492:6780963faf78

[xemacs-hg @ 2005-01-21 09:43:09 by aidan] Rename "functions" node to "functions and commands," move the definition of a command further up the list of types of functions, give information on a trivial (interactive) declaration, and cross-reference to the key binding detail. Cf. 87vf9wgd08.fsf@tleepslib.sk.tsukuba.ac.jp (comp.emacs.xemacs, 2005-01-18).
author aidan
date Fri, 21 Jan 2005 09:43:12 +0000
parents c33ae14dd6d0
children 755ae5b97edb
comparison
equal deleted inserted replaced
2491:876c400e58d7 2492:6780963faf78
72 of the form @code{(car x)}: the subform @code{x} must first be evaluated 72 of the form @code{(car x)}: the subform @code{x} must first be evaluated
73 recursively, so that its value can be passed as an argument to the 73 recursively, so that its value can be passed as an argument to the
74 function @code{car}. 74 function @code{car}.
75 75
76 Evaluation of a function call ultimately calls the function specified 76 Evaluation of a function call ultimately calls the function specified
77 in it. @xref{Functions}. The execution of the function may itself work 77 in it. @xref{Functions and Commands}. The execution of the function may itself work
78 by evaluating the function definition; or the function may be a Lisp 78 by evaluating the function definition; or the function may be a Lisp
79 primitive implemented in C, or it may be a byte-compiled function 79 primitive implemented in C, or it may be a byte-compiled function
80 (@pxref{Byte Compilation}). 80 (@pxref{Byte Compilation}).
81 81
82 @cindex environment 82 @cindex environment