projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
1e09f8d
)
* lisp/emacs-lisp/cl-lib.el (cl--random-time): Remove as well
author
Stefan Monnier
<monnier@iro.umontreal.ca>
Fri, 14 Jul 2017 14:29:10 +0000
(10:29 -0400)
committer
Stefan Monnier
<monnier@iro.umontreal.ca>
Fri, 14 Jul 2017 14:29:10 +0000
(10:29 -0400)
It's also defined in cl-extra.el.
lisp/emacs-lisp/cl-lib.el
patch
|
blob
|
history
diff --git
a/lisp/emacs-lisp/cl-lib.el
b/lisp/emacs-lisp/cl-lib.el
index 3c9c622301801a4011d920266496eeb440c65017..c183852fd3ba2abab43149d53daaff564c5a9a9e 100644
(file)
--- 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."
(let ((n (aref cl-digit-char-table char)))
(and n (< n (or radix 10)) n)))
-(defun cl--random-time ()
- (let* ((time (copy-sequence (current-time-string))) (i (length time)) (v 0))
- (while (>= (cl-decf i) 0) (setq v (+ (* v 3) (aref time i))))
- v))
-
(defconst cl-most-positive-float nil
"The largest value that a Lisp float can hold.
If your system supports infinities, this is the largest finite value.