aboutsummaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
Diffstat (limited to 'doc')
-rw-r--r--doc/lispref/numbers.texi7
1 files changed, 3 insertions, 4 deletions
diff --git a/doc/lispref/numbers.texi b/doc/lispref/numbers.texi
index ee6456b1be1..74a313e2e10 100644
--- a/doc/lispref/numbers.texi
+++ b/doc/lispref/numbers.texi
@@ -1236,11 +1236,10 @@ other strings to choose various seed values.
1236This function returns a pseudo-random integer. Repeated calls return a 1236This function returns a pseudo-random integer. Repeated calls return a
1237series of pseudo-random integers. 1237series of pseudo-random integers.
1238 1238
1239If @var{limit} is a positive integer, the value is chosen to be 1239If @var{limit} is a positive fixnum, the value is chosen to be
1240nonnegative and less than @var{limit}. Otherwise, the value might be 1240nonnegative and less than @var{limit}. Otherwise, the value might be
1241any integer representable in Lisp, i.e., an integer between 1241any fixnum, i.e., any integer from @code{most-negative-fixnum} through
1242@code{most-negative-fixnum} and @code{most-positive-fixnum} 1242@code{most-positive-fixnum} (@pxref{Integer Basics}).
1243(@pxref{Integer Basics}).
1244 1243
1245If @var{limit} is @code{t}, it means to choose a new seed as if Emacs 1244If @var{limit} is @code{t}, it means to choose a new seed as if Emacs
1246were restarting, typically from the system entropy. On systems 1245were restarting, typically from the system entropy. On systems