]> gitweb.factorcode.org Git - factor.git/blobdiff - basis/checksums/sha1/sha1.factor
Move match to basis since compiler.tree.debugger uses it, fix conflict
[factor.git] / basis / checksums / sha1 / sha1.factor
index e75ebfb9e444d27508266ee3c371f0f0882121c9..0ddb429b285125367f2272d5affd22a572b1b49f 100755 (executable)
@@ -127,7 +127,7 @@ M: sha1 checksum-stream ( stream -- sha1 )
     [ zip concat ] keep like ;
 
 : sha1-interleave ( string -- seq )
-    [ zero? ] left-trim
+    [ zero? ] trim-left
     dup length odd? [ rest ] when
     seq>2seq [ sha1 checksum-bytes ] bi@
     2seq>seq ;