aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorEli Zaretskii2002-02-08 10:19:25 +0000
committerEli Zaretskii2002-02-08 10:19:25 +0000
commit6ded2c89b9a8523cd09ed1aa73dfaff59e405b1a (patch)
tree5e792a958afae28eb1a87b0332d99c7758d17863 /src
parent7c15926f17c458c8192cb99b82d6f882c60e42c0 (diff)
downloademacs-6ded2c89b9a8523cd09ed1aa73dfaff59e405b1a.tar.gz
emacs-6ded2c89b9a8523cd09ed1aa73dfaff59e405b1a.zip
(Fround): Doc fix.
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog4
-rw-r--r--src/floatfns.c8
2 files changed, 11 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 1af848ebc80..6b393590ac1 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,7 @@
12002-02-08 Eli Zaretskii <eliz@is.elta.co.il>
2
3 * floatfns.c (Fround): Doc fix.
4
12002-02-08 Pavel Jan,Bm(Bk <Pavel@Janik.cz> 52002-02-08 Pavel Jan,Bm(Bk <Pavel@Janik.cz>
2 6
3 * sysdep.c (init_system_name): Put unused variable `p' in #if 0. 7 * sysdep.c (init_system_name): Put unused variable `p' in #if 0.
diff --git a/src/floatfns.c b/src/floatfns.c
index ea06db5b5f3..0064eec6259 100644
--- a/src/floatfns.c
+++ b/src/floatfns.c
@@ -859,7 +859,13 @@ With optional DIVISOR, return the largest integer no greater than ARG/DIVISOR.
859 859
860DEFUN ("round", Fround, Sround, 1, 2, 0, 860DEFUN ("round", Fround, Sround, 1, 2, 0,
861 doc: /* Return the nearest integer to ARG. 861 doc: /* Return the nearest integer to ARG.
862With optional DIVISOR, return the nearest integer to ARG/DIVISOR. */) 862With optional DIVISOR, return the nearest integer to ARG/DIVISOR.
863
864If ARG is equally close to both the nearest integer smaller than ARG
865and to the nearest integer larger than ARG, the result can be either
866of these two integers, depending on the underlying implementation of
867the system library. For example, \(round 2.5\) can return 3 on some
868systems, but 3 on others. */)
863 (arg, divisor) 869 (arg, divisor)
864 Lisp_Object arg, divisor; 870 Lisp_Object arg, divisor;
865{ 871{