diff options
| author | Richard M. Stallman | 1994-06-23 14:02:40 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1994-06-23 14:02:40 +0000 |
| commit | bb61c6c61d8bbea0d236d9d28ff60e69eaed2845 (patch) | |
| tree | 8343402ad11af3f6f79e2d151abb7e917f772f8d /lispref | |
| parent | 8dd7abfc2a729d3da8540c87b158d65872178b0d (diff) | |
| download | emacs-bb61c6c61d8bbea0d236d9d28ff60e69eaed2845.tar.gz emacs-bb61c6c61d8bbea0d236d9d28ff60e69eaed2845.zip | |
entered into RCS
Diffstat (limited to 'lispref')
| -rw-r--r-- | lispref/numbers.texi | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lispref/numbers.texi b/lispref/numbers.texi index e3456efbb20..b083d73c4aa 100644 --- a/lispref/numbers.texi +++ b/lispref/numbers.texi | |||
| @@ -571,10 +571,10 @@ either argument is floating point. | |||
| 571 | @section Rounding Operations | 571 | @section Rounding Operations |
| 572 | @cindex rounding without conversion | 572 | @cindex rounding without conversion |
| 573 | 573 | ||
| 574 | The functions @code{ffloor}, @code{fceil}, @code{fround} and | 574 | The functions @code{ffloor}, @code{fceiling}, @code{fround} and |
| 575 | @code{ftruncate} take a floating point argument and return a floating | 575 | @code{ftruncate} take a floating point argument and return a floating |
| 576 | point result whose value is a nearby integer. @code{ffloor} returns the | 576 | point result whose value is a nearby integer. @code{ffloor} returns the |
| 577 | nearest integer below; @code{fceil}, the nearest integer above; | 577 | nearest integer below; @code{fceiling}, the nearest integer above; |
| 578 | @code{ftruncate}, the nearest integer in the direction towards zero; | 578 | @code{ftruncate}, the nearest integer in the direction towards zero; |
| 579 | @code{fround}, the nearest integer. | 579 | @code{fround}, the nearest integer. |
| 580 | 580 | ||
| @@ -583,7 +583,7 @@ This function rounds @var{float} to the next lower integral value, and | |||
| 583 | returns that value as a floating point number. | 583 | returns that value as a floating point number. |
| 584 | @end defun | 584 | @end defun |
| 585 | 585 | ||
| 586 | @defun fceil float | 586 | @defun fceiling float |
| 587 | This function rounds @var{float} to the next higher integral value, and | 587 | This function rounds @var{float} to the next higher integral value, and |
| 588 | returns that value as a floating point number. | 588 | returns that value as a floating point number. |
| 589 | @end defun | 589 | @end defun |