aboutsummaryrefslogtreecommitdiffstats
path: root/lispref
diff options
context:
space:
mode:
authorRichard M. Stallman1994-06-23 14:02:40 +0000
committerRichard M. Stallman1994-06-23 14:02:40 +0000
commitbb61c6c61d8bbea0d236d9d28ff60e69eaed2845 (patch)
tree8343402ad11af3f6f79e2d151abb7e917f772f8d /lispref
parent8dd7abfc2a729d3da8540c87b158d65872178b0d (diff)
downloademacs-bb61c6c61d8bbea0d236d9d28ff60e69eaed2845.tar.gz
emacs-bb61c6c61d8bbea0d236d9d28ff60e69eaed2845.zip
entered into RCS
Diffstat (limited to 'lispref')
-rw-r--r--lispref/numbers.texi6
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
574The functions @code{ffloor}, @code{fceil}, @code{fround} and 574The 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
576point result whose value is a nearby integer. @code{ffloor} returns the 576point result whose value is a nearby integer. @code{ffloor} returns the
577nearest integer below; @code{fceil}, the nearest integer above; 577nearest 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
583returns that value as a floating point number. 583returns that value as a floating point number.
584@end defun 584@end defun
585 585
586@defun fceil float 586@defun fceiling float
587This function rounds @var{float} to the next higher integral value, and 587This function rounds @var{float} to the next higher integral value, and
588returns that value as a floating point number. 588returns that value as a floating point number.
589@end defun 589@end defun