aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/data.c8
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
2572DEFUN ("*", Ftimes, Stimes, 0, MANY, 0, 2572DEFUN ("*", 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.
2574usage: (* &rest NUMBERS-OR-MARKERS) */) 2574usage: (* &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
2582DEFUN ("/", Fquo, Squo, 2, MANY, 0, 2582DEFUN ("/", 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.
2584The arguments must be numbers or markers. 2584The arguments must be numbers or markers.
2585usage: (/ DIVIDEND DIVISOR &rest DIVISORS) */) 2585usage: (/ DIVIDEND DIVISOR &rest DIVISORS) */)
2586 (nargs, args) 2586 (nargs, args)
@@ -2591,7 +2591,7 @@ usage: (/ DIVIDEND DIVISOR &rest DIVISORS) */)
2591} 2591}
2592 2592
2593DEFUN ("%", Frem, Srem, 2, 2, 0, 2593DEFUN ("%", Frem, Srem, 2, 2, 0,
2594 doc: /* Returns remainder of X divided by Y. 2594 doc: /* Return remainder of X divided by Y.
2595Both must be integers or markers. */) 2595Both 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
2634DEFUN ("mod", Fmod, Smod, 2, 2, 0, 2634DEFUN ("mod", Fmod, Smod, 2, 2, 0,
2635 doc: /* Returns X modulo Y. 2635 doc: /* Return X modulo Y.
2636The result falls between zero (inclusive) and Y (exclusive). 2636The result falls between zero (inclusive) and Y (exclusive).
2637Both X and Y must be numbers or markers. */) 2637Both X and Y must be numbers or markers. */)
2638 (x, y) 2638 (x, y)