From: Slava Pestov Date: Fri, 11 Sep 2009 02:41:12 +0000 (-0500) Subject: Load fixes X-Git-Tag: 0.97~5568^2~2 X-Git-Url: https://gitweb.factorcode.org/gitweb.cgi?p=factor.git;a=commitdiff_plain;h=16144a5edac85309cb1386619ec603ec248a4858 Load fixes --- diff --git a/basis/specialized-vectors/specialized-vectors.factor b/basis/specialized-vectors/specialized-vectors.factor index dbadd7a74a..58fb97764b 100644 --- a/basis/specialized-vectors/specialized-vectors.factor +++ b/basis/specialized-vectors/specialized-vectors.factor @@ -3,7 +3,7 @@ USING: accessors alien.c-types assocs compiler.units functors growable kernel lexer namespaces parser prettyprint.custom sequences specialized-arrays specialized-arrays.private strings -vocabs vocabs.parser ; +vocabs vocabs.parser fry ; QUALIFIED: vectors.functor IN: specialized-vectors diff --git a/extra/benchmark/benchmark.factor b/extra/benchmark/benchmark.factor index b6e65f44cb..ee9285a0a8 100755 --- a/extra/benchmark/benchmark.factor +++ b/extra/benchmark/benchmark.factor @@ -19,7 +19,7 @@ PRIVATE> : record-benchmark ( vocab -- ) [ "=== " write print flush ] [ - [ [ require ] [ (run-benchmark) ] [ ] tri timings ] + [ [ require ] [ run-benchmark ] [ ] tri timings ] [ swap errors ] recover get set-at ] bi ;