]> gitweb.factorcode.org Git - factor.git/blobdiff - extra/lint/lint.factor
core: find-subseq -> subsequence-starts, find-subseq-from -> subsequence-starts-from
[factor.git] / extra / lint / lint.factor
index 53ef1f453efd035fbf353eddd93a7f65893ceda3..034a81ac8547956899b55552afcf0ced235c76f8 100644 (file)
@@ -249,7 +249,7 @@ GENERIC: lint ( obj -- seq )
 M: object lint ( obj -- seq ) drop f ;
 
 M: callable lint ( quot -- seq )
-    lint-definitions-keys get-global [ find-subseq? ] with filter ;
+    lint-definitions-keys get-global [ subsequence? ] with filter ;
 
 M: word lint ( word -- seq/f )
     def>> [ callable? ] deep-filter [ lint ] map concat ;