diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 4 | ||||
| -rw-r--r-- | src/fns.c | 5 |
2 files changed, 7 insertions, 2 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 12992f1de0a..122dbd903fe 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2012-09-30 Chong Yidong <cyd@gnu.org> | ||
| 2 | |||
| 3 | * fns.c (Frandom): Doc fix. | ||
| 4 | |||
| 1 | 2012-09-30 Martin Rudalics <rudalics@gmx.at> | 5 | 2012-09-30 Martin Rudalics <rudalics@gmx.at> |
| 2 | 6 | ||
| 3 | * window.c (Vwindow_combination_limit): New default value. | 7 | * window.c (Vwindow_combination_limit): New default value. |
| @@ -61,8 +61,9 @@ DEFUN ("identity", Fidentity, Sidentity, 1, 1, 0, | |||
| 61 | 61 | ||
| 62 | DEFUN ("random", Frandom, Srandom, 0, 1, 0, | 62 | DEFUN ("random", Frandom, Srandom, 0, 1, 0, |
| 63 | doc: /* Return a pseudo-random number. | 63 | doc: /* Return a pseudo-random number. |
| 64 | All integers representable in Lisp are equally likely. | 64 | All integers representable in Lisp, i.e. between `most-negative-fixnum' |
| 65 | On most systems, this is 29 bits' worth. | 65 | and `most-positive-fixnum', inclusive, are equally likely. |
| 66 | |||
| 66 | With positive integer LIMIT, return random number in interval [0,LIMIT). | 67 | With positive integer LIMIT, return random number in interval [0,LIMIT). |
| 67 | 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. |
| 68 | Other values of LIMIT are ignored. */) | 69 | Other values of LIMIT are ignored. */) |