Skip to content

Commit 6f269ce

Browse files
committed
Fix bug.
1 parent f7ef99b commit 6f269ce

File tree

1 file changed

+3
-3
lines changed
  • typed-racket-lib/typed-racket/base-env

1 file changed

+3
-3
lines changed

typed-racket-lib/typed-racket/base-env/prims.rkt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -614,9 +614,9 @@ the typed racket language.
614614
(quasisyntax/loc stx
615615
(#,for/folder: : #,a.ty
616616
((return-hash : #,a.ty (ann (#,hash-maker null) #,a.ty)))
617-
(if for*?
618-
(clause.expand* ... ...)
619-
(clause.expand ... ...))
617+
#,(if for*?
618+
#'(clause.expand* ... ...)
619+
#'(clause.expand ... ...))
620620
(let-values (((key val) (let () body ...)))
621621
(hash-set return-hash key val))))])))
622622

0 commit comments

Comments
 (0)