]> git.eshelyaron.com Git - emacs.git/commitdiff
(edmacro-subseq): Don't use cl-push/cl-pop.
authorStefan Monnier <monnier@iro.umontreal.ca>
Fri, 6 Sep 2002 19:46:24 +0000 (19:46 +0000)
committerStefan Monnier <monnier@iro.umontreal.ca>
Fri, 6 Sep 2002 19:46:24 +0000 (19:46 +0000)
lisp/edmacro.el

index dc538ab5f92e41f19932af9252eb926c2151c04e..9eac3a29055e74e59713891f7fa2d4e10620ff9c 100644 (file)
@@ -595,7 +595,7 @@ If START or END is negative, it counts from the end."
             (if end
                 (let ((res nil))
                   (while (>= (setq end (1- end)) start)
-                    (cl-push (cl-pop seq) res))
+                    (push (pop seq) res))
                   (nreverse res))
               (copy-sequence seq)))
            (t