Mercurial > emacs
diff src/floatfns.c @ 41028:e4bce1db7f77
(Fceiling, Ffloor): Doc fixes.
| author | Richard M. Stallman <rms@gnu.org> |
|---|---|
| date | Wed, 14 Nov 2001 00:07:09 +0000 |
| parents | a17c8b15ef1b |
| children | b8eac678ad15 |
line wrap: on
line diff
--- a/src/floatfns.c Wed Nov 14 00:06:50 2001 +0000 +++ b/src/floatfns.c Wed Nov 14 00:07:09 2001 +0000 @@ -838,7 +838,8 @@ } 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 @@ } 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;
