comparison lispref/eval.texi @ 53479:22b1822fac7f

(Function Indirection): Add anchor.
author Luc Teirlinck <teirllm@auburn.edu>
date Sat, 03 Jan 2004 16:39:33 +0000
parents 66f89280d7be
children 93c897de7898
comparison
equal deleted inserted replaced
53478:82d0164fa384 53479:22b1822fac7f
311 311
312 The built-in function @code{indirect-function} provides an easy way to 312 The built-in function @code{indirect-function} provides an easy way to
313 perform symbol function indirection explicitly. 313 perform symbol function indirection explicitly.
314 314
315 @c Emacs 19 feature 315 @c Emacs 19 feature
316 @anchor{Definition of indirect-function}
316 @defun indirect-function function 317 @defun indirect-function function
317 This function returns the meaning of @var{function} as a function. If 318 This function returns the meaning of @var{function} as a function. If
318 @var{function} is a symbol, then it finds @var{function}'s function 319 @var{function} is a symbol, then it finds @var{function}'s function
319 definition and starts over with that value. If @var{function} is not a 320 definition and starts over with that value. If @var{function} is not a
320 symbol, then it returns @var{function} itself. 321 symbol, then it returns @var{function} itself.