aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorGlenn Morris2013-01-19 12:38:13 -0800
committerGlenn Morris2013-01-19 12:38:13 -0800
commit795e7a5b3202851a89a042578ee572962a723d65 (patch)
tree5e6525000b592b55f3b5d32415ccc05cedf969d4 /src
parent59ac2d1316937bb013ef437885dcdc0225c71de9 (diff)
parent2fc71e3c45e521a062ea2ab17a4cfe19c3c6f941 (diff)
downloademacs-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/ChangeLog4
-rw-r--r--src/fns.c5
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 @@
12013-01-19 Glenn Morris <rgm@gnu.org>
2
3 * fns.c (Frandom): Doc fix.
4
12013-01-19 Eli Zaretskii <eliz@gnu.org> 52013-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
diff --git a/src/fns.c b/src/fns.c
index 687c3f6ff39..e066d3cbb8f 100644
--- a/src/fns.c
+++ b/src/fns.c
@@ -66,7 +66,10 @@ and `most-positive-fixnum', inclusive, are equally likely.
66 66
67With positive integer LIMIT, return random number in interval [0,LIMIT). 67With positive integer LIMIT, return random number in interval [0,LIMIT).
68With argument t, set the random number seed from the current time and pid. 68With argument t, set the random number seed from the current time and pid.
69Other values of LIMIT are ignored. */) 69With a string argument, set the seed based on the string's contents.
70Other values of LIMIT are ignored.
71
72See 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;