diff options
author | Lute Kamstra <lute@gnu.org> | 2005-03-16 15:01:22 +0000 |
---|---|---|
committer | Lute Kamstra <lute@gnu.org> | 2005-03-16 15:01:22 +0000 |
commit | 568b6e41dd08016489a50554d5fbc059446e8d3d (patch) | |
tree | a52113f68c90da9021f85b0ff5cdcb145cec4e07 /src/floatfns.c | |
parent | 81eb8a4a73ee3b356e299475473576edd4b2c8f2 (diff) | |
download | emacs-568b6e41dd08016489a50554d5fbc059446e8d3d.tar.gz |
(Ffloor): Doc fix.
Diffstat (limited to 'src/floatfns.c')
-rw-r--r-- | src/floatfns.c | 4 |
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 @@ /* Primitive operations on floating point for GNU Emacs Lisp interpreter. - Copyright (C) 1988, 1993, 1994, 1999, 2003 Free Software Foundation, Inc. + Copyright (C) 1988, 1993, 1994, 1999, 2003, 2005 Free Software Foundation, Inc. This file is part of GNU Emacs. @@ -861,7 +861,7 @@ With optional DIVISOR, return the smallest integer no less than ARG/DIVISOR. */ DEFUN ("floor", Ffloor, Sfloor, 1, 2, 0, doc: /* Return the largest integer no greater than ARG. -This rounds the value towards +inf. +This rounds the value towards -inf. With optional DIVISOR, return the largest integer no greater than ARG/DIVISOR. */) (arg, divisor) Lisp_Object arg, divisor; |