removed a useless define-record
This commit is contained in:
parent
2bcdee8e3b
commit
95ffbd6551
BIN
lib/ikarus.boot
BIN
lib/ikarus.boot
Binary file not shown.
|
@ -237,7 +237,6 @@
|
||||||
(define-record funcall (op rand*))
|
(define-record funcall (op rand*))
|
||||||
(define-record appcall (op rand*))
|
(define-record appcall (op rand*))
|
||||||
(define-record forcall (op rand*))
|
(define-record forcall (op rand*))
|
||||||
(define-record code-rec (arg* proper free* body))
|
|
||||||
(define-record codes (list body))
|
(define-record codes (list body))
|
||||||
(define-record assign (lhs rhs))
|
(define-record assign (lhs rhs))
|
||||||
|
|
||||||
|
@ -445,10 +444,6 @@
|
||||||
`(code ,label . ,(map E clauses))]
|
`(code ,label . ,(map E clauses))]
|
||||||
[(closure code free*)
|
[(closure code free*)
|
||||||
`(closure ,(E code) ,(map E free*))]
|
`(closure ,(E code) ,(map E free*))]
|
||||||
[(code-rec arg* proper free* body)
|
|
||||||
`(code-rec [arg: ,(E-args proper arg*)]
|
|
||||||
[free: ,(map E free*)]
|
|
||||||
,(E body))]
|
|
||||||
[(codes list body)
|
[(codes list body)
|
||||||
`(codes ,(map E list)
|
`(codes ,(map E list)
|
||||||
,(E body))]
|
,(E body))]
|
||||||
|
|
Loading…
Reference in New Issue