+ fixed typo, fixed module definition

This commit is contained in:
eknauel 2004-01-15 16:32:58 +00:00
parent 2eb5139b74
commit 5791065071
1 changed files with 2 additions and 2 deletions

View File

@ -4,7 +4,7 @@
make-finite-type-import-function))
(define-structure ffi-tools-rts ffi-tools-rts-interface
(open scheme)
(open scheme srfi-23 external-calls)
(begin
(define-syntax lookup-shared-value
@ -22,7 +22,7 @@
(let ((alist (make-finite-type-alist elements id-proc)))
(lambda (id)
(cond
((assoc id alis) => cdr)
((assoc id alist) => cdr)
(else
(error "Could not map value to finite type "
finite-type-name id))))))