comparison lispref/functions.texi @ 71707:eae7c0ae4744

(What Is a Function, Mapping Functions): Remove @tindex.
author Eli Zaretskii <eliz@gnu.org>
date Sat, 08 Jul 2006 18:09:12 +0000
parents 0d97a839b475
children 61cb5aae3bc3
comparison
equal deleted inserted replaced
71706:c68bfe90878a 71707:eae7c0ae4744
150 @end group 150 @end group
151 @end example 151 @end example
152 @end defun 152 @end defun
153 153
154 @defun subr-arity subr 154 @defun subr-arity subr
155 @tindex subr-arity
156 This function provides information about the argument list of a 155 This function provides information about the argument list of a
157 primitive, @var{subr}. The returned value is a pair 156 primitive, @var{subr}. The returned value is a pair
158 @code{(@var{min} . @var{max})}. @var{min} is the minimum number of 157 @code{(@var{min} . @var{max})}. @var{min} is the minimum number of
159 args. @var{max} is the maximum number or the symbol @code{many}, for a 158 args. @var{max} is the maximum number or the symbol @code{many}, for a
160 function with @code{&rest} arguments, or the symbol @code{unevalled} if 159 function with @code{&rest} arguments, or the symbol @code{unevalled} if
805 @end group 804 @end group
806 @end smallexample 805 @end smallexample
807 @end defun 806 @end defun
808 807
809 @defun mapc function sequence 808 @defun mapc function sequence
810 @tindex mapc
811 @code{mapc} is like @code{mapcar} except that @var{function} is used for 809 @code{mapc} is like @code{mapcar} except that @var{function} is used for
812 side-effects only---the values it returns are ignored, not collected 810 side-effects only---the values it returns are ignored, not collected
813 into a list. @code{mapc} always returns @var{sequence}. 811 into a list. @code{mapc} always returns @var{sequence}.
814 @end defun 812 @end defun
815 813