# HG changeset patch # User Pavel Jank # Date 1005934798 0 # Node ID 204630ee64026ad00474e399963a354be3055c2c # Parent 6b20981865e5ec914b54d38f62f43a520bc78abe (Ftimes): Doc fix. (Fquo): Likewise. (Frem): Likewise. (Fmod): Likewise. diff -r 6b20981865e5 -r 204630ee6402 src/data.c --- a/src/data.c Fri Nov 16 14:59:44 2001 +0000 +++ b/src/data.c Fri Nov 16 18:19:58 2001 +0000 @@ -2570,7 +2570,7 @@ } DEFUN ("*", Ftimes, Stimes, 0, MANY, 0, - doc: /* Returns product of any number of arguments, which are numbers or markers. + doc: /* Return product of any number of arguments, which are numbers or markers. usage: (* &rest NUMBERS-OR-MARKERS) */) (nargs, args) int nargs; @@ -2580,7 +2580,7 @@ } DEFUN ("/", Fquo, Squo, 2, MANY, 0, - doc: /* Returns first argument divided by all the remaining arguments. + doc: /* Return first argument divided by all the remaining arguments. The arguments must be numbers or markers. usage: (/ DIVIDEND DIVISOR &rest DIVISORS) */) (nargs, args) @@ -2591,7 +2591,7 @@ } DEFUN ("%", Frem, Srem, 2, 2, 0, - doc: /* Returns remainder of X divided by Y. + doc: /* Return remainder of X divided by Y. Both must be integers or markers. */) (x, y) register Lisp_Object x, y; @@ -2632,7 +2632,7 @@ #endif /* ! HAVE_FMOD */ DEFUN ("mod", Fmod, Smod, 2, 2, 0, - doc: /* Returns X modulo Y. + doc: /* Return X modulo Y. The result falls between zero (inclusive) and Y (exclusive). Both X and Y must be numbers or markers. */) (x, y)