summaryrefslogtreecommitdiff
path: root/lisp/emacs-lisp/cl-lib.el
diff options
context:
space:
mode:
authorPaul Eggert <eggert@cs.ucla.edu>2017-07-14 02:47:30 -0700
committerPaul Eggert <eggert@cs.ucla.edu>2017-07-14 02:47:48 -0700
commit6443a95ad74d54b8be5ba85af9b893f3f1d5fa02 (patch)
tree12b6ef36ed18d218b571a3fce7ee48a582e97372 /lisp/emacs-lisp/cl-lib.el
parent05c7c8278eba6faf8c4fcf89f4bb7912f36fdc12 (diff)
downloademacs-6443a95ad74d54b8be5ba85af9b893f3f1d5fa02.tar.gz
emacs-6443a95ad74d54b8be5ba85af9b893f3f1d5fa02.tar.bz2
emacs-6443a95ad74d54b8be5ba85af9b893f3f1d5fa02.zip
Remove duplicate cl--random-state definition
* lisp/emacs-lisp/cl-lib.el (cl--random-state): Remove. This variable is now defined in cl-extra.el (Bug#27617).
Diffstat (limited to 'lisp/emacs-lisp/cl-lib.el')
-rw-r--r--lisp/emacs-lisp/cl-lib.el3
1 files changed, 0 insertions, 3 deletions
diff --git a/lisp/emacs-lisp/cl-lib.el b/lisp/emacs-lisp/cl-lib.el
index 936c852526c..3c9c6223018 100644
--- a/lisp/emacs-lisp/cl-lib.el
+++ b/lisp/emacs-lisp/cl-lib.el
@@ -293,9 +293,6 @@ If true return the decimal value of digit CHAR in RADIX."
(while (>= (cl-decf i) 0) (setq v (+ (* v 3) (aref time i))))
v))
-(defvar cl--random-state
- (vector 'cl--random-state-tag -1 30 (cl--random-time)))
-
(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.