diff options
| author | Glenn Morris | 2013-01-19 12:38:13 -0800 |
|---|---|---|
| committer | Glenn Morris | 2013-01-19 12:38:13 -0800 |
| commit | 795e7a5b3202851a89a042578ee572962a723d65 (patch) | |
| tree | 5e6525000b592b55f3b5d32415ccc05cedf969d4 /src | |
| parent | 59ac2d1316937bb013ef437885dcdc0225c71de9 (diff) | |
| parent | 2fc71e3c45e521a062ea2ab17a4cfe19c3c6f941 (diff) | |
| download | emacs-795e7a5b3202851a89a042578ee572962a723d65.tar.gz emacs-795e7a5b3202851a89a042578ee572962a723d65.zip | |
Merge from emacs-24; up to 2012-12-11T09:51:12Z!dmantipov@yandex.ru
Diffstat (limited to 'src')
| -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 2564e57a825..eb393c93c4a 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2013-01-19 Glenn Morris <rgm@gnu.org> | ||
| 2 | |||
| 3 | * fns.c (Frandom): Doc fix. | ||
| 4 | |||
| 1 | 2013-01-19 Eli Zaretskii <eliz@gnu.org> | 5 | 2013-01-19 Eli Zaretskii <eliz@gnu.org> |
| 2 | 6 | ||
| 3 | * editfns.c (get_pos_property): Use SAFE_ALLOCA_LISP, to avoid | 7 | * editfns.c (get_pos_property): Use SAFE_ALLOCA_LISP, to avoid |
| @@ -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; |