Fix two places that should be "all-disk-vocabs-recursive".

db4
John Benediktsson 2015-06-08 14:37:36 -07:00
parent 1230f56197
commit 90111600b9
2 changed files with 2 additions and 2 deletions

View File

@ -6,7 +6,7 @@ vocabs.hierarchy ;
{ "Hi" } [ "Hi" present ] unit-test
{ "+" } [ \ + present ] unit-test
{ "kernel" } [ "kernel" lookup-vocab present ] unit-test
{ } [ disk-vocabs-recursive filter-vocabs [ present ] map drop ] unit-test
{ } [ all-disk-vocabs-recursive filter-vocabs [ present ] map drop ] unit-test
{ "1+1j" } [ C{ 1 1 } present ] unit-test
{ "1-1j" } [ C{ 1 -1 } present ] unit-test

View File

@ -29,7 +29,7 @@ M: readline-reader prompt.
all-words [ name>> ] map! prefixed ;
: prefixed-vocabs ( prefix -- vocabs )
disk-vocabs-recursive filter-vocabs [ name>> ] map! prefixed ;
all-disk-vocabs-recursive filter-vocabs [ name>> ] map! prefixed ;
: prefixed-colors ( prefix -- colors )
named-colors prefixed ;