aboutsummaryrefslogtreecommitdiffstats
path: root/csc/cps.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/cps.csc
parentUpdate a comment in compare.csc. (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/cps.csc')
-rw-r--r--csc/cps.csc6
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