Fix bad load ordering

slava 2006-10-21 06:57:41 +00:00
parent 1db7e29695
commit 2816dd552e
2 changed files with 4 additions and 4 deletions

View File

@ -2,7 +2,7 @@
! See http://factorcode.org/license.txt for BSD license.
IN: help
USING: arrays io kernel namespaces parser prettyprint sequences
words modules ;
words ;
M: word article-title
dup parsing? [
@ -65,6 +65,3 @@ M: word article-content
: $outliner ( element -- )
[ first call help-outliner ] ($block) ;
: modules-help ( -- seq )
modules get [ second module-help ] map [ ] subset ;

View File

@ -89,3 +89,6 @@ C: module ( name files tests help -- module )
"To define one, see the documentation for the " write
\ MAIN: ($link) " word." print
] ?if ;
: modules-help ( -- seq )
modules get [ second module-help ] map [ ] subset ;