aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDave Love2000-11-29 14:55:23 +0000
committerDave Love2000-11-29 14:55:23 +0000
commitaad529410b9a127253be02eb2ebca1054b91a840 (patch)
tree4ddd998e19e81a10e09dc366e08f1e2446cd35f8
parent6ad948eb502f79cb5872d8fa115f5ce97808ce8d (diff)
downloademacs-aad529410b9a127253be02eb2ebca1054b91a840.tar.gz
emacs-aad529410b9a127253be02eb2ebca1054b91a840.zip
subr-arity
-rw-r--r--lispref/functions.texi10
1 files changed, 10 insertions, 0 deletions
diff --git a/lispref/functions.texi b/lispref/functions.texi
index 6cdcb6bce1b..de726e55104 100644
--- a/lispref/functions.texi
+++ b/lispref/functions.texi
@@ -144,6 +144,16 @@ function. For example:
144@end example 144@end example
145@end defun 145@end defun
146 146
147@defun subr-arity subr
148@tindex subr-arity
149This function provides information about the argument list of a
150primitive, @var{subr}. The returned value is a pair
151@code{(@var{min} . @var{max})}. @var{min} is the minimum number of
152args. @var{max} is the maximum number or the symbol @code{many}, for a
153function with @code{&rest} arguments, or the symbol @code{unevalled} if
154@var{subr} is a special form.
155@end defun
156
147@node Lambda Expressions 157@node Lambda Expressions
148@section Lambda Expressions 158@section Lambda Expressions
149@cindex lambda expression 159@cindex lambda expression