]> gitweb.factorcode.org Git - factor.git/commitdiff
mason.git: fix status check.
authorJohn Benediktsson <mrjbq7@gmail.com>
Wed, 31 Dec 2014 03:29:05 +0000 (19:29 -0800)
committerJohn Benediktsson <mrjbq7@gmail.com>
Wed, 31 Dec 2014 03:29:05 +0000 (19:29 -0800)
extra/mason/git/git.factor

index cd9ef0145966085f0cf8901ab03caa275b8b1364..a18b386a6feeff9d4d71234b9512057d229fbda4 100644 (file)
@@ -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 ;