# HG changeset patch # User Richard M. Stallman # Date 1005696429 0 # Node ID e4bce1db7f77f755a8f6041fb0235fb75c8f128e # Parent 54f6ee43146edf0a1cc8968ab1b216686b74e287 (Fceiling, Ffloor): Doc fixes. diff -r 54f6ee43146e -r e4bce1db7f77 src/floatfns.c --- 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;