Another THE->TRULY-THE change in evalmacros.lsp

This commit is contained in:
Juan Jose Garcia Ripoll 2012-01-01 19:31:22 +01:00
parent 2f42f79da5
commit edee87b62b

View file

@ -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)))