changeset 43181:0f5eacbb65d9

(Fround): A better doc fix.
author Eli Zaretskii <eliz@gnu.org>
date Fri, 08 Feb 2002 10:21:21 +0000
parents d252fb796645
children faaa5a3adc82
files src/floatfns.c
diffstat 1 files changed, 3 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/src/floatfns.c	Fri Feb 08 10:19:25 2002 +0000
+++ b/src/floatfns.c	Fri Feb 08 10:21:21 2002 +0000
@@ -861,10 +861,9 @@
        doc: /* Return the nearest integer to ARG.
 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
+Rounding a value equidistant between two integers may choose the
+integer closer to zero, or it may prefer an even integer, depending on
+your machine.  For example, \(round 2.5\) can return 3 on some
 systems, but 3 on others.  */)
      (arg, divisor)
      Lisp_Object arg, divisor;