Fixed typo when compiling slot access to structures.

This commit is contained in:
jgarcia 2006-11-24 16:54:31 +00:00
parent 8c95aabc42
commit f9602f7310

View file

@ -73,7 +73,7 @@
(endp (cdr args)))
(case (car fd)
(VECTOR (c1expr `(svref ,(car args) ,(cdr fd)))) ; Beppe3
(LIST (c1expr `(elt ,(cdr fd) ,(car args))))
(LIST (c1expr `(elt ,(car args) ,(cdr fd))))
(t (c1structure-ref1 (car args) (car fd) (cdr fd)))
)
)