]> gitweb.factorcode.org Git - factor.git/blobdiff - basis/tools/completion/completion.factor
sequences: bound -> index-or-length
[factor.git] / basis / tools / completion / completion.factor
index 49ca364ab54172c1d9e1703799ceb4cb9415ec00..63483d17f4f54c1667e934152b1a4580e6f2461c 100644 (file)
@@ -146,7 +146,7 @@ PRIVATE>
     { ";" } split1-last [ ] [ ] ?if ;
 
 : complete-vocab-list? ( tokens -- ? )
-    chop-; 1 bound head* "USING:" swap member? ;
+    chop-; 1 index-or-length head* "USING:" swap member? ;
 
 PRIVATE>