factor/extra/bootstrap/help/help.factor

20 lines
465 B
Factor
Executable File

USING: help help.topics help.syntax help.crossref
help.definitions io io.files kernel namespaces vocabs sequences
parser vocabs.loader ;
IN: bootstrap.help
: load-help
"alien.syntax" require
"compiler" require
t load-help? set-global
[ vocab ] load-vocab-hook [
vocabs
[ vocab-root ] subset
[ vocab-source-loaded? ] subset
[ dup vocab-docs-loaded? [ drop ] [ load-docs ] if ] each
] with-variable ;
load-help