diff options
author | Stefan Kangas <stefan@marxist.se> | 2021-09-25 00:05:55 +0200 |
---|---|---|
committer | Stefan Kangas <stefan@marxist.se> | 2021-09-25 00:05:55 +0200 |
commit | d03995197dcc1a2a26636fe466bf4691175c89ad (patch) | |
tree | 7cd0714ca992274950dafae0a632e48af810c40b /lisp/emacs-lisp | |
parent | 79a9b50621ec22640358bd6b94b65d14d747c644 (diff) | |
download | emacs-d03995197dcc1a2a26636fe466bf4691175c89ad.tar.gz emacs-d03995197dcc1a2a26636fe466bf4691175c89ad.tar.bz2 emacs-d03995197dcc1a2a26636fe466bf4691175c89ad.zip |
Doc fix; cl-random is only pseudo-random
* lisp/emacs-lisp/cl-extra.el (cl-random): Doc fix; say it's only
pseudo-random.
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r-- | lisp/emacs-lisp/cl-extra.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/cl-extra.el b/lisp/emacs-lisp/cl-extra.el index 3840d13ecff..0ed75475097 100644 --- a/lisp/emacs-lisp/cl-extra.el +++ b/lisp/emacs-lisp/cl-extra.el @@ -455,7 +455,7 @@ as an integer unless JUNK-ALLOWED is non-nil." ;;;###autoload (defun cl-random (lim &optional state) - "Return a random nonnegative number less than LIM, an integer or float. + "Return a pseudo-random nonnegative number less than LIM, an integer or float. Optional second arg STATE is a random-state object." (or state (setq state cl--random-state)) ;; Inspired by "ran3" from Numerical Recipes. Additive congruential method. |