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 | |
| parent | 5dfac85d208a010f3261772ccdaa42803dd78bf8 (diff) | |
| download | emacs-085d34c46ae83282b6bd1002ee9fb9be62e76594.tar.gz emacs-085d34c46ae83282b6bd1002ee9fb9be62e76594.zip | |
* src/fns.c (Frandom): Doc fix.
| -rw-r--r-- | src/ChangeLog | 4 | ||||
| -rw-r--r-- | src/fns.c | 5 |
2 files changed, 8 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index a673c5f6123..64ffe05921f 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2013-01-17 Glenn Morris <rgm@gnu.org> | ||
| 2 | |||
| 3 | * fns.c (Frandom): Doc fix. | ||
| 4 | |||
| 1 | 2013-01-13 Jan Djärv <jan.h.d@swipnet.se> | 5 | 2013-01-13 Jan Djärv <jan.h.d@swipnet.se> |
| 2 | 6 | ||
| 3 | * nsfont.m (LCD_SMOOTHING_MARGIN): New define. | 7 | * nsfont.m (LCD_SMOOTHING_MARGIN): New define. |
| @@ -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; |