aboutsummaryrefslogtreecommitdiffstats
path: root/src/floatfns.c
diff options
context:
space:
mode:
authorEli Zaretskii2002-02-08 13:03:27 +0000
committerEli Zaretskii2002-02-08 13:03:27 +0000
commit59fe0cee1425093d96bce336ce9fa16f6a57d813 (patch)
tree944f1b62c0a84969a4e95478b44806eba034b63f /src/floatfns.c
parent4f759c801bce76ca72823ad4cb8a6dd9a564c2c2 (diff)
downloademacs-59fe0cee1425093d96bce336ce9fa16f6a57d813.tar.gz
emacs-59fe0cee1425093d96bce336ce9fa16f6a57d813.zip
(Fround): Fix a typo.
Diffstat (limited to 'src/floatfns.c')
-rw-r--r--src/floatfns.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/floatfns.c b/src/floatfns.c
index 708dfab547a..fabbffb4408 100644
--- a/src/floatfns.c
+++ b/src/floatfns.c
@@ -864,7 +864,7 @@ With optional DIVISOR, return the nearest integer to ARG/DIVISOR.
864Rounding a value equidistant between two integers may choose the 864Rounding a value equidistant between two integers may choose the
865integer closer to zero, or it may prefer an even integer, depending on 865integer closer to zero, or it may prefer an even integer, depending on
866your machine. For example, \(round 2.5\) can return 3 on some 866your machine. For example, \(round 2.5\) can return 3 on some
867systems, but 3 on others. */) 867systems, but 2 on others. */)
868 (arg, divisor) 868 (arg, divisor)
869 Lisp_Object arg, divisor; 869 Lisp_Object arg, divisor;
870{ 870{