repair "mark" list extraction

This commit is contained in:
Matthew Flatt 2015-04-12 07:34:17 -06:00
parent 8ea555aaee
commit dfcbf87704

View File

@ -4,5 +4,5 @@
(define (get-marks stx)
(define info (syntax-debug-info stx))
(for ([e (in-list (hash-ref info 'context))])
(for/list ([e (in-list (hash-ref info 'context))])
(vector-ref e 0)))