diff options
| author | Dave Love | 2001-12-18 16:04:56 +0000 |
|---|---|---|
| committer | Dave Love | 2001-12-18 16:04:56 +0000 |
| commit | 3e16e035c5fad0eab8ee2b84ee175bcc16b46736 (patch) | |
| tree | 27d658d77bc732726f994c853dea78d055636d73 | |
| parent | f0e8db05af916c12399b9d316822ab8ac1eae166 (diff) | |
| download | emacs-3e16e035c5fad0eab8ee2b84ee175bcc16b46736.tar.gz emacs-3e16e035c5fad0eab8ee2b84ee175bcc16b46736.zip | |
Remove most-positive-fixnum, most-negative-fixnum.
| -rw-r--r-- | man/cl.texi | 12 |
1 files changed, 1 insertions, 11 deletions
diff --git a/man/cl.texi b/man/cl.texi index 1597119ea4c..d68eabb586f 100644 --- a/man/cl.texi +++ b/man/cl.texi | |||
| @@ -3370,7 +3370,7 @@ which were left out of Emacs Lisp. | |||
| 3370 | * Predicates on Numbers:: `plusp', `oddp', `floatp-safe', etc. | 3370 | * Predicates on Numbers:: `plusp', `oddp', `floatp-safe', etc. |
| 3371 | * Numerical Functions:: `abs', `floor*', etc. | 3371 | * Numerical Functions:: `abs', `floor*', etc. |
| 3372 | * Random Numbers:: `random*', `make-random-state' | 3372 | * Random Numbers:: `random*', `make-random-state' |
| 3373 | * Implementation Parameters:: `most-positive-fixnum', `most-positive-float' | 3373 | * Implementation Parameters:: `most-positive-float' |
| 3374 | @end menu | 3374 | @end menu |
| 3375 | 3375 | ||
| 3376 | @iftex | 3376 | @iftex |
| @@ -3577,16 +3577,6 @@ This predicate returns @code{t} if @var{object} is a | |||
| 3577 | @noindent | 3577 | @noindent |
| 3578 | This package defines several useful constants having to with numbers. | 3578 | This package defines several useful constants having to with numbers. |
| 3579 | 3579 | ||
| 3580 | @defvar most-positive-fixnum | ||
| 3581 | This constant equals the largest value a Lisp integer can hold. | ||
| 3582 | It is typically @code{2^23-1} or @code{2^25-1}. | ||
| 3583 | @end defvar | ||
| 3584 | |||
| 3585 | @defvar most-negative-fixnum | ||
| 3586 | This constant equals the smallest (most negative) value a Lisp | ||
| 3587 | integer can hold. | ||
| 3588 | @end defvar | ||
| 3589 | |||
| 3590 | The following parameters have to do with floating-point numbers. | 3580 | The following parameters have to do with floating-point numbers. |
| 3591 | This package determines their values by exercising the computer's | 3581 | This package determines their values by exercising the computer's |
| 3592 | floating-point arithmetic in various ways. Because this operation | 3582 | floating-point arithmetic in various ways. Because this operation |