]> gitweb.factorcode.org Git - factor.git/commitdiff
basis/extra: Fix load errors
authorDoug Coleman <doug.coleman@gmail.com>
Mon, 25 Mar 2013 05:19:28 +0000 (22:19 -0700)
committerDoug Coleman <doug.coleman@gmail.com>
Mon, 25 Mar 2013 05:19:28 +0000 (22:19 -0700)
basis/tools/coverage/coverage-docs.factor
extra/game/loop/prettyprint/prettyprint.factor
extra/parser-combinators/parser-combinators.factor

index ffee62874ec7628283f93c05307fc1d178b35479..df45a25cc4385f1f8eafd73b747a8cf972deab58 100644 (file)
@@ -4,7 +4,7 @@ USING: alien.c-types help.markup help.syntax kernel quotations
 sequences strings ;
 IN: tools.coverage
 
-HELP: <coverage>
+HELP: <coverage-state>
 { $values
     { "executed?" boolean }
     { "coverage" coverage }
index 44649263dea40e78bc7941057391fa94dee664b6..218f321de7e702ac4cc7167ae54c600eccb67127 100644 (file)
@@ -2,7 +2,7 @@
 USING: accessors debugger game.loop io ;
 IN: game.loop.prettyprint
 
-M: game-loop-error error.
+M: game-loop-error-state error.
     "An error occurred inside a game loop." print
     "The game loop has been stopped to prevent runaway errors." print
     "The error was:" print nl
index 2045fb2b0dfca507a9233b5f58bbfb3b1d4fb7cd..2294cf1c58d1784dbc88525210a3aa6423e04ea3 100644 (file)
@@ -160,7 +160,7 @@ M: and-parser parse ( input parser -- list )
     #! input then parser2 is applied to the rest of
     #! the input strings from the first parser.
     parsers>> unclip swapd parse
-    [ [ and-parser-parse ] reduce ] 2curry promise ;
+    [ [ and-parser-parse ] reduce ] 2curry <promise> ;
 
 TUPLE: or-parser parsers ;