From 41a672864bb6bce84b36e044424b1a043edf22fb Mon Sep 17 00:00:00 2001 From: Alex Shinn Date: Wed, 26 Dec 2012 22:02:27 +0900 Subject: [PATCH] Making the match-let family insert a lexical closure to allow internal defines. --- lib/chibi/match/match.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/chibi/match/match.scm b/lib/chibi/match/match.scm index 3f63bfd9..93da2b71 100644 --- a/lib/chibi/match/match.scm +++ b/lib/chibi/match/match.scm @@ -854,7 +854,7 @@ (define-syntax match-let* (syntax-rules () ((_ () . body) - (begin . body)) + (let () . body)) ((_ ((pat expr) . rest) . body) (match expr (pat (match-let* rest . body))))))