From fe26c076372021b181004ac5e212dbdd372bf235 Mon Sep 17 00:00:00 2001 From: James Swaine Date: Thu, 12 Jul 2012 10:05:22 -0500 Subject: [PATCH] Fix future visualizer not showing requested size for allocation events --- collects/racket/future/private/visualizer-data.rkt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/collects/racket/future/private/visualizer-data.rkt b/collects/racket/future/private/visualizer-data.rkt index ea498974cf..f6c5103f62 100644 --- a/collects/racket/future/private/visualizer-data.rkt +++ b/collects/racket/future/private/visualizer-data.rkt @@ -111,7 +111,7 @@ ;;allocation-event? : event -> bool (define (allocation-event? evt) - (equal? (event-prim-name evt) '|[allocate memory|)) + (equal? (event-prim-name evt) '|[allocate memory]|)) ;;jitcompile-event : event -> bool (define (jitcompile-event? evt)