diff options
| author | Richard M. Stallman | 2001-11-14 00:07:09 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 2001-11-14 00:07:09 +0000 |
| commit | 1d6ea92f4fcff0aa652489c87e60151d3bdaf6c2 (patch) | |
| tree | 9c615b4c36e207bf37c28b256649a813365319b2 /src | |
| parent | 7614d7628796659848496e8dc0c30a532cc2b779 (diff) | |
| download | emacs-1d6ea92f4fcff0aa652489c87e60151d3bdaf6c2.tar.gz emacs-1d6ea92f4fcff0aa652489c87e60151d3bdaf6c2.zip | |
(Fceiling, Ffloor): Doc fixes.
Diffstat (limited to 'src')
| -rw-r--r-- | src/floatfns.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/floatfns.c b/src/floatfns.c index fe107fb44fc..ea06db5b5f3 100644 --- a/src/floatfns.c +++ b/src/floatfns.c | |||
| @@ -838,7 +838,8 @@ double_identity (d) | |||
| 838 | } | 838 | } |
| 839 | 839 | ||
| 840 | DEFUN ("ceiling", Fceiling, Sceiling, 1, 2, 0, | 840 | DEFUN ("ceiling", Fceiling, Sceiling, 1, 2, 0, |
| 841 | doc: /* Return the smallest integer no less than ARG. (Round toward +inf.) | 841 | doc: /* Return the smallest integer no less than ARG. |
| 842 | This rounds the value towards +inf. | ||
| 842 | With optional DIVISOR, return the smallest integer no less than ARG/DIVISOR. */) | 843 | With optional DIVISOR, return the smallest integer no less than ARG/DIVISOR. */) |
| 843 | (arg, divisor) | 844 | (arg, divisor) |
| 844 | Lisp_Object arg, divisor; | 845 | Lisp_Object arg, divisor; |
| @@ -847,7 +848,8 @@ With optional DIVISOR, return the smallest integer no less than ARG/DIVISOR. */ | |||
| 847 | } | 848 | } |
| 848 | 849 | ||
| 849 | DEFUN ("floor", Ffloor, Sfloor, 1, 2, 0, | 850 | DEFUN ("floor", Ffloor, Sfloor, 1, 2, 0, |
| 850 | doc: /* Return the largest integer no greater than ARG. (Round towards -inf.) | 851 | doc: /* Return the largest integer no greater than ARG. |
| 852 | This rounds the value towards +inf. | ||
| 851 | With optional DIVISOR, return the largest integer no greater than ARG/DIVISOR. */) | 853 | With optional DIVISOR, return the largest integer no greater than ARG/DIVISOR. */) |
| 852 | (arg, divisor) | 854 | (arg, divisor) |
| 853 | Lisp_Object arg, divisor; | 855 | Lisp_Object arg, divisor; |