From 77a47304368cd716c05507ce9cebbbab3a2b965a Mon Sep 17 00:00:00 2001 From: Rose Hogenson Date: Tue, 12 Jul 2022 21:44:41 -0700 Subject: Remove redundant parentheses in the match macro. I'm marginally reducing verbosity with this change, without sacrificing readability. --- csc/match.csc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'csc/match.csc') diff --git a/csc/match.csc b/csc/match.csc index f6ed477..c925381 100644 --- a/csc/match.csc +++ b/csc/match.csc @@ -30,7 +30,7 @@ (define-syntax match-pattern (syntax-rules (_ ! when %) - ((match-pattern x pattern (when condition) result result* ...) + ((match-pattern x pattern when condition result result* ...) (match-pattern x pattern (if condition (let () result result* ...) -- cgit v1.3.1