comparison src/floatfns.c @ 43189:004354581e54

(Fround): Fix a typo.
author Eli Zaretskii <eliz@gnu.org>
date Fri, 08 Feb 2002 13:03:27 +0000
parents 0f5eacbb65d9
children 0f448bd1bf9a
comparison
equal deleted inserted replaced
43188:55a2fa4336d2 43189:004354581e54
862 With optional DIVISOR, return the nearest integer to ARG/DIVISOR. 862 With optional DIVISOR, return the nearest integer to ARG/DIVISOR.
863 863
864 Rounding a value equidistant between two integers may choose the 864 Rounding a value equidistant between two integers may choose the
865 integer closer to zero, or it may prefer an even integer, depending on 865 integer closer to zero, or it may prefer an even integer, depending on
866 your machine. For example, \(round 2.5\) can return 3 on some 866 your machine. For example, \(round 2.5\) can return 3 on some
867 systems, but 3 on others. */) 867 systems, but 2 on others. */)
868 (arg, divisor) 868 (arg, divisor)
869 Lisp_Object arg, divisor; 869 Lisp_Object arg, divisor;
870 { 870 {
871 return rounding_driver (arg, divisor, emacs_rint, round2, "round"); 871 return rounding_driver (arg, divisor, emacs_rint, round2, "round");
872 } 872 }