From ee8be0a8ddcb4cbe5597c89925f0837d91fa9af1 Mon Sep 17 00:00:00 2001 From: John Benediktsson Date: Tue, 30 Dec 2014 19:29:05 -0800 Subject: [PATCH] mason.git: fix status check. --- extra/mason/git/git.factor | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extra/mason/git/git.factor b/extra/mason/git/git.factor index cd9ef01459..a18b386a6f 100644 --- a/extra/mason/git/git.factor +++ b/extra/mason/git/git.factor @@ -65,7 +65,7 @@ IN: mason.git : git-status ( -- seq ) [ git-status-cmd utf8 [ lines ] with-process-reader* - { 0 1 } member? [ 2drop ] [ process-failed ] if + { 0 1 } member? [ drop ] [ process-failed ] if [ "#\t" head? ] filter ] [ git-status-failed { } ] recover ;