]> gitweb.factorcode.org Git - factor.git/commitdiff
mason.git: fix for rename.
authorJohn Benediktsson <mrjbq7@gmail.com>
Tue, 30 Dec 2014 20:51:33 +0000 (12:51 -0800)
committerJohn Benediktsson <mrjbq7@gmail.com>
Tue, 30 Dec 2014 20:51:33 +0000 (12:51 -0800)
extra/mason/git/git.factor

index 71a71b6ccbf4fe3595262981f65bda5c9970eada..15737831b38fbf27d39a38bd7982fc1445073690 100644 (file)
@@ -55,7 +55,7 @@ IN: mason.git
     ] [ rethrow ] if ;
 
 : with-process-reader* ( desc encoding quot -- )
-    [ <process-reader*> ] dip swap [ with-input-stream ] dip
+    [ (process-reader) ] dip swap [ with-input-stream ] dip
     dup wait-for-process dup { 0 1 } member?
     [ 2drop ] [ process-failed ] if ; inline