(Ffloor): Doc fix.

This commit is contained in:
Lute Kamstra 2005-03-16 15:01:22 +00:00
parent 81eb8a4a73
commit 568b6e41dd
2 changed files with 6 additions and 2 deletions

View file

@ -1,3 +1,7 @@
2005-03-16 Lute Kamstra <lute@gnu.org>
* floatfns.c (Ffloor): Doc fix.
2005-03-16 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
* mac.c: Include macterm.h instead of directly including Carbon.h.

View file

@ -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;