diff options
| author | Pavel Janík | 2001-11-16 18:19:58 +0000 |
|---|---|---|
| committer | Pavel Janík | 2001-11-16 18:19:58 +0000 |
| commit | be24eadf24015c02838ff3e0dfa35f030c6dc9b3 (patch) | |
| tree | 321c85800b18fb14e0ec30bd8da82e92a6a82547 /src/data.c | |
| parent | fa336b9179ab9bf09e14062949c18fad2bef811c (diff) | |
| download | emacs-be24eadf24015c02838ff3e0dfa35f030c6dc9b3.tar.gz emacs-be24eadf24015c02838ff3e0dfa35f030c6dc9b3.zip | |
(Ftimes): Doc fix.
(Fquo): Likewise.
(Frem): Likewise.
(Fmod): Likewise.
Diffstat (limited to 'src/data.c')
| -rw-r--r-- | src/data.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/data.c b/src/data.c index b130129967f..266a1946fa0 100644 --- a/src/data.c +++ b/src/data.c | |||
| @@ -2570,7 +2570,7 @@ usage: (- &optional NUMBER-OR-MARKER &rest MORE-NUMBERS-OR-MARKERS) */) | |||
| 2570 | } | 2570 | } |
| 2571 | 2571 | ||
| 2572 | DEFUN ("*", Ftimes, Stimes, 0, MANY, 0, | 2572 | DEFUN ("*", Ftimes, Stimes, 0, MANY, 0, |
| 2573 | doc: /* Returns product of any number of arguments, which are numbers or markers. | 2573 | doc: /* Return product of any number of arguments, which are numbers or markers. |
| 2574 | usage: (* &rest NUMBERS-OR-MARKERS) */) | 2574 | usage: (* &rest NUMBERS-OR-MARKERS) */) |
| 2575 | (nargs, args) | 2575 | (nargs, args) |
| 2576 | int nargs; | 2576 | int nargs; |
| @@ -2580,7 +2580,7 @@ usage: (* &rest NUMBERS-OR-MARKERS) */) | |||
| 2580 | } | 2580 | } |
| 2581 | 2581 | ||
| 2582 | DEFUN ("/", Fquo, Squo, 2, MANY, 0, | 2582 | DEFUN ("/", Fquo, Squo, 2, MANY, 0, |
| 2583 | doc: /* Returns first argument divided by all the remaining arguments. | 2583 | doc: /* Return first argument divided by all the remaining arguments. |
| 2584 | The arguments must be numbers or markers. | 2584 | The arguments must be numbers or markers. |
| 2585 | usage: (/ DIVIDEND DIVISOR &rest DIVISORS) */) | 2585 | usage: (/ DIVIDEND DIVISOR &rest DIVISORS) */) |
| 2586 | (nargs, args) | 2586 | (nargs, args) |
| @@ -2591,7 +2591,7 @@ usage: (/ DIVIDEND DIVISOR &rest DIVISORS) */) | |||
| 2591 | } | 2591 | } |
| 2592 | 2592 | ||
| 2593 | DEFUN ("%", Frem, Srem, 2, 2, 0, | 2593 | DEFUN ("%", Frem, Srem, 2, 2, 0, |
| 2594 | doc: /* Returns remainder of X divided by Y. | 2594 | doc: /* Return remainder of X divided by Y. |
| 2595 | Both must be integers or markers. */) | 2595 | Both must be integers or markers. */) |
| 2596 | (x, y) | 2596 | (x, y) |
| 2597 | register Lisp_Object x, y; | 2597 | register Lisp_Object x, y; |
| @@ -2632,7 +2632,7 @@ fmod (f1, f2) | |||
| 2632 | #endif /* ! HAVE_FMOD */ | 2632 | #endif /* ! HAVE_FMOD */ |
| 2633 | 2633 | ||
| 2634 | DEFUN ("mod", Fmod, Smod, 2, 2, 0, | 2634 | DEFUN ("mod", Fmod, Smod, 2, 2, 0, |
| 2635 | doc: /* Returns X modulo Y. | 2635 | doc: /* Return X modulo Y. |
| 2636 | The result falls between zero (inclusive) and Y (exclusive). | 2636 | The result falls between zero (inclusive) and Y (exclusive). |
| 2637 | Both X and Y must be numbers or markers. */) | 2637 | Both X and Y must be numbers or markers. */) |
| 2638 | (x, y) | 2638 | (x, y) |