aboutsummaryrefslogtreecommitdiffstats
path: root/src/floatfns.c
diff options
context:
space:
mode:
authorRichard M. Stallman <[email protected]>2001-11-14 00:07:09 +0000
committerRichard M. Stallman <[email protected]>2001-11-14 00:07:09 +0000
commit1d6ea92f4fcff0aa652489c87e60151d3bdaf6c2 (patch)
tree9c615b4c36e207bf37c28b256649a813365319b2 /src/floatfns.c
parent7614d7628796659848496e8dc0c30a532cc2b779 (diff)
(Fceiling, Ffloor): Doc fixes.
Diffstat (limited to 'src/floatfns.c')
-rw-r--r--src/floatfns.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/floatfns.c b/src/floatfns.c
index fe107fb44f..ea06db5b5f 100644
--- a/src/floatfns.c
+++ b/src/floatfns.c
@@ -838,7 +838,8 @@ double_identity (d)
}
DEFUN ("ceiling", Fceiling, Sceiling, 1, 2, 0,
- doc: /* Return the smallest integer no less than ARG. (Round toward +inf.)
+ doc: /* Return the smallest integer no less than ARG.
+This rounds the value towards +inf.
With optional DIVISOR, return the smallest integer no less than ARG/DIVISOR. */)
(arg, divisor)
Lisp_Object arg, divisor;
@@ -847,7 +848,8 @@ With optional DIVISOR, return the smallest integer no less than ARG/DIVISOR. */
}
DEFUN ("floor", Ffloor, Sfloor, 1, 2, 0,
- doc: /* Return the largest integer no greater than ARG. (Round towards -inf.)
+ doc: /* Return the largest integer no greater than ARG.
+This rounds the value towards +inf.
With optional DIVISOR, return the largest integer no greater than ARG/DIVISOR. */)
(arg, divisor)
Lisp_Object arg, divisor;