From c42fbb68cb563581677eb813c3204093245f0f03 Mon Sep 17 00:00:00 2001 From: Robby Findler Date: Fri, 24 Aug 2012 12:43:04 -0500 Subject: [PATCH] refinement to recent commit suggested by Ryan --- collects/racket/syntax.rkt | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/collects/racket/syntax.rkt b/collects/racket/syntax.rkt index 223e84023e..5a8aee746c 100644 --- a/collects/racket/syntax.rkt +++ b/collects/racket/syntax.rkt @@ -83,7 +83,9 @@ (when uses (current-recorded-disappeared-uses (append - (map syntax-local-introduce ids) + (if (syntax-transforming?) + (map syntax-local-introduce ids) + ids) uses)))))