diff options
author | Richard M. Stallman <rms@gnu.org> | 1994-06-23 14:02:40 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1994-06-23 14:02:40 +0000 |
commit | 6d64b24724645700428486fc9dd19373b8c9cb2a (patch) | |
tree | e48eaf56be584b6c8ba06fdb6ca397fd97bf9c2b /lispref | |
parent | 9a4f6301e380972bdad91b664af2cf4505f402d9 (diff) | |
download | emacs-6d64b24724645700428486fc9dd19373b8c9cb2a.tar.gz |
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. @section Rounding Operations @cindex rounding without conversion -The functions @code{ffloor}, @code{fceil}, @code{fround} and +The functions @code{ffloor}, @code{fceiling}, @code{fround} and @code{ftruncate} take a floating point argument and return a floating point result whose value is a nearby integer. @code{ffloor} returns the -nearest integer below; @code{fceil}, the nearest integer above; +nearest integer below; @code{fceiling}, the nearest integer above; @code{ftruncate}, the nearest integer in the direction towards zero; @code{fround}, the nearest integer. @@ -583,7 +583,7 @@ This function rounds @var{float} to the next lower integral value, and returns that value as a floating point number. @end defun -@defun fceil float +@defun fceiling float This function rounds @var{float} to the next higher integral value, and returns that value as a floating point number. @end defun |