emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

master d039951: Doc fix; cl-random is only pseudo-random


From: Stefan Kangas
Subject: master d039951: Doc fix; cl-random is only pseudo-random
Date: Fri, 24 Sep 2021 18:07:26 -0400 (EDT)

branch: master
commit d03995197dcc1a2a26636fe466bf4691175c89ad
Author: Stefan Kangas <stefan@marxist.se>
Commit: Stefan Kangas <stefan@marxist.se>

    Doc fix; cl-random is only pseudo-random
    
    * lisp/emacs-lisp/cl-extra.el (cl-random): Doc fix; say it's only
    pseudo-random.
---
 lisp/emacs-lisp/cl-extra.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lisp/emacs-lisp/cl-extra.el b/lisp/emacs-lisp/cl-extra.el
index 3840d13..0ed7547 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.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]