From 9cd164f3acc03d783278abf6e9af7ff30032b678 Mon Sep 17 00:00:00 2001 From: Slava Pestov Date: Sat, 20 Feb 2010 12:05:52 +1300 Subject: [PATCH] tools.crossref: don't include generic words in usage lists, since the results are useless and arbitrary -- they depend on the contents of megamorphic caches --- basis/tools/crossref/crossref.factor | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/basis/tools/crossref/crossref.factor b/basis/tools/crossref/crossref.factor index 3bdf2f83ae..50034822b2 100644 --- a/basis/tools/crossref/crossref.factor +++ b/basis/tools/crossref/crossref.factor @@ -71,7 +71,7 @@ M: word crossref-def : defs-to-crossref ( -- seq ) [ - all-words + all-words [ generic? not ] filter all-articles [ >link ] map source-files get keys [ ] map ] append-outputs ;