redex: adjust the way metafunction tracing is printed so you

don't see (list 'lambda (list 'x) 'x) but instead (lambda (x) x)
This commit is contained in:
Robby Findler 2012-01-04 14:54:26 -06:00
parent 86579b4f15
commit ddecad0575

View File

@ -2267,7 +2267,8 @@
[current-trace-print-results
(λ (name results level)
(display " ")
(otr name results level))])
(otr name results level))]
[print-as-expression #f])
(trace-call name metafunc exp))
(metafunc exp)))])
traced-metafunc))