]> git.eshelyaron.com Git - emacs.git/commitdiff
cl-make-random-state was not copying its arg
authorPaul Eggert <eggert@cs.ucla.edu>
Wed, 19 Dec 2018 21:42:21 +0000 (13:42 -0800)
committerPaul Eggert <eggert@cs.ucla.edu>
Wed, 19 Dec 2018 21:42:47 +0000 (13:42 -0800)
Problem reported by Xu Chunyang (Bug#33731).
* lisp/emacs-lisp/cl-extra.el (cl-make-random-state):
Use copy-sequence, not copy-tree, so that the record is copied.
* test/lisp/emacs-lisp/cl-extra-tests.el:
(cl-extra-test-cl-make-random-state): New test.

lisp/emacs-lisp/cl-extra.el
test/lisp/emacs-lisp/cl-extra-tests.el

index 36b65f97b076f3df5a2ec295ef4df7d45b7f83bb..c38b4957fc7269f6dc03964f3986649edde219d1 100644 (file)
@@ -484,7 +484,7 @@ Optional second arg STATE is a random-state object."
 If STATE is t, return a new state object seeded from the time of day."
   (unless state (setq state cl--random-state))
   (if (cl-random-state-p state)
-      (copy-tree state t)
+      (copy-sequence state)
     (cl--make-random-state (if (integerp state) state (cl--random-time)))))
 
 ;; Implementation limits.
index baad8eb8e67080b122f418532d3788b3f4fa8081..fe59703530f4178897c578df794db8444d486b11 100644 (file)
@@ -94,4 +94,9 @@
     (should (equal (list lst3 (cdr lst3) (cddr lst3))
                    (cl-maplist fn3 lst lst2 lst3)))))
 
+(ert-deftest cl-extra-test-cl-make-random-state ()
+  (let ((s (cl-make-random-state)))
+    ;; Test for Bug#33731.
+    (should-not (eq s (cl-make-random-state s)))))
+
 ;;; cl-extra-tests.el ends here