Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
7dce3709
Commit
7dce3709
authored
Jun 01, 1993
by
Richard M. Stallman
Browse files
(copy-tree): Use let* to bind new before i.
parent
3aa7cce7
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
lisp/emacs-lisp/lucid.el
lisp/emacs-lisp/lucid.el
+2
-2
No files found.
lisp/emacs-lisp/lucid.el
View file @
7dce3709
...
...
@@ -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
)))
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment