From 93d6807d33691eeb1d01d9ec09d22660123165c2 Mon Sep 17 00:00:00 2001 From: Doug Coleman Date: Fri, 21 Oct 2011 15:34:08 -0500 Subject: [PATCH] Revert "Try without-limits in mason.report. Fixes #275." This reverts commit 1771f18998b20e0f8769b094f46329267799c7e7. --- extra/mason/report/report.factor | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/extra/mason/report/report.factor b/extra/mason/report/report.factor index 4c159b44ee..926207be00 100644 --- a/extra/mason/report/report.factor +++ b/extra/mason/report/report.factor @@ -4,7 +4,7 @@ USING: benchmark combinators.smart debugger fry io assocs io.encodings.utf8 io.files io.sockets io.streams.string kernel locals mason.common mason.config mason.disk mason.platform math namespaces prettyprint sequences xml.syntax xml.writer -combinators.short-circuit literals splitting prettyprint.config ; +combinators.short-circuit literals splitting ; IN: mason.report : git-link ( id -- link ) @@ -31,12 +31,10 @@ IN: mason.report : with-report ( quot -- ) [ "report" utf8 ] dip '[ - [ - common-report - _ call( -- xml ) - [XML <-><-> XML] - write-xml - ] without-limits + common-report + _ call( -- xml ) + [XML <-><-> XML] + write-xml ] with-file-writer ; inline : file-tail ( file encoding lines -- seq )