diff options
| author | Rose Hogenson <rhogenson@google.com> | 2022-07-12 21:44:41 -0700 |
|---|---|---|
| committer | Rose Hogenson <rhogenson@google.com> | 2022-07-12 21:44:41 -0700 |
| commit | 77a47304368cd716c05507ce9cebbbab3a2b965a (patch) | |
| tree | 73a0be02c2ee1d280823270a43df6d094042a258 /csc/match.csc | |
| parent | 6b32cfd7754e1f420abf5d64beb5109d951162c7 (diff) | |
| download | chromatopelma-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.csc | 2 |
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* ...) |
