aboutsummaryrefslogtreecommitdiff
path: root/new-luxc/source/luxc/lang/translation/r/case.jvm.lux
diff options
context:
space:
mode:
Diffstat (limited to 'new-luxc/source/luxc/lang/translation/r/case.jvm.lux')
-rw-r--r--new-luxc/source/luxc/lang/translation/r/case.jvm.lux6
1 files changed, 3 insertions, 3 deletions
diff --git a/new-luxc/source/luxc/lang/translation/r/case.jvm.lux b/new-luxc/source/luxc/lang/translation/r/case.jvm.lux
index 6ceae3842..8a61f0263 100644
--- a/new-luxc/source/luxc/lang/translation/r/case.jvm.lux
+++ b/new-luxc/source/luxc/lang/translation/r/case.jvm.lux
@@ -138,9 +138,9 @@
(^code (<pm> (~ [_ (#.Nat idx)])))
(meta/wrap ($_ r.then
(r.set! $temp (runtimeT.sum//get cursor-top (r.int (:! Int idx)) <flag>))
- (r.if (r.not (r.= r.null (@@ $temp)))
- (push-cursor! (@@ $temp))
- fail-pm!))))
+ (r.if (r.= r.null (@@ $temp))
+ fail-pm!
+ (push-cursor! (@@ $temp))))))
(["lux case variant left" r.null]
["lux case variant right" (r.string "")])