Issue #370 - Remove (data)

This commit is contained in:
Justin Ethier 2021-01-24 21:59:37 -05:00
parent 738877f225
commit 9c54c01e44

View file

@ -119,8 +119,6 @@
(string-append "opaque_ptr(" ,code ")")) (string-append "opaque_ptr(" ,code ")"))
((c-void) ((c-void)
"Cyc_VOID") "Cyc_VOID")
((data)
"data")
(else (else
(error "scm->c unable to convert scheme object of type " ,type))))))) (error "scm->c unable to convert scheme object of type " ,type)))))))
@ -193,8 +191,6 @@
(cons (cons
(string-append ,code ";") (string-append ,code ";")
"Cyc_VOID")) "Cyc_VOID"))
((data)
"data")
(else (else
(error "c->scm unable to convert C object of type " ,type))))))) (error "c->scm unable to convert C object of type " ,type)))))))