From e2bd1b51bce5946fbccfd9f07223cb6285c0d5f0 Mon Sep 17 00:00:00 2001 From: Mira Leung Date: Sun, 3 May 2015 12:42:32 -0700 Subject: [PATCH] Using in-list in for/list --- racket/collects/racket/match/parse-helper.rkt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/racket/collects/racket/match/parse-helper.rkt b/racket/collects/racket/match/parse-helper.rkt index b6ccec1cd9..5614f36a04 100644 --- a/racket/collects/racket/match/parse-helper.rkt +++ b/racket/collects/racket/match/parse-helper.rkt @@ -142,7 +142,7 @@ (length ps) "missing fields" (list-tail - (for/list [(i acc)] + (for/list [(i (in-list acc))] (symbol->string (syntax->datum i))) (length ps))) stx pats)))