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/cps.csc | |
| parent | Update a comment in compare.csc. (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/cps.csc')
| -rw-r--r-- | csc/cps.csc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/csc/cps.csc b/csc/cps.csc index 827f4b7..a5b7d3b 100644 --- a/csc/cps.csc +++ b/csc/cps.csc @@ -116,9 +116,9 @@ (define (to-cps expr continuation) (match expr - (_ (when (or (constant? expr) - (lexical-ref? expr) - (library-ref? expr))) + (_ when (or (constant? expr) + (lexical-ref? expr) + (library-ref? expr)) (continuation expr)) ((% %lexical-set ref arg) (to-cps |
