mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-02-27 02:10:52 -08:00
(Fceiling, Ffloor): Doc fixes.
This commit is contained in:
parent
7614d76287
commit
1d6ea92f4f
1 changed files with 4 additions and 2 deletions
|
|
@ -838,7 +838,8 @@ double_identity (d)
|
|||
}
|
||||
|
||||
DEFUN ("ceiling", Fceiling, Sceiling, 1, 2, 0,
|
||||
doc: /* Return the smallest integer no less than ARG. (Round toward +inf.)
|
||||
doc: /* Return the smallest integer no less than ARG.
|
||||
This rounds the value towards +inf.
|
||||
With optional DIVISOR, return the smallest integer no less than ARG/DIVISOR. */)
|
||||
(arg, divisor)
|
||||
Lisp_Object arg, divisor;
|
||||
|
|
@ -847,7 +848,8 @@ 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. (Round towards -inf.)
|
||||
doc: /* Return the largest integer no greater than ARG.
|
||||
This rounds the value towards +inf.
|
||||
With optional DIVISOR, return the largest integer no greater than ARG/DIVISOR. */)
|
||||
(arg, divisor)
|
||||
Lisp_Object arg, divisor;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue