summaryrefslogtreecommitdiff
path: root/lisp/emacs-lisp/lucid.el
diff options
context:
space:
mode:
Diffstat (limited to 'lisp/emacs-lisp/lucid.el')
-rw-r--r--lisp/emacs-lisp/lucid.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/emacs-lisp/lucid.el b/lisp/emacs-lisp/lucid.el
index 7a8ff4789ba..dc45ef546f7 100644
--- a/lisp/emacs-lisp/lucid.el
+++ b/lisp/emacs-lisp/lucid.el
@@ -29,8 +29,8 @@
(cons (copy-tree (car tree))
(copy-tree (cdr tree)))
(if (vectorp tree)
- (let ((new (copy-sequence tree))
- (i (1- (length new))))
+ (let* ((new (copy-sequence tree))
+ (i (1- (length new))))
(while (>= i 0)
(aset new i (copy-tree (aref new i)))
(setq i (1- i)))