diff options
| author | Glenn Morris | 2013-01-16 21:05:16 -0500 |
|---|---|---|
| committer | Glenn Morris | 2013-01-16 21:05:16 -0500 |
| commit | 085d34c46ae83282b6bd1002ee9fb9be62e76594 (patch) | |
| tree | 57fd1dcaeaae86b94fea9573045f5407eb5a8987 /src/fns.c | |
| parent | 5dfac85d208a010f3261772ccdaa42803dd78bf8 (diff) | |
| download | emacs-085d34c46ae83282b6bd1002ee9fb9be62e76594.tar.gz emacs-085d34c46ae83282b6bd1002ee9fb9be62e76594.zip | |
* src/fns.c (Frandom): Doc fix.
Diffstat (limited to 'src/fns.c')
| -rw-r--r-- | src/fns.c | 5 |
1 files changed, 4 insertions, 1 deletions
| @@ -66,7 +66,10 @@ and `most-positive-fixnum', inclusive, are equally likely. | |||
| 66 | 66 | ||
| 67 | With positive integer LIMIT, return random number in interval [0,LIMIT). | 67 | With positive integer LIMIT, return random number in interval [0,LIMIT). |
| 68 | With argument t, set the random number seed from the current time and pid. | 68 | With argument t, set the random number seed from the current time and pid. |
| 69 | Other values of LIMIT are ignored. */) | 69 | With a string argument, set the seed based on the string's contents. |
| 70 | Other values of LIMIT are ignored. | ||
| 71 | |||
| 72 | See Info node `(elisp)Random Numbers' for more details. */) | ||
| 70 | (Lisp_Object limit) | 73 | (Lisp_Object limit) |
| 71 | { | 74 | { |
| 72 | EMACS_INT val; | 75 | EMACS_INT val; |