aboutsummaryrefslogtreecommitdiffstats
path: root/csc/match.csc
diff options
context:
space:
mode:
authorRose Hogenson <rhogenson@google.com>2022-07-12 21:44:41 -0700
committerRose Hogenson <rhogenson@google.com>2022-07-12 21:44:41 -0700
commit77a47304368cd716c05507ce9cebbbab3a2b965a (patch)
tree73a0be02c2ee1d280823270a43df6d094042a258 /csc/match.csc
parent6b32cfd7754e1f420abf5d64beb5109d951162c7 (diff)
downloadchromatopelma-77a47304368cd716c05507ce9cebbbab3a2b965a.tar.zst
Remove redundant parentheses in the match macro.
I'm marginally reducing verbosity with this change, without sacrificing readability.
Diffstat (limited to 'csc/match.csc')
-rw-r--r--csc/match.csc2
1 files changed, 1 insertions, 1 deletions
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* ...)