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))))))