aboutsummaryrefslogtreecommitdiffstats
path: root/csc/ir2.csc
diff options
context:
space:
mode:
Diffstat (limited to 'csc/ir2.csc')
-rw-r--r--csc/ir2.csc3
1 files changed, 1 insertions, 2 deletions
diff --git a/csc/ir2.csc b/csc/ir2.csc
index 7ab2803..331aa4c 100644
--- a/csc/ir2.csc
+++ b/csc/ir2.csc
@@ -165,12 +165,11 @@
; does not take a continuation. Instead, the procedure will accept the
; continuation as an argument.
(define-match-record-type <closure>
- (make-closure name arguments rest body)
+ (make-closure name arguments body)
closure?
%closure
(name closure-name)
(arguments closure-arguments)
- (rest closure-rest)
(body closure-body))