aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/emacs-lisp/cl-lib.el5
1 files changed, 0 insertions, 5 deletions
diff --git a/lisp/emacs-lisp/cl-lib.el b/lisp/emacs-lisp/cl-lib.el
index 3c9c6223018..c183852fd3b 100644
--- a/lisp/emacs-lisp/cl-lib.el
+++ b/lisp/emacs-lisp/cl-lib.el
@@ -288,11 +288,6 @@ If true return the decimal value of digit CHAR in RADIX."
288 (let ((n (aref cl-digit-char-table char))) 288 (let ((n (aref cl-digit-char-table char)))
289 (and n (< n (or radix 10)) n))) 289 (and n (< n (or radix 10)) n)))
290 290
291(defun cl--random-time ()
292 (let* ((time (copy-sequence (current-time-string))) (i (length time)) (v 0))
293 (while (>= (cl-decf i) 0) (setq v (+ (* v 3) (aref time i))))
294 v))
295
296(defconst cl-most-positive-float nil 291(defconst cl-most-positive-float nil
297 "The largest value that a Lisp float can hold. 292 "The largest value that a Lisp float can hold.
298If your system supports infinities, this is the largest finite value. 293If your system supports infinities, this is the largest finite value.