mirror of
https://gitlab.com/embeddable-common-lisp/ecl.git
synced 2026-03-07 12:50:34 -08:00
Another THE->TRULY-THE change in evalmacros.lsp
This commit is contained in:
parent
2f42f79da5
commit
edee87b62b
1 changed files with 1 additions and 1 deletions
|
|
@ -246,7 +246,7 @@ FORM returns no value, NIL."
|
|||
(do ((vl vars (cdr vl))
|
||||
(sym (gensym))
|
||||
(forms nil)
|
||||
(n 0 (the fixnum (1+ n))))
|
||||
(n 0 (truly-the fixnum (1+ n))))
|
||||
((endp vl) `(LET ((,sym (MULTIPLE-VALUE-LIST ,form))) ,@forms))
|
||||
(declare (fixnum n))
|
||||
(push `(SETQ ,(car vl) (NTH ,n ,sym)) forms)))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue