factor/basis/bootstrap/help/help.factor

21 lines
424 B
Factor
Raw Normal View History

USING: accessors assocs namespaces sequences vocabs vocabs.loader
vocabs.loader.private ;
2007-09-20 18:09:08 -04:00
IN: bootstrap.help
2008-06-08 16:32:55 -04:00
: load-help ( -- )
{
"help"
"help.topics"
"help.syntax"
"help.crossref"
"help.definitions"
"help.lint"
"help.vocabs"
} [ require ] each
2008-01-05 19:37:13 -05:00
2007-09-20 18:09:08 -04:00
t load-help? set-global
dictionary get values [ docs-loaded?>> ] reject [ load-docs ] each ;
2007-09-20 18:09:08 -04:00
load-help