mirror of
https://gitlab.com/embeddable-common-lisp/ecl.git
synced 2026-01-15 13:52:16 -08:00
The compiled version of DOTIMES evaluated the output form in the wrong context
This commit is contained in:
parent
1dd472dbc2
commit
a751b9df33
1 changed files with 4 additions and 3 deletions
|
|
@ -30,11 +30,12 @@
|
|||
,@declarations)
|
||||
(si::while (< ,variable ,%limit)
|
||||
,@body
|
||||
(reckless (setq ,variable (1+ ,variable))))))
|
||||
(reckless (setq ,variable (1+ ,variable))))
|
||||
,@output))
|
||||
(t
|
||||
(let ((,variable 0))
|
||||
(declare ,@declarations)
|
||||
(si::while (< ,variable ,%limit)
|
||||
,@body
|
||||
(setq ,variable (1+ ,variable))))))
|
||||
,@output)))))
|
||||
(setq ,variable (1+ ,variable)))
|
||||
,@output))))))))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue