diff options
| author | Lute Kamstra | 2005-03-16 15:01:22 +0000 |
|---|---|---|
| committer | Lute Kamstra | 2005-03-16 15:01:22 +0000 |
| commit | 568b6e41dd08016489a50554d5fbc059446e8d3d (patch) | |
| tree | a52113f68c90da9021f85b0ff5cdcb145cec4e07 /src/floatfns.c | |
| parent | 81eb8a4a73ee3b356e299475473576edd4b2c8f2 (diff) | |
| download | emacs-568b6e41dd08016489a50554d5fbc059446e8d3d.tar.gz emacs-568b6e41dd08016489a50554d5fbc059446e8d3d.zip | |
(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 @@ | |||
| 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 | ||
| 4 | This file is part of GNU Emacs. | 4 | This 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 | ||
| 862 | DEFUN ("floor", Ffloor, Sfloor, 1, 2, 0, | 862 | DEFUN ("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. |
| 864 | This rounds the value towards +inf. | 864 | This rounds the value towards -inf. |
| 865 | With optional DIVISOR, return the largest integer no greater than ARG/DIVISOR. */) | 865 | With 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; |