aboutsummaryrefslogtreecommitdiffstats
path: root/src/floatfns.c
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/floatfns.c
parent81eb8a4a73ee3b356e299475473576edd4b2c8f2 (diff)
downloademacs-568b6e41dd08016489a50554d5fbc059446e8d3d.tar.gz
emacs-568b6e41dd08016489a50554d5fbc059446e8d3d.zip
(Ffloor): Doc fix.
Diffstat (limited to 'src/floatfns.c')
-rw-r--r--src/floatfns.c4
1 files changed, 2 insertions, 2 deletions
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;