]> git.eshelyaron.com Git - emacs.git/commitdiff
* lisp/emacs-lisp/comp-cstr.el (comp-cstr-copy): Tweak for perf.
authorAndrea Corallo <akrl@sdf.org>
Wed, 23 Dec 2020 09:48:29 +0000 (10:48 +0100)
committerAndrea Corallo <akrl@sdf.org>
Wed, 23 Dec 2020 09:58:20 +0000 (10:58 +0100)
lisp/emacs-lisp/comp-cstr.el

index 22d3958aed3184b8b9753f4bad749c643575d6bb..aaeb9cf3e9b81fc4eee68d3d6b36960f071be0a2 100644 (file)
@@ -113,10 +113,10 @@ Integer values are handled in the `range' slot.")
 (defun comp-cstr-copy (cstr)
   "Return a deep copy of CSTR."
   (with-comp-cstr-accessors
-    (make-comp-cstr :typeset (copy-tree (typeset cstr))
-                    :valset (copy-tree (valset cstr))
+    (make-comp-cstr :typeset (copy-sequence (typeset cstr))
+                    :valset (copy-sequence (valset cstr))
                     :range (copy-tree (range cstr))
-                    :neg (copy-tree (neg cstr)))))
+                    :neg (neg cstr))))
 
 (defsubst comp-cstr-empty-p (cstr)
   "Return t if CSTR is equivalent to the `nil' type specifier or nil otherwise."