Mercurial > emacs
diff src/floatfns.c @ 43179:b8eac678ad15
(Fround): Doc fix.
| author | Eli Zaretskii <eliz@gnu.org> |
|---|---|
| date | Fri, 08 Feb 2002 10:18:41 +0000 |
| parents | e4bce1db7f77 |
| children | 0f5eacbb65d9 |
line wrap: on
line diff
--- a/src/floatfns.c Fri Feb 08 09:46:14 2002 +0000 +++ b/src/floatfns.c Fri Feb 08 10:18:41 2002 +0000 @@ -859,7 +859,13 @@ DEFUN ("round", Fround, Sround, 1, 2, 0, doc: /* Return the nearest integer to ARG. -With optional DIVISOR, return the nearest integer to ARG/DIVISOR. */) +With optional DIVISOR, return the nearest integer to ARG/DIVISOR. + +If ARG is equally close to both the nearest integer smaller than ARG +and to the nearest integer larger than ARG, the result can be either +of these two integers, depending on the underlying implementation of +the system library. For example, \(round 2.5\) can return 3 on some +systems, but 3 on others. */) (arg, divisor) Lisp_Object arg, divisor; {
