summaryrefslogtreecommitdiff
path: root/lisp/edmacro.el
diff options
context:
space:
mode:
authorStefan Monnier <monnier@iro.umontreal.ca>2002-09-06 19:46:24 +0000
committerStefan Monnier <monnier@iro.umontreal.ca>2002-09-06 19:46:24 +0000
commit3922343710b6ccc60e73546874b9ef174dfa79da (patch)
tree8fdeff9eec10e2173cbe675632d0744bd9480c69 /lisp/edmacro.el
parent426f6c23f464e3d2499e1950984c2aa5741b38b7 (diff)
downloademacs-3922343710b6ccc60e73546874b9ef174dfa79da.tar.gz
(edmacro-subseq): Don't use cl-push/cl-pop.
Diffstat (limited to 'lisp/edmacro.el')
-rw-r--r--lisp/edmacro.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/edmacro.el b/lisp/edmacro.el
index dc538ab5f92..9eac3a29055 100644
--- a/lisp/edmacro.el
+++ b/lisp/edmacro.el
@@ -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