aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2013-01-16 21:05:16 -0500
committerGlenn Morris2013-01-16 21:05:16 -0500
commit085d34c46ae83282b6bd1002ee9fb9be62e76594 (patch)
tree57fd1dcaeaae86b94fea9573045f5407eb5a8987
parent5dfac85d208a010f3261772ccdaa42803dd78bf8 (diff)
downloademacs-085d34c46ae83282b6bd1002ee9fb9be62e76594.tar.gz
emacs-085d34c46ae83282b6bd1002ee9fb9be62e76594.zip
* src/fns.c (Frandom): Doc fix.
-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 a673c5f6123..64ffe05921f 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,7 @@
12013-01-17 Glenn Morris <rgm@gnu.org>
2
3 * fns.c (Frandom): Doc fix.
4
12013-01-13 Jan Djärv <jan.h.d@swipnet.se> 52013-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.
diff --git a/src/fns.c b/src/fns.c
index cb350df5777..fbb3fb5b161 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;