mirror of
https://gitlab.com/embeddable-common-lisp/ecl.git
synced 2026-04-21 01:00:38 -07:00
Fixed typo when compiling slot access to structures.
This commit is contained in:
parent
8c95aabc42
commit
f9602f7310
1 changed files with 1 additions and 1 deletions
|
|
@ -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)))
|
||||
)
|
||||
)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue