]> git.eshelyaron.com Git - emacs.git/commitdiff
Add two doc strings to cl-extra.el
authorJeremy Bryant <jb@jeremybryant.net>
Sun, 12 Nov 2023 15:07:23 +0000 (15:07 +0000)
committerEli Zaretskii <eliz@gnu.org>
Sun, 12 Nov 2023 19:12:55 +0000 (21:12 +0200)
* lisp/emacs-lisp/cl-extra.el (cl--random-time)
(cl-find-class): Add docstrings.  (Bug#66949)

lisp/emacs-lisp/cl-extra.el

index de5eb9c2d9227c1795e29b167321dd6e92386769..8ba320cdfb63adc825c934f96120bac0393753a4 100644 (file)
@@ -440,7 +440,10 @@ as an integer unless JUNK-ALLOWED is non-nil."
 ;; Random numbers.
 
 (defun cl--random-time ()
-  (car (time-convert nil t)))
+    "Return high-precision timestamp from `time-convert'.
+
+For example, suitable for use as seed by `cl-make-random-state'."
+    (car (time-convert nil t)))
 
 ;;;###autoload (autoload 'cl-random-state-p "cl-extra")
 (cl-defstruct (cl--random-state
@@ -733,7 +736,11 @@ PROPLIST is a list of the sort returned by `symbol-plist'.
 (declare-function help-fns-short-filename "help-fns" (filename))
 
 ;;;###autoload
-(defun cl-find-class (type) (cl--find-class type))
+(defun cl-find-class (type)
+    "Return CL class of TYPE.
+
+Call `cl--find-class' to get TYPE's propname `cl--class'"
+  (cl--find-class type))
 
 ;;;###autoload
 (defun cl-describe-type (type)