aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorLute Kamstra2005-03-16 15:01:22 +0000
committerLute Kamstra2005-03-16 15:01:22 +0000
commit568b6e41dd08016489a50554d5fbc059446e8d3d (patch)
treea52113f68c90da9021f85b0ff5cdcb145cec4e07 /src
parent81eb8a4a73ee3b356e299475473576edd4b2c8f2 (diff)
downloademacs-568b6e41dd08016489a50554d5fbc059446e8d3d.tar.gz
emacs-568b6e41dd08016489a50554d5fbc059446e8d3d.zip
(Ffloor): Doc fix.
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog4
-rw-r--r--src/floatfns.c4
2 files changed, 6 insertions, 2 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 82f2ea87106..2ced9a98ec1 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,7 @@
12005-03-16 Lute Kamstra <lute@gnu.org>
2
3 * floatfns.c (Ffloor): Doc fix.
4
12005-03-16 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp> 52005-03-16 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
2 6
3 * mac.c: Include macterm.h instead of directly including Carbon.h. 7 * mac.c: Include macterm.h instead of directly including Carbon.h.
diff --git a/src/floatfns.c b/src/floatfns.c
index 8cd08106ef2..a64186611d4 100644
--- a/src/floatfns.c
+++ b/src/floatfns.c
@@ -1,5 +1,5 @@
1/* Primitive operations on floating point for GNU Emacs Lisp interpreter. 1/* Primitive operations on floating point for GNU Emacs Lisp interpreter.
2 Copyright (C) 1988, 1993, 1994, 1999, 2003 Free Software Foundation, Inc. 2 Copyright (C) 1988, 1993, 1994, 1999, 2003, 2005 Free Software Foundation, Inc.
3 3
4This file is part of GNU Emacs. 4This file is part of GNU Emacs.
5 5
@@ -861,7 +861,7 @@ With optional DIVISOR, return the smallest integer no less than ARG/DIVISOR. */
861 861
862DEFUN ("floor", Ffloor, Sfloor, 1, 2, 0, 862DEFUN ("floor", Ffloor, Sfloor, 1, 2, 0,
863 doc: /* Return the largest integer no greater than ARG. 863 doc: /* Return the largest integer no greater than ARG.
864This rounds the value towards +inf. 864This rounds the value towards -inf.
865With optional DIVISOR, return the largest integer no greater than ARG/DIVISOR. */) 865With optional DIVISOR, return the largest integer no greater than ARG/DIVISOR. */)
866 (arg, divisor) 866 (arg, divisor)
867 Lisp_Object arg, divisor; 867 Lisp_Object arg, divisor;