diff --git a/extra/tools/profiler/profiler.factor b/extra/tools/profiler/profiler.factor index 4702431a8f..c35d5a72c8 100755 --- a/extra/tools/profiler/profiler.factor +++ b/extra/tools/profiler/profiler.factor @@ -59,5 +59,7 @@ M: string (profile.) : vocabs-profile. ( -- ) "Call counts for all vocabularies:" print vocabs [ - dup words [ profile-counter ] map sum + dup words + [ "predicating" word-prop not ] subset + [ profile-counter ] map sum ] { } map>assoc counters. ;