]> gitweb.factorcode.org Git - factor.git/commitdiff
clean up polymorphic stack effects in fuel
authorJoe Groff <arcata@gmail.com>
Sat, 6 Mar 2010 05:51:13 +0000 (21:51 -0800)
committerJoe Groff <arcata@gmail.com>
Sat, 6 Mar 2010 05:51:13 +0000 (21:51 -0800)
extra/fuel/fuel.factor

index 9d47bf8cc4d4225113c87a2ef9ca7bd76312913c..1c0dc9c480d9427890ec9baa7ab743d4806c9d7a 100644 (file)
@@ -55,14 +55,14 @@ SYMBOL: :uses-suggestions
 
 PRIVATE>
 
-: fuel-use-suggested-vocabs ( suggestions quot -- ... )
+: fuel-use-suggested-vocabs ( ..a suggestions quot: ( ..a -- ..b ) -- ..b )
     [ :uses-suggestions set ] dip
     [ try-suggested-restarts rethrow ] recover ; inline
 
 : fuel-run-file ( path -- )
     [ fuel-set-use-hook run-file ] curry with-scope ; inline
 
-: fuel-with-autouse ( ... quot: ( ... -- ... ) -- ... )
+: fuel-with-autouse ( ..a quot: ( ..a -- ..b ) -- ..b )
     [ auto-use? on fuel-set-use-hook call ] curry with-scope ; inline
 
 : fuel-get-uses ( lines -- )