]> gitweb.factorcode.org Git - factor.git/commitdiff
basis: use <vocab-link> in a couple places.
authorJohn Benediktsson <mrjbq7@gmail.com>
Tue, 3 Jun 2014 17:14:03 +0000 (10:14 -0700)
committerJohn Benediktsson <mrjbq7@gmail.com>
Tue, 3 Jun 2014 17:14:03 +0000 (10:14 -0700)
basis/help/lint/lint.factor
basis/vocabs/hierarchy/hierarchy.factor

index 7e8c2e8c94d3f097782dd0b62a941312e43d7237..2a656f3526dd4b2e05894190e4cf1f1e2a309e96 100644 (file)
@@ -67,7 +67,7 @@ PRIVATE>
     ] check-something ;
 
 : check-about ( vocab -- )
-    vocab-link boa dup
+    <vocab-link> dup
     '[ _ vocab-help [ lookup-article drop ] when* ] check-something ;
 
 : check-vocab ( vocab -- )
index 440f1a6b94b779435fe3982a298b6093a90e661e..7a20bcfa1bb36f413fb21dd16170349f6b16d4bd 100644 (file)
@@ -73,7 +73,7 @@ PRIVATE>
 : no-prefixes ( seq -- seq' ) [ vocab-prefix? not ] filter ;\r
 \r
 : convert-prefixes ( seq -- seq' )\r
-    [ dup vocab-prefix? [ name>> vocab-link boa ] when ] map ;\r
+    [ dup vocab-prefix? [ name>> <vocab-link> ] when ] map ;\r
 \r
 : remove-redundant-prefixes ( seq -- seq' )\r
     #! Hack.\r