diff options
| author | Dave Love | 2000-11-29 14:55:23 +0000 |
|---|---|---|
| committer | Dave Love | 2000-11-29 14:55:23 +0000 |
| commit | aad529410b9a127253be02eb2ebca1054b91a840 (patch) | |
| tree | 4ddd998e19e81a10e09dc366e08f1e2446cd35f8 | |
| parent | 6ad948eb502f79cb5872d8fa115f5ce97808ce8d (diff) | |
| download | emacs-aad529410b9a127253be02eb2ebca1054b91a840.tar.gz emacs-aad529410b9a127253be02eb2ebca1054b91a840.zip | |
subr-arity
| -rw-r--r-- | lispref/functions.texi | 10 |
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 | ||
| 149 | This function provides information about the argument list of a | ||
| 150 | primitive, @var{subr}. The returned value is a pair | ||
| 151 | @code{(@var{min} . @var{max})}. @var{min} is the minimum number of | ||
| 152 | args. @var{max} is the maximum number or the symbol @code{many}, for a | ||
| 153 | function 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 |