1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-02-27 02:10:52 -08:00

(Fceiling, Ffloor): Doc fixes.

This commit is contained in:
Richard M. Stallman 2001-11-14 00:07:09 +00:00
parent 7614d76287
commit 1d6ea92f4f

View file

@ -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;